.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.row {
  box-sizing: border-box;
  flex-flow: wrap;
  flex: 0 auto;
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  box-sizing: border-box;
  flex: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0, .col-sm-offset-0, .col-md-offset-0, .col-lg-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  text-align: start;
  justify-content: flex-start;
}

.center-xs {
  text-align: center;
  justify-content: center;
}

.end-xs {
  text-align: end;
  justify-content: flex-end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (width >= 768px) {
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    box-sizing: border-box;
    flex: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xs-offset-0, .col-sm-offset-0, .col-md-offset-0, .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    text-align: start;
    justify-content: flex-start;
  }

  .center-sm {
    text-align: center;
    justify-content: center;
  }

  .end-sm {
    text-align: end;
    justify-content: flex-end;
  }

  .top-sm {
    align-items: flex-start;
  }

  .middle-sm {
    align-items: center;
  }

  .bottom-sm {
    align-items: flex-end;
  }

  .around-sm {
    justify-content: space-around;
  }

  .between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}

@media only screen and (width >= 992px) {
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    box-sizing: border-box;
    flex: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xs-offset-0, .col-sm-offset-0, .col-md-offset-0, .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    text-align: start;
    justify-content: flex-start;
  }

  .center-md {
    text-align: center;
    justify-content: center;
  }

  .end-md {
    text-align: end;
    justify-content: flex-end;
  }

  .top-md {
    align-items: flex-start;
  }

  .middle-md {
    align-items: center;
  }

  .bottom-md {
    align-items: flex-end;
  }

  .around-md {
    justify-content: space-around;
  }

  .between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}

@media only screen and (width >= 1200px) {
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    box-sizing: border-box;
    flex: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xs-offset-0, .col-sm-offset-0, .col-md-offset-0, .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    text-align: start;
    justify-content: flex-start;
  }

  .center-lg {
    text-align: center;
    justify-content: center;
  }

  .end-lg {
    text-align: end;
    justify-content: flex-end;
  }

  .top-lg {
    align-items: flex-start;
  }

  .middle-lg {
    align-items: center;
  }

  .bottom-lg {
    align-items: flex-end;
  }

  .around-lg {
    justify-content: space-around;
  }

  .between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  color: #000;
  box-sizing: border-box;
  background-color: #fff;
  min-width: 320px;
  margin: 0;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

a:focus {
  outline: none;
}

ul {
  padding: 0;
  list-style: none;
}

.section {
  overflow: hidden;
}

h1 {
  color: #241c18;
  margin-top: 15px;
  margin-bottom: 9px;
  font-family: PeaceSans;
  font-size: 57px;
  font-weight: 500;
  line-height: 57px;
}

h2 {
  color: #241c18;
  margin-bottom: 17px;
  font-family: PeaceSans;
  font-size: 40px;
  font-weight: 500;
  line-height: 53px;
}

.section1 h2 {
  font-family: Open Sans, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 48px;
}

h3 {
  color: #241c18;
  margin-top: 12px;
  margin-bottom: 27px;
  font-family: PeaceSans;
  font-size: 50px;
  font-weight: 500;
  line-height: 65px;
}

.section4 h3 {
  margin-bottom: 40px;
}

.section5 h3 {
  margin-bottom: 39px;
}

.section9 h3 {
  margin-bottom: 34px;
}

.section7 h2 {
  margin-bottom: 20px;
}

h4 {
  margin-top: 9px;
  font-size: 24px;
  line-height: 29px;
}

h5 {
  color: #241c18;
  margin-bottom: 17px;
  font-size: 24px;
  line-height: 24px;
}

.percent {
  z-index: 100;
  width: 222px;
  height: 68px;
  padding: 3px 0 7px 77px;
  display: none;
  position: fixed;
  top: 247px;
  right: 0;
  overflow: hidden;
}

.percent_content span {
  background-color: #fff;
  padding: 0 3px;
}

.menu {
  z-index: 100;
  background: #f5f5f5 url("icon_menu.b8dde369.gif") center no-repeat;
  width: 67px;
  height: 59px;
  position: fixed;
  top: 28px;
  right: 0;
}

.menu_content {
  z-index: 101;
  background-color: #f6f6f6;
  width: 373px;
  position: fixed;
  top: 28px;
  right: 0;
}

.menu_content li {
  border-top: 1px solid #eaeaea;
  padding: 0 30px;
}

.menu_content li:first-child {
  border-top: none;
}

.menu_content li a {
  color: #000;
  padding: 13px 0 15px 23px;
  font-size: 17px;
  text-decoration: none;
  display: block;
  position: relative;
}

.menu_content li.active a:focus, .menu_content li.active a:hover {
  text-decoration: none;
}

.menu_content li a:focus, .menu_content li a:hover {
  text-decoration: underline;
}

.menu_content li a:after, .menu_content li a:before {
  content: "";
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 4px;
}

.menu_content li a:after {
  border-width: 5px;
  border-color: #0000 #0000 #0000 #f6f6f6;
  margin-top: -5px;
}

.menu_content li a:before {
  border-width: 9px;
  border-color: #0000 #0000 #0000 #95cf32;
  border-radius: 5px;
  margin-top: -9px;
}

.menu_content li.active a {
  color: #95cf32;
  font-weight: 700;
}

.btn_close {
  z-index: 200;
  background: url("icon_close.6f4ad891.gif") center no-repeat;
  border: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 24px;
}

.composition > div {
  padding-top: 237px;
}

.composition1 {
  background: url("img_cactus.c1c21f68.webp") top no-repeat;
}

.composition2 {
  background: url("img_coffee.52adc465.webp") 50% 96px no-repeat;
}

.composition3 {
  background: url("img_orange.1bc8358d.webp") 50% 51px no-repeat;
}

.composition4 {
  background: url("img_seed.41c72cd4.webp") 50% 46px no-repeat;
}

.composition5 {
  background: url("img_raspberry.1ab9246e.webp") 50% 46px no-repeat;
}

.composition6 {
  background: url("img_pepper.0fec951c.webp") 50% 46px no-repeat;
}

.textSmaller {
  font-size: 14px;
  line-height: 17px;
}

.textSmall {
  font-size: 18px;
}

.section6 .textSmall {
  color: #241c18;
}

.textBig {
  font-size: 24px;
}

.textBig2 {
  font-size: 20px;
}

.textBiger {
  font-size: 30px;
  line-height: 16px;
}

.textWhite {
  color: #fff;
}

.textGray {
  color: #bbb;
  text-decoration: line-through;
}

.textGreen {
  color: #95cf32;
}

.backGreen {
  background-color: #95cf32;
}

.borderGreen {
  position: relative;
}

.borderGreen:after {
  content: "";
  background-color: #95cf32;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.borderGreenGo.borderGreen:after {
  width: 100%;
  transition: width 2s;
}

.backGreen2 {
  background-color: #a3e03c;
}

.section3 .row > div {
  background-color: #efefef;
  position: relative;
}

.section3 .row > div:first-child {
  z-index: 5;
}

.section3 .row > div:nth-child(2) {
  z-index: 4;
}

.section3 .row > div:nth-child(3) {
  z-index: 3;
}

.section3 .row > div:nth-child(4) {
  z-index: 2;
}

.section3 .row > div:nth-child(5) {
  z-index: 1;
}

.section3 .row > div:before {
  content: "";
  z-index: 0;
  background-color: #95cf32;
  width: 28px;
  height: 136px;
  margin-left: -20px;
  position: absolute;
  top: -189px;
  left: 50%;
  transform: rotate(45deg);
}

.section3 .row > div.blockGo:before {
  transition: all 2s;
  top: 0;
}

span.backGreen {
  padding: 0 2px;
}

.section1 span.backGreen {
  padding: 0 2px 2px 5px;
}

.backRed {
  background-color: #dc4242;
  padding: 0 2px;
}

.backBlue {
  background-color: #2a78a9;
  padding: 0 4px 0 3px;
}

