@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;
  }
}

@keyframes swiper-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

.boldText {
  font-weight: 700;
}

.italicText {
  font-style: oblique;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0 !important;
}

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

main h2,
main h3 {
  font-weight: 700;
}

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;
}

.ctContainer {
  margin: 0 auto;
  width: 100%;
  background: 0 0;
  max-width: 1290px;
  background: #fff;
}

.ctContent {
  max-width: 795px;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .ctContent {
    max-width: 595px;
  }
}

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

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

.checkedList {
  display: flex;
  width: 100%;
}

.checkedList ul {
  padding-left: 0;
}

.checkedList ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
}

.checkedList ul li::before {
  content: none;
}

.checkedList__itemText {
  padding-left: 25px;
  font-family: sans-serif;
  font-weight: 400;
  font-size: 20px;
  word-break: break-word;
}

.checkedList__itemImgWrapper {
  display: flex;
  width: 100%;
  height: fit-content;
  max-width: 70px;
  min-width: 70px;
}

.checkedList__itemImg {
}

.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: 130px;
  box-shadow: 0 1px 2px 2px #7f7878;
}

.docInfoDoors__prize {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 40px;
  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: 300px;
}

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

.docInfoDoors__formStock {
  position: absolute;
  right: -5%;
  bottom: 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: normal;
  color: red;
  transition: 0.2s;
}

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

.docInfoDoors__timer .countdownTimerBox .timeBg {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 32px;
  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__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;
}

.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;
}

.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(../images/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;
}

.ketoChat {
  padding: 10px 20px;
}

.ketoChat__comment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  border-bottom: 2px solid #8080;
  padding: 10px 0 5px;
}

.oneImageWidget {
  padding: 15px;
}

.sliderZoom {
  padding: 0 45px;
  width: 100%;
}

.sliderZoom .swiper-container {
  display: flex;
  width: 100%;
  height: 500px;
}

.sliderZoom .swiper-slide.swiper-slide-active + .swiper-slide {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.18);
  transition: 0.9s;
}

.sliderZoom .swiper-slide.swiper-slide-active,
.sliderZoom .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 0.5;
}

.sliderZoom .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  opacity: 0;
}

.sliderZoom .swiper-slide__img {
  border-radius: 5px;
  width: 226px;
  height: 333px;
}

.sliderZoom .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sliderZoom .swiper-button-prev {
  left: -4px;
}

.sliderZoom .swiper-button-next {
  right: -7px;
}

.sliderZoom .swiper-button-prev::after {
  content: '';
  width: 10px;
  height: 17px;
  background: url(../images/sliderGreyPrev.png) no-repeat center center/cover;
}

.sliderZoom .swiper-button-next::after {
  content: '';
  width: 10px;
  height: 17px;
  background: url(../images/sliderGreyNext.png) no-repeat center center/cover;
}

.sliderZoom .swiper-button-next:focus,
.sliderZoom .swiper-button-prev:focus {
  outline: 0;
}

.sliderZoom .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 14px;
  display: flex;
  justify-content: center;
}

.sliderZoom .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  bottom: 90px;
  margin: 0 19px 0 0;
}

.sliderZoom .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin: 0;
}

.sliderZoom .swiper-pagination-bullet {
  display: inline-block;
  outline: 0;
  border-radius: 25px;
  width: 43px;
  height: 4px;
  background: #eaeaea;
  background-color: transparent;
  opacity: 1;
}

.sliderZoom .swiper-pagination-bullet-active {
  display: inline-block;
  margin: 0 4px;
  border-radius: 25px;
  width: 43px;
  height: 4px;
  background: gray;
}

@font-face {
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA)
    format('woff');
  font-family: swiper-icons;
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  position: relative;
  z-index: 1;
  list-style: none;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-property: transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: swiper-icons;
  font-variant: initial;
  font-size: var(--swiper-navigation-size);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev::after,
.swiper-container-rtl .swiper-button-next::after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
}

.swiper-button-next::after,
.swiper-container-rtl .swiper-button-prev::after {
  content: 'next';
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: 0.3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 0;
  bottom: 10px;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  appearance: none;
  margin: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  transform: translateY(-50%);
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  left: 0;
  top: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  margin-top: -21px;
  margin-left: -21px;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: transparent;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-sizing: border-box;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1000;
  opacity: 0;
  pointer-events: none;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  transition-property: opacity;
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  z-index: 1;
  width: 100%;
  height: 100%;
  visibility: hidden;
  backface-visibility: hidden;
  transform-origin: 0 0;
  pointer-events: none;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100%0;
}

