.inpageForm .header2/**
 * Стили по умолчанию для форм и всплывающего окна могут будть перекрыты
 * визуальным редактором.
 **/

/*
// MAP: Стили для переменных
// Переменные во всплывающем окне автоматически обарачиваются в свои стили
*/

.product,
.price_current,
.price_old{
  white-space: nowrap;
}

.geo_country,
.geo_region,
.geo_city,
.date_today,
.date_tomorrow,
.date_yesterday {
}

.price_current {
  font-weight: bold;
  font-size: 1.2em;
}

.price_old {
  text-decoration: red line-through;
}


/*
// MAP: Всплывающее окно
*/
#popupWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  z-index:100;
}

#popupWrap .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup {
  position: relative;
  box-sizing: border-box;
  min-height: 400px;
  width: 760px;
  padding: 30px 20px 20px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 25px -6px black;
  overflow: hidden;
  z-index: 0;
}

.popup_close {
  position: absolute;
  box-sizing: border-box;
  right: 6px;
  top: 6px;
  width: 21px;
  height: 21px;
  font: normal 18px 'Open Sans', sans-serif;
  line-height: 0;
  text-align: center;
  color: #505050;
  border: 1px solid #505050;
  padding-top: 9px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}

.popup_close:hover {
  color: #F8854C;
  border-color: #F8854C;
}

.popup .imgProduct {
  margin: 12px 0;
  max-width: 260px;
  max-height: 210px;
}


/*
// MAP: Формы
*/
.commonFormStyle {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;

  color: #0f0f0f;
  background: #e0e0e0;
}

.commonFormStyle form {
  display: block;
  width: 100%;
}

.commonFormStyle input,
.commonFormStyle select,
.commonFormStyle button[type=submit] {
  display: block;
  margin: 10px auto;
  box-sizing: border-box;
  width: 90%;
  padding: 10px;
  color: #333333;
  border: PowderBlue 2px solid;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}

.commonFormStyle input,
.commonFormStyle select {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.commonFormStyle input:focus,
.commonFormStyle select:focus {
  outline:none;
  border: LightCyan 2px solid;
}

.commonFormStyle button[type=submit] {
  position: relative;
  min-height: 50px;
  width: 82%;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  border-color: transparent;
  border-radius: 10px;
  box-shadow: 0 3px 11px 0 LightSlateGray;
  cursor: pointer;
  overflow: hidden;
  transition: background linear .4s;
  font-family: 'Open Sans', sans-serif;
  color: #f0f0f0;
  background: #0f0f0f;
}

.commonFormStyle button[type=submit]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all linear .4s;
}

.commonFormStyle [type=submit]:disabled::before {
  background: rgba(0,0,0,.5);
}

.commonFormStyle button[type=submit]:hover {
  box-shadow: none;

  color: #d0d0d0;
  background: #3f3f3f;
}

.commonFormStyle .header1,
.commonFormStyle .header2,
.commonFormStyle .header3 {
  margin: 10px 0;
  text-align: center;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}

.commonFormStyle .header1 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.1em;
}

.commonFormStyle .header2 {
  font-size: 20px;
}

.commonFormStyle .header3 {
  font-size: 18px;
}

.inpageForm {
  position: relative;
  margin: 20px auto;
  box-sizing: border-box;
  max-width: 460px;
  padding: 20px;
  border-radius: 10px;
  clear: both;
  box-shadow: 0 5px 12px 0 rgba(0,0,0,.25);
  overflow: hidden;
}

.inpageForm .header1,
.inpageForm .header2,
.inpageForm .header3 {
  width: 90%;
}

.inpageForm .header2 {
  font-weight: 400;
  line-height: 1.3em;
}

.ajaxResponse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  box-sizing: border-box;
  color: #000000;
  background: #fff;
}

.commonFormStyle .send_again {
  color: #00BFFF;
  text-decoration: underline;
  cursor: pointer;
}