.borderGray {
  border-bottom: 1px solid #efefef;
  padding-bottom: 79px;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.layout {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.wrap {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.section1 {
  background: url("img_grass.a931af1e.webp") 0 100% repeat-x, url("img_girl.bd034cf3.webp") 10.1% 0 no-repeat;
  padding: 26px 0 375px;
  overflow: hidden;
}

.section1 p {
  min-height: 83px;
  padding: 20px 0 0 89px;
}

.section1 li {
  background: url("icon_arrow.865dbb62.webp") 0 2px no-repeat;
  padding: 0 0 20px 34px;
  line-height: 22px;
}

.action {
  margin: 1px 0 7px;
  padding: 14px 21px 6px 12px;
}

.action span.bold {
  display: block;
}

.recomended {
  color: #241c18;
  background: url("icon_recommended.34bcfa6b.webp") no-repeat;
}

.quality {
  color: #241c18;
  background: url("icon_quality.ec231cd9.webp") no-repeat;
}

.natural {
  color: #241c18;
  background: url("icon_natural.45a211c9.webp") no-repeat;
}

.before_meals, .after_meals {
  min-height: 486px;
  position: relative;
}

.section4 .before_meals:after, .section4 .after_meals:after {
  color: #fff;
  text-align: center;
  margin-left: -95px;
  padding: 11px 20px;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 108px;
  left: 50%;
}

.section4 .before_meals:after {
  content: "РџРµСЂРµРґ РµРґРѕР№";
  background-color: #dc4242d9;
}

.section4 .after_meals:after {
  content: "РџРѕСЃР»Рµ РµРґС‹";
  background-color: #2a78a9d9;
}

.section2 {
  z-index: 2;
  background-color: #fdfdfd;
  padding-bottom: 42px;
  position: relative;
}

.section2 .hidden-xxs {
  position: relative;
}

#container {
  z-index: 0;
  background: url("img_girl4.101f0320.webp") 0 100% no-repeat;
  width: 234px;
  height: 807px;
  position: absolute;
  top: -350px;
  right: .5rem;
}

.section2 .hidden-xxs .grass {
  background: url("img_grass2.55bb5507.webp") center / 207px 424px no-repeat;
  width: 207px;
  height: 424px;
  margin-left: 25px;
  position: absolute;
  top: -100px;
  left: 0;
}

.section2 p {
  margin-bottom: 24px;
  line-height: 24px;
}

img.gif {
  float: right;
  max-height: 445px;
  margin-top: 12px;
  margin-right: 3px;
}

.section3, .section7, .section9 {
  background-color: #efefef;
}

.section3 {
  z-index: 1;
  padding: 53px 0 58px;
  position: relative;
}

.section3 .row div {
  text-align: center;
}

.icon_advantage {
  min-height: 127px;
  position: relative;
}

.icon_advantage1 {
  background: url("icon_advantage1.a127dfda.webp") top no-repeat;
}

.icon_advantage2 {
  background: url("icon_advantage2.dd7f4058.webp") top no-repeat;
}

.icon_advantage3 {
  background: url("icon_advantage3.759fedff.webp") top no-repeat;
}

.icon_advantage4 {
  background: url("icon_advantage4.2af57835.webp") top no-repeat;
}

.icon_advantage5 {
  background: url("icon_advantage5.a6a5e8d3.webp") top no-repeat;
}

.section7 .foto {
  background-size: auto 100%;
}

.section7 .foto, .section8 .foto {
  min-height: 200px;
  margin-bottom: 10px;
}

.product1 {
  background: url("img_product1.3d6cffc9.webp") top / contain no-repeat;
  padding-top: 299px;
}

.productes {
  background-size: contain;
  padding-top: 299px;
}

.product4, .product41 {
  background-size: auto;
  min-height: 339px;
}

.foto1 {
  background: url("foto1.e098cebe.webp") top no-repeat;
}

.foto2 {
  background: url("foto2.879591bc.webp") top no-repeat;
}

.foto3 {
  background: url("foto3.b3493af4.webp") top no-repeat;
}

.back_product2 {
  display: none;
}

.foto4 {
  background: url("foto4.326a0938.webp") no-repeat;
}

.foto5 {
  background: url("foto5.919fcd5f.webp") no-repeat;
}

.foto6 {
  background: url("foto6.3962e32b.webp") no-repeat;
}

.foto7 {
  background: url("foto7.7a22300b.webp") no-repeat;
}

.section4 {
  padding: 49px 0 73px;
}

.section4 .italic {
  background-color: #fff;
  padding: 0 12px 0 1.5rem;
  position: relative;
  top: -12px;
  left: -1.5rem;
}

.section4 li {
  background: url("icon_arrow.865dbb62.webp") 0 5px / 13px 10px no-repeat;
  padding-left: 23px;
  padding-right: 29px;
}

.back_grass4 {
  background: url("img_grass4.91325001.webp") no-repeat;
  height: 56px;
}

.section5 {
  background: url("img_girl2.577ae78e.webp") 80% bottom no-repeat, #efefef url("img_grass6.22aa5ed4.webp") 0 100% no-repeat;
  padding: 48px 0 196px;
}

.section5 span {
  padding: 1px 9px 4px;
}

.section5 p {
  padding: 15px 0 42px 30px;
}

.section6 {
  background: url("back.818bb9f7.webp") 0 100% repeat-x, url("img_doctor.d29a7896.webp") 12.65% bottom no-repeat;
  padding: 49px 0 18px;
}

.section6 .doctor .box {
  border-left: 1px solid #e5e5e5;
  margin-top: 58px;
  padding-left: 25px;
  position: relative;
}

.section6 .doctor .box:after, .section6 .doctor .box:before {
  content: "";
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
}

.section6 .doctor .box:after {
  border-width: 8px;
  border-color: #0000 #e5e5e5 #0000 #0000;
  margin-top: -8px;
  left: -16px;
}

.section6 .doctor .box:before {
  z-index: 1;
  border-width: 6px;
  border-color: #0000 #fff #0000 #0000;
  margin-top: -6px;
  left: -12px;
}

.section6 .doctor .italic:first-child {
  padding-bottom: 20px;
}

.section6 .backMan li .backGreen2 {
  position: relative;
}

.section6 .backMan li .backGreen2 .textWhite {
  z-index: 1;
  position: relative;
}

.section6 .backMan li .backGreen2:after {
  content: "";
  z-index: 0;
  background-color: #95cf32;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section6 .backMan li:first-child .backGreen2.percentGo:after, .section6 .backMan li:nth-child(2) .backGreen2.percentGo:after {
  width: 100%;
  transition: width 2s;
}

.section6 .backMan li:nth-child(3) .backGreen2.percentGo:after {
  width: 98%;
  transition: width 2s;
}

.section6 .backMan li:nth-child(4) .backGreen2.percentGo:after {
  width: 95%;
  transition: width 2s;
}

.section6 .bodies > div:first-child .backGreen2 .backGreen {
  margin-right: 84%;
}

.section6 .bodies > div:nth-child(2) .backGreen2 .backGreen {
  margin-right: 52%;
}

.section6 .bodies > div:nth-child(3) .backGreen2 .backGreen {
  margin-right: 64%;
}

.section6 .backMan {
  background: url("icon_man.928b0c14.webp") 3px 0 no-repeat;
  margin-top: 33px;
  padding-bottom: 40px;
  padding-left: 154px;
}

.section6 .backMan .textWhite {
  margin-top: 4px;
  padding-bottom: 6px;
  padding-left: 10px;
}

.section6 .bodies .backGreen2 {
  width: 34%;
  margin-left: 17px;
}

.section6 .bodies .backGreen {
  padding-bottom: 0;
}

.section6 li {
  color: #241c18;
  margin: 20px 0 0;
  font-size: 15px;
}

.body1, .body2, .body3 {
  color: #dc4242;
  min-height: 114px;
  padding-top: 35px;
  padding-left: 79px;
}

.body1 {
  background: url("body1.171a7607.webp") 0 no-repeat;
}

.body2 {
  background: url("body2.90f0a039.webp") 0 no-repeat;
}

.body3 {
  background: url("body3.7985cc14.webp") 0 no-repeat;
}

.weight .backGray {
  text-align: center;
  background-color: #efefef;
  border-radius: 5px;
  padding: 15px;
}

.weight, .bodies {
  margin-top: 30px;
  margin-bottom: 40px;
}

.weight span {
  padding: 21px 0;
  display: block;
}

.weight div:first-child span {
  background: url("weight1.f9ed8a6a.webp") top no-repeat;
}

.weight div:nth-child(2) span {
  background: url("weight2.1264b9d3.webp") top no-repeat;
}

.weight div:nth-child(3) span {
  background: url("weight3.c3665a07.webp") top no-repeat;
}

.quality2 {
  background: url("icon_quality2.42cb7844.webp") no-repeat;
  padding-bottom: 25px;
  padding-left: 119px;
}

.quality2 li, .quality2 span {
  vertical-align: top;
  line-height: 24px;
  display: inline;
}

.section7 {
  padding: 28px 0 55px;
}

.section7 img {
  margin: 0 0 8px;
}

.section7 .textBig2 {
  background: url("icon_arrow4.25d4b3b5.webp") 0 6px no-repeat;
  margin-top: 23px;
  margin-bottom: 16px;
  padding-left: 24px;
}

.section7 .textBig2 span {
  background: url("icon_arrow5.7367cf6c.webp") 100% no-repeat;
  padding-right: 24px;
  display: inline-block;
}

.reducedLength {
  background: url("body4.9d789c91.webp") 0 4px no-repeat;
  padding-left: 27px;
  padding-right: 0;
}

.reducedWeight {
  background: url("weight4.9e0276b2.webp") 0 4px no-repeat;
  padding-left: 16px;
  padding-right: 0;
}

.btn {
  text-align: center;
  cursor: pointer;
  background: linear-gradient(#a0df34, #93cd2f);
  border: none;
  border-bottom: 2px solid #669f05;
  margin-bottom: 37px;
  margin-left: 24px;
  padding: 9px 32px 12px 15px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.btn:after, .btn:before {
  content: "";
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
}

.btn:before {
  border-width: 5px;
  border-color: #0000 #0000 #0000 #fff;
  margin-top: -5px;
  right: 12px;
}

.btn:after {
  border-width: 2px;
  border-color: #0000 #0000 #0000 #99d631;
  margin-top: -2px;
  right: 18px;
}

.section8 {
  padding: 20px 0 54px;
}

.section8 .row:nth-child(2), .section8 .row:nth-child(4) {
  background: url("img_grass4.91325001.webp") 0 100% no-repeat;
  padding: 42px 0 78px;
}

.section8 .row:nth-child(3) {
  background: url("img_grass5.1538283c.webp") 0 100% no-repeat;
  padding: 42px 0 78px;
}

.section8 .row:nth-child(5) {
  padding: 42px 0 0;
}

.section8 .row:nth-child(2) {
  padding: 5px 0 78px;
}

.section8 .textBig2 {
  padding: 15px 0 6px;
}

.section9 {
  padding: 27px 0 0;
  position: relative;
}

.section9 .backGreen {
  z-index: 2;
  margin: 0 20px;
  padding: 25px 0 27px;
  position: relative;
}

.section9 .container > .row {
  margin-left: 20px;
  margin-right: 20px;
}

.section9 .blockWhite .textBig2 {
  z-index: 3;
  background-color: #fff;
  padding-top: 77px;
  padding-bottom: 32px;
  position: relative;
}

.section9 .blockWhite + .row h3 {
  margin-bottom: 15px;
}

.section9 .blockWhite .row img {
  margin: 32px auto 0;
}

.blockWhite {
  z-index: 1;
  background-color: #fff;
  margin: 0 20px 40px;
  padding: 0 0 28px;
  position: relative;
}

.dribs {
  z-index: 2;
  background: url("icon_drib.e0f47689.webp") no-repeat, #fff url("icon_arrow3.fe1680b1.webp") 18px 94px no-repeat;
  min-height: 135px;
  padding-top: 16px;
  padding-left: 69px;
  position: relative;
  top: -135px;
}

.dribs.dribsGo {
  transition: top 1s;
  top: 0;
}

.glass {
  z-index: 1;
  background: #fff url("icon_glass.f621a74a.webp") 8px 0 no-repeat;
  min-height: 71px;
  margin-bottom: 64px;
  padding-top: 24px;
  padding-left: 69px;
  position: relative;
  top: -206px;
}

.glass.glassGo {
  transition: top 1s 1s;
  top: 0;
}

.section10 p {
  margin-bottom: 20px;
  padding: 89px 0 0;
}

.section10 {
  z-index: 1;
  padding: 44px 0 52px;
  position: relative;
  overflow: hidden;
}

.back_product1 {
  background: url("img_product41.2f6b3a0b.webp") no-repeat;
}

.boxOrder .prices {
  text-align: center;
  margin-top: 3px;
}

.action + .textBig {
  text-align: center;
}

.new_price {
  display: block;
}

.saving {
  text-align: center;
  margin: 7px 0 23px;
  padding: 2px 0 4px;
}

.boxOrder {
  background: linear-gradient(#f7f6f6, #e1dee0);
  margin-top: 15px;
  margin-left: 29px;
  padding: 20px;
  position: relative;
}

.boxOrder #grassContainer {
  width: 266px;
  height: 1220px;
  position: absolute;
  bottom: 60px;
  right: -132px;
}

.boxOrder #grass {
  z-index: 1;
  background: url("img_grass2.55bb5507.webp") 100% 0 no-repeat;
  width: 266px;
  height: 555px;
  position: absolute;
  bottom: 0;
}

.section1 .boxOrder:before {
  content: "";
  z-index: 0;
  background: url("img_grass2.55bb5507.webp") 100% 0 no-repeat;
  width: 266px;
  height: 555px;
  position: absolute;
  bottom: 60px;
  right: -132px;
}

.order_form {
  position: relative;
}

.order_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  z-index: 2;
  color: #241c18;
  background-color: #0000;
  border: none;
  width: 100%;
  padding: 10px 16px 12px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.order_form select::-ms-expand {
  display: none;
}

.order_form .select-form {
  background-color: #fff;
  border: 1px solid #eee;
  border-bottom: none;
  min-height: 45px;
  margin-bottom: 21px;
  position: relative;
}

.order_form .select-form:before {
  content: "";
  z-index: 1;
  border: 6px solid #0000;
  border-top-color: #464646;
  width: 0;
  height: 0;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  right: 30px;
}

.order_form .select-form:after {
  content: "";
  z-index: 1;
  border: 5px solid #0000;
  border-top-color: #fff;
  width: 0;
  height: 0;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 31px;
}

.blockInputForm {
  border-top: 1px solid #cbcbcb;
}

.input-form {
  color: #241c18;
  background-color: #fff;
  border: 1px solid #eee;
  border-bottom: none;
  width: 100%;
  margin-bottom: 21px;
  padding: 11px 16px 13px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

.input-form::placeholder {
  color: #bbb;
}

input, select:focus {
  outline: none;
}

.order_form .submit-form {
  z-index: 100;
  width: 100%;
  margin-top: 8px;
}

.submit-form {
  color: #72530d;
  text-align: center;
  text-shadow: 0 1px #ffffff6e, 0 -1px #4b3709;
  background: linear-gradient(#ffcb53, #ffb50b);
  border: none;
  border-bottom: 3px solid #d19408;
  padding: 12px 0 13px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  position: relative;
}

.submit-form:hover {
  background: linear-gradient(#ffda85, #ffc338);
}

.submit-form:active {
  background: linear-gradient(#ffb304, #ffbb1e);
  border-bottom: 1px solid #d19408;
  margin-bottom: 2px;
}

a.submit-form {
  float: right;
  padding-left: 40px;
  padding-right: 40px;
  display: inline-block;
}

.section4 ul {
  margin-bottom: 46px;
}

.section4 .action, .section7 .action {
  margin: 0;
  padding: 14px 8px 13px;
}

.section4 .action .textBiger, .section7 .action .textBiger {
  line-height: 30px;
}

.section4 .action:first-child, .section7 .action:first-child {
  border-right: 1px dashed #fff;
}

.mob991, .mob767, .mob480 {
  display: none;
}

.popup {
  overflow-y: hidden;
}

.block_scroll {
  -webkit-overflow-scrolling: touch;
  max-height: 600px;
  margin: 10px 0 0;
  overflow-y: scroll;
}

.popup img {
  margin: 0 26px 0 0;
}

.popup .row {
  margin-left: 0;
  margin-right: 0;
}

.popup .col-xs-2, .popup .col-xs-4, .popup .col-xs-10, .popup .col-xs-12 {
  padding: 0;
}

.popup .block1 {
  padding: 30px 30px 32px;
}

.popup .block1 .bold, .popup .block1 .italic {
  margin-left: 27px;
}

.popup .block3 {
  background-color: #efefef;
  padding: 20px 30px 10px;
}

.popup .block2 {
  padding: 0 30px;
}

.popup .reducedLength {
  background: url("body5.ec335ceb.webp") 0 no-repeat;
  margin: 2px 0 8px;
  padding-left: 30px;
}

.popup .reducedWeight {
  background: url("weight5.8e027706.webp") 0 no-repeat;
  padding-left: 30px;
}

.popup p {
  margin-bottom: 16px;
}

.close-msg {
  box-sizing: content-box;
}

.popup_close {
  color: #aaa;
  cursor: pointer;
  background-color: #0000;
  width: 42px;
  padding: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  position: absolute;
  top: 0;
  right: 10px;
}

.popup_close:hover {
  color: #333;
}

.popup_btn {
  text-align: center;
}

.popup .submit-form {
  float: none;
}

.popup_load {
  text-align: center;
  padding: 0 10px 42px;
}

.popup_load h2 {
  margin-top: 61px;
  margin-bottom: 3px;
  margin-left: 0 !important;
}

.popup_load h3 {
  margin-top: 0;
  margin-bottom: 45px;
}

.enable {
  text-align: center;
  cursor: pointer;
  background: linear-gradient(#a0df34, #93cd2f);
  border: none;
  border-bottom: 2px solid #669f05;
  margin-bottom: 36px;
  margin-right: 26px;
  padding: 11px 40px 15px 39px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.enable:hover, .btn:hover, .enable:hover {
  background: linear-gradient(#93cd2f, #a0df34);
}

.disabled {
  text-align: center;
  cursor: pointer;
  background: linear-gradient(#cecece, #b8b8b8);
  border: none;
  border-bottom: 2px solid #8b8b8b;
  margin-bottom: 36px;
  padding: 11px 58px 15px 54px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.disabled:hover {
  background: linear-gradient(#b8b8b8, #cecece);
}

.hide_block {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 25px;
}

.lt65 {
  font-size: 13px;
}

.alarm {
  box-sizing: border-box;
  z-index: 50;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px;
  font-family: Arial, sans-serif;
  position: relative;
}

.alarm__container {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 40px;
  display: flex;
  position: relative;
}

.alarm__container:before {
  content: "";
  width: 55px;
  height: 49px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
}

.alarm__left {
  flex: 1 0 100%;
  max-width: 210px;
  margin: 10px 10px 10px 0;
}

.alarm__title {
  color: #000;
  text-transform: uppercase;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.alarm__right {
  flex: 1 0 100%;
  max-width: 630px;
  margin: 10px 0;
  font-weight: 400;
}

.alarm__text {
  color: #000;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

@media screen and (width <= 576px) {
  .alarm {
    padding: 30px 10px 30px 40px;
  }
}

@media only screen and (width <= 1570px) {
  .section6 {
    background: url("back.818bb9f7.webp") 0 100% repeat-x, url("img_doctor.d29a7896.webp") 0 100% no-repeat;
    padding: 49px 0 18px;
  }

  .section1 {
    background: url("img_grass.a931af1e.webp") 0 100% repeat-x, url("img_girl.bd034cf3.webp") no-repeat;
  }
}

@media only screen and (width <= 1470px) {
  .section1 {
    background: url("img_grass.a931af1e.webp") 0 100% repeat-x, url("img_girl.bd034cf3.webp") -150px 0 no-repeat;
  }
}

@media only screen and (width <= 1320px) {
  .section6 {
    background: url("back.818bb9f7.webp") 0 100% repeat-x, url("img_doctor.d29a7896.webp") -100px bottom no-repeat;
    padding: 49px 0 18px;
  }
}

@media only screen and (width <= 1280px) {
  .section1 {
    background: url("img_grass.a931af1e.webp") 0 100% repeat-x, url("img_girl.bd034cf3.webp") -200px 0 no-repeat;
  }
}

@media only screen and (width <= 1199px) and (width >= 992px) {
  .list .textSmall {
    font-size: 15px;
  }

  .section1 li {
    padding: 0 0 10px 34px;
    line-height: 18px;
  }

  .list .col-md-12 {
    padding: 0;
  }

  .section6 .bodies .backGreen2 {
    width: 50%;
  }
}

@media only screen and (width >= 767px) {
  .section8 .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (width <= 1199px) {
  .section5 {
    background-position: 100% bottom;
    background-size: contain;
  }

  #timer {
    padding-right: 0;
  }

  .section1 {
    background-size: auto 400px, auto;
    padding: 26px 0 300px;
  }

  .product1, .productes {
    background-position: 0 0;
    background-size: auto 250px;
    padding-top: 227px;
  }

  .section6 .backMan {
    background: url("icon_man.928b0c14.webp") 3px / auto 344px no-repeat;
  }

  .percent {
    text-align: center;
    background-image: none;
    width: 100%;
    height: 27px;
    padding: 0;
    font-size: 0;
    top: 0;
  }

  .percent .percent_content {
    background-size: auto 100%;
    padding: 0 0 0 41px;
    font-size: 15px;
    line-height: 27px;
    display: inline-block;
  }

  ._hidden-md {
    display: none !important;
  }

  ._visible-md {
    display: block;
  }

  .back_product {
    background-size: 70%;
  }

  .back_product1 {
    background: url("img_product41.2f6b3a0b.webp") 0 / 70% no-repeat;
  }

  .list {
    margin-top: 20px;
    margin-left: 116px;
  }

  .section7 .foto, .section8 .foto {
    min-height: 165px;
  }

  .btn {
    padding: 9px 30px 12px 14px;
  }

  .weight div:first-child span, .weight div:nth-child(2) span, .weight div:nth-child(3) span, .section8 .foto {
    background-size: contain;
  }
}

@media only screen and (width <= 1024px) {
  .back_product {
    background-size: 58%;
  }

  .back_product1 {
    background: url("img_product41.2f6b3a0b.webp") 0 / 58% no-repeat;
  }
}

@media only screen and (width <= 991px) {
  .section10 {
    overflow: hidden;
  }

  .section7 .foto, .section8 .foto {
    background-size: contain;
    min-height: 125px;
  }

  .section4 .before_meals:after, .section4 .after_meals:after {
    font-size: 17px;
  }

  .before_meals, .after_meals {
    background-size: contain;
    min-height: 340px;
  }

  .section9 .blockWhite .textBig2 {
    padding-top: 32px;
  }

  .section1 p {
    background-size: 60px;
    padding: 20px 0 0 66px;
  }

  .section6 .bodies .backGreen2 {
    width: 50%;
  }

  .reducedLength {
    margin-left: 1rem;
  }

  .section5 {
    background-position: 120% bottom;
    background-size: contain;
  }

  .bodies .col-sm-4, .action {
    padding-left: 0;
    padding-right: 0;
  }

  .weight div:first-child span, .weight div:nth-child(2) span, .weight div:nth-child(3) span {
    background-size: 100%;
  }

  .weight .backGray {
    padding: 5px;
  }

  a.submit-form {
    padding: 12px 15px;
  }

  .section1 .container {
    width: 100%;
  }

  .boxGray {
    background: linear-gradient(#f7f6f6, #e1dee0);
  }

  .product1, .productes {
    background: none;
    padding-top: 0;
  }

  .list {
    margin-top: 32px;
    margin-left: 0;
  }

  .mob991 {
    display: block;
  }

  .section1 {
    background: url("img_grass.a931af1e.webp") 0 100% repeat-x, url("img_girl6.fc25699e.webp") no-repeat;
    padding: 26px 0 200px;
  }

  .composition > div {
    background-size: contain;
    padding-top: 237px;
  }

  .composition > div:first-child {
    background-size: auto;
  }

  .product1, .productes {
    padding-left: 45px;
    padding-right: 0;
  }

  .list > div {
    padding-left: 0;
    padding-right: 0;
  }

  .product4, .product41 {
    background-size: auto 285px;
    min-height: 276px;
  }

  h2 br {
    display: none;
  }
}

@media only screen and (width <= 910px) {
  .section6 {
    background: url("back.818bb9f7.webp") 0 100% repeat-x, url("img_doctor.d29a7896.webp") -200px bottom no-repeat;
    padding: 49px 0 18px;
  }
}

@media only screen and (width <= 767px) {
  .show-message {
    display: none !important;
  }

  h2 {
    padding-right: 0;
  }

  h1 {
    margin-top: 2px;
    margin-left: 20px;
    font-size: 50px;
    line-height: 61px;
  }

  h2 {
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 32px;
    line-height: 39px;
  }

  h3 {
    font-size: 47px;
    line-height: 60px;
  }

  h4 {
    font-size: 16px;
    line-height: 21px;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .back_product2 {
    background-size: 415px;
    min-height: 450px;
    display: block;
  }

  .composition1 > div:nth-child(2), .composition1 > div:nth-child(3), .composition2 > div {
    padding-top: 0;
  }

  .quality2 h5 {
    font-size: 16px;
    line-height: 20px;
    position: relative;
  }

  .section6 .textSmall {
    font-size: 16px;
    line-height: 20px;
  }

  .quality2 h5:before {
    content: "";
    background-color: #95cf32;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    transform: skewX(-15deg);
  }

  .section1 {
    padding: 22px 0 0;
  }

  .section5 {
    background: #efefef url("img_girl2.577ae78e.webp") 145% bottom / contain no-repeat;
    padding: 48px 0;
  }

  .boxOrder {
    background: none;
    margin: 10px 0;
  }

  #grassContainer {
    display: none;
  }

  .section10 .boxOrder:before {
    content: "";
    z-index: 0;
    background: url("img_grass2.55bb5507.webp") 100% 0 no-repeat;
    width: 266px;
    height: 555px;
    position: absolute;
    bottom: 40px;
    left: -15px;
    right: auto;
    transform: scaleX(-1);
  }

  .mob767 {
    display: block;
  }

  .hidden-xs {
    display: none !important;
  }

  .back_grass4 {
    background-position: center;
  }

  .section4 .before_meals {
    background-size: auto 315px;
    border-right: 1px solid #dc4242;
    height: 100%;
  }

  .section4 .after_meals {
    background-size: auto 315px;
    border-right: 1px solid #2a78a9;
    height: 100%;
  }

  .section9 .wrap {
    padding: 0 30px;
  }

  .section6 {
    background: none;
    padding: 20px 0 0;
  }

  .section6 .backMan {
    padding-left: 145px;
  }

  .section6 .doctor {
    background: url("back.818bb9f7.webp") 0 100% repeat-x, url("img_doctor.d29a7896.webp") 0 0 / 50% no-repeat;
  }

  .section6 .doctor .box {
    margin-top: 0;
    margin-bottom: 52px;
    margin-left: 50%;
  }

  .section1 p, .section10 p {
    text-align: center;
    background-position: top;
    background-size: 60px;
    padding: 64px 0 0;
  }

  .section10 .boxOrder:after {
    content: "";
    z-index: 0;
    width: 137px;
    height: 390px;
    position: absolute;
    top: -321px;
    right: 28px;
  }

  .section10 .boxOrder {
    background: linear-gradient(#a8d73b, #95cf32);
    margin-top: 140px;
    margin-left: 0;
  }

  .section10 .backGreen {
    background-color: #fff;
  }

  .back_product {
    background-size: 375px;
  }

  .back_product1 {
    background: url("img_product51.255fec32.webp") top / 375px no-repeat;
  }

  .section10 .textWhite {
    color: #95cf32;
  }

  .section10 .saving.textWhite {
    color: #000;
    width: 76%;
  }

  .section9 .row.backGreen {
    padding: 17px 12px 24px;
  }

  .section10 .textGray {
    color: #000;
  }

  .section6 {
    overflow: hidden;
  }

  .quality2 {
    background: none;
    padding-left: 40px;
  }

  .section6 h3 {
    background: url("icon_quality2.42cb7844.webp") right 4px no-repeat;
    margin-bottom: 17px;
    margin-right: 20px;
    padding-left: 30px;
    padding-right: 100px;
  }

  a.submit-form {
    width: 100%;
  }

  .quality2 li {
    margin: 0;
    display: block;
  }

  .quality2 ul {
    margin: 20px 0 0;
  }

  .action {
    padding-left: 12px;
    padding-right: 21px;
  }

  .weight div:first-child span, .weight div:nth-child(2) span, .weight div:nth-child(3) span {
    background-size: auto;
  }

  .weight .backGray {
    margin-bottom: 10px;
  }

  a.submit-form {
    float: left;
    padding: 11px 10px 13px;
  }

  .section7 .foto, .section8 .foto {
    background-size: auto 100%;
    min-height: 200px;
    margin-bottom: 0;
  }

  .orderGreen {
    padding: 0;
  }

  .section4 .before_meals:after, .section4 .after_meals:after {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    left: 0;
  }

  .section1 .boxOrder:before {
    z-index: 0;
    right: -15%;
  }

  .foto1, .foto2, .foto3 {
    background-position: 0 0;
  }

  .section8 .col-xs-7 {
    margin-left: 1rem;
  }

  .section7 .percentGo .col-xs-5, .section4 .percentGo .col-xs-5 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0;
  }

  .pd0 {
    padding: 0;
  }

  .weight.around-xs > div {
    margin-right: 25px;
  }

  .reducedLength {
    padding-left: 25px;
  }

  .blogs .col-xs-8 + .col-xs-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .name {
    padding-left: 0;
  }

  .blogs > div:first-child, .blogs > div:nth-child(2) {
    background: url("img_grass4.91325001.webp") 40px bottom no-repeat;
    margin-bottom: 12px;
    padding: 0 0 25px;
  }

  .blogs > div:nth-child(3) {
    padding: 0 0 25px;
  }

  .composition > div {
    background-size: auto;
  }

  .composition .composition1 {
    background-position: top;
    padding-top: 233px;
  }

  .composition .composition2 {
    background-position: 50% 3px;
    padding-top: 127px;
  }

  .composition .composition3 {
    background-position: 50% 9px;
    padding-top: 200px;
  }

  .composition .composition4 {
    background-position: 50% 0;
    padding-top: 155px;
  }

  .composition .composition5 {
    background-position: 50% 8px;
    padding-top: 173px;
  }

  .composition .composition6 {
    background-position: 50% -10px;
    padding-top: 154px;
  }

  .saving {
    padding: 3px 0 5px;
  }

  .section7 .col-xs-4 .reducedLength, .section7 .col-xs-4 .reducedWeight {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .section9 .before_meals, .section9 .after_meals {
    background-size: auto 280px;
    min-height: 340px;
  }

  .section9 .container > .row {
    margin-left: 10px;
    margin-right: 10px;
  }

  .product4, .product41 {
    background-size: auto 285px;
    min-height: 290px;
  }

  .section5 .container .col-xs-11 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .reducedLength {
    margin-left: 0;
  }

  .section2 {
    background: #fdfdfd url("img_grass9.a548c859.webp") repeat-x;
    padding-top: 77px;
    padding-bottom: 21px;
  }

  .section3 {
    padding: 34px 0 44px;
  }

  .section4 {
    padding: 20px 0 51px;
  }

  .section5 {
    padding: 18px 0;
  }

  .section5 h3 {
    margin-bottom: 35px;
  }

  .section5 p {
    padding: 15px 0 28px 30px;
  }

  .section8 .row:nth-child(2), .section8 .row:nth-child(4), .section8 .row:nth-child(3) {
    background-position: bottom;
  }

  .section8 {
    padding: 20px 0 44px;
  }

  .section9 {
    padding: 17px 0 0;
  }

  .section8 .row:nth-child(3), .section8 .row:nth-child(4) {
    padding: 20px 0 53px;
  }

  .section8 .row:nth-child(2) {
    padding: 5px 0 53px;
  }

  .section8 .row:nth-child(5) {
    padding: 20px 0 0;
  }

  .glass {
    margin-bottom: 0;
  }

  .blockWhite:after {
    background-position: 0 100%;
    height: 42px;
    bottom: -42px;
  }

  .blockWhite {
    margin: 0 20px 30px;
  }

  .section10 {
    padding: 21px 0 52px;
  }

  .popup_load {
    padding: 0 10px 14px;
  }

  .popup_load h2 {
    margin-top: 39px;
    margin-bottom: 8px;
    font-size: 37px;
    line-height: 44px;
  }

  .popup_load h3 {
    margin-bottom: 34px;
    font-size: 52px;
    line-height: 64px;
  }

  .footer-area {
    position: relative;
  }

  .footer-area .footer-holder {
    display: none;
    overflow: hidden;
  }

  .foot-btn {
    z-index: 1;
    background-color: #0000;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    display: block;
    position: absolute;
    top: -32px;
    left: 50%;
  }

  .foot-btn:before {
    content: "";
    z-index: 0;
    border: 16px solid #0000;
    border-bottom-color: #fff;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .foot-btn.open {
    top: 0;
  }

  .foot-btn.open:before {
    border-color: #000 #0000 #0000;
  }
}

@media only screen and (width <= 768px) and (width >= 481px) {
  .menu_content li a {
    padding: 9px 0 10px 24px;
  }

  .btn_close {
    top: 0;
    right: 3px;
  }
}

@media only screen and (width <= 640px) {
  a.submit-form {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section5 {
    background-position: 290px bottom;
    background-size: auto 100%;
  }

  .section1 {
    background: url("img_grass.a931af1e.webp") 0 100% repeat-x, url("img_girl6.fc25699e.webp") no-repeat;
  }

  .back_product {
    background-size: 411px 397px;
  }

  .enable {
    margin-right: 9px;
  }
}

@media only screen and (width <= 600px) and (width >= 481px) {
  .section7 .foto, .section8 .foto {
    background-size: 100% 100%;
  }
}

@media only screen and (width <= 615px) {
  h1, h3 {
    font-size: 38px;
    line-height: 47px;
  }
}

@media only screen and (width <= 590px) {
  .popup .block1 {
    padding: 10px 10px 12px;
  }

  .popup .block1 .bold, .popup .block1 .italic {
    margin-left: 27px;
  }

  .popup .block3 {
    background-color: #efefef;
    padding: 20px 10px 10px;
  }

  .popup .block2 {
    padding: 0 10px;
  }

  #timer.col-xs-8 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .section7 .percentGo .col-xs-5, .section4 .percentGo .col-xs-5, .section7 .percentGo .col-xs-6, .section4 .percentGo .col-xs-6 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .section9 .before_meals, .section9 .after_meals {
    background-size: auto 177px;
  }

  .back_product {
    background-size: auto 397px;
  }

  .popup_load h2 {
    margin-top: 27px;
    margin-bottom: 8px;
    font-size: 34px;
    line-height: 42px;
  }

  .popup_load h3 {
    margin-bottom: 15px;
    font-size: 38px;
    line-height: 50px;
  }

  .enable {
    padding: 13px 0 15px;
  }

  .enable, .disabled {
    width: 80%;
    margin: 5px auto;
    display: block;
  }
}

@media only screen and (width <= 560px) {
  .section6 .backMan {
    background: none;
    padding-left: 0;
  }
}

@media only screen and (width <= 520px) {
  .weight div:first-child span, .weight div:nth-child(2) span, .weight div:nth-child(3) span {
    background-size: 100%;
  }

  .popup .block1 .col-xs-4, .popup .block2 .col-xs-2 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (width <= 490px) {
  a.submit-form {
    padding: 20px 0 17px;
    font-size: 22px;
  }
}

@media only screen and (width <= 480px) {
  .prices .textBiger {
    line-height: 34px;
  }

  .pd0_480 {
    padding: 0;
  }

  .section8 .col-xs-7 {
    margin-left: 0;
  }

  .blogs .col-xs-8 + .col-xs-4 {
    padding: 0 1rem;
  }

  .back_product {
    background-size: auto 290px;
  }

  .weight.around-xs > div {
    margin-right: 0;
  }

  .block_meal {
    padding: 0;
  }

  .section10 .saving.textWhite {
    width: 100%;
  }

  .section9 .row.backGreen {
    padding: 20px 0 22px;
    margin: 0 15px !important;
  }

  .section9 .container > .row.blockWhite {
    margin: 0 15px !important;
  }

  .section9 .textBig2 {
    font-size: 16px;
  }

  .weight .backGray {
    margin-bottom: 6px;
  }

  .section6 {
    padding: 20px 0 0;
  }

  .section8 .foto {
    min-height: 180px;
  }

  .quality2 {
    padding-bottom: 27px;
  }

  .section6 .backMan {
    margin-top: 20px;
  }

  .reducedLength {
    margin-left: 0;
  }

  h1 {
    margin-top: 19px;
    margin-bottom: 2px;
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    margin-bottom: 20px;
    margin-right: 0;
    font-size: 22px;
    line-height: 26px;
  }

  h3 {
    margin-bottom: 13px;
    font-size: 26px;
    line-height: 32px;
  }

  h4, h5 {
    font-size: 15px;
    line-height: 18px;
  }

  .dribs {
    word-wrap: break-word;
    background: url("icon_drib.e0f47689.webp") 4px 0 / 47px no-repeat, #fff url("icon_arrow3.fe1680b1.webp") 18px 94px no-repeat;
    padding-top: 0;
  }

  a.submit-form {
    float: none;
    display: block;
  }

  .section1 .col-xs-5, .section1 .col-xs-7, .section1 .col-xs-9, .section1 .col-xs-10, .section2 .col-xs-8, .section4 .col-xs-3, .section4 .col-xs-9, .section4 .col-xs-5, .section4 .col-xs-6, .section4 .col-xs-10, .section6 .bodies .col-xs-4, .section6 .col-xs-9, .section7 .blogs .col-xs-4, .section7 .blogs .col-xs-8, .section7 .col-xs-5, .section7 .col-xs-6, .section8 .col-xs-4, .section8 .col-xs-7, .section10 .col-xs-8 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .section3 .col-xs-4, .section9 .col-xs-7, .section10 .end-xs .col-xs-2 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .before_meals, .after_meals {
    background-size: contain;
    min-height: 300px;
  }

  .glass {
    background: #fff url("icon_glass.f621a74a.webp") 11px 0 / 36px no-repeat;
    min-height: 71px;
    margin-bottom: 0;
  }

  .section9 .blockWhite .textBig2 {
    padding-top: 30px;
  }

  .section1 .col-xs-offset-3, .section1 .col-xs-offset-4, .section4 .col-xs-offset-3 {
    margin-left: 0;
  }

  .section7 {
    padding: 28px 0 40px;
  }

  .section1 .col-xs-3, .section7 .row.bold .col-xs-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }

  .weight .col-xs-3 {
    flex-basis: 49%;
    max-width: 49%;
    padding: 0;
  }

  .weight div:first-child span, .weight div:nth-child(2) span, .weight div:nth-child(3) span {
    background-size: auto;
  }

  .section4 .after_meals, .section4 .before_meals {
    background-position: top;
    background-size: auto 323px;
    border-right: none;
    min-height: 357px;
  }

  .section4 .after_meals {
    margin-top: 38px;
  }

  .section4 .before_meals:after, .section4 .after_meals:after {
    box-sizing: border-box;
    width: 100%;
    margin-left: 0;
    top: auto;
    bottom: 26px;
    left: 0;
  }

  .section1 {
    background: none;
    padding: 26px 0 0;
  }

  .section1 .mob767 .col-xs-offset-2, .section1 .boxOrder {
    margin-left: 0;
  }

  .section6 .doctor {
    background: url("back.818bb9f7.webp") 0 100% repeat-x;
    padding-left: 0;
    padding-right: 0;
  }

  .bodies {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .section6 .doctor .box {
    border-top: 1px solid #e5e5e5;
    border-left: none;
    margin-top: 0;
    margin-left: 0;
    padding-top: 10px;
  }

  .weight {
    position: relative;
  }

  .weight > div {
    margin-bottom: 0;
  }

  .weight:before {
    content: "";
    background: url("img_doctor.d29a7896.webp") 100% 0 / 100% no-repeat;
    width: 45%;
    height: 60%;
    position: absolute;
    bottom: -40px;
    right: 0;
    transform: scaleX(-1);
  }

  .section6 .doctor .box:after, .section6 .doctor .box:before {
    margin-top: 0;
    top: 0;
    left: 30%;
  }

  .section6 .doctor .box:before {
    border-color: #0000 #0000 #fff;
    margin-left: 2px;
    top: -12px;
  }

  .section6 .doctor .box:after {
    border-color: #0000 #0000 #e5e5e5;
    top: -16px;
  }

  .hidden-xxs {
    display: none;
  }

  .mob480 {
    display: block;
  }

  .section6 .bodies .backGreen2 {
    width: auto;
    margin-left: 0;
  }

  .section9 .wrap {
    padding: 0 0 30px;
  }

  .section10 p span, .boxOrder:after, .section10 .boxOrder:before {
    display: none;
  }

  .body1, .body2, .body3 {
    margin-bottom: 20px;
  }

  .section1 .boxGray {
    background: #fff;
  }

  .section1 .boxGray .col-xs-7 {
    background: linear-gradient(#f7f6f6, #e1dee0);
    padding-left: 0;
    padding-right: 0;
  }

  .textBig {
    font-size: 22px;
    line-height: 22px;
  }

  .section6 .row .col-xs-9, .section6 .row.bodies .col-xs-4 {
    padding: 0;
  }

  .section4 ul.row {
    flex-direction: column;
    margin-bottom: 23px;
  }

  .section4 ul.row li {
    margin-bottom: 12px;
  }

  .order-first {
    order: -1;
    margin-bottom: 20px;
  }

  .section6 h3, .quality2 {
    background: none;
    padding-left: 0;
  }

  .quality2 h5:before {
    left: -10px;
    transform: skewX(-5deg);
  }

  .weight.around-xs {
    justify-content: space-between;
  }

  .blogs > div:first-child, .blogs > div:nth-child(2), .blogs > div:nth-child(3) {
    background: none;
    margin-bottom: 0;
    padding: 0;
  }

  .section8 .row:nth-child(2), .section8 .row:nth-child(4), .section8 .row:nth-child(3), .section8 .row:nth-child(5) {
    background: none;
    padding: 5px 0 40px;
  }

  .section8 {
    padding: 20px 0 0;
  }

  .section4 .percentGo .col-xs-5, .section4 .percentGo .col-xs-6, .section7 .percentGo .col-xs-5, .section7 .percentGo .col-xs-6 {
    padding: 0;
  }

  .section7 .textBig2 {
    margin-top: 13px;
    padding-left: 20px;
  }

  .section7 .textBig2 span {
    padding-right: 20px;
  }

  .name {
    padding: 0;
  }

  .btn {
    width: 100%;
    margin-left: 0;
    padding: 9px 32px 12px 10px;
    font-size: 15px;
  }

  .section5 {
    background: #efefef url("img_girl8.d0fa8ad8.webp") 100% 100% / contain no-repeat;
    padding: 18px 0 9px;
  }

  .section5 h3 {
    margin-bottom: 23px;
  }

  .section5 p {
    padding: 15px 0 25px 20px;
  }

  .section1 p {
    font-size: 12px;
  }

  .product4, .product41 {
    min-height: 226px;
  }

  #timer.col-xs-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .section1 .row.around-xs {
    margin-left: 0;
    margin-right: 0;
  }

  .product1, .productes {
    padding-left: 18px;
  }

  .list {
    margin-right: 0;
  }

  .list .textSmall {
    font-size: 16px;
  }

  .section1 li {
    line-height: 18px;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section2 {
    background: url("img_girl7.aba241d0.webp") right 83px no-repeat, #fdfdfd url("img_grass8.21892736.webp") repeat-x;
    padding-top: 39px;
    padding-bottom: 4px;
  }

  .icon_advantage {
    background-size: contain;
  }

  .section3 {
    padding: 23px 0 47px;
  }

  .section4 {
    padding: 19px 0 40px;
  }

  .section4 h3 {
    margin-bottom: 25px;
  }

  .composition > div {
    padding-left: 0;
    padding-right: 0;
  }

  .borderGray {
    padding-bottom: 38px;
  }

  .menu {
    width: 45px;
    height: 39px;
  }

  .back_product .col-xs-12, .boxOrder .col-xs-8 {
    padding: 0;
  }
}

@media only screen and (width <= 370px) and (width >= 320px) {
  .section7 .foto, .section8 .foto {
    background-size: 100% 160px;
    min-height: 160px;
  }
}

@media only screen and (width <= 400px) {
  .menu_content {
    width: 100%;
    top: 0;
  }
}

@media (width >= 768px) {
  .container {
    width: 750px;
  }

  .foot-btn {
    display: none;
  }

  .footer-holder {
    display: block !important;
  }
}

@media (width >= 992px) {
  .container {
    width: 970px;
  }
}

@media (width >= 1200px) {
  .container {
    width: 1170px;
  }
}

.show-message {
  font-family: Roboto-Regular;
}

.blink {
  text-decoration: line-through;
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  color: red !important;
}

.show-message p {
  margin: 0 !important;
}

.show-message__icon {
  vertical-align: middle;
  display: inline-block;
  width: 50px !important;
}

.show-message__info {
  color: #fff;
  vertical-align: middle;
  width: 248px;
  margin-bottom: 0;
  margin-left: 15px;
  font-family: RobotoRegular, sans-serif;
  font-size: 19px;
  line-height: normal;
  display: inline-block;
}

.show-message__info span {
  font-family: RobotoRegular, sans-serif;
  font-size: 20px;
}

.show-message__left {
  font-size: 14px;
}

.show-message__left span {
  font-size: 15px;
}

.show-message_call {
  background-color: #363636;
}

.show-message__info span {
  color: #fff;
}

.package_left, .package_left span {
  font-size: 15px !important;
}

#ouibounce-modal, .show-message_online {
  background-color: #000000e6;
}

.show-message__inner {
  vertical-align: middle;
  line-height: 90px;
  display: inline-block;
}

.show-message__item, .show-message__item-first {
  color: #fff;
  z-index: 98;
  background-color: #000000e6;
  border-radius: 10px;
  width: 318px;
  padding: 5px;
  font-size: 14px;
  line-height: 90px;
  display: none;
  position: fixed;
  top: 120px;
  right: 20px;
}

.lost_position {
  opacity: 0 !important;
  display: none !important;
}

.block_position {
  opacity: 1 !important;
  display: block !important;
}

@media screen and (width <= 767px) {
  .show-message__item, .show-message__item-first {
    top: auto;
    bottom: 10px;
    right: 10px;
  }

  .show-message__info {
    width: 230px;
  }

  .show-message__item, .show-message__item-first {
    width: 300px;
  }
}

@media screen and (width <= 319px) {
  .show-message__item, .show-message__item-first {
    width: 225px;
  }

  .show-message__info {
    width: 160px;
    margin-left: 7px;
    font-size: 15px;
  }

  .show-message__info span {
    font-size: 17px;
  }

  .show-message__icon {
    width: 38px !important;
  }

  .show-message__info br {
    display: none;
  }
}

@keyframes blinker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.comeback_popup {
  z-index: 300;
  background-color: #fff;
  width: 828px;
  margin-left: -414px;
  position: absolute;
  top: 20%;
  left: 50%;
}

.comeback_popup_exit {
  cursor: pointer;
  position: absolute;
  top: -35px;
  right: -35px;
}

.comeback_popup header {
  color: #fff;
  background-color: #f81752;
  padding: 23px 0 23px 60px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.comeback_popup__label {
  color: #f81752;
  text-align: center;
  background: url("label_bg.6bd707b3.webp") no-repeat;
  border-radius: 50%;
  width: 81px;
  height: 81px;
  padding-top: 20px;
  line-height: 100%;
  position: absolute;
  top: -28px;
  left: -28px;
}

.comeback_popup__number {
  font-size: 39px;
}

.comeback_popup__label sup {
  vertical-align: top;
  position: relative;
  top: 4px;
}

.comeback_popup__label sup, .comeback_popup__name {
  font-size: 13px;
}

.comeback_popup__left {
  float: left;
  width: 50%;
  padding: 30px 0 30px 30px;
  position: relative;
}

.comeback_popup__left__wrapper {
  padding-right: 60px;
}

.comeback_popup__left:after {
  content: "";
  border-top: 8px solid #0000;
  border-bottom: 8px solid #0000;
  border-left: 8px solid #fff;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 24px;
  right: -8px;
}

.comeback_popup__left h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 100%;
}

.comeback_popup__prices {
  margin: 10px 85px 0 0;
}

.comeback_popup__prices__left {
  float: left;
  font-size: 15px;
}

.comeback_popup__container:after, .comeback_popup__prices:after, .comeback_popup__wrapper:after {
  content: "";
  visibility: hidden;
  clear: both;
  height: 0;
  display: block;
}

.comeback_popup__prices__price__text {
  color: #f71751;
  margin-top: 5px;
  font-size: 24px;
  font-weight: bold;
}

.comeback_popup__prices__right {
  float: right;
  color: #929191;
}

.comeback_popup__prices__right .comeback_popup__prices__price__text {
  color: #929191;
  font-size: 20px;
  position: relative;
}

.comeback_popup__prices__right .comeback_popup__prices__price__text:before {
  content: "";
  background-color: #fc2121;
  width: 100%;
  height: 2px;
  display: block;
  position: relative;
  top: 10px;
  transform: rotate(-7.5deg);
}

.comeback_popup__timer {
  margin-top: 50px;
}

.comeback_popup__timer__title {
  font-size: 15px !important;
}

.comeback_popup__timer__inner {
  margin-top: 35px;
}

.number_block {
  color: #fff;
  text-align: center;
  background: url("tm_block_bg.454206db.webp") no-repeat;
  width: 68px;
  height: 69px;
  margin-right: 5px;
  font-size: 50px;
  line-height: 59px;
  display: inline-block;
  position: relative;
}

.number_block:before {
  color: #929191;
  margin-bottom: 15px;
  font-size: 13px;
  display: inline-block;
  position: absolute;
  top: -50px;
  left: 2px;
}

.timer__days:before {
  content: "Р”РЅРµР№";
}

.timer__hours:before {
  content: "Р§Р°СЃРѕРІ";
}

.timer__minutes:before {
  content: "РњРёРЅСѓС‚";
}

.timer__seconds:before {
  content: "РЎРµРєСѓРЅРґ";
}

.comeback_popup__right {
  float: right;
  background-color: #e6e6e6;
  width: 50%;
  height: 100%;
  padding: 10px 40px;
}

.comeback_popup__form h3 {
  margin: 0 0 15px;
  font-size: 24px;
  line-height: 100%;
}

.comeback_popup__form input[type="text"], .comeback_popup__form select {
  border: none;
  border-radius: 2px;
  outline: none;
  width: 100%;
  height: 50px;
  margin-bottom: 18px;
  padding: 0 14px;
  box-shadow: inset 0 15px 15px -12px #0000003d;
}

.popup_order_button {
  color: #fff;
  background-color: #3fd012;
  border: none;
  border-bottom: 3px solid #31a40e;
  border-radius: 2px;
  width: 100%;
  padding: 17px 0 14px;
  font-size: 24px;
  box-shadow: 0 0 11px #2a8b0b7d;
}

.popup_order_button:focus {
  outline: none;
}

.popup_order_button:hover {
  filter: progid:DXImageTransform. Microsoft. gradient(startColorstr= "#57e219", endColorstr= "#3fd012", GradientType= 0);
  background: linear-gradient(#57e219 0%, #44d413 47%, #3fd012 100%);
}

.popup_order_button:active {
  background: #31a40e;
}

.last_complect {
  margin-top: 15px;
  position: relative;
}

.last_complect span {
  color: #fff;
  text-align: center;
  background-color: #f81752;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-weight: bold;
  line-height: 25px;
  display: inline-block;
}

.last_complect:before {
  content: "";
  width: 25px;
  height: 58px;
  display: block;
  position: absolute;
  top: -45px;
  left: -31px;
}

.comeback_popup__prices {
  margin-right: 0;
}

.comeback_popup__prices_in {
  position: relative;
}

.comeback_popup__prices_in:after {
  content: "";
  width: 228px;
  height: 192px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.top_price {
  color: #929191;
  font-size: 18px;
}

.top_price:before {
  content: "РЎС‚Р°СЂР°СЏ С†РµРЅР°";
  color: #929191;
  font-size: 15px;
  display: block;
}

.bottom_price {
  color: #fff;
  background-color: #f81752;
  margin-top: 15px;
  padding: 5px 0 5px 30px;
  font-size: 20px;
}

.bottom_price:before {
  content: "Р¦РµРЅР° СЃРѕ СЃРєРёРґРєРѕР№";
  color: #fff;
  font-size: 15px;
  display: block;
}

.comeback_popup__left {
  padding-left: 0;
}

.comeback_popup__left__wrapper, .top_price, .comeback_popup__timer, .bottom_price {
  padding-left: 30px;
}

.comeback_popup__wrapper {
  display: table;
}

.comeback_popup__left, .comeback_popup__right {
  float: none;
  display: table-cell;
}

@media only screen and (width <= 900px) {
  .comeback_popup {
    width: 80%;
    margin-left: -40%;
    top: 5%;
  }

  .comeback_popup__left, .comeback_popup__right {
    float: none;
    width: 100%;
  }

  .comeback_popup__left__wrapper, .comeback_popup__timer__inner {
    text-align: center;
  }

  .comeback_popup__left:after {
    display: none;
  }

  .comeback_popup__right {
    position: relative;
  }

  .comeback_popup__right:before {
    content: "";
    border: 8px solid #0000;
    border-top-color: #fff;
    width: 0;
    height: 0;
    margin-left: -4px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
  }

  .comeback_popup__wrapper {
    display: block;
  }

  .comeback_popup__left {
    float: left;
    display: block;
  }

  .comeback_popup__right {
    float: right;
    display: block;
  }

  .comeback_popup header {
    padding-top: 0;
    padding-bottom: 0;
  }

  .comeback_popup__left {
    padding-top: 10px;
  }

  .comeback_popup__prices {
    margin-top: 10px;
  }
}

@media only screen and (width <= 600px) {
  .comeback_popup__left__wrapper {
    padding-right: 0;
  }

  .comeback_popup__left h2 {
    text-align: center;
  }

  .comeback_popup__left {
    padding: 10px;
  }

  .comeback_popup__right {
    padding: 30px;
  }

  .comeback_popup__prices {
    margin-right: 0;
  }

  .comeback_popup__timer {
    margin-top: 60px;
  }

  .comeback_popup__left, .comeback_popup__right {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (width <= 500px) {
  .comeback_popup__prices {
    text-align: center;
    width: 170px;
    margin: 0 auto;
  }

  .comeback_popup__prices__left, .comeback_popup__prices__right {
    float: none;
    margin: 15px;
  }

  .comeback_popup__left {
    padding: 15px;
  }

  .number_block {
    background-size: 100%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }

  .number_block:before {
    font-size: 11px;
    top: -35px;
  }

  .comeback_popup__left__wrapper, .top_price, .comeback_popup__timer, .bottom_price {
    padding-left: 0;
  }

  .comeback_popup__prices_in:after {
    display: none;
  }

  .comeback_popup__timer {
    margin-top: 20px;
  }
}

.modal_mouse_out {
  z-index: 200;
  color: #000;
  text-align: justify;
  background: #000000e6;
  width: 100%;
  height: 100%;
  font-size: 14px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}

.modal_mouse_pop {
  z-index: 191;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.hide_forever {
  display: none !important;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  border: 0;
  outline: 0;
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

*, :before, :after {
  box-sizing: border-box;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  -o-transition: all .2s ease-in-out;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.img-circle {
  border-radius: 50%;
}

hr {
  border: 0;
  border-top: 1px solid #eee;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  position: static;
  overflow: visible;
}

[role="button"] {
  cursor: pointer;
}

.fade {
  opacity: 0;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  -o-transition-property: height, visibility;
  -o-transition-duration: .35s;
  -o-transition-timing-function: ease;
  height: 0;
  transition-property: height, visibility;
  transition-duration: .35s;
  transition-timing-function: ease;
  overflow: hidden;
}

.embed-responsive {
  height: 0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.modal-open {
  overflow: hidden;
}

.modal {
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  display: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.modal.fade .modal-dialog {
  -o-transition: -o-transform .3s ease-out;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  transform: translate(0);
}

.modal-open .modal {
  overflow: hidden auto;
}

.modal-dialog {
  width: auto;
  margin: 10px;
  position: relative;
}

.modal-content {
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #0003;
  outline: 0;
  position: relative;
  box-shadow: 0 3px 9px #00000080;
}

.modal-backdrop {
  z-index: 1040;
  background-color: #000;
  position: fixed;
  inset: 0;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity= 0);
}

.modal-backdrop.in {
  opacity: .5;
  filter: alpha(opacity= 50);
}

.modal-header {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857;
}

.modal-body {
  padding: 20px;
  position: relative;
}

.modal-footer {
  text-align: right;
  border-top: 1px solid #e5e5e5;
  padding: 20px;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -9999px;
  overflow: scroll;
}

@media (width >= 320px) {
  .modal-dialog {
    width: 90%;
    margin: 126px auto 0;
  }

  #popup4 .modal-dialog {
    width: 90%;
    margin: 13px auto 0;
  }
}

@media (width >= 370px) {
  .modal-dialog {
    margin: 10px auto;
  }
}

@media (width >= 640px) {
  .modal-dialog {
    margin: 30px auto;
  }

  #popup4 .modal-dialog {
    width: 626px;
    margin: 30px auto 0;
  }
}

@media (width >= 768px) {
  .modal-dialog {
    width: 80%;
    margin: 30px auto;
  }

  .modal-content {
    box-shadow: 0 5px 15px #00000080;
  }

  .modal-sm {
    width: 300px;
  }

  #popup4 .modal-dialog {
    width: 720px;
    margin: 264px auto 0;
  }
}

@media (width >= 992px) {
  .modal-lg, .modal-dialog {
    width: 900px;
  }
}

.clearfix:before, .clearfix:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after, .modal-header:after, .modal-footer:after {
  clear: both;
}

.center-block {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0 / 0 a;
  color: #0000;
  text-shadow: none;
  background-color: #0000;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important;
}

@media (width <= 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs, td.visible-xs {
    display: table-cell !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm, td.visible-sm {
    display: table-cell !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (width >= 992px) and (width <= 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md, td.visible-md {
    display: table-cell !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (width >= 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg, td.visible-lg {
    display: table-cell !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (width <= 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (width >= 992px) and (width <= 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (width >= 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print, td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }

  .hidden-print {
    display: none !important;
  }
}

.delivery-section, .delivery-section *, .work-section, .work-section *, .footer-area, .footer-area * {
  box-sizing: border-box;
}

.max-wrap {
  max-width: 980px;
  margin: 0 auto;
}

[class*="icon-"], .delivery-note > span:before, .steps-list li:after {
  vertical-align: top;
  background: url("hotfooter-sprite.2de7f936.webp") no-repeat;
  display: inline-block;
}

.icon-lock, .delivery-note > span:before {
  background-position: 0 0;
  width: 11px;
  height: 13px;
}

.post-country {
  display: none;
}

.icon-phone {
  background-position: 0 -33px;
  width: 19px;
  height: 19px;
}

.icon-mail {
  background-position: 0 -72px;
  width: 19px;
  height: 13px;
}

.icon-back {
  background-position: 0 -105px;
  width: 33px;
  height: 18px;
}

.icon-step-01 {
  background-position: 0 -143px;
  width: 36px;
  height: 36px;
}

.icon-step-02 {
  background-position: 0 -199px;
  width: 41px;
  height: 41px;
}

.icon-step-03 {
  background-position: 0 -260px;
  width: 37px;
  height: 37px;
}

.icon-step-04 {
  background-position: 0 -317px;
  width: 37px;
  height: 38px;
}

.icon-arrow-step, .steps-list li:after {
  background-position: 0 -375px;
  width: 61px;
  height: 13px;
}

.icon-post-blr, #BLR-post-img .post-country {
  background-position: 0 -408px;
  width: 138px;
  height: 50px;
  display: inline-block;
}

.icon-post-rus, #RUS-post-img .post-country {
  background-position: 0 -478px;
  width: 113px;
  height: 55px;
  display: inline-block;
}

.icon-post-kaz, #KAZ-post-img .post-country {
  background-position: 0 -553px;
  width: 186px;
  height: 23px;
  display: inline-block;
}

.icon-post-kgz, #KGZ-post-img .post-country {
  background-position: 0 -596px;
  width: 180px;
  height: 42px;
  display: inline-block;
}

.icon-post-ukr, #UKR-post-img .post-country {
  background-position: 0 -658px;
  width: 186px;
  height: 37px;
  display: inline-block;
}

.icon-post-lva, #LVA-post-img .post-country, #LTU-post-img .post-country {
  background-position: 0 -715px;
  width: 186px;
  height: 43px;
  display: inline-block;
}

.icon-post-rus-alt, #RUS-post-img .post-country-alt {
  background-position: 0 -778px;
  width: 170px;
  height: 55px;
  display: inline-block;
}

.icon-post-mda, #MDA-post-img .post-country {
  background-position: 0 -853px;
  width: 55px;
  height: 55px;
  display: inline-block;
}

.icon-post-mc, #-post-img .post-country {
  background-position: 0 -928px;
  width: 88px;
  height: 55px;
  display: inline-block;
}

.icon-post-visa, #-post-img .post-country-alt {
  background-position: 0 -1003px;
  width: 88px;
  height: 55px;
  display: inline-block;
}

.icon-post-deu, #DEU-post-img .post-country {
  background-position: 0 -1078px;
  width: 186px;
  height: 55px;
  display: inline-block;
}

.icon-post-pol, #POL-post-img .post-country {
  background-position: 0 -1153px;
  width: 186px;
  height: 38px;
  display: inline-block;
}

.icon-hotname {
  background-position: 0 -1211px;
  width: 16px;
  height: 16px;
}

.delivery-section {
  background: #fff;
}

.delivery-post {
  color: #000;
  text-align: center;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 18px;
}

.delivery-post, .delivery-post * {
  box-sizing: border-box;
}

.delivery-post .deliver-holder {
  vertical-align: middle;
  border: 0 solid #e1e1e1;
  border-right-width: 2px;
  max-width: 68%;
  margin: 0 1% 0 0;
  padding: 0;
  display: inline-block;
}

.post-country, .post-country-alt {
  vertical-align: middle;
  background-position: -100px -100px;
  margin: 8px 10px;
}

.post-country-alt {
  display: none;
}

#RUS-post-img .post-country-alt, #-post-img .post-country-alt {
  display: inline-block;
}

.delivery-post .delivery-label {
  vertical-align: middle;
  padding: 0 11px;
  font-size: 22px;
  line-height: 26px;
  display: inline-block;
}

.delivery-post#BLR-post-img .delivery-label, .delivery-post#RUS-post-img .delivery-label, .delivery-post#KAZ-post-img .delivery-label, .delivery-post#KGZ-post-img .delivery-label, .delivery-post#UKR-post-img .delivery-label, .delivery-post#LVA-post-img .delivery-label, .delivery-post#LTU-post-img .delivery-label, .delivery-post#DEU-post-img .delivery-label, .delivery-post#POL-post-img .delivery-label {
  max-width: 42%;
}

.delivery-post#MDA-post-img .delivery-label {
  max-width: 50%;
}

.delivery-note {
  text-align: left;
  vertical-align: middle;
  max-width: 28%;
  display: inline-block;
}

.delivery-note > span {
  padding: 0 0 0 18px;
  display: block;
  position: relative;
}

.delivery-note > span > em {
  vertical-align: top;
  font-style: normal;
  display: inline-block;
}

.delivery-note > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.work-section {
  background-color: #000;
}

.work-steps {
  color: #fff;
  padding: 31px 10px 20px;
}

.steps {
  padding: 0 0 20px 35px;
  overflow: hidden;
}

.steps-label {
  float: left;
  max-width: 230px;
  padding: 5px 27px 0 0;
  font-size: 20px;
  line-height: 22px;
}

.steps-wrap {
  padding: 0 0 20px;
  overflow: hidden;
}

.steps-list {
  letter-spacing: -4px;
  margin: 0 -12px 0 0;
  padding: 0;
  font-size: 0;
  list-style: none;
}

.steps-list li {
  letter-spacing: normal;
  vertical-align: top;
  width: 25%;
  font-size: 16px;
  display: inline-block;
  position: relative;
}

.steps-list li:after {
  content: "";
  width: 61px;
  height: 13px;
  margin: -1px 15px 0 0;
  position: absolute;
  top: 100%;
  right: 100%;
}

.steps-list li:first-child:after {
  content: none;
  display: none;
}

.step-item {
  font-size: 12px;
  line-height: 14px;
  overflow: hidden;
}

.steps-list li .step-item {
  padding: 0 15px 0 0;
}

.step-img {
  float: left;
  padding: 0 10px 0 0;
}

.step-description {
  padding: 2px 0 0;
  display: block;
  overflow: hidden;
}

.call {
  text-align: center;
  color: #fff;
  padding: 0 0 9px;
  font-size: 20px;
  line-height: 22px;
}

.call > span {
  vertical-align: top;
  display: inline-block;
  position: relative;
}

.call .call-title:before {
  content: "";
  vertical-align: top;
  background-color: #05a210;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  margin: 3px 13px 0 -17px;
  display: inline-block;
}

.footer-area {
  background: #fff;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
}

.footer-holder {
  padding: 15px;
}

.footer-section {
  color: #505050;
  border-top: 2px solid #ececec;
  padding: 9px 0 6px;
  font-size: 12px;
  line-height: 18px;
  position: relative;
  overflow: hidden;
}

.footer-section:first-child {
  border-top: none;
}

.footer-left {
  float: left;
  width: 59%;
}

.footer-section:first-child .footer-left {
  width: 88.7%;
}

.footer-right {
  float: right;
  width: 33%;
  margin-left: 12.4%;
}

.footer-section:first-child .footer-right {
  width: 55.4%;
  margin-left: 3.4%;
}

.footer-bottom {
  text-align: right;
  padding-left: 5px;
  overflow: hidden;
}

.footer-bottom > * {
  padding: 5px 0 0;
}

.footer-bottom > :first-child {
  padding: 0;
}

.hotname .icon-hotname {
  width: 174px;
  height: 18px;
  margin: 0;
}

.footer-section address {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  line-height: 21px;
  overflow: hidden;
}

.politic * {
  display: inline;
}

.contacts-list {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  list-style: none;
}

.contacts-list li {
  padding: 0 5px 9px 28px;
  position: relative;
}

.contacts-list li.call-title {
  padding: 0 0 4px;
  font-size: 13px;
  font-weight: normal;
  line-height: 13px;
}

.ordinfo-text {
  float: right;
  width: 50%;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 16px;
  display: block;
}

.contacts-list li [class*="icon-"] {
  position: absolute;
  top: 2px;
  left: 1px;
}

.contacts-list li .icon-mail {
  top: 3px;
  left: 1px;
}

.contacts-phone {
  font-size: 20px;
  line-height: 22px;
}

.back-to-top {
  z-index: 555;
  -o-transition: .2s;
  backface-visibility: hidden;
  background: #fff3;
  border: 1px solid #dadada;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all .2s;
  position: absolute;
  top: 10px;
  right: 1px;
  text-decoration: none !important;
}

.back-to-top i, .back-to-top [class*="icon-"] {
  margin-left: -16px;
  position: absolute;
  top: 11px;
  left: 50%;
}

.back-to-top .text-inner {
  color: #505050;
  text-align: center;
  padding: 31px 0 0;
  font: 12px / 14px Arial, Helvetica, sans-serif;
  display: block;
}

.back-to-top:hover {
  background: #eee;
  border-color: #505050;
}

@media only screen and (width <= 979px) {
  .delivery-post .deliver-holder {
    border-width: 0 0 2px;
    max-width: none;
    margin: 0 0 8px;
    padding: 0 0 10px;
    display: block;
  }

  .delivery-post .delivery-label {
    margin: 0;
  }

  .delivery-post#BLR-post-img .delivery-label, .delivery-post#RUS-post-img .delivery-label, .delivery-post#KAZ-post-img .delivery-label, .delivery-post#KGZ-post-img .delivery-label, .delivery-post#UKR-post-img .delivery-label, .delivery-post#LVA-post-img .delivery-label, .delivery-post#LTU-post-img .delivery-label, .delivery-post#DEU-post-img .delivery-label, .delivery-post#POL-post-img .delivery-label {
    max-width: none;
  }

  .delivery-note {
    text-align: center;
    max-width: none;
    display: block;
  }

  .delivery-note > span {
    vertical-align: top;
    padding: 0;
    display: inline-block;
  }

  .delivery-note > span:before {
    content: "";
    vertical-align: top;
    width: 11px;
    height: 13px;
    margin: 1px 5px 0 0;
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
  }

  .work-steps {
    padding: 22px 10px 23px;
  }

  .steps {
    padding: 0 29px 12px;
  }

  .steps-label {
    text-align: center;
    float: none;
    max-width: none;
    padding: 0 0 37px;
    display: block;
  }

  .steps-wrap {
    padding: 20px 0;
    overflow: visible;
  }

  .steps-list {
    margin: 0;
  }

  .steps-list li:after {
    margin: 0 -31px 4px 0;
    top: auto;
    bottom: 100%;
    transform: scaleY(-1);
  }

  .step-item {
    text-align: center;
  }

  .steps-list li .step-item {
    padding: 0 12px;
  }

  .step-img {
    float: none;
    text-align: center;
    min-height: 47px;
    padding: 0 0 10px;
  }

  .call {
    padding: 0 100px;
    font-size: 19px;
    line-height: 24px;
  }

  .footer-holder {
    padding: 16px 19px 5px;
  }

  .footer-section {
    padding: 11px 0 16px;
  }

  .footer-left {
    width: 65%;
  }

  .footer-right, .footer-section:first-child .footer-right {
    float: none;
    width: auto;
    margin-left: 0;
  }

  .contacts-list {
    float: none;
    width: 100%;
    padding: 0 0 4px;
  }

  .ordinfo-text {
    float: none;
    width: 100%;
  }

  .contacts-list li {
    padding: 0 5px 9px 30px;
  }

  .back-to-top {
    top: 12px;
  }

  .copyright {
    padding: 10px 0 0;
    display: block;
  }
}

@media only screen and (width <= 639px) {
  .delivery-post {
    text-align: center;
    padding: 7px 15px 15px;
  }

  .delivery-post .deliver-holder {
    margin: 0 0 8px;
    padding: 0 0 10px;
  }

  .delivery-post .delivery-label {
    padding: 0;
  }

  .delivery-note {
    margin: 0;
  }

  .work-steps {
    padding: 16px 15px;
  }

  .steps {
    padding: 0 0 7px;
  }

  .steps-label {
    padding: 0 0 20px;
  }

  .steps-wrap {
    width: 218px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .steps-list {
    margin: 0;
  }

  .steps-list li {
    width: auto;
    padding: 0 0 23px;
    display: block;
  }

  .steps-list li:after {
    margin: 0 0 9px;
    top: auto;
    bottom: 100%;
    right: -40px;
    transform: rotate(83deg)scaleY(-1);
  }

  .steps-list li:nth-child(odd):after {
    margin: 0 0 5px;
    left: -52px;
    right: auto;
    transform: rotate(-83deg)scaleY(-1)scaleX(-1);
  }

  .step-item {
    text-align: left;
  }

  .steps-list li .step-item {
    padding: 0;
  }

  .step-img {
    float: left;
    text-align: left;
    min-height: 0;
    padding: 0 10px 0 0;
  }

  .step-description {
    padding: 6px 5px 0 0;
  }

  .call {
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
  }

  .call .call-title {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 27px;
    display: block;
    position: relative;
  }

  .footer-holder {
    padding: 5px 15px;
  }

  .footer-section {
    padding: 15px 0 14px;
  }

  .footer-left {
    float: none;
    width: auto;
  }

  .footer-right {
    float: none;
    width: auto;
    margin-left: 0;
  }

  .contacts-list {
    width: auto;
    padding: 0 38px 4px 0;
  }

  .contacts-list li {
    padding: 0 5px 9px 30px;
  }

  .footer-bottom {
    padding: 20px 0 0;
  }

  .footer-section > * {
    text-align: left;
    display: block;
  }

  .copyright {
    padding: 19px 0 0;
    display: block;
  }
}

@media only screen and (width <= 319px) {
  .call {
    font-size: 14px;
    line-height: 18px;
  }

  .footer-holder {
    padding: 13px 3% 16px;
  }

  .footer-section:first-child .footer-left {
    text-align: center;
    width: auto;
  }

  .footer-right {
    text-align: center;
  }

  .contacts-list {
    text-align: left;
    width: auto;
    padding: 0 0 4px;
    display: inline-block;
  }

  .contacts-phone {
    font-size: 18px;
  }

  .footer-section:first-child {
    padding: 15px 0 85px;
  }

  .footer-section:last-child, .footer-section > * {
    text-align: center;
  }

  .footer-section address {
    font-size: 12px;
    line-height: 16px;
  }

  .back-to-top {
    margin-right: -31px;
    top: auto;
    bottom: 12px;
    right: 50%;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 10px;
  }

  .copyright {
    padding-top: 10px;
  }
}

#pop-messages ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#pop-messages {
  z-index: 1000;
  position: fixed;
  bottom: 0;
  left: 0;
}

#pop-messages li {
  color: #fff;
  text-align: center;
  background: #000c;
  border: 1px solid #fff;
  width: 200px;
  margin-bottom: 5px;
  padding: 15px 20px;
  font: 16px / 20px arial, sans-serif;
  display: none;
  box-shadow: 0 0 5px -1px #000;
}

.close-msg {
  cursor: pointer;
  background: url("close-msg.a45db788.webp") 1px 1px no-repeat;
  border: 1px solid #fff;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
}

.calllback-mobile {
  display: none;
}

@media only screen and (width <= 979px) {
  .calllback-mobile {
    display: block;
  }

  #rc-connect, #pop-messages {
    display: none !important;
  }
}

.formError, label.error {
  color: red;
  width: 250px;
  margin-bottom: 10px;
  font-size: 10px;
  display: block;
}

.fieldWithErrors {
  display: inline;
}

#errorExplanation {
  background-color: #fcc;
  border: 1px solid #c66;
  width: 400px;
  margin: 5px;
  padding: 5px;
}

#errorExplanation h2 {
  text-align: left;
  color: #fff;
  background-color: #c00;
  margin: 0;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  font-weight: bold;
  display: none;
}

#errorExplanation p {
  color: #333;
  margin: 5px;
  padding: 0;
  font-weight: 900;
}

#errorExplanation ul {
  margin: 10px 0 0;
  padding: 0 0 0 30px;
}

#errorExplanation ul li {
  font-size: 12px;
  list-style: disc;
}

.fieldWithErrors input, input.error {
  background: #ffbcbc;
  border: 2px solid #c24949;
  box-shadow: inset 0 0 16px #ff6346;
}

#flash_notice, #flash_error {
  color: #000;
  width: 70%;
  margin: 10px 0;
  padding: 5px 8px;
}

#flash_notice {
  background-color: #cfc;
  border: 1px solid #6c6;
}

#flash_error {
  background-color: #fcc;
  border: 1px solid #c66;
}

#flash_error ul {
  padding-left: 30px;
}

.confident-link {
  cursor: pointer;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 12px;
  text-decoration: underline;
}

.confident-link:hover {
  text-decoration: none;
}

.hidden-conf {
  display: none;
}

.conf-overlay {
  z-index: 9999;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  width: 100%;
  height: 100%;
  filter: alpha(opacity= 90);
  -khtml-opacity: .9;
  opacity: .9;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
}

.conf-info {
  cursor: default;
  color: #000;
  z-index: 9999;
  text-align: left;
  background: #fff;
  border-radius: 6px;
  max-width: 800px;
  margin: 0 0 0 -420px;
  padding: 30px;
  position: fixed;
  top: 8%;
  left: 50%;
}

.conf-info .conf-head {
  margin: 0 0 16px;
  font: 30px / 30px arial, sans-serif;
}

.conf-info h5 {
  margin: 16px 0 6px;
  font: bold 18px / 18px arial, sans-serif;
}

.conf-info p {
  margin: 0 0 8px;
  font: 13px / 15px arial, sans-serif;
}

body.loading {
  height: 100%;
  overflow: hidden;
}

#loading {
  z-index: 9999;
  text-align: center;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.loading #loading {
  display: block;
}

.loading-image {
  z-index: 99999;
  margin: 0 0 0 -32px;
  position: absolute;
  top: 20%;
  left: 50%;
}

.suggestions-wrapper {
  display: none !important;
}

@media only screen and (width <= 1002px) {
  .conf-info {
    max-width: 600px;
    margin: 0 0 0 -300px;
    padding: 20px;
  }

  .conf-info h5 {
    margin: 16px 0 6px;
    font: bold 16px / 16px arial, sans-serif;
  }

  #rh-snippet, #rc-connect {
    display: none !important;
  }
}

@media only screen and (width <= 768px) {
  .conf-info {
    max-width: 500px;
    margin: 0 0 0 -250px;
  }
}

@media only screen and (width <= 640px) {
  .conf-info {
    max-width: 400px;
    margin: 0 0 0 -200px;
  }
}

@media only screen and (width <= 480px) {
  .conf-info {
    max-width: 280px;
    margin: 0 0 0 -140px;
  }
}

.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset, .rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset:after, .rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset.rc-reset:before {
  vertical-align: baseline;
  color: #000;
  text-transform: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  box-sizing: content-box;
  visibility: visible;
  background: none;
  border: 0;
  border-radius: 0;
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  position: relative;
  inset: auto;
}

a.rc-reset, span.rc-reset {
  width: auto;
  display: inline;
}

div.rc-reset {
  float: none;
  display: block;
}

.intl-tel-input .ad {
  background-position: -16px 0;
}

.intl-tel-input .ae {
  background-position: -32px 0;
}

.intl-tel-input .af {
  background-position: -48px 0;
}

.intl-tel-input .ag {
  background-position: -64px 0;
}

.intl-tel-input .ai {
  background-position: -80px 0;
}

.intl-tel-input .al {
  background-position: -96px 0;
}

.intl-tel-input .am {
  background-position: -112px 0;
}

.intl-tel-input .ao {
  background-position: -128px 0;
}

.intl-tel-input .ar {
  background-position: -144px 0;
}

.intl-tel-input .as {
  background-position: -160px 0;
}

.intl-tel-input .at {
  background-position: -176px 0;
}

.intl-tel-input .au {
  background-position: -192px 0;
}

.intl-tel-input .aw {
  background-position: -208px 0;
}

.intl-tel-input .az {
  background-position: -224px 0;
}

.intl-tel-input .ba {
  background-position: -240px 0;
}

.intl-tel-input .bb {
  background-position: 0 -11px;
}

.intl-tel-input .bd {
  background-position: -16px -11px;
}

.intl-tel-input .be {
  background-position: -32px -11px;
}

.intl-tel-input .bf {
  background-position: -48px -11px;
}

.intl-tel-input .bg {
  background-position: -64px -11px;
}

.intl-tel-input .bh {
  background-position: -80px -11px;
}

.intl-tel-input .bi {
  background-position: -96px -11px;
}

.intl-tel-input .bj {
  background-position: -112px -11px;
}

.intl-tel-input .bm {
  background-position: -128px -11px;
}

.intl-tel-input .bn {
  background-position: -144px -11px;
}

.intl-tel-input .bo {
  background-position: -160px -11px;
}

.intl-tel-input .br {
  background-position: -176px -11px;
}

.intl-tel-input .bs {
  background-position: -192px -11px;
}

.intl-tel-input .bt {
  background-position: -208px -11px;
}

.intl-tel-input .bw {
  background-position: -224px -11px;
}

.intl-tel-input .by {
  background-position: -240px -11px;
}

.intl-tel-input .bz {
  background-position: 0 -22px;
}

.intl-tel-input .ca {
  background-position: -16px -22px;
}

.intl-tel-input .cd {
  background-position: -32px -22px;
}

.intl-tel-input .cf {
  background-position: -48px -22px;
}

.intl-tel-input .cg {
  background-position: -64px -22px;
}

.intl-tel-input .ch {
  background-position: -80px -22px;
}

.intl-tel-input .ci {
  background-position: -96px -22px;
}

.intl-tel-input .ck {
  background-position: -112px -22px;
}

.intl-tel-input .cl {
  background-position: -128px -22px;
}

.intl-tel-input .cm {
  background-position: -144px -22px;
}

.intl-tel-input .cn {
  background-position: -160px -22px;
}

.intl-tel-input .co {
  background-position: -176px -22px;
}

.intl-tel-input .cr {
  background-position: -192px -22px;
}

.intl-tel-input .cu {
  background-position: -208px -22px;
}

.intl-tel-input .cv {
  background-position: -224px -22px;
}

.intl-tel-input .cw {
  background-position: -240px -22px;
}

.intl-tel-input .cy {
  background-position: 0 -33px;
}

.intl-tel-input .cz {
  background-position: -16px -33px;
}

.intl-tel-input .de {
  background-position: -32px -33px;
}

.intl-tel-input .dj {
  background-position: -48px -33px;
}

.intl-tel-input .dk {
  background-position: -64px -33px;
}

.intl-tel-input .dm {
  background-position: -80px -33px;
}

.intl-tel-input .do {
  background-position: -96px -33px;
}

.intl-tel-input .dz {
  background-position: -112px -33px;
}

.intl-tel-input .ec {
  background-position: -128px -33px;
}

.intl-tel-input .ee {
  background-position: -144px -33px;
}

.intl-tel-input .eg {
  background-position: -160px -33px;
}

.intl-tel-input .er {
  background-position: -176px -33px;
}

.intl-tel-input .es {
  background-position: -192px -33px;
}

.intl-tel-input .et {
  background-position: -208px -33px;
}

.intl-tel-input .fi {
  background-position: -224px -33px;
}

.intl-tel-input .fj {
  background-position: -240px -33px;
}

.intl-tel-input .fk {
  background-position: 0 -44px;
}

.intl-tel-input .fm {
  background-position: -16px -44px;
}

.intl-tel-input .fo {
  background-position: -32px -44px;
}

.intl-tel-input .fr, .intl-tel-input .bl, .intl-tel-input .mf {
  background-position: -48px -44px;
}

.intl-tel-input .ga {
  background-position: -64px -44px;
}

.intl-tel-input .gb {
  background-position: -80px -44px;
}

.intl-tel-input .gd {
  background-position: -96px -44px;
}

.intl-tel-input .ge {
  background-position: -112px -44px;
}

.intl-tel-input .gf {
  background-position: -128px -44px;
}

.intl-tel-input .gh {
  background-position: -144px -44px;
}

.intl-tel-input .gi {
  background-position: -160px -44px;
}

.intl-tel-input .gl {
  background-position: -176px -44px;
}

.intl-tel-input .gm {
  background-position: -192px -44px;
}

.intl-tel-input .gn {
  background-position: -208px -44px;
}

.intl-tel-input .gp {
  background-position: -224px -44px;
}

.intl-tel-input .gq {
  background-position: -240px -44px;
}

.intl-tel-input .gr {
  background-position: 0 -55px;
}

.intl-tel-input .gt {
  background-position: -16px -55px;
}

.intl-tel-input .gu {
  background-position: -32px -55px;
}

.intl-tel-input .gw {
  background-position: -48px -55px;
}

.intl-tel-input .gy {
  background-position: -64px -55px;
}

.intl-tel-input .hk {
  background-position: -80px -55px;
}

.intl-tel-input .hn {
  background-position: -96px -55px;
}

.intl-tel-input .hr {
  background-position: -112px -55px;
}

.intl-tel-input .ht {
  background-position: -128px -55px;
}

.intl-tel-input .hu {
  background-position: -144px -55px;
}

.intl-tel-input .id {
  background-position: -160px -55px;
}

.intl-tel-input .ie {
  background-position: -176px -55px;
}

.intl-tel-input .il {
  background-position: -192px -55px;
}

.intl-tel-input .in {
  background-position: -208px -55px;
}

.intl-tel-input .io {
  background-position: -224px -55px;
}

.intl-tel-input .iq {
  background-position: -240px -55px;
}

.intl-tel-input .ir {
  background-position: 0 -66px;
}

.intl-tel-input .is {
  background-position: -16px -66px;
}

.intl-tel-input .it {
  background-position: -32px -66px;
}

.intl-tel-input .jm {
  background-position: -48px -66px;
}

.intl-tel-input .jo {
  background-position: -64px -66px;
}

.intl-tel-input .jp {
  background-position: -80px -66px;
}

.intl-tel-input .ke {
  background-position: -96px -66px;
}

.intl-tel-input .kg {
  background-position: -112px -66px;
}

.intl-tel-input .kh {
  background-position: -128px -66px;
}

.intl-tel-input .ki {
  background-position: -144px -66px;
}

.intl-tel-input .km {
  background-position: -160px -66px;
}

.intl-tel-input .kn {
  background-position: -176px -66px;
}

.intl-tel-input .kp {
  background-position: -192px -66px;
}

.intl-tel-input .kr {
  background-position: -208px -66px;
}

.intl-tel-input .kw {
  background-position: -224px -66px;
}

.intl-tel-input .ky {
  background-position: -240px -66px;
}

.intl-tel-input .kz {
  background-position: 0 -77px;
}

.intl-tel-input .la {
  background-position: -16px -77px;
}

.intl-tel-input .lb {
  background-position: -32px -77px;
}

.intl-tel-input .lc {
  background-position: -48px -77px;
}

.intl-tel-input .li {
  background-position: -64px -77px;
}

.intl-tel-input .lk {
  background-position: -80px -77px;
}

.intl-tel-input .lr {
  background-position: -96px -77px;
}

.intl-tel-input .ls {
  background-position: -112px -77px;
}

.intl-tel-input .lt {
  background-position: -128px -77px;
}

.intl-tel-input .lu {
  background-position: -144px -77px;
}

.intl-tel-input .lv {
  background-position: -160px -77px;
}

.intl-tel-input .ly {
  background-position: -176px -77px;
}

.intl-tel-input .ma {
  background-position: -192px -77px;
}

.intl-tel-input .mc {
  background-position: -208px -77px;
}

.intl-tel-input .md {
  background-position: -224px -77px;
}

.intl-tel-input .me {
  background-position: -112px -154px;
  height: 12px;
}

.intl-tel-input .mg {
  background-position: 0 -88px;
}

.intl-tel-input .mh {
  background-position: -16px -88px;
}

.intl-tel-input .mk {
  background-position: -32px -88px;
}

.intl-tel-input .ml {
  background-position: -48px -88px;
}

.intl-tel-input .mm {
  background-position: -64px -88px;
}

.intl-tel-input .mn {
  background-position: -80px -88px;
}

.intl-tel-input .mo {
  background-position: -96px -88px;
}

.intl-tel-input .mp {
  background-position: -112px -88px;
}

.intl-tel-input .mq {
  background-position: -128px -88px;
}

.intl-tel-input .mr {
  background-position: -144px -88px;
}

.intl-tel-input .ms {
  background-position: -160px -88px;
}

.intl-tel-input .mt {
  background-position: -176px -88px;
}

.intl-tel-input .mu {
  background-position: -192px -88px;
}

.intl-tel-input .mv {
  background-position: -208px -88px;
}

.intl-tel-input .mw {
  background-position: -224px -88px;
}

.intl-tel-input .mx {
  background-position: -240px -88px;
}

.intl-tel-input .my {
  background-position: 0 -99px;
}

.intl-tel-input .mz {
  background-position: -16px -99px;
}

.intl-tel-input .na {
  background-position: -32px -99px;
}

.intl-tel-input .nc {
  background-position: -48px -99px;
}

.intl-tel-input .ne {
  background-position: -64px -99px;
}

.intl-tel-input .nf {
  background-position: -80px -99px;
}

.intl-tel-input .ng {
  background-position: -96px -99px;
}

.intl-tel-input .ni {
  background-position: -112px -99px;
}

.intl-tel-input .nl, .intl-tel-input .bq {
  background-position: -128px -99px;
}

.intl-tel-input .no {
  background-position: -144px -99px;
}

.intl-tel-input .np {
  background-position: -160px -99px;
}

.intl-tel-input .nr {
  background-position: -176px -99px;
}

.intl-tel-input .nu {
  background-position: -192px -99px;
}

.intl-tel-input .nz {
  background-position: -208px -99px;
}

.intl-tel-input .om {
  background-position: -224px -99px;
}

.intl-tel-input .pa {
  background-position: -240px -99px;
}

.intl-tel-input .pe {
  background-position: 0 -110px;
}

.intl-tel-input .pf {
  background-position: -16px -110px;
}

.intl-tel-input .pg {
  background-position: -32px -110px;
}

.intl-tel-input .ph {
  background-position: -48px -110px;
}

.intl-tel-input .pk {
  background-position: -64px -110px;
}

.intl-tel-input .pl {
  background-position: -80px -110px;
}

.intl-tel-input .pm {
  background-position: -96px -110px;
}

.intl-tel-input .pr {
  background-position: -112px -110px;
}

.intl-tel-input .ps {
  background-position: -128px -110px;
}

.intl-tel-input .pt {
  background-position: -144px -110px;
}

.intl-tel-input .pw {
  background-position: -160px -110px;
}

.intl-tel-input .py {
  background-position: -176px -110px;
}

.intl-tel-input .qa {
  background-position: -192px -110px;
}

.intl-tel-input .re {
  background-position: -208px -110px;
}

.intl-tel-input .ro {
  background-position: -224px -110px;
}

.intl-tel-input .rs {
  background-position: -240px -110px;
}

.intl-tel-input .ru {
  background-position: 0 -121px;
}

.intl-tel-input .rw {
  background-position: -16px -121px;
}

.intl-tel-input .sa {
  background-position: -32px -121px;
}

.intl-tel-input .sb {
  background-position: -48px -121px;
}

.intl-tel-input .sc {
  background-position: -64px -121px;
}

.intl-tel-input .sd {
  background-position: -80px -121px;
}

.intl-tel-input .se {
  background-position: -96px -121px;
}

.intl-tel-input .sg {
  background-position: -112px -121px;
}

.intl-tel-input .sh {
  background-position: -128px -121px;
}

.intl-tel-input .si {
  background-position: -144px -121px;
}

.intl-tel-input .sk {
  background-position: -160px -121px;
}

.intl-tel-input .sl {
  background-position: -176px -121px;
}

.intl-tel-input .sm {
  background-position: -192px -121px;
}

.intl-tel-input .sn {
  background-position: -208px -121px;
}

.intl-tel-input .so {
  background-position: -224px -121px;
}

.intl-tel-input .sr {
  background-position: -240px -121px;
}

.intl-tel-input .ss {
  background-position: 0 -132px;
}

.intl-tel-input .st {
  background-position: -16px -132px;
}

.intl-tel-input .sv {
  background-position: -32px -132px;
}

.intl-tel-input .sx {
  background-position: -48px -132px;
}

.intl-tel-input .sy {
  background-position: -64px -132px;
}

.intl-tel-input .sz {
  background-position: -80px -132px;
}

.intl-tel-input .tc {
  background-position: -96px -132px;
}

.intl-tel-input .td {
  background-position: -112px -132px;
}

.intl-tel-input .tg {
  background-position: -128px -132px;
}

.intl-tel-input .th {
  background-position: -144px -132px;
}

.intl-tel-input .tj {
  background-position: -160px -132px;
}

.intl-tel-input .tk {
  background-position: -176px -132px;
}

.intl-tel-input .tl {
  background-position: -192px -132px;
}

.intl-tel-input .tm {
  background-position: -208px -132px;
}

.intl-tel-input .tn {
  background-position: -224px -132px;
}

.intl-tel-input .to {
  background-position: -240px -132px;
}

.intl-tel-input .tr {
  background-position: 0 -143px;
}

.intl-tel-input .tt {
  background-position: -16px -143px;
}

.intl-tel-input .tv {
  background-position: -32px -143px;
}

.intl-tel-input .tw {
  background-position: -48px -143px;
}

.intl-tel-input .tz {
  background-position: -64px -143px;
}

.intl-tel-input .ua {
  background-position: -80px -143px;
}

.intl-tel-input .ug {
  background-position: -96px -143px;
}

.intl-tel-input .us {
  background-position: -112px -143px;
}

.intl-tel-input .uy {
  background-position: -128px -143px;
}

.intl-tel-input .uz {
  background-position: -144px -143px;
}

.intl-tel-input .va {
  background-position: -160px -143px;
}

.intl-tel-input .vc {
  background-position: -176px -143px;
}

.intl-tel-input .ve {
  background-position: -192px -143px;
}

.intl-tel-input .vg {
  background-position: -208px -143px;
}

.intl-tel-input .vi {
  background-position: -224px -143px;
}

.intl-tel-input .vn {
  background-position: -240px -143px;
}

.intl-tel-input .vu {
  background-position: 0 -154px;
}

.intl-tel-input .wf {
  background-position: -16px -154px;
}

.intl-tel-input .ws {
  background-position: -32px -154px;
}

.intl-tel-input .ye {
  background-position: -48px -154px;
}

.intl-tel-input .za {
  background-position: -64px -154px;
}

.intl-tel-input .zm {
  background-position: -80px -154px;
}

.intl-tel-input .zw {
  background-position: -96px -154px;
}

.intl-tel-input {
  display: inline-block;
  position: relative;
}

.intl-tel-input * {
  box-sizing: border-box;
}

.intl-tel-input .hide {
  display: none;
}

.intl-tel-input .v-hide {
  visibility: hidden;
}

.intl-tel-input input, .intl-tel-input input[type="text"], .intl-tel-input input[type="tel"] {
  z-index: 0;
  margin-left: 0;
  padding-left: 44px;
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.intl-tel-input .flag-dropdown {
  padding: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.intl-tel-input .flag-dropdown:hover {
  cursor: pointer;
}

.intl-tel-input .flag-dropdown:hover .selected-flag {
  background-color: #0000000d;
}

.intl-tel-input input[disabled] + .flag-dropdown:hover {
  cursor: default;
}

.intl-tel-input input[disabled] + .flag-dropdown:hover .selected-flag {
  background-color: #0000;
}

.intl-tel-input .selected-flag {
  z-index: 1;
  width: 38px;
  height: 100%;
  padding: 0 0 0 8px;
  position: relative;
}

.intl-tel-input .selected-flag .flag {
  margin-top: -5px;
  position: absolute;
  top: 50%;
}

.intl-tel-input .selected-flag .arrow {
  border-top: 4px solid #555;
  border-left: 3px solid #0000;
  border-right: 3px solid #0000;
  width: 0;
  height: 0;
  margin-top: -2px;
  position: relative;
  top: 50%;
  left: 20px;
}

.intl-tel-input .selected-flag .arrow.up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.intl-tel-input .country-list {
  z-index: 2;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 430px;
  max-height: 200px;
  margin: 0 0 0 -1px;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-y: scroll;
  box-shadow: 1px 1px 4px #0003;
}

.intl-tel-input .country-list .flag {
  display: inline-block;
}

.intl-tel-input .country-list .divider {
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.intl-tel-input .country-list .country {
  padding: 5px 10px;
}

.intl-tel-input .country-list .country .dial-code {
  color: #999;
}

.intl-tel-input .country-list .country.highlight {
  background-color: #0000000d;
}

.intl-tel-input .country-list .flag, .intl-tel-input .country-list .country-name {
  margin-right: 6px;
}

div#rc-connect {
  display: none;
  position: static;
}

#rc-phone-form {
  overflow: visible !important;
}

#rc-phone {
  z-index: 1000;
  width: 62px;
  height: 62px;
  margin: 0;
  position: fixed;
  bottom: 10px;
  right: 5px;
}

#rc-phone-back {
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: auto;
  display: none;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 16px #00000073;
}

#rc-phone.rc-inactive #rc-phone-back {
  display: block;
}