.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.swiper-container-cube .swiper-cube-shadow::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  filter: blur(50px);
}

.swiper-container-flip .swiper-slide {
  z-index: 1;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.oneImageWidget__wrapper--235320 {
  max-width: 1100px;
}

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

.paragraphWidget__text--684683 {
  font-size: 26px;
  line-height: 33.8px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.textMedia--849547 {
  margin-bottom: 10px;
}

.oneImageWidget__wrapper--955642 {
  max-width: 700px;
  margin: 0 auto;
  box-sizing: unset;
}

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

.textMedia--289056 {
  background-color: #f7f7f7;
  border-radius: 5px;
  border: 1px ridge #000;
  margin-top: 0;
}

.imgWithText__wrapper--360237 {
  max-width: 300px;
}

.imgWithText__img--769237 {
  height: 100%;
}

.imgWithText__text--261468 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: rgba(68, 68, 68, 0.9);
}

.imgWithText--307349,
.imgWithText--457961,
.imgWithText--631317,
.imgWithText--695072 {
  font-weight: 700;
}

.paragraphWidget__text--633123 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--591329 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--201309,
.paragraphWidget--208110,
.paragraphWidget--251594,
.paragraphWidget--314821,
.paragraphWidget--349877,
.paragraphWidget--425718,
.paragraphWidget--441155,
.paragraphWidget--805210,
.paragraphWidget--864182,
.paragraphWidget--886396,
.paragraphWidget--919541 {
  font-weight: 700;
}

.paragraphWidget--330587 {
  font-weight: 400;
}

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

.paragraphWidget__text--804213 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--256856 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--101535,
.paragraphWidget--114008,
.paragraphWidget--330904,
.paragraphWidget--400746,
.paragraphWidget--505369,
.paragraphWidget--518966,
.paragraphWidget--691427,
.paragraphWidget--746193,
.paragraphWidget--751337,
.paragraphWidget--841020,
.paragraphWidget--897708,
.paragraphWidget--951972 {
  font-weight: 700;
}

.paragraphWidget__text--169397 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--515085 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--183050,
.paragraphWidget--638006,
.paragraphWidget--744997,
.paragraphWidget--900537 {
  font-weight: 700;
}

.paragraphWidget__text--519620 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--319691 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--322638,
.paragraphWidget--327384,
.paragraphWidget--450348,
.paragraphWidget--517625,
.paragraphWidget--874416 {
  font-weight: 700;
}

.oneImageWidget__wrapper--815944 {
  max-width: 700px;
}

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

.paragraphWidget__text--775125 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--788525 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--225155,
.paragraphWidget--229824,
.paragraphWidget--420875,
.paragraphWidget--488345,
.paragraphWidget--780271,
.paragraphWidget--962957,
.paragraphWidget--971820 {
  font-weight: 700;
}

.paragraphWidget__text--676338 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--575424 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--126573,
.paragraphWidget--432661,
.paragraphWidget--673350,
.paragraphWidget--961297 {
  font-weight: 700;
}

.paragraphWidget--182455 {
  font-weight: 400;
}

.paragraphWidget--581897,
.paragraphWidget--917518 {
  font-weight: 700;
}

.oneImageWidget__wrapper--850700 {
  max-width: 500px;
}

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

.paragraphWidget__text--938436 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--219692 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--334566,
.paragraphWidget--449630,
.paragraphWidget--610181,
.paragraphWidget--653040 {
  font-weight: 700;
}

.paragraphWidget__text--532448 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--481334 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--195962,
.paragraphWidget--492633,
.paragraphWidget--618259,
.paragraphWidget--794581 {
  font-weight: 700;
}

.paragraphWidget--499713 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.paragraphWidget--152102,
.paragraphWidget--259113,
.paragraphWidget--349711 {
  font-weight: 700;
}

.paragraphWidget__text--655350 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--827760 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--615920,
.paragraphWidget--695498,
.paragraphWidget--736341,
.paragraphWidget--802074,
.paragraphWidget--881505 {
  font-weight: 700;
}

.oneImageWidget__wrapper--797150 {
  max-width: 900px;
}

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

.paragraphWidget__text--515546 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--240503,
.paragraphWidget--351343,
.paragraphWidget--377653 {
  font-weight: 700;
}

.paragraphWidget--991098 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.paragraphWidget--429486,
.paragraphWidget--560774,
.paragraphWidget--968149 {
  font-weight: 700;
}

.oneImageWidget__wrapper--831635 {
  max-width: 900px;
}

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

.paragraphWidget__text--526628 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--351637 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.paragraphWidget--136775,
.paragraphWidget--231756,
.paragraphWidget--373260,
.paragraphWidget--455056,
.paragraphWidget--560511,
.paragraphWidget--643650,
.paragraphWidget--758378,
.paragraphWidget--962161,
.paragraphWidget--976719 {
  font-weight: 700;
}

.paragraphWidget__text--312353,
.paragraphWidget__text--697774 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
}

