@keyframes form-appear {
  0% {
    transform: translateY(2000px);
  }
  30% {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pop-up-appear {
  0% {
    transform: translateY(-2000px);
  }
  30% {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pop-up-appear-before {
  0% {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes pop-up-appear-after {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.boldText {
  font-weight: 700;
}
.italicText {
  font-style: oblique;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0 !important;
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
}
a,
li {
  text-decoration: none;
}
a {
  cursor: pointer;
  color: inherit;
}
.new_price_cur,
.new_price_val {
  padding: 0;
}
ol.list-1,
ul.list-1 {
  list-style: none;
  margin: 0;
}
ol.list-1 {
  counter-reset: section;
}
ol.list-1 li {
  counter-increment: section;
}
ol.list-1 li::before {
  content: counters(section, '.') '. ';
  margin-right: 5px;
  margin-left: -24px;
  text-align: right;
}
.list-0 {
  display: inline-block;
  margin-left: 24px;
}
ul.list-1 li::before {
  content: '•';
  margin-right: 14px;
  margin-left: -22px;
  text-align: right;
}
ul.list-1 ol,
ul.list-2 div ol {
  counter-reset: listStyle;
}
ul.list-1 ol li,
ul.list-2 div ol li {
  counter-increment: listStyle;
}
ul.list-1 ol li::before,
ul.list-2 div ol li::before {
  content: counter(listStyle, lower-alpha);
}
ol li.listCircle,
ul li.listCircle {
  list-style-type: none;
}
ol li.listCircle::before,
ul li.listCircle::before {
  content: '∘';
  margin-right: 14px;
  margin-left: -22px;
  text-align: right;
}
.imgBox__wrapper {
  margin: 0 auto;
  width: 100%;
  height: fit-content;padding-top:4px;
  max-width: 100px;
}
.imgBox__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ctContainer {
  margin: 0 auto;
  width: 100%;
  background: 0 0;
}
.ctContent {
  max-width: 1025px;
  margin: 0 auto;
  box-sizing: border-box;
}
.ctContent,
.ctContentFluid {
  width: 100%;
  background: #fff;
}
.menHealthCom {
  display: flex;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
}
.menHealthCom__wrapper {
  display: flex;
  padding: 10px 55px 30px;
  width: 100%;
}
.menHealthCom__avatarWrapper {
  margin-right: 21px;
  width: 100%;
  height: 78px;
  max-width: 78px;
}
.menHealthCom__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menHealthCom__info {
  width: 100%;
}
.menHealthCom__comment,
.menHealthCom__name {
  margin: 0;
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 140%;
  word-break: break-word;
  color: #000;
}
.menHealthCom__comment {
  font-weight: 400;
}
.menHealthCom:first-child {
  padding-top: 0;
}
.menHealthCom:last-child {
  padding-bottom: 70px;
}
.docInfoDoors {
  padding: 20px;
  width: 100%;
}
.docInfoDoors__titleWrapper {
  border-radius: 10px;
  padding: 10px;
  background-color: #3a4752;
}
.docInfoDoors__title {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 22px;
  word-break: break-word;
  text-align: center;
  color: #fff;
}
.docInfoDoors__wrapper {
  width: 100%;
}
.docInfoDoors__wrapper--hide {
  display: none;
}
.docInfoDoors__doorsWrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.docInfoDoors__box {
  position: relative;
  z-index: 0;
  padding: 20px;
}
.docInfoDoors__prizeWrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 15px;
  width: 100%;
  height: 100px;
  max-width: 150px;
  box-shadow: 0 1px 2px 2px #7f7878;
}
.docInfoDoors__prize {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 30px; text-align:center;
  word-break: break-word;
  color: red;
}
.docInfoDoors__imageWrapper {
  border: 2px solid #000;
  width: 100%;
  height: fit-content;
  max-width: 190px;
  perspective: 500px;
}
.docInfoDoors__doorsImage {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 2px #191919;
  object-fit: contain;
  transform-origin: 0 0;
  transition: 0.5s transform linear;
  cursor: pointer;
}
.docInfoDoors__doorsImage:hover {
  transform: rotateY(-30deg);
}
.docInfoDoors__doorsImage--open {
  transform: rotateY(-90deg) !important;
}
.docInfoDoors__popUpWrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.docInfoDoors__popUpWrapper--show {
  display: flex;
}
.docInfoDoors__hiddenWrapper {
  width: 100%;
  max-width: 500px;
}
.docInfoDoors__popUpCloser {
  display: block;
  margin-left: auto;
  width: 100%;
  height: fit-content;
  max-width: 30px;
  cursor: pointer;
}
.docInfoDoors__closeImage {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px #fff;
  object-fit: contain;
}
.docInfoDoors__popUpContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
  padding: 50px 20px 20px;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
}
.docInfoDoors__popUpTitle {
  padding: 10px 0;
  font-size: 40px;
  text-align: center;
}
.docInfoDoors__popUpLink,
.docInfoDoors__popUpText,
.docInfoDoors__popUpTitle {
  font-family: sans-serif;
  font-weight: 400;
  word-break: break-word;
}
.docInfoDoors__popUpText {
  padding: 5px 0;
  font-size: 16px;
  text-align: center;
}
.docInfoDoors__popUpLink {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
  border-radius: 5px;
  padding: 10px 30px;
  min-width: 180px;
  font-size: 20px;
  color: #fff;
  background-color: #71c341;
  cursor: pointer;
}
.docInfoDoors__offerWrapper {
  width: 100%;
  height: fit-content;
  max-width: 220px;
}
.docInfoDoors__offerImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.docInfoDoors__form {
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px auto 40px;
  border: 2.5px dashed #ddd;
  padding: 20px 20px 5px;
  max-width: 465px;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  animation: 0.6s ease 0s normal none 1 running form-appear;
}
.docInfoDoors__formImgWrapper {
  position: relative;
  width: 100%;
  height: fit-content;
  max-width: 260px;
}
.docInfoDoors__formImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.docInfoDoors__formStock {
  position: absolute;
  right: -40px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 117px;
  height: 117px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  word-break: break-word;
  text-align: center;
  color: #fff;
  background: url(../images/reduslimPriceBox.png) no-repeat center center/cover;
}
.docInfoDoors__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100%;
}
.docInfoDoors__timer .countdownTimerBox {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  max-width: 10%;
}
.docInfoDoors__timer .countdownTimerBox .minutes,
.docInfoDoors__timer .countdownTimerBox .seconds {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 32px;
  word-break: break-word;
  transition: 0.2s;
}
.docInfoDoors__timer .countdownTimerBox .minutesBox,
.docInfoDoors__timer .countdownTimerBox .secondsBox {
  display: flex;
}
.docInfoDoors__timer .countdownTimerBox .timeBg {
  display: block;
  margin: 0;
  padding: 0;
  width: unset;
  height: unset;
  line-height: 32px;
  word-break: break-word;
  text-align: center;
  color: red;
  background: #fff;
}
.docInfoDoors__timer .countdownTimerBox .timeBg:nth-child(2n) {
  margin-right: 0;
}
.docInfoDoors__timer .countdownTimerBox .ending {
  display: block;
  margin: 0 5px;
  padding: 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 32px;
  word-break: break-word;
  text-align: center;
  color: #000;
  transition: 0.2s;
}
.docInfoDoors__formTitle {
  margin: 10px 0 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  word-break: break-word;
  color: #222;
}
.docInfoDoors__formSubTitle,
.docInfoDoors__formTitle--red {
  font-family: sans-serif;
  font-weight: 700;
  color: #ca2d2d;
}
.docInfoDoors__formSubTitle {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  color: #222;
}
.docInfoDoors__formBtn,
.docInfoDoors__formName,
.docInfoDoors__formPhone {
  display: flex;
  outline: 0;
  border-radius: 35px;
  width: 100%;
  height: auto;
  max-width: 100%;
  box-shadow: none;
  box-sizing: border-box;
  font-style: normal;
  word-break: break-word;
}
.docInfoDoors__formName,
.docInfoDoors__formPhone {
  flex-direction: column;
  align-items: flex-start;
  margin: 8px 0;
  border: 2.5px solid #ddd;
  padding: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  background: #f2f2f2;
  transition: 0.25s;
}
.docInfoDoors__formBtn {
  align-items: center;
  justify-content: center;
  margin: 15px 0 0;
  border: 0;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #388e3c;
  cursor: pointer;
}
.docInfoDoors__formBotText,
.docInfoDoors__textFooter {
  font-weight: 400;
  word-break: break-word;
  text-align: center;
}
.docInfoDoors__textFooter {
  margin: 0;
  padding: 5px 0 0;
  font-family: sans-serif;
}
.docInfoDoors__formBotText {
  margin: 10px 0 0;
  font-family: sans-serif;
  font-size: 10px;
  line-height: 15px;
  color: #888;
}
.winPopupBgDocInfoDoors,
.winPopupDocInfoDoors {
  align-items: center;
  justify-content: center;
  width: 100%;
}
.winPopupBgDocInfoDoors {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: none;
  padding: 0 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.winPopupDocInfoDoors {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 70px 10px 20px;
  max-width: 400px;
  word-break: break-word;
  text-align: center;
  background: #fff 0 0;
  animation: 0.6s ease 0s normal none 1 running pop-up-appear;
}
.winPopupDocInfoDoors__iconWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 110px;
  max-height: 110px;
}
.winPopupDocInfoDoors__iconRound--white {
  position: absolute;
  left: 0;
  top: -123px;
  border: 0;
  border-radius: 50%;
  width: 100%;
  height: auto;
  background: #71c341;
  transition: opacity 1s ease 0s;
  animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}
.winPopupDocInfoDoors__iconWrapperClose {
  position: relative;
  width: 100%;
  height: 100%;
}
.winPopupDocInfoDoors__closeBtn {
  position: absolute;
  right: -45px;
  top: -107px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: #fff 0 0 10px 0;
  cursor: pointer;
}
.winPopupDocInfoDoors__text {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  word-break: break-word;
  color: #111;
}
.winPopupDocInfoDoors__text--title {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 40px;
}
.winPopupDocInfoDoors__btn {
  margin: 25px auto 0;
  border: 0;
  border-radius: 5px;
  padding: 10px 20%;
  font-family: sans-serif;
  font-weight: 400;
  font-size: 20px;
  word-break: break-word;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #fff;
  background-color: #71c341;
  cursor: pointer;
}
.winPopupDocInfoDoors__text--red {
  color: red;
}
.winPopupBgDocInfoDoorsShow {
  display: flex;
}
.winPopupBgDocInfoDoorsEdit {
  position: unset;
  display: flex;
  min-height: 50vh;
}
.docInfoDoorsFormShow {
  display: flex;
}
.erecsolNav,
.erecsolNav__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.erecsolNav {
  padding: 0 20px 1px 60px;
  width: 100%;
  background: #0095da;
}
.erecsolNav__menuBtn {
  display: none;
  cursor: pointer;
}
.erecsolNav__burger {
  width: 30px;
  height: 25px;
  fill: #fff;
}
.erecsolNav__nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-height: 54px;
  max-width: 700px;
}
.erecsolNav__nav ul li {
  display: flex;
  border-right: 1px solid #2483c5;
}
.erecsolNav__linkItems,
.erecsolNav__title {
  padding: 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 54px;
}
.erecsolNav__linkItems:hover {
  background: #1f82c9;
}
.erecsolNav a.erecsolNav__linkItems,
.erecsolNav a.erecsolNav__title {
  text-decoration: none;
  color: #fff;
}
.erecsolNav a.erecsolNav__title:hover {
  background: 0 0;
}
.erecsolNav__title {
  border-right: 1px solid #2483c5;
  font-size: 22px;
  word-break: break-word;
  text-transform: uppercase;
}
.iti {
  position: relative;
  width: 100%;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti input,
.iti input[type='tel'],
.iti input[type='text'] {
  position: relative;
  z-index: 0;
  padding-right: 36px;
}
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}
.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
[dir='rtl'] .iti__arrow {
  margin-right: 6px;
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}
.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0 0 0-1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}
.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  outline: 0;
}
.iti__dial-code {
  color: #999;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
  font-family: sans-serif;
  font-size: 15px;
}
[dir='rtl'] .iti__country-name,
[dir='rtl'] .iti__flag-box {
  margin-right: 0;
  margin-left: 6px;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type='tel'],
.iti--allow-dropdown input[type='text'],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type='tel'],
.iti--separate-dial-code input[type='text'] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}
[dir='rtl'] .iti--allow-dropdown input,
[dir='rtl'] .iti--allow-dropdown input[type='tel'],
[dir='rtl'] .iti--allow-dropdown input[type='text'],
[dir='rtl'] .iti--separate-dial-code input,
[dir='rtl'] .iti--separate-dial-code input[type='tel'],
[dir='rtl'] .iti--separate-dial-code input[type='text'] {
  padding-right: 52px;
  padding-left: 6px;
  margin-right: 0;
}
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}
[dir='rtl'] .iti--allow-dropdown .iti__flag-container,
[dir='rtl'] .iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}
.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
}
.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}
.iti--container:hover {
  cursor: pointer;
}
.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}
.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}
.iti-mobile .iti__country {
  padding: 10px;
  line-height: 1.5em;
}
.iti__flag {
  width: 20px;
}
.iti__flag.iti__be {
  width: 18px;
}
.iti__flag.iti__ch {
  width: 15px;
}
.iti__flag.iti__mc {
  width: 19px;
}
.iti__flag.iti__ne {
  width: 18px;
}
.iti__flag.iti__np {
  width: 13px;
}
.iti__flag.iti__va {
  width: 15px;
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0 0;
}
.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0;
}
.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0;
}
.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0;
}
.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0;
}
.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0;
}
.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0;
}
.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0;
}
.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0;
}
.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0;
}
.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0;
}
.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0;
}
.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0;
}
.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0;
}
.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0;
}
.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0;
}
.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0;
}
.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0;
}
.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0;
}
.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0;
}
.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0;
}
.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0;
}
.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0;
}
.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0;
}
.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0;
}
.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0;
}
.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0;
}
.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0;
}
.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0;
}
.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0;
}
.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0;
}
.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0;
}
.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0;
}
.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0;
}
.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0;
}
.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0;
}
.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0;
}
.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0;
}
.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0;
}
.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0;
}
.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0;
}
.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0;
}
.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0;
}
.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0;
}
.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0;
}
.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0;
}
.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0;
}
.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0;
}
.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0;
}
.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0;
}
.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0;
}
.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0;
}
.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0;
}
.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0;
}
.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0;
}
.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0;
}
.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0;
}
.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0;
}
.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0;
}
.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0;
}
.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0;
}
.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0;
}
.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0;
}
.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0;
}
.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0;
}
.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0;
}
.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0;
}
.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0;
}
.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0;
}
.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0;
}
.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0;
}
.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0;
}
.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0;
}
.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0;
}
.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0;
}
.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0;
}
.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0;
}
.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0;
}
.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0;
}
.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0;
}
.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0;
}
.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0;
}
.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0;
}
.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0;
}
.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0;
}
.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0;
}
.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0;
}
.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0;
}
.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0;
}
.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0;
}
.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0;
}
.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0;
}
.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0;
}
.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0;
}
.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0;
}
.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0;
}
.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0;
}
.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0;
}
.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0;
}
.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0;
}
.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0;
}
.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0;
}
.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0;
}
.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0;
}
.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0;
}
.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0;
}
.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0;
}
.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0;
}
.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0;
}
.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0;
}
.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0;
}
.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0;
}
.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0;
}
.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0;
}
.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0;
}
.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0;
}
.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0;
}
.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0;
}
.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0;
}
.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0;
}
.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0;
}
.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0;
}
.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0;
}
.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0;
}
.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0;
}
.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0;
}
.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0;
}
.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0;
}
.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0;
}
.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0;
}
.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0;
}
.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0;
}
.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0;
}
.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0;
}
.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0;
}
.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0;
}
.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0;
}
.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0;
}
.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0;
}
.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0;
}
.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0;
}
.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0;
}
.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0;
}
.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0;
}
.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0;
}
.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0;
}
.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0;
}
.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0;
}
.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0;
}
.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0;
}
.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0;
}
.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0;
}
.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0;
}
.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0;
}
.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0;
}
.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0;
}
.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0;
}
.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0;
}
.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0;
}
.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0;
}
.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0;
}
.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0;
}
.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0;
}
.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0;
}
.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0;
}
.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0;
}
.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0;
}
.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0;
}
.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0;
}
.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0;
}
.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0;
}
.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0;
}
.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0;
}
.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0;
}
.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0;
}
.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0;
}
.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0;
}
.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0;
}
.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0;
}
.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0;
}
.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0;
}
.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0;
}
.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0;
}
.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0;
}
.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0;
}
.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0;
}
.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0;
}
.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0;
}
.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0;
}
.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0;
}
.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0;
}
.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0;
}
.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0;
}
.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0;
}
.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0;
}
.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0;
}
.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0;
}
.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0;
}
.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0;
}
.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0;
}
.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0;
}
.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0;
}
.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0;
}
.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0;
}
@media (max-width: 1024px) {
  .erecsolNav {
    justify-content: center;
  }
}
@media (max-width: 959px) {
  .docInfoDoors__timer .countdownTimerBox .minutes,
  .docInfoDoors__timer .countdownTimerBox .seconds {
    font-size: 17px;
  }
  .docInfoDoors__timer .countdownTimerBox .timeBg {
    width: unset;
    height: unset;
    line-height: 32px;
  }
  .docInfoDoors__timer .countdownTimerBox .ending {
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .menHealthCom__wrapper {
    padding: 10px;
  }
  .menHealthCom {
    padding-bottom: 10px;
  }
  .winPopupDocInfoDoors__iconRound--white {
    left: 5px;
    width: 95px;
    height: 95px;
  }
}
@media screen and (max-width: 767px) {
  .textMedia {
    padding: 5px;
  }
  .textHeightMedia {
    line-height: normal;
  }
  .textLetterMedia {
    letter-spacing: normal;
  }
}
@media (max-width: 767px) {
  .docInfoDoors__box {
    padding: 10px;
  }
  .docInfoDoors__prizeWrapper {
    border-radius: 20px;
    padding: 10px;
    height: 50px;
    max-width: 60px;
  }
  .docInfoDoors__prize {
    font-size: 10px;
    text-align: center;
  }
  .docInfoDoors__imageWrapper {
    max-width: 95px;
  }
  .docInfoDoors__formImgWrapper {
    max-width: 179px;
  }
  .winPopupDocInfoDoors__closeBtn {
    right: -5px;
  }
  .erecsolNav__menuBtn {
    display: block;
    order: 2;
  }
  .erecsolNav__nav ul li,
  .erecsolNav__title {
    border: 0;
  }
  .erecsolNav__nav ul {
    display: none;
  }
  .erecsolNav {
    position: relative;
    justify-content: space-between;
    padding: 0 10px;
  }
  .h1TitleWidget__text,
  .h2TitleWidget__text,
  .h3TitleWidget__text,
  .h4TitleWidget__text,
  .h5TitleWidget__text,
  .h6TitleWidget__text {
    padding: 5px;
    letter-spacing: normal;
  }
}
@media (max-width: 575px) {
  .docInfoDoors__form {
    padding: 15px;
  }
}
@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
    background-image: url(../images/flags_25402x.png);
  }
}
.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0;
}
.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0;
}
.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0;
}
.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0;
}
.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0;
}
.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0;
}
.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0;
}
.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0;
}
.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0;
}
.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0;
}
.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0;
}
.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0;
}
.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0;
}
.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0;
}
.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0;
}
.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0;
}
.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0;
}
.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0;
}
.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0;
}
.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0;
}
.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0;
}
.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0;
}
.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0;
}
.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0;
}
.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0;
}
.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0;
}
.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0;
}
.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0;
}
.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0;
}
.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0;
}
.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0;
}
.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0;
}
.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0;
}
.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0;
}
.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0;
}
.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0;
}
.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0;
}
.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0;
}
.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0;
}
.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0;
}
.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0;
}
.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0;
}
.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0;
}
.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0;
}
.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0;
}
.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0;
}
.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0;
}
.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0;
}
.iti__flag,
.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0;
}
.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0;
}
.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0;
}
.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0;
}
.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0;
}
.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0;
}
.iti__flag {
  -webkit-box-shadow: 0 0 1px 0#888;
  box-shadow: 0 0 1px 0#888;
  background-image: url(../images/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(../images/flags_25402x.png);
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}
.oneImageWidget {
  padding: 15px;
}
.oneImageWidget__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 800px;
}
.oneImageWidget__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.paragraphWidget__text {
  margin: 0;
  padding: 15px;
  font-family: sans-serif;
  line-height: 30px;
  word-break: break-word;
  text-align: left;
}
.h1TitleWidget__text,
.h2TitleWidget__text,
.h3TitleWidget__text,
.h4TitleWidget__text,
.h5TitleWidget__text,
.h6TitleWidget__text {
  margin: 0;
  padding: 15px;
  font-family: sans-serif;
  font-weight: 700;
  line-height: 140%;
  word-break: break-word;
  color: #000;
}
@media (max-width: 767px) {
  .h1TitleWidget__text,
  .h2TitleWidget__text,
  .h3TitleWidget__text,
  .h4TitleWidget__text,
  .h5TitleWidget__text,
  .h6TitleWidget__text {
    padding: 5px;
    letter-spacing: normal;
  }
}
.h1TitleWidget__text {
  font-size: 40px;
}
.h2TitleWidget__text {
  font-size: 32px;
}
.h3TitleWidget__text {
  font-size: 28px;
}
.h4TitleWidget__text {
  font-size: 24px;
}
.h5TitleWidget__text {
  font-size: 20px;
}
.h6TitleWidget__text {
  font-size: 16px;
}