#rc-phone-form {
  background-color: #363f43;
  border-radius: 25px;
  width: 48px;
  height: 38px;
  padding-top: 12px;
  position: absolute;
  top: 6px;
  right: 6px;
  box-shadow: 0 0 16px #00000073;
}

#rc-phone-form-wrap {
  z-index: 10;
  width: 330px;
  padding-left: 62px;
  position: relative;
}

#rc-recall {
  color: #fff;
  float: left;
  width: 80px;
  margin-right: 19px;
  font: .8em / 14px arial;
}

#rc-phone-field {
  float: left;
  background-color: #eee;
  border-radius: 12px;
  width: 150px;
  height: 22px;
  margin-top: 2px;
  padding: 2px 9px 0;
  position: relative;
  box-shadow: inset 0 0 2px #00000080;
}

.intl-tel-input ul.country-list {
  width: 210px;
  font-family: arial;
  font-size: 13px;
  bottom: 25px;
}

.intl-tel-input input {
  padding-left: 34px !important;
}

#rc-phone-input {
  color: #b2b2b2;
  border: 0;
  width: 100%;
  height: 19px;
  margin: 0;
  padding: 0;
  font: .783em / 12px arial;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

#rc-phone-input:focus {
  color: #4c4c4c;
}

#rc-phone-button:hover {
  background-color: #3fae2a;
  background-position: -22px 0;
}