.paragraphWidget__text--697774 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}

.paragraphWidget__text--312353 {
  font-size: 18px;
  line-height: 23.4px;
  color: rgba(68, 68, 68, 0.9);
}

.oneImageWidget__wrapper--461778 {
  max-width: 700px;
}

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

.paragraphWidget__text--363575 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.oneImageWidget__wrapper--261291 {
  max-width: 500px;
}

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

.paragraphWidget__text--678679 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--572217 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

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

.paragraphWidget--572361 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.paragraphWidget__text--705281 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--845275 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--274515 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

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

.paragraphWidget__text--309069 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.checkedList__itemImgWrapper--533437 {
  max-width: 100px;
  height: 100px;
}

.checkedList__itemImg--815002 {
  height: 100%;
}

.checkedList__itemText--963868 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.checkedList--405642 {
  font-weight: 700;
}

.checkedList--878841 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.checkedList--260040 {
  font-weight: 700;
}

.checkedList__itemImgWrapper--272388 {
  max-width: 100px;
  height: 100px;
}

.checkedList__itemImg--882559 {
  height: 100%;
}

.checkedList__itemText--858695 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.checkedList--463488 {
  font-weight: 700;
}

.checkedList--910412 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.checkedList--183682 {
  font-weight: 700;
}

.checkedList__itemImgWrapper--251983 {
  max-width: 100px;
  height: 100px;
}

.checkedList__itemImg--106334 {
  height: 100%;
}

.checkedList__itemText--657601 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.checkedList--213468 {
  font-weight: 700;
}

.checkedList--339567 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.paragraphWidget__text--535909 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
  text-align: center;
}

.paragraphWidget__text--703854 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--323958 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

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

.paragraphWidget--455427 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.paragraphWidget--107357 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

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

.paragraphWidget--561863 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

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

.paragraphWidget__text--382642,
.paragraphWidget__text--885931 {
  font-size: 18px;
  line-height: 23.4px;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  text-align: right;
}

.paragraphWidget__text--382642 {
  font-weight: 700;
  text-align: center;
}

.undefined {
  display: none;
}

.winPopupDocInfoDoors__btn--835314,
.winPopupDocInfoDoors__iconRound--778069 {
  background-color: #1a87ef;
}

.docInfoDoors__formImgWrapper--936605 {
  max-width: 270px;
}

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

.docInfoDoors--204249 {
  text-decoration-line: line-through;
}

.docInfoDoors--625673 {
  font-size: 22px;
  line-height: 31.2px;
}

.docInfoDoors__formBtn--116625 {
  background-color: #1a87ef;
}

.docInfoDoors--949049 {
  font-weight: 400;
}

.docInfoDoors--280902 {
  font-weight: 700;
}

.docInfoDoors__textFooter--968595 {
  font-size: 14px;
  line-height: 18.2px;
  color: rgba(68, 68, 68, 0.9);
}

.textMedia--622025 {
  margin-top: 10px;
}

.paragraphWidget__text--128058 {
  color: #015d8e;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  font-family: sans-serif;
  font-style: normal;
}

.ketoChat__context--403293,
.ketoChat__context--734300 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--403293 {
  font-weight: 400;
}

.ketoChat__comment--991491 {
  padding-left: 70px;
}

.ketoChat__context--200327,
.ketoChat__context--698273 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--200327 {
  font-weight: 700;
  padding-left: 0;
}

.ketoChat__context--698273 {
  font-weight: 400;
}

.ketoChat--548511 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.imgBox__wrapper--826235 {
  display: flex;
  max-width: 250px;
  margin: 0 auto 0 0;
}

.ketoChat--487797 {
  height: 100%;
}

.ketoChat__context--141975,
.ketoChat__context--200285,
.ketoChat__context--495209,
.ketoChat__context--523476 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--200285,
.ketoChat__context--495209,
.ketoChat__context--523476 {
  font-weight: 400;
}

.ketoChat__context--495209,
.ketoChat__context--523476 {
  font-weight: 700;
}