.ctContainer {
  padding-top: 80px;
}

@keyframes form-appear {
  0% {
    transform: translateY(2000px);
  }

  30% {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pop-up-appear {
  0% {
    transform: translateY(-2000px);
  }

  30% {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pop-up-appear-before {
  0% {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes pop-up-appear-after {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.boldText {
  font-weight: 700;
}

.italicText {
  font-style: oblique;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
}

a,
li {
  text-decoration: none;
}

a {
  cursor: pointer;
  color: inherit;
}

.new_price_cur,
.new_price_val {
  padding: 0;
}

ol.list-1,
ul.list-1 {
  list-style: none;
  margin: 0;
}

ol.list-1 {
  counter-reset: section;
}

ol.list-1 li {
  counter-increment: section;
}

ol.list-1 li::before {
  content: counters(section, '.') '. ';
  margin-right: 5px;
  margin-left: -24px;
  text-align: right;
}

.list-0 {
  display: inline-block;
  margin-left: 24px;
}

ul.list-1 li::before {
  content: 'â€¢';
  margin-right: 14px;
  margin-left: -22px;
  text-align: right;
}

ul.list-1 ol,
ul.list-2 div ol {
  counter-reset: listStyle;
}

ul.list-1 ol li,
ul.list-2 div ol li {
  counter-increment: listStyle;
}

ul.list-1 ol li::before,
ul.list-2 div ol li::before {
  content: counter(listStyle, lower-alpha);
}

ol li.listCircle,
ul li.listCircle {
  list-style-type: none;
}

ol li.listCircle::before,
ul li.listCircle::before {
  content: 'âˆ˜';
  margin-right: 14px;
  margin-left: -22px;
  text-align: right;
}

.imgBox__wrapper {
  margin: 0 auto;
  width: 100%;
  height: fit-content;
  max-width: 100px;
}

.imgBox__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ctContainer {
  margin: 0 auto;
  width: 100%;
  background: 0 0;
}

.ctContent {
  max-width: 1025px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ctContent,
.ctContentFluid {
  width: 100%;
  background: #fff;
}

.btnWrapper {
  display: flex;
  justify-content: center;
  padding: 15px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.btnWrapper__btn {
  border: 0;
  border-radius: 15px;
  padding: 15px;
  font-family: sans-serif;
  font-size: 24px;
  word-break: break-word;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: red;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.btnWrapper__btn:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
}

.menHealthCom {
  display: flex;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
}

.menHealthCom__wrapper {
  display: flex;
  padding: 10px 55px 30px;
  width: 100%;
}

.menHealthCom__avatarWrapper {
  margin-right: 21px;
  width: 100%;
  height: 78px;
  max-width: 78px;
}

.menHealthCom__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menHealthCom__info {
  width: 100%;
}

.menHealthCom__comment,
.menHealthCom__name {
  margin: 0;
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 140%;
  word-break: break-word;
  color: #000;
}

.menHealthCom__comment {
  font-weight: 400;
}

.menHealthCom:first-child {
  padding-top: 0;
}

.menHealthCom:last-child {
  padding-bottom: 70px;
}

.docInfoDoors {
  padding: 20px;
  width: 100%;
}

.docInfoDoors__titleWrapper {
  border-radius: 10px;
  padding: 10px;
  background-color: #3a4752;
}

.docInfoDoors__title {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 22px;
  word-break: break-word;
  text-align: center;
  color: #fff;
}

.docInfoDoors__wrapper {
  width: 100%;
}

.docInfoDoors__wrapper--hide {
  display: none;
}

.docInfoDoors__doorsWrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.docInfoDoors__box {
  position: relative;
  z-index: 0;
  padding: 20px;
}

.docInfoDoors__prizeWrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 15px;
  width: 100%;
  height: 100px;
  max-width: 150px;
  box-shadow: 0 1px 2px 2px #7f7878;
}

.docInfoDoors__prize {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 30px; text-align:center;
  word-break: break-word;
  color: red;
}

.docInfoDoors__imageWrapper {
  border: 2px solid #000;
  width: 100%;
  height: fit-content;
  max-width: 190px;
  perspective: 500px;
}

.docInfoDoors__doorsImage {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 2px #191919;
  object-fit: contain;
  transform-origin: 0 0;
  transition: 0.5s transform linear;
  cursor: pointer;
}

.docInfoDoors__doorsImage:hover {
  transform: rotateY(-30deg);
}

.docInfoDoors__doorsImage--open {
  transform: rotateY(-90deg) !important;
}

.docInfoDoors__popUpWrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.docInfoDoors__popUpWrapper--show {
  display: flex;
}

.docInfoDoors__hiddenWrapper {
  width: 100%;
  max-width: 500px;
}

.docInfoDoors__popUpCloser {
  display: block;
  margin-left: auto;
  width: 100%;
  height: fit-content;
  max-width: 30px;
  cursor: pointer;
}

.docInfoDoors__closeImage {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px #fff;
  object-fit: contain;
}

.docInfoDoors__popUpContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
  padding: 50px 20px 20px;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
}

.docInfoDoors__popUpTitle {
  padding: 10px 0;
  font-size: 40px;
  text-align: center;
}

.docInfoDoors__popUpLink,
.docInfoDoors__popUpText,
.docInfoDoors__popUpTitle {
  font-family: sans-serif;
  font-weight: 400;
  word-break: break-word;
}

.docInfoDoors__popUpText {
  padding: 5px 0;
  font-size: 16px;
  text-align: center;
}

.docInfoDoors__popUpLink {
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
  border-radius: 5px;
  padding: 10px 30px;
  min-width: 180px;
  font-size: 20px;
  color: #fff;
  background-color: #71c341;
  cursor: pointer;
}

.docInfoDoors__offerWrapper {
  width: 100%;
  height: fit-content;
  max-width: 220px;
}

.docInfoDoors__offerImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.docInfoDoors__form {
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px auto 40px;
  border: 2.5px dashed #ddd;
  padding: 20px 20px 5px;
  max-width: 465px;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  animation: 0.6s ease 0s normal none 1 running form-appear;
}

.docInfoDoors__formImgWrapper {
  position: relative;
  width: 100%;
  height: fit-content;
  max-width: 260px;
}

.docInfoDoors__formImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.docInfoDoors__formStock {
  position: absolute;
  right: -20px;
  top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  text-align: center;
  color: #fff;
  background: url(../img/reduslimPriceBox.png) no-repeat center center/cover;
}

.docInfoDoors__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100%;
}

.docInfoDoors__timer .countdownTimerBox {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  max-width: 10%;
}

.docInfoDoors__timer .countdownTimerBox .minutes,
.docInfoDoors__timer .countdownTimerBox .seconds {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 32px;
  word-break: break-word;
  transition: 0.2s;
}

.docInfoDoors__timer .countdownTimerBox .minutesBox,
.docInfoDoors__timer .countdownTimerBox .secondsBox {
  display: flex;
}

.docInfoDoors__timer .countdownTimerBox .timeBg {
  display: block;
  margin: 0;
  padding: 0;
  width: unset;
  height: unset;
  line-height: 32px;
  word-break: break-word;
  text-align: center;
  color: red;
  background: #fff;
}

.docInfoDoors__timer .countdownTimerBox .timeBg:nth-child(2n) {
  margin-right: 0;
}

.docInfoDoors__timer .countdownTimerBox .ending {
  display: block;
  margin: 0 5px;
  padding: 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 32px;
  word-break: break-word;
  text-align: center;
  color: #000;
  transition: 0.2s;
}

.docInfoDoors__formTitle {
  margin: 10px 0 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  word-break: break-word;
  color: #222;
}

.docInfoDoors__formSubTitle,
.docInfoDoors__formTitle--red {
  font-family: sans-serif;
  font-weight: 700;
  color: #ca2d2d;
}

.docInfoDoors__formSubTitle {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  color: #222;
}

.docInfoDoors__formBtn,
.docInfoDoors__formName,
.docInfoDoors__formPhone {
  display: flex;
  outline: 0;
  border-radius: 35px;
  width: 100%;
  height: auto;
  max-width: 100%;
  box-shadow: none;
  box-sizing: border-box;
  font-style: normal;
  word-break: break-word;
}

.docInfoDoors__formName,
.docInfoDoors__formPhone {
  flex-direction: column;
  align-items: flex-start;
  margin: 8px 0;
  border: 2.5px solid #ddd;
  padding: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  background: #f2f2f2;
  transition: 0.25s;
}

.docInfoDoors__formBtn {
  align-items: center;
  justify-content: center;
  margin: 15px 0 0;
  border: 0;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #388e3c;
  cursor: pointer;
}

.docInfoDoors__formBotText,
.docInfoDoors__textFooter {
  font-weight: 400;
  word-break: break-word;
  text-align: center;
}

.docInfoDoors__textFooter {
  margin: 0;
  padding: 5px 0 0;
  font-family: sans-serif;
}

.docInfoDoors__formBotText {
  margin: 10px 0 0;
  font-family: sans-serif;
  font-size: 10px;
  line-height: 15px;
  color: #888;
}

.winPopupBgDocInfoDoors,
.winPopupDocInfoDoors {
  align-items: center;
  justify-content: center;
  width: 100%;
}

.winPopupBgDocInfoDoors {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  display: none;
  padding: 0 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.winPopupDocInfoDoors {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 70px 10px 20px;
  max-width: 400px;
  word-break: break-word;
  text-align: center;
  background: #fff 0 0;
  animation: 0.6s ease 0s normal none 1 running pop-up-appear;
}

.winPopupDocInfoDoors__iconWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 110px;
  max-height: 110px;
}

.winPopupDocInfoDoors__iconRound--white {
  position: absolute;
  left: 0;
  top: -123px;
  border: 0;
  border-radius: 50%;
  width: 100%;
  height: auto;
  background: #71c341;
  transition: opacity 1s ease 0s;
  animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}

.winPopupDocInfoDoors__iconWrapperClose {
  position: relative;
  width: 100%;
  height: 100%;
}

.winPopupDocInfoDoors__closeBtn {
  position: absolute;
  right: -45px;
  top: -107px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: #fff 0 0 10px 0;
  cursor: pointer;
}

.winPopupDocInfoDoors__text {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  word-break: break-word;
  color: #111;
}

.winPopupDocInfoDoors__text--title {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 40px;
}

.winPopupDocInfoDoors__btn {
  margin: 25px auto 0;
  border: 0;
  border-radius: 5px;
  padding: 10px 20%;
  font-family: sans-serif;
  font-weight: 400;
  font-size: 20px;
  word-break: break-word;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #fff;
  background-color: #71c341;
  cursor: pointer;
}

.winPopupDocInfoDoors__text--red {
  color: red;
}

.winPopupBgDocInfoDoorsShow {
  display: flex;
}

.winPopupBgDocInfoDoorsEdit {
  position: unset;
  display: flex;
  min-height: 50vh;
}

.docInfoDoorsFormShow {
  display: flex;
}

.goToForm {
  display: none;
  padding: 10px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: red;
}

.goToFormShow {
  display: block !important;
}

.ctContentFluid--red {
  background: red;
}

.greenParagraph {
  padding: 10px 40px 20px;
}

.greenParagraph__wrapper {
  border: 4px double rgba(21, 160, 37, 0.32);
  border-radius: 2px;
  padding: 6px 13px;
  background: rgba(3, 224, 0, 0.04);
}

.greenParagraph__greenText {
  margin: 0 0 9px;
  border: 1px dotted #e2e2e2;
  border-right: none;
  border-radius: 2px;
  padding: 6px 4px 4px 5px;
  width: 100%;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 23px;
  word-break: break-word;
  color: #3a753a;
  background-image: repeating-linear-gradient(90deg, #bfe6bf 0, #f5fef5 100%);
}

.greenParagraph__link {
  margin: 0 2px;
  border-bottom: 1px dashed;
  padding: 0 0 1px;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  text-shadow: 0 0 0;
  color: #0095da;
}

.greenParagraph__link:hover {
  text-decoration: underline;
}

.greenParagraph__text {
  margin-bottom: 9px;
  border-right: none;
  padding: 6px 4px 4px 5px;
  width: 100%;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 23px;
  word-break: break-word;
}

.greenParagraph__counter {
  font-weight: 700;
  color: #ff0;
}

.iti {
  position: relative;
  width: 100%;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type='tel'],
.iti input[type='text'] {
  position: relative;
  z-index: 0;
  padding-right: 36px;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

[dir='rtl'] .iti__arrow {
  margin-right: 6px;
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0 0 0-1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  outline: 0;
}

.iti__dial-code {
  color: #999;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
  font-family: sans-serif;
  font-size: 15px;
}

[dir='rtl'] .iti__country-name,
[dir='rtl'] .iti__flag-box {
  margin-right: 0;
  margin-left: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type='tel'],
.iti--allow-dropdown input[type='text'],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type='tel'],
.iti--separate-dial-code input[type='text'] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

[dir='rtl'] .iti--allow-dropdown input,
[dir='rtl'] .iti--allow-dropdown input[type='tel'],
[dir='rtl'] .iti--allow-dropdown input[type='text'],
[dir='rtl'] .iti--separate-dial-code input,
[dir='rtl'] .iti--separate-dial-code input[type='tel'],
[dir='rtl'] .iti--separate-dial-code input[type='text'] {
  padding-right: 52px;
  padding-left: 6px;
  margin-right: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

[dir='rtl'] .iti--allow-dropdown .iti__flag-container,
[dir='rtl'] .iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
  height: 15px;
  box-shadow: 0 0 1px 0#888;
  background-image: url(../img/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0 0;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0;
}

.iti__flag.iti__np {
  background-color: transparent;
}

.oneImageWidget {
  padding: 15px;
}

.oneImageWidget__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 800px;
}

.oneImageWidget__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.paragraphWidget__text {
  margin: 0;
  padding: 15px;
  font-size: 20px;
  font-family: sans-serif;
  line-height: 30px;
  word-break: break-word;
  text-align: left;
}

.oneImageWidget__wrapper--710952 {
  max-width: 1600px;
}

.oneImageWidget__img--916368 {
  height: 100%;
}

.oneImageWidget__wrapper--383172 {
  background-color: #1f0601;
}

.oneImageWidget__wrapper--107359 {
  max-width: 1400px;
}

.oneImageWidget__img--286824 {
  height: 100%;
}

.paragraphWidget--748715 {
  background-color: #260702;
}

.paragraphWidget__text--358195 {
  margin-left: 0;
  margin-right: 0;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #84171e;
  font-size: 36px;
  line-height: 46.8px;
}

.ctContent--363013 {
  padding-left: 0;
}

.oneImageWidget__img--589331 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--226210,
.paragraphWidget__text--264531,
.paragraphWidget__text--345124 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
}

.paragraphWidget__text--226210,
.paragraphWidget__text--345124 {
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--345124 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--737399 {
  font-weight: 700;
}

.ctContent--646516 {
  padding-left: 0;
}

.oneImageWidget__img--731988 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--329968,
.paragraphWidget__text--636271 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--329968 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--607792,
.paragraphWidget--822471 {
  font-weight: 700;
}

.paragraphWidget__text--715503,
.paragraphWidget__text--952957 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--952957 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--445564,
.paragraphWidget--494038,
.paragraphWidget--736993 {
  font-weight: 700;
}

.ctContent--224474 {
  padding-left: 0;
}

.oneImageWidget__img--587087 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--230695 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 400;
  font-style: normal;
  padding-top: 0;
  text-align: center;
  color: #676768;
}

.paragraphWidget--314981,
.paragraphWidget--485719,
.paragraphWidget--586356,
.paragraphWidget--598575,
.paragraphWidget--646924,
.paragraphWidget--748431 {
  font-weight: 700;
}

.paragraphWidget__text--473365,
.paragraphWidget__text--693194 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--473365 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--154528,
.paragraphWidget--193883,
.paragraphWidget--376330,
.paragraphWidget--979891 {
  font-weight: 700;
}

.paragraphWidget__text--111927,
.paragraphWidget__text--651741 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--651741 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--458269,
.paragraphWidget--507740,
.paragraphWidget--564048,
.paragraphWidget--574934,
.paragraphWidget--944797 {
  font-weight: 700;
}

.paragraphWidget__text--246907,
.paragraphWidget__text--500602 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--500602 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--190535,
.paragraphWidget--232454,
.paragraphWidget--255205,
.paragraphWidget--534400,
.paragraphWidget--679992,
.paragraphWidget--693813 {
  font-weight: 700;
}

.ctContent--238141 {
  padding-left: 0;
}

.oneImageWidget__img--122510 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--896506 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 400;
  font-style: normal;
  padding-top: 0;
  text-align: center;
  color: #676768;
}

.paragraphWidget--182149,
.paragraphWidget--338695,
.paragraphWidget--596102,
.paragraphWidget--666110,
.paragraphWidget--769816,
.paragraphWidget--922785 {
  font-weight: 700;
}

.paragraphWidget__text--297800,
.paragraphWidget__text--909800 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--297800 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--213036,
.paragraphWidget--263050,
.paragraphWidget--466194,
.paragraphWidget--654609,
.paragraphWidget--663840,
.paragraphWidget--669000 {
  font-weight: 700;
}

.paragraphWidget--460180,
.paragraphWidget--721293 {
  font-style: oblique;
}

.paragraphWidget__text--524120 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--193456,
.paragraphWidget--382496,
.paragraphWidget--568982,
.paragraphWidget--644334,
.paragraphWidget--800933,
.paragraphWidget--805590 {
  font-weight: 700;
}

.paragraphWidget__text--334948 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--127022,
.paragraphWidget--522404,
.paragraphWidget--615327,
.paragraphWidget--729768,
.paragraphWidget--917874,
.paragraphWidget--970872 {
  font-weight: 700;
}

.ctContent--749568 {
  padding-left: 0;
}

.oneImageWidget__img--675301 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--478010 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 400;
  font-style: normal;
  padding-top: 0;
  text-align: center;
  color: #676768;
}

.paragraphWidget--100732,
.paragraphWidget--114684,
.paragraphWidget--309402,
.paragraphWidget--351790,
.paragraphWidget--604473,
.paragraphWidget--670308 {
  font-weight: 700;
}

.paragraphWidget__text--306515,
.paragraphWidget__text--457600 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--457600 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--525578,
.paragraphWidget--749905,
.paragraphWidget--766467,
.paragraphWidget--795431,
.paragraphWidget--832034,
.paragraphWidget--917350 {
  font-weight: 700;
}

.paragraphWidget__text--686108,
.paragraphWidget__text--988230 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--988230 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--178295,
.paragraphWidget--318707,
.paragraphWidget--322427,
.paragraphWidget--495550,
.paragraphWidget--642931,
.paragraphWidget--776207 {
  font-weight: 700;
}

.paragraphWidget__text--947924,
.paragraphWidget__text--957368 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--947924 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--196202,
.paragraphWidget--251850,
.paragraphWidget--391892,
.paragraphWidget--480291,
.paragraphWidget--838967,
.paragraphWidget--889320,
.paragraphWidget--953299 {
  font-weight: 700;
}

.paragraphWidget--364405 {
  font-style: oblique;
}

.ctContent--921602 {
  padding-left: 0;
}

.oneImageWidget__img--856798 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--363025 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--667764,
.paragraphWidget--700605,
.paragraphWidget--757003,
.paragraphWidget--799727,
.paragraphWidget--812250,
.paragraphWidget--984901 {
  font-weight: 700;
}

.paragraphWidget__text--818108,
.paragraphWidget__text--984077 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--984077 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--233537,
.paragraphWidget--287715,
.paragraphWidget--295088,
.paragraphWidget--332994,
.paragraphWidget--429785,
.paragraphWidget--767151,
.paragraphWidget--873852 {
  font-weight: 700;
}

.paragraphWidget__text--758390 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.ctContent--303008 {
  padding-left: 0;
}

.oneImageWidget__img--925476 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--168505 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--164370,
.paragraphWidget--263788,
.paragraphWidget--275906,
.paragraphWidget--306151,
.paragraphWidget--498053,
.paragraphWidget--515276,
.paragraphWidget--699822 {
  font-weight: 700;
}

.paragraphWidget--975483 {
  font-style: oblique;
}

.paragraphWidget__text--290040,
.paragraphWidget__text--337029 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--337029 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--119872,
.paragraphWidget--221661,
.paragraphWidget--272206,
.paragraphWidget--532430,
.paragraphWidget--655753,
.paragraphWidget--797830,
.paragraphWidget--875892,
.paragraphWidget--904637 {
  font-weight: 700;
}

.paragraphWidget--524689 {
  font-style: oblique;
}

.paragraphWidget__text--948688 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--167616,
.paragraphWidget--217744,
.paragraphWidget--541835,
.paragraphWidget--559231,
.paragraphWidget--615058,
.paragraphWidget--653952,
.paragraphWidget--719412,
.paragraphWidget--811229 {
  font-weight: 700;
}

.paragraphWidget__text--841998 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--122391,
.paragraphWidget--187603,
.paragraphWidget--294395,
.paragraphWidget--382240,
.paragraphWidget--526484,
.paragraphWidget--579148,
.paragraphWidget--836800,
.paragraphWidget--854707 {
  font-weight: 700;
}

.paragraphWidget--217106 {
  font-style: oblique;
}

.ctContent--873337 {
  padding-left: 0;
}

.oneImageWidget__img--903891 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--600915 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 400;
  font-style: normal;
  padding-top: 0;
  text-align: center;
  color: #676768;
}

.paragraphWidget--102706,
.paragraphWidget--427231,
.paragraphWidget--522827,
.paragraphWidget--660191,
.paragraphWidget--919805,
.paragraphWidget--998584 {
  font-weight: 700;
}

.paragraphWidget__text--344003,
.paragraphWidget__text--654308 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--344003 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--140082,
.paragraphWidget--228558,
.paragraphWidget--325356,
.paragraphWidget--660466,
.paragraphWidget--762487,
.paragraphWidget--818128,
.paragraphWidget--933065,
.paragraphWidget--950593 {
  font-weight: 700;
}

.paragraphWidget--157613 {
  font-style: oblique;
}

.paragraphWidget__text--140752 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--337939,
.paragraphWidget--526998,
.paragraphWidget--542370,
.paragraphWidget--607067,
.paragraphWidget--642013,
.paragraphWidget--928484,
.paragraphWidget--937676,
.paragraphWidget--983267 {
  font-weight: 700;
}

.paragraphWidget__text--653556 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--516474,
.paragraphWidget--749600,
.paragraphWidget--799028,
.paragraphWidget--810949,
.paragraphWidget--833095,
.paragraphWidget--834624,
.paragraphWidget--964935,
.paragraphWidget--976735 {
  font-weight: 700;
}

.paragraphWidget--236047 {
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget--265147 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.ctContent--611285 {
  padding-left: 0;
}

.oneImageWidget__img--207183 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--385578 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--310075,
.paragraphWidget--553864,
.paragraphWidget--596275,
.paragraphWidget--713949,
.paragraphWidget--769588,
.paragraphWidget--848277,
.paragraphWidget--913976,
.paragraphWidget--998690 {
  font-weight: 700;
}

.paragraphWidget--976610 {
  font-style: oblique;
}

.paragraphWidget__text--145482,
.paragraphWidget__text--271617 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--271617 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--179778,
.paragraphWidget--189437,
.paragraphWidget--201979,
.paragraphWidget--272088,
.paragraphWidget--633974,
.paragraphWidget--643154,
.paragraphWidget--860335,
.paragraphWidget--888406 {
  font-weight: 700;
}

.paragraphWidget--826006 {
  font-style: oblique;
}

.paragraphWidget__text--138294 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--158860,
.paragraphWidget--177819,
.paragraphWidget--245400,
.paragraphWidget--338408,
.paragraphWidget--438912,
.paragraphWidget--612058,
.paragraphWidget--686333,
.paragraphWidget--978784 {
  font-weight: 700;
}

.paragraphWidget__text--927797 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--107396,
.paragraphWidget--230401,
.paragraphWidget--299048,
.paragraphWidget--346125,
.paragraphWidget--482853,
.paragraphWidget--747601,
.paragraphWidget--762356,
.paragraphWidget--866000 {
  font-weight: 700;
}

.ctContent--263175 {
  padding-left: 0;
}

.oneImageWidget__img--599417 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--260471 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--575567,
.paragraphWidget--589851 {
  font-style: oblique;
}

.paragraphWidget--173017,
.paragraphWidget--438511,
.paragraphWidget--547446,
.paragraphWidget--643938,
.paragraphWidget--767345,
.paragraphWidget--857092,
.paragraphWidget--907925,
.paragraphWidget--986073 {
  font-weight: 700;
}

.paragraphWidget__text--755972,
.paragraphWidget__text--871219 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--755972 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--235922,
.paragraphWidget--243360,
.paragraphWidget--245047,
.paragraphWidget--365560,
.paragraphWidget--623920,
.paragraphWidget--681406,
.paragraphWidget--720239,
.paragraphWidget--877661,
.paragraphWidget--972076 {
  font-weight: 700;
}

.paragraphWidget__text--217771,
.paragraphWidget__text--410989 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--217771 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--252028,
.paragraphWidget--330766,
.paragraphWidget--398938,
.paragraphWidget--467097,
.paragraphWidget--484410,
.paragraphWidget--604148,
.paragraphWidget--642670,
.paragraphWidget--774009,
.paragraphWidget--916555 {
  font-weight: 700;
}

.paragraphWidget__text--675752 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--135821,
.paragraphWidget--275060,
.paragraphWidget--314646,
.paragraphWidget--357812,
.paragraphWidget--423333,
.paragraphWidget--637387,
.paragraphWidget--681817,
.paragraphWidget--865057,
.paragraphWidget--912877 {
  font-weight: 700;
}

.paragraphWidget__text--371104 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--154594,
.paragraphWidget--182995,
.paragraphWidget--261163,
.paragraphWidget--313852,
.paragraphWidget--339226,
.paragraphWidget--447373,
.paragraphWidget--549043,
.paragraphWidget--566578,
.paragraphWidget--646184 {
  font-weight: 700;
}

.ctContent--591045 {
  padding-left: 0;
}

.oneImageWidget__wrapper--243841 {
  max-width: 800px;
}

.oneImageWidget__img--876748 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  height: 100%;
}

.paragraphWidget__text--295522 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--111201,
.paragraphWidget--190370,
.paragraphWidget--209101,
.paragraphWidget--303138,
.paragraphWidget--525679,
.paragraphWidget--546148,
.paragraphWidget--789883,
.paragraphWidget--889879,
.paragraphWidget--983485 {
  font-weight: 700;
}

.paragraphWidget__text--685319,
.paragraphWidget__text--959908 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--959908 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--554162,
.paragraphWidget--621295 {
  font-weight: 700;
}

.paragraphWidget__text--736440 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--161785,
.paragraphWidget--211030,
.paragraphWidget--223993,
.paragraphWidget--226133,
.paragraphWidget--271591,
.paragraphWidget--743589,
.paragraphWidget--811067,
.paragraphWidget--827283,
.paragraphWidget--931461 {
  font-weight: 700;
}

.paragraphWidget__text--608510 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.ctContent--357616 {
  padding-left: 0;
}

.oneImageWidget__img--325160 {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.paragraphWidget__text--553533 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--215702,
.paragraphWidget--289214,
.paragraphWidget--326527,
.paragraphWidget--555014,
.paragraphWidget--656947,
.paragraphWidget--700306,
.paragraphWidget--711962,
.paragraphWidget--768264,
.paragraphWidget--817323,
.paragraphWidget--887879 {
  font-weight: 700;
}

.paragraphWidget__text--668581,
.paragraphWidget__text--701293 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: oblique;
}

.paragraphWidget__text--668581 {
  font-weight: 400;
  font-style: normal;
}

.paragraphWidget--153107,
.paragraphWidget--200416,
.paragraphWidget--390903,
.paragraphWidget--460868,
.paragraphWidget--548677,
.paragraphWidget--630054,
.paragraphWidget--709525,
.paragraphWidget--723213,
.paragraphWidget--724587,
.paragraphWidget--763075,
.paragraphWidget--878420 {
  font-weight: 700;
}

.greenParagraph__wrapper--922016 {
  border: 4px double #ff0004;
  background-color: rgba(132, 23, 30, 0.2);
}

.greenParagraph__greenText--831606 {
  font-weight: 700;
  color: #fff;
  background: #84171e;
}

.greenParagraph__greenText--831606,
.greenParagraph__text--832065 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.greenParagraph--107700,
.greenParagraph--590009 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.greenParagraph--195537 {
  color: #0756ad;
  cursor: pointer;
  text-decoration-line: underline;
}

.paragraphWidget__text--569178 {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

.undefined {
  display: none;
}

.textMedia--905195 {
  padding-left: 0;
  padding-right: 0;
  background-color: #260702;
}

.docInfoDoors--414748 {
  background-color: #fff;
}

.docInfoDoors__titleWrapper--773206 {
  background-color: #0756ad;
}

.docInfoDoors__formImgWrapper--166235 {
  max-width: 220px;
}

.docInfoDoors__formImg--150546 {
  height: 100%;
}

.docInfoDoors--220168,
.docInfoDoors--264829,
.docInfoDoors__newVal--699849 {
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
}

.docInfoDoors__textFooter--842020 {
  font-size: 14px;
  line-height: 18.2px;
}

.paragraphWidget__text--323293 {
  padding: 5px 50px;
  font-size: 22px;
  line-height: 28.6px;
  font-weight: 400;
  font-style: normal;
  background-color: #0756ad;
}

.paragraphWidget--433286 {
  color: #fff;
}

.commentBox--248310 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--150797 {
  max-width: 78px;
}

.commentAvatar--536334 {
  border-radius: 50%;
}

.menHealthCom__comment--169417,
.menHealthCom__name--319704 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--169417 {
  font-weight: 400;
}

.commentBox--243570 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--763965 {
  max-width: 78px;
}

.commentAvatar--458729 {
  border-radius: 50%;
}

.menHealthCom__comment--544371,
.menHealthCom__name--358121 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--544371 {
  font-weight: 400;
}

.commentBox--194847 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--852742 {
  max-width: 78px;
}

.commentAvatar--125187 {
  border-radius: 50%;
}

.menHealthCom__comment--419167,
.menHealthCom__name--293782 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--419167 {
  font-weight: 400;
}

.commentBox--537009 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.imgBox__wrapper--445672 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--591768 {
  height: 100%;
}

.commentBox--134636 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--660614 {
  max-width: 78px;
}

.commentAvatar--671664 {
  border-radius: 50%;
}

.menHealthCom__comment--236091,
.menHealthCom__name--424397 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--236091 {
  font-weight: 400;
}

.commentBox--670737 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.imgBox__wrapper--609935 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--753486 {
  height: 100%;
}

.commentBox--509745 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--207256 {
  max-width: 78px;
}

.commentAvatar--238562 {
  border-radius: 50%;
}

.menHealthCom__comment--227386,
.menHealthCom__name--291730 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--227386 {
  font-weight: 400;
}

.commentBox--368134 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--962034 {
  max-width: 78px;
}

.commentAvatar--411112 {
  border-radius: 50%;
}

.menHealthCom__comment--470827,
.menHealthCom__name--959604 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--470827 {
  font-weight: 400;
}

.commentBox--416814 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--845015 {
  max-width: 78px;
}

.commentAvatar--276764 {
  border-radius: 50%;
}

.menHealthCom__comment--226955,
.menHealthCom__name--121397 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--226955 {
  font-weight: 400;
}

.imgBox__wrapper--514001 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--762438 {
  height: 100%;
}

.commentBox--183307 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--953211 {
  max-width: 78px;
}

.commentAvatar--677342 {
  border-radius: 50%;
}

.menHealthCom__comment--325316,
.menHealthCom__name--145231 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--325316 {
  font-weight: 400;
}

.commentBox--607480 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--982376 {
  max-width: 78px;
}

.commentAvatar--310701 {
  border-radius: 50%;
}

.menHealthCom__comment--253882,
.menHealthCom__name--370305 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--253882 {
  font-weight: 400;
}

.commentBox--224934 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.commentBox--108583 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--582164 {
  max-width: 78px;
}

.commentAvatar--397543 {
  border-radius: 50%;
}

.menHealthCom__comment--150083,
.menHealthCom__name--147479 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--150083 {
  font-weight: 400;
}

.imgBox__wrapper--787674 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--464260 {
  height: 100%;
}

.commentBox--150510 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--764869 {
  max-width: 78px;
}

.commentAvatar--654241 {
  border-radius: 50%;
}

.menHealthCom__comment--765924,
.menHealthCom__name--554822 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--765924 {
  font-weight: 400;
}

.commentBox--167385 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--327269 {
  max-width: 78px;
}

.commentAvatar--139661 {
  border-radius: 50%;
}

.menHealthCom__comment--887831,
.menHealthCom__name--667755 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--887831 {
  font-weight: 400;
}

.commentBox--450705 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--263739 {
  max-width: 78px;
}

.commentAvatar--489375 {
  border-radius: 50%;
}

.menHealthCom__comment--348730,
.menHealthCom__name--392528 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--348730 {
  font-weight: 400;
}

.commentBox--163164 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--658764 {
  max-width: 78px;
}

.commentAvatar--597670 {
  border-radius: 50%;
}

.menHealthCom__comment--108300,
.menHealthCom__name--296523 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--108300 {
  font-weight: 400;
}

.commentBox--512239 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--526178 {
  max-width: 78px;
}

.commentAvatar--985228 {
  border-radius: 50%;
}

.menHealthCom__comment--904168,
.menHealthCom__name--869736 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--904168 {
  font-weight: 400;
}

.commentBox--749564 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.imgBox__wrapper--488386 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--414185 {
  height: 100%;
}

.commentBox--506158 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--680204 {
  max-width: 78px;
}

.commentAvatar--854185 {
  border-radius: 50%;
}

.menHealthCom__comment--939511,
.menHealthCom__name--668152 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--939511 {
  font-weight: 400;
}

.commentBox--993535 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--893749 {
  max-width: 78px;
}

.commentAvatar--957488 {
  border-radius: 50%;
}

.menHealthCom__comment--111604,
.menHealthCom__name--366555 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--111604 {
  font-weight: 400;
}

.commentBox--180289 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--813939 {
  max-width: 78px;
}

.commentAvatar--960992 {
  border-radius: 50%;
}

.menHealthCom__comment--922708,
.menHealthCom__name--683236 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--922708 {
  font-weight: 400;
}

.imgBox__wrapper--729603 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--711976 {
  height: 100%;
}

.commentBox--736305 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--645720 {
  max-width: 78px;
}

.commentAvatar--230076 {
  border-radius: 50%;
}

.menHealthCom__comment--463957,
.menHealthCom__name--995352 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--463957 {
  font-weight: 400;
}

.commentBox--993413 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--503972 {
  max-width: 78px;
}

.commentAvatar--646857 {
  border-radius: 50%;
}

.menHealthCom__comment--219694,
.menHealthCom__name--650620 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--219694 {
  font-weight: 400;
}

.imgBox__wrapper--183625 {
  display: flex;
  max-width: 300px;
  margin: 0 auto 0 0;
}

.commentBox--313781 {
  height: 100%;
}

.commentBox--335177 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--620292 {
  max-width: 78px;
}

.commentAvatar--176269 {
  border-radius: 50%;
}

.menHealthCom__comment--774757,
.menHealthCom__name--301257 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--774757 {
  font-weight: 400;
}

.commentBox--587127 {
  color: #0756ad;
  cursor: pointer;
  font-weight: 700;
}

.commentBox--288304 {
  padding-top: 15px;
  padding-bottom: 0;
}

.menHealthCom__avatarWrapper--463630 {
  max-width: 78px;
}

.commentAvatar--640290 {
  border-radius: 50%;
}

.menHealthCom__comment--790758,
.menHealthCom__name--240627 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28.6px;
}

.menHealthCom__comment--790758 {
  font-weight: 400;
}

.btnWrapper__btn--217122 {
  background-color: #0756ad;
}

.btnWrapper--133674,
.btnWrapper--396274,
.btnWrapper--813200 {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .greenParagraph {
    padding: 10px 20px;
  }
}

@media (max-width: 959px) {
  .docInfoDoors__timer .countdownTimerBox .minutes,
  .docInfoDoors__timer .countdownTimerBox .seconds {
    font-size: 17px;
  }

  .docInfoDoors__timer .countdownTimerBox .timeBg {
    width: unset;
    height: unset;
    line-height: 32px;
  }

  .docInfoDoors__timer .countdownTimerBox .ending {
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  .menHealthCom__wrapper {
    padding: 10px;
  }

  .menHealthCom {
    padding-bottom: 10px;
  }

  .winPopupDocInfoDoors__iconRound--white {
    left: 5px;
    width: 95px;
    height: 95px;
  }
}

@media screen and (max-width: 767px) {
  .textMedia {
    padding: 5px;
  }

  .textHeightMedia {
    line-height: normal;
  }

  .textLetterMedia {
    letter-spacing: normal;
  }
}

@media (max-width: 767px) {
  .btnWrapper__btn {
    font-size: 20px;
  }

  .docInfoDoors__box {
    padding: 10px;
  }

  .docInfoDoors__prizeWrapper {
    border-radius: 20px;
    padding: 10px;
    height: 50px;
    max-width: 60px;
  }

  .docInfoDoors__prize {
    font-size: 10.5px;
    text-align: center;
  }

  .docInfoDoors__imageWrapper {
    max-width: 95px;
  }

  .winPopupDocInfoDoors__closeBtn {
    right: -5px;
  }
}

@media (max-width: 575px) {
  .docInfoDoors__form {
    padding: 15px;
  }
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
    background-image: url(../img/flags_402x.png);
  }
}

@media (min-width: 383px) {
  .paragraphWidget--748715 {
    padding-top: 105px;
  }
}

@media (min-width: 419px) {
  .paragraphWidget--748715 {
    padding-top: 65px;
  }
}

@media (min-width: 521px) {
  .paragraphWidget--748715 {
    /* padding-top: 0px; */
  }
}

@media (min-width: 629px) {
  .paragraphWidget--748715 {
    padding-top: 30px;
  }
}

@media (min-width: 733px) {
  .paragraphWidget--748715 {
    /* padding-top: 0px; */
  }
}

[scroll='goScrollToForm'] {
  cursor: pointer;
}

.ring-loading {
  width: 10px;
  height: 10px;
  padding: 15px !important;
  border: 7px dashed #000;
  border-radius: 100%;
  display: none;
  margin: 10px auto !important;
  animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

@keyframes loadingD {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.main-menu-promo__item-link {
  display: block;
  position: absolute;
  top: 20px;
  font-size: 18px;
  color: #000 !important;
}

@media (max-width: 390px) {
  .paragraphWidget--748715 {
    padding-top: 25px;
  }
}