#rc-phone-button.rc-pressed {
  background-position: -22px 0;
}

#rc-phone-form-close:hover {
  background-position: -44px 0;
}

#rc-phone-form-close.closed {
  width: 0;
  height: 0;
}

#rc-phone-form:hover #rc-phone-form-close {
  display: block;
}

#rc-copyright {
  z-index: -1;
  background: #fafafa80;
  border: 1px solid #64646440;
  border-radius: 0 0 2px 2px;
  padding: 0 4px;
  position: absolute;
  bottom: -14px;
  right: 41px;
}

#rc-copyright-wrap {
  color: #555;
  cursor: pointer;
  height: 12px;
  padding: 0 2px;
  font-family: arial;
  font-size: .65em;
  line-height: .65em;
  text-decoration: none;
}

#rc-copyright-wrap:hover {
  text-decoration: underline;
}

#rc-copyright-red {
  color: #b3282d;
  font-size: 1em;
}

#rc-overlay {
  opacity: .6;
  filter: progid:DXImageTransform. Microsoft. Alpha(opacity= 60);
  z-index: 998;
  background: #000;
  display: none;
  position: absolute;
  inset: 0;
}

#rc-popup {
  z-index: 999;
  background: #ebecec;
  width: 460px;
  margin: 0 auto;
  padding-top: 50px;
  display: none;
  position: fixed;
  top: 200px;
  left: 0;
  right: 0;
}