.ketoChat__context--523476 {
  font-weight: 400;
}

.ketoChat--352569 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__comment--564228 {
  padding-left: 80px;
}

.ketoChat__context--589158 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--761509 {
  color: rgba(68, 68, 68, 0.9);
  font-weight: 400;
}

.ketoChat__context--991952 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--127043 {
  padding-left: 80px;
}

.ketoChat__context--694205,
.ketoChat__context--708049 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--694205 {
  font-weight: 400;
}

.ketoChat__comment--322273 {
  padding-left: 80px;
}

.ketoChat__context--348719 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--673794 {
  font-weight: 700;
  color: #666;
}

.ketoChat--280122 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--177984 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__context--181446,
.ketoChat__context--723249,
.ketoChat__context--784803,
.ketoChat__context--938484 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--181446,
.ketoChat__context--723249,
.ketoChat__context--938484 {
  font-weight: 400;
}

.ketoChat__context--181446,
.ketoChat__context--723249 {
  font-weight: 700;
}

.ketoChat__context--181446 {
  font-weight: 400;
}

.ketoChat--843221 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__comment--714552 {
  padding-left: 70px;
}

.ketoChat__context--178467,
.ketoChat__context--577458,
.ketoChat__context--665121 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--577458,
.ketoChat__context--665121 {
  font-weight: 400;
}

.ketoChat__context--577458 {
  font-weight: 700;
}

.ketoChat--136427 {
  color: rgba(68, 68, 68, 0.9);
  font-weight: 400;
}

.ketoChat--267891 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--599364 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--894381 {
  padding-left: 70px;
}

.ketoChat__context--415437,
.ketoChat__context--450201 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--450201 {
  font-weight: 400;
}

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

.ketoChat--477603 {
  height: 100%;
}

.ketoChat__context--109508,
.ketoChat__context--232869,
.ketoChat__context--529625,
.ketoChat__context--552608,
.ketoChat__context--716551 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--109508,
.ketoChat__context--232869,
.ketoChat__context--552608,
.ketoChat__context--716551 {
  font-weight: 400;
}

.ketoChat__context--109508,
.ketoChat__context--232869,
.ketoChat__context--552608 {
  font-weight: 700;
}

.ketoChat__context--109508,
.ketoChat__context--232869 {
  font-weight: 400;
}

.ketoChat__context--109508 {
  font-weight: 700;
}

.ketoChat--461800 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--936645 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--671059,
.ketoChat__context--857565 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--671059 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--857565 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--807458 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--436484,
.ketoChat__context--770266 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--436484 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--770266 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--171797 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--930645 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--469014 {
  padding-left: 70px;
}

.ketoChat__context--825299 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #666;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--255226,
.ketoChat--594684 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--594684 {
  font-weight: 700;
}

.ketoChat__context--108666 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--909830 {
  padding-left: 70px;
}

.ketoChat__context--324657 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--644335 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--485174,
.ketoChat--674255 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

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

.ketoChat--275663 {
  height: 100%;
}

.ketoChat__context--429848,
.ketoChat__context--981258 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--981258 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--429848 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--218698 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--353819 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--138845,
.ketoChat__context--711351 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--711351 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--138845 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--808695 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--637716 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--697591 {
  padding-left: 70px;
}

.ketoChat__context--745140 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--125324 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--999137 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--782709 {
  padding-left: 70px;
}

.ketoChat__context--265355 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--666562 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--523734,
.ketoChat__context--927164 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--927164 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--523734 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--674383 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.imgBox__wrapper--743241 {
  display: flex;
  max-width: 250px;
  margin: 0 auto 0 0;
}

.ketoChat--160018 {
  height: 100%;
}

.ketoChat__context--491453,
.ketoChat__context--497559 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--497559 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--491453 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--919844 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--258052,
.ketoChat__context--639300 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--258052 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--639300 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--784404 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--472112,
.ketoChat--764940 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--319776,
.ketoChat__context--440522 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--319776 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--440522 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--942168 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--140758 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--120606 {
  padding-left: 70px;
}

.ketoChat__context--902530 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--416817 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--958704 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat--579210 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--989359 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--956383 {
  padding-left: 70px;
}

.ketoChat__avatarWrapper--966764 {
  height: 71px;
}

.ketoChat__avatar--602750 {
  height: 100%;
}