.formpage {border: 1px solid rgba(0,0,0,0.085);box-shadow: 0 0 10px rgba(0,0,0,0.1);max-width:90%;border-radius:10px;padding: 0;margin: 20px auto;}
.formpage p, .formpage li, .formpage h3 {font-family: 'Open Sans', sans-serif;margin: 15px 10px 15px 20px;color: #333;}
.formpage h3 {font-size:16px;margin-bottom: 5px;text-decoration: underline;}
.formpage ol {border-left: DimGrey 4px solid;margin-left: 30px;font-size:13px;margin: 25px 0 25px 30px;}
.formpage ol li {margin-left: 8px; line-height: 15px;}
.formpage p {font-size:14px;}


@media (max-width:500px) {
  .commonFormStyle .header1,
  .commonFormStyle .header2,
  .commonFormStyle .header3 {
    margin: 8px 0;
  }

  .commonFormStyle .header1 {
    margin-top: 0;
    font-size: 19px;
  }

  .commonFormStyle .header2 {
    font-size: 17px;
  }

  .commonFormStyle .header3 {
    font-size: 16px;
  }

  .inpageForm {
    margin: 10px -18px -2px;
    padding: 10px;
  }

  .inpageForm input,
  .inpageForm select,
  .inpageForm button[type=submit] {
    width: 100%;
  }
}

/*
// MAP: Общие стили
*/
.zagovok_ajax {
  display: block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
}

.white-space {
  white-space: nowrap;
}

.hide {
  display: none;
}


/*
// MAP: PRG стили
*/
#prgform {
  position:fixed;
  margin:0;
  padding:0;
  top:50%;
  left:-2px;
  width:1px;
  height:1px;
  min-height:0;
  min-width:0;
  overflow:hidden;
  border:0;
  outline:0;
  background:none;
  box-shadow:none;
}

.prg {
  display:inline;
  position:static;
  float:none;
  margin:0;
  padding:0;
  width:auto;
  height:auto;
  max-height:none;
  max-width:none;
  min-height:0;
  min-width:0;
  color:#3db5e6;
  font:inherit;
  letter-spacing:inherit;
  text-align:inherit;
  text-decoration:underline;
  white-space:inherit;
  word-break:inherit;
  word-spacing:inherit;
  border:0;
  border-radius:0;
  outline:0;
  background:none;
  box-shadow:none;
  clear:none;
  filter:none;
  mask:none;
  opacity:1;
  overflow:visible;
  text-shadow:inherit;
  text-transform:inherit;
  transform:none;
  z-index:auto;
  cursor:pointer;
  -webkit-user-select:text;
  -moz-user-select:text;
  -ms-user-select:text;
  user-select:text;
}

.prg:hover,
.prg:active,
.prg:focus {
}

.prg:active {
  color:rgb(238, 0, 0);
}


/*
// MAP: Toast messages
*/
#orderToast {
 display: none;
 position: fixed;
 top: 10px;
 right: 12px;
 padding: 7px;
 color: #ffffff;
 font: 12px sans-serif;
 background: rgba(0,0,0,.6);
 border: 1px solid rgba(0,0,0,.7);
 border-radius: 12px;
 z-index:999;
 line-height: 1.1;
 width:88%;
 max-width:270px;
}

#orderToast img {
  width:48px;
  height:48px;
  display: inline-block;
}

#orderToast span {position: absolute;
   top: 50%;
   transform: translate(0, -50%) ;
   padding: 0 8px 0 2px;
 }


/*
// MAP: Generated content
*/

.popup .sideLeft {
  float: left;
  width: 300px;
  height: 100%;
}

.popup .sideLeft .header1 {
  margin-bottom:30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}

.popup .sideLeft .geo_city {
  font-size: 32px;
  font-weight: 700;
}

.popup .sideRight {
  position: relative;
  float: right;
  box-sizing: border-box;
  width:400px;
  height:100%;
  padding-left: 50px;
  color: #d4b169;
}

.popup .sideRight::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  top: -400px;
  left: 0;
  z-index: -1;
  border-radius: 50%;
}
.popup .sideRight::before, .formpage {
background: #ffffff;
}

.popup .sideRight .header2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  margin-left:-16px;
  width:378px;
  border: 0;
}

.popup .sideRight .date_tomorrow {
  font-weight: bold;
}

.popup .linkMore {
  float: right;
  color: #999;
  font-size: 12px;
  text-decoration: underline;
  font-style: italic;
}

.popup .red_strelka{width: 38px;
height: 55px;
background: url("data:image/png;base64,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") 0% 0% no-repeat scroll transparent;
    background-size: auto;
position: relative;
left: 260px;
top: -95px;
margin-bottom:-55px;
background-size: 38px;
}


.commonFormStyle {
  color: #fff4b3;
  background: #072667 url("");
}

.commonFormStyle button[type=submit] {
  color: #ffffff;
  background: #f14e4d;
  margin-top: 15px;
}

.commonFormStyle button[type=submit]:hover {
  background: #e72828;
  color: #ffe4e1;
}