#rc-popup-close:hover {
  background-position: 0 -47px;
}

#rc-popup-text {
  text-align: center;
  color: #7b8083;
  padding: 0 90px 35px;
  font: 1.51em / 1.21em arial;
}

#rc-popup-form {
  height: 83px;
  padding-left: 82px;
}

#rc-popup-form-field {
  float: left;
  background: #fff;
  border-radius: 20px;
  width: 200px;
  height: 29px;
  padding: 12px 21px 0;
  position: relative;
}

#rc-connect div.rc-call-progress {
  width: 0;
  transition: width .8s linear;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

#rc-connect div.rc-timer {
  float: left;
}

#rc-connect #rc-popup-form-field div.rc-call-progress {
  max-width: 242px;
  height: 41px;
}

#rc-connect #rc-popup-form-field div.rc-progress-drag {
  border-radius: 20px;
  width: 242px;
  height: 41px;
}

#rc-connect #rc-popup-form div.rc-timer {
  color: gray;
  margin-left: 13px;
  padding-top: 13px;
  font: .95em / 1em arial;
}

#rc-connect #rc-phone-field div.rc-call-progress {
  max-width: 169px;
  height: 24px;
}

#rc-connect #rc-phone-field div.rc-progress-drag {
  border-radius: 12px;
  width: 169px;
  height: 24px;
}