.ketoChat__context--597661 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--468223 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--267304 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat--302830 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--701994,
.ketoChat__context--788012 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--701994 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--788012 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--903961 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--308854,
.ketoChat__context--347965 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--347965 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--308854 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--727456 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--825057 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--385835,
.ketoChat__context--577607 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--385835 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--577607 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--435231 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--556893 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.imgBox__wrapper--650196 {
  display: flex;
  max-width: 250px;
  margin: 0 auto 0 0;
}

.ketoChat--408423 {
  height: 100%;
}

.ketoChat__context--382849,
.ketoChat__context--703749 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--382849 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--703749 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--765461 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--485793 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--997163 {
  padding-left: 70px;
}

.ketoChat__context--889795 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--456087 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--302229,
.ketoChat__context--683140 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--683140 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--302229 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--677834 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--606612,
.ketoChat__context--981254 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--981254 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--606612 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--177568 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--782344 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--224344,
.ketoChat__context--755911 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--755911 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--224344 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--400746 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--149212,
.ketoChat__context--330556 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--149212 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--330556 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--503852 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--676941 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--292937 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--275384 {
  padding-left: 70px;
}

.ketoChat__context--180248 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--617123 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat__context--103725 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__comment--245765 {
  padding-left: 70px;
}

.ketoChat__context--684501 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--869384 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--935217 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--370854,
.ketoChat__context--735044 {
  font-family: sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat__context--370854 {
  font-weight: 400;
  color: #666;
}

.ketoChat__context--735044 {
  font-weight: 700;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--634128 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--370681 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--356868 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.ketoChat__avatarWrapper--193223 {
  height: 72px;
}

.ketoChat__avatar--452453 {
  height: 100%;
}

.ketoChat__context--605957 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(68, 68, 68, 0.9);
  font-size: 18px;
  line-height: 23.4px;
}

.ketoChat--476129 {
  font-weight: 400;
  color: rgba(68, 68, 68, 0.9);
}

.ketoChat--861764 {
  color: #1a87ef;
  cursor: pointer;
  font-weight: 700;
}

.ketoChat__context--848394 {
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 23.4px;
  color: #666;
}

.btnWrapper__btn--768250 {
  background-color: #015d8e;
  padding-left: 80px;
  padding-right: 80px;
  border-radius: 15px;
}

.btnWrapper--388283,
.btnWrapper--635029 {
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
}

.textMedia--503184 {
  background: #fff;
}

.oneImageWidget__wrapper--112143 {
  max-width: 900px;
}

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

@media (max-width: 1020px) {
  .imgWithText__textContainer {
    padding-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
}

@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) {
  .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: 13px;
    text-align: center;
  }

  .docInfoDoors__imageWrapper {
    max-width: 95px;
  }

  .winPopupDocInfoDoors__closeBtn {
    right: -5px;
  }

  .imgWithText__text {
    font-size: 16px;
  }

  .imgWithText {
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .sliderZoom .swiper-container {
    height: 350px;
  }

  .sliderZoom .swiper-slide.swiper-slide-active + .swiper-slide {
    transform: translate3d(0, 0, 0) scale(1.5);
  }

  .sliderZoom .swiper-slide__img {
    width: 121px;
    height: 180px;
  }

  .sliderZoom .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: 0;
  }

  .sliderZoom .swiper-pagination-bullet,
  .sliderZoom .swiper-pagination-bullet-active {
    width: 54px;
    height: 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(../images/flags%402x.png);
  }
}

@media (max-height: 500px) {
  .ketoChat__imgWrapper {
    height: auto;
  }
}

main {
  position: relative;
  max-width: 1025px;
  display: grid;
  grid-template-columns: 1fr 260px;
  column-gap: 10px;
  margin: 0 auto;
  background: #fff;
}

main .aside {
  background: #fff;
  text-align: center;
  padding-right: 20px;
  font-family: sans-serif;
  max-width: 260px;
}

.main {
  flex-grow: 1;
}

main .aside-item {
  border: 3px solid #e7b02f;
  padding: 10px;
  margin-top: 20px;
}

main .aside img {
  display: block;
  width: 100%;
}

main .aside-item-title {
  font-weight: 700;
  color: #0878b7;
  font-size: 18px;
  margin: 15px 10px 10px;
}

main .aside-item-stars {
  margin: 10px;
}

@media (max-width: 1023px) {
  main {
    display: block;
  }

  main .aside,
  .swiper.asideSwiper {
    display: none;
  }
}

.active-star {
  color: gold;
  text-shadow: 1px 1px 1px #000;
}

[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);
  }
}

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

.first-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.first-logo > img {
  height: 100%;
}