#rc-connect #rc-phone-form div.rc-timer {
  color: #fff;
  margin-left: 6px;
  padding-top: 8px;
  font: .7em / 1.1em arial;
}

#rc-popup-form-input {
  color: #a0a0a0;
  background: #fff;
  border: 0;
  width: 160px;
  margin: 0;
  padding: 0;
  font: 1.22em arial;
}

#rc-popup-form-input:focus {
  color: #4c4c4c;
}

#rc-popup-form-button:hover {
  background-position: -64px -22px;
}

#rc-popup-form-button.rc-pressed {
  background-position: -104px -22px;
}

#rc-popup-copyright {
  text-align: center;
  padding-bottom: 4px;
  font-family: arial;
}

#rc-popup-copyright-wrap {
  color: #a0a0a0;
  font-size: .7em;
  text-decoration: none;
  display: inline-block;
}

#rc-popup-copyright-wrap:hover {
  text-decoration: underline;
}

#rc-popup-copyright-red {
  color: #b3282d;
  font-size: 1em;
}

.rc-blur {
  filter: progid:DXImageTransform. Microsoft. Blur(PixelRadius= "3");
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}

.country-icon {
  width: 22px;
  position: absolute;
  top: -2px;
  left: 5px;
}

.country-icon img {
  width: 100%;
  height: auto;
}

.rc-button-widget-wrap {
  font-size: 14px;
  position: relative;
}

.rc-button-widget-container {
  color: #363f43;
  cursor: pointer;
  font-family: arial;
  position: relative;
}

.rc-button-widget-small .rc-button-widget-container {
  width: 130px;
  height: 38px;
  font-size: .715em;
}

.rc-button-widget-medium .rc-button-widget-container {
  width: 170px;
  height: 48px;
  font-size: .923em;
}

.rc-button-widget-large .rc-button-widget-container {
  width: 210px;
  height: 58px;
  font-size: 1em;
}

.rc-button-widget-rounded.rc-button-widget-small .rc-button-widget-container {
  border-radius: 20px;
}

.rc-button-widget-rounded.rc-button-widget-medium .rc-button-widget-container {
  border-radius: 25px;
}

.rc-button-widget-rounded.rc-button-widget-large .rc-button-widget-container {
  border-radius: 30px;
}

.rc-button-widget-small .rc-button-widget-icon {
  background-position: 2px 1px;
  width: 26px;
  height: 26px;
  top: 6px;
  left: 6px;
}

.rc-button-widget-medium .rc-button-widget-icon {
  background-position: 2px -33px;
  width: 34px;
  height: 34px;
  top: 7px;
  left: 8px;
}

.rc-button-widget-large .rc-button-widget-icon {
  background-position: 2px -73px;
  width: 44px;
  height: 44px;
  top: 7px;
  left: 8px;
}

.rc-button-widget-small .rc-button-widget-container:hover .rc-button-widget-icon {
  background-position: -45px 8px;
  width: 40px;
  height: 40px;
  top: -1px;
  left: -1px;
}

.rc-button-widget-medium .rc-button-widget-container:hover .rc-button-widget-icon {
  background-position: -46px -25px;
  width: 50px;
  height: 50px;
  top: -1px;
  left: -1px;
}

.rc-button-widget-large .rc-button-widget-container:hover .rc-button-widget-icon {
  background-position: -47px -65px;
  width: 60px;
  height: 60px;
  top: -1px;
  left: -1px;
}

.rc-button-widget-small.rc-button-widget-rectangle .rc-button-widget-container:hover {
  border-radius: 20px 0 0 20px;
}

.rc-button-widget-medium.rc-button-widget-rectangle .rc-button-widget-container:hover {
  border-radius: 25px 0 0 25px;
}

.rc-button-widget-large.rc-button-widget-rectangle .rc-button-widget-container:hover {
  border-radius: 30px 0 0 30px;
}

.rc-button-widget-small .rc-button-widget-text {
  padding: 8px 13px 0 43px;
}

.rc-button-widget-medium .rc-button-widget-text {
  padding: 10px 23px 0 56px;
}

.rc-button-widget-large .rc-button-widget-text {
  padding: 13px 26px 0 72px;
}

#rc-phone.rc-phone-absolute {
  background: none;
  width: 375px;
  position: absolute;
  inset: auto;
}

#rc-phone.rc-phone-absolute #rc-phone-form {
  width: 375px;
  display: block;
}

#rc-phone.rc-phone-absolute #rc-phone-icon #rc-phone-form-close, #rc-phone.rc-phone-absolute #rc-phone-icon:hover #rc-phone-form-close {
  display: none !important;
}
/*# sourceMappingURL=index.6196a2d8.css.map */
