

/* Start:/local/templates/raskat/assets/css/index.css?17424822134038*/
*, ::before, ::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body, p, ul{
  margin: 0;

}
.form-block{
  /*display: flex;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  width: 100%;
  height: 100vh;
  padding-top: 127px;
}

.form-block img{
  display: block;
  max-width: 100%;
}
/*  custom header styles */

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid #e6e6e6;
  background: #F6F6F6;
  font-family: "IBM Plex Sans", sans-serif;
}
.header-logo{
  display: block;
  height: 39px;
}
.header a{
  text-decoration: none;
}
.header-link:hover, .header-mail:hover, .header-phone:hover{
  color: #009482;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.header-wrapper {
  padding: 0 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo svg {
  width: auto;
  height: 39px;
  color: #000;
}
.header-navigation-list {
  list-style: none;
  display: flex;
  align-items: center;
}
.header-navigation-item:not(:last-child) {
  margin-right: 32px;
}
.header-navigation-item svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.header-link {
  display: flex;
  align-items: center;
  color: #161616;
  font-size: 16px;
  line-height: 24px;
  transition: all .3s;
}
.header-contacts {
  display: flex;
  align-items: center;
}
.header-contacts-tel {
  margin-right: 24px;
  font-weight: 500;
  font-size: 16px;
}
.header-contacts-icon svg {
  width: 32px;
  height: 32px;
  margin-right: 16px;
}
.header-wrapper {
  padding-top: 16px;
  padding-bottom: 16px;
}
.header-wrapper--bottom {
  position: relative;
  padding-top: 11px;
  padding-bottom: 11px;
}
.header-wrapper--bottom::after {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: #e6e6e6;
}
.header-info {
  color: #a9a9a9;
  font-size: 16px;
  line-height: 24px;
}
.button-login {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 32px;
  margin-right: 24px;
  border-radius: 8px 8px 8px 0px;
  transition: all .3s;
  color: #161616;
}
.button-login::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  opacity: 0;
  background: linear-gradient(180deg, #009482 -0.02%, #00d344 100.02%);
  border-radius: 8px 8px 8px 0px;
  z-index: 1;
}
.button-login::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  border: 1px solid #161616;
  border-radius: 8px 8px 8px 0px;
  z-index: 0;
}
.button-login:hover{
  color: #fff;
}
.button-login:hover::after {
  opacity: 1;
}
.button-reg {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-radius: 8px 8px 8px 0px;
  background: linear-gradient(180deg, #00d344 -0.02%, #009482 100.02%), #7daa30;
  padding: 12px 31px;
}
.button-reg span, .button-login span {
  position: relative;
  z-index: 2;
}
.button-reg::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  opacity: 0;
  background: linear-gradient(180deg, #009482 -0.02%, #00d344 100.02%);
  border-radius: 8px 8px 8px 0px;
}
.button-reg:hover::after {
  opacity: 1;
}
.header-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.line {
  width: 1px;
  height: 16px;
  background: #d9d9d9;
  margin-left: 24px;
  margin-right: 24px;
}
.header-mail {
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  transition: all .3s;
}
.header-phone {
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  transition: all .3s;
}
/* End */


/* Start:/local/templates/raskat/assets/css/raskat-registration.css?175673816743642*/
/* popup */

.base-popup,
.main-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 360px;
  transform: translate(-50%, -50%);
  z-index: 92;
  max-height: 100vh;
  max-height: calc(var(--vh, 1vh) * 100);
  overflow-y: auto;
  transition: opacity 0.3s linear;
}

.base-popup::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.base-popup::-webkit-scrollbar-track {
  background-color: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.base-popup::-webkit-scrollbar-thumb {
  background-color: #959BAD;
}

.base-popup--medium {
  max-width: 600px;
}

.base-popup--big {
  max-width: 1000px;
}

.base-popup__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 43, 56, 0.78);
  z-index: 91;
  transition: opacity 0.3s linear;
}

.base-popup__close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: url('/local/templates/raskat/assets/css/../img/close.png') no-repeat center;
  background-size: contain;
  z-index: 7;
  opacity: 0.3;
  transition: opacity 0.3s linear;
}

.base-popup__close:hover {
  opacity: 1;
}

.base-popup__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #959BAD;
  padding: 85px 100px 30px 50px;
}

.base-popup__content {
  background: #ffffff;
  padding: 45px 30px 30px;
  border: 0;
  z-index: 1;
}

.base-popup__text {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.base-popup__text p {
  margin-bottom: 25px;
}

.base-popup__warning-content {
  padding: 15px 40px 40px;
}

.base-popup__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 152px;
}

.base-popup__blocks button {
  width: 100%;
}

.base-popup__block-left {
  padding-right: 30px;
}

.base-popup__block-right {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  padding-left: 30px;
  position: relative;
}

.base-popup__block-right::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 152px;
  border-left: 2px solid #959BAD;
}

.base-popup__footer {
  padding: 0 40px 40px 40px;
}

.base-popup .form::after,
.base-popup .form::before {
  display: none;
}

.rate-popup,
.buy-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 92;
  width: 880px;
  max-height: 100vh;
  max-width: 100vw;
  overflow-y: auto;
}

.rate-popup::-webkit-scrollbar,
.buy-popup::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.rate-popup::-webkit-scrollbar-track,
.buy-popup::-webkit-scrollbar-track {
  background-color: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.rate-popup::-webkit-scrollbar-thumb,
.buy-popup::-webkit-scrollbar-thumb {
  background-color: #959BAD;
}

.rate-popup__close,
.buy-popup__close {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 60px;
  height: 60px;
  z-index: 93;
  border: 2px solid #959BAD;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.rate-popup__close::before,
.buy-popup__close::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #262B38;
  transform: scale(0, 1);
  transition: transform 1.5s ease-out, background-color 1.5s;
  transition-duration: 0.5s;
}

.rate-popup__close:hover,
.buy-popup__close:hover {
  border-color: #262B38;
  color: #ffffff;
}

.rate-popup__close:hover::before,
.buy-popup__close:hover::before {
  transform: none;
}

.rate-popup__close:hover .icon-close::before,
.buy-popup__close:hover .icon-close::before,
.rate-popup__close:hover .icon-close::after,
.buy-popup__close:hover .icon-close::after {
  background-color: #ffffff;
}

.rate-popup__close svg,
.buy-popup__close svg {
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  width: 20px;
  height: 20px;
}

.maillist-popup {
  background: #ffffff;
  max-width: 880px;
  min-height: 578px;
}

.maillist-popup__content {
  width: 100%;
  min-height: 200px;
  padding: 15px 100px 30px 50px;
}

.maillist-popup__header {
  background-color: #fff;
  position: relative;
  border-bottom: 2px solid #959bad;
}

.maillist-popup__close {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 60px;
  height: 60px;
  z-index: 93;
  border: 2px solid #959BAD;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.maillist-popup__close::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #262B38;
  transform: scale(0, 1);
  transition: transform 1.5s ease-out, background-color 1.5s;
  transition-duration: 0.5s;
}

.maillist-popup__close:hover {
  border-color: #262B38;
  color: #ffffff;
}

.maillist-popup__close:hover::before {
  transform: none;
}

.maillist-popup__close:hover .icon-close::before,
.maillist-popup__close:hover .icon-close::after {
  background-color: #ffffff;
}

.maillist-popup__close svg {
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  width: 20px;
  height: 20px;
}

.maillist-popup .icon-close {
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
}

.maillist-popup .icon-close::before,
.maillist-popup .icon-close::after {
  content: " ";
  position: absolute;
  z-index: 1;
  background: #959bad;
}

.maillist-popup .icon-close:before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
}

.maillist-popup .icon-close:after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
}

.change-email-popup {
  max-width: 400px;
  background-color: #ffffff;
  text-align: center;
}

.full-popup {
  display: none;
  position: fixed;
  z-index: 92;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  max-width: 1500px;
  max-height: 1026px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.full-popup::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.full-popup::-webkit-scrollbar-track {
  background-color: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.full-popup::-webkit-scrollbar-thumb {
  background-color: #959BAD;
}

.full-popup .wrapper {
  padding: 0 140px 0 80px;
  margin: 0;
}

.full-popup__header {
  position: relative;
  height: 100px;
  border-bottom: 2px solid #959BAD;
}

.full-popup__close {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #959bad;
  width: 60px;
  height: 60px;
}

.full-popup__close::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #262B38;
  transform: scale(0, 1);
  transition: transform 1.5s ease-out, background-color 1.5s;
  transition-duration: 0.5s;
}

.full-popup__close:hover {
  border-color: #262B38;
  color: #ffffff;
}

.full-popup__close:hover::before {
  transform: none;
}

.full-popup__close:hover .icon-close::before,
.full-popup__close:hover .icon-close::after {
  background-color: #ffffff;
}

.full-popup__close .icon-close {
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
}

.full-popup__close .icon-close::before,
.full-popup__close .icon-close::after {
  content: " ";
  position: absolute;
  z-index: 1;
  background: #959bad;
}

.full-popup__close .icon-close:before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
}

.full-popup__close .icon-close:after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
}

.full-popup--auto-height {
  height: auto;
  min-height: 673px;
  max-height: 100%;
}

body.locked {
  overflow: hidden;
}

.main-popup {
  background: #ffffff;
  max-width: 880px;
  min-height: 578px;
}

.main-popup__header {
  background-color: #fff;
  position: relative;
  border-bottom: 2px solid #959bad;
}

.main-popup__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #959BAD;
  padding: 85px 100px 30px 50px;
}

.main-popup__content {
  width: 100%;
  min-height: 200px;
  padding: 15px 100px 30px 50px;
}

.main-popup__text {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.main-popup__text p {
  margin-bottom: 25px;
}

.main-popup__close {
  position: absolute;
  right: 40px;
  top: 30px;
  width: 60px;
  height: 60px;
  z-index: 93;
  border: 2px solid #959BAD;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-popup__close::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #262B38;
  transform: scale(0, 1);
  transition: transform 1.5s ease-out, background-color 1.5s;
  transition-duration: 0.5s;
}

.main-popup__close:hover {
  border-color: #262B38;
  color: #ffffff;
}

.main-popup__close:hover::before {
  transform: none;
}

.main-popup__close:hover .icon-close::before,
.main-popup__close:hover .icon-close::after {
  background-color: #ffffff;
}

.main-popup__close svg {
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  width: 20px;
  height: 20px;
}

.main-popup .icon-close {
  position: relative;
  z-index: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
}

.main-popup .icon-close::before,
.main-popup .icon-close::after {
  content: " ";
  position: absolute;
  z-index: 1;
  background: #959bad;
}

.main-popup .icon-close:before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
}

.main-popup .icon-close:after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
}

.main-popup__footer {
  padding: 0 40px 40px 40px;
}

.main-popup__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 152px;
}

.main-popup__blocks button {
  width: 100%;
}

.main-popup__block-left {
  padding-right: 30px;
}

.main-popup__block-right {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  padding-left: 30px;
  position: relative;
}

.main-popup__block-right::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 152px;
  border-left: 2px solid #959BAD;
}

.popup-marketing .popup {
  position: fixed;
  top: unset;
  left: unset;
  right: 40px;
  bottom: 40px;
  z-index: 7;
  padding: 32px;
  border-radius: 4px;
  opacity: 0;
  display: none;
  visibility: hidden;
  max-width: 560px;
  box-shadow: 0 0 70px 0 #0000002e;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  transform: none;
}

.popup-marketing .popup__text span {
  color: #5C94FF;
}

.popup-marketing .popup__buttons {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.popup-marketing .popup__buttons .button {
  padding-left: 31px;
  padding-right: 31px;
  font-size: inherit;
}

@media (max-width: 1920px) {
  .popup-marketing .popup {
    max-width: max(29.1667vw, 500px);
    padding: max(1.6667vw, 24px);
  }
}

@media (max-width: 1440px) {
  .popup-marketing .popup__buttons .button {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 1300px) {
  .rate-popup__close,
  .buy-popup__close {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 40px;
  }

  .rate-popup__close svg,
  .buy-popup__close svg {
    width: 16px;
    height: 16px;
  }

  .maillist-popup__close {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 40px;
  }

  .maillist-popup__close svg {
    width: 16px;
    height: 16px;
  }

  .main-popup__close {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 40px;
  }

  .main-popup__close svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1100px) {
  .base-popup--big {
    height: 100vh;
    width: 100vw;
    max-width: unset;
  }

  .base-popup--big .base-popup__content {
    min-height: 100%;
  }
}

@media (max-width: 1023px) and (max-height: 1023px) {
  .base-popup--medium {
    max-width: 100%;
  }

  .base-popup--medium .base-popup__content {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .base-popup--big {
    max-width: 100%;
  }

  .rate-popup,
  .buy-popup {
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

@media (max-width: 767px) {
  .base-popup,
  .main-popup {
    max-width: 235px;
  }

  .base-popup--medium {
    max-width: 100%;
  }

  .base-popup--big {
    max-width: 100%;
  }

  .rate-popup__close,
  .buy-popup__close {
    top: 10px;
    right: 20px;
  }

  .maillist-popup {
    max-width: 880px;
  }

  .maillist-popup__close {
    top: 10px;
    right: 20px;
  }

  .main-popup {
    max-width: 880px;
  }

  .main-popup__title {
    font-size: 42px;
  }

  .main-popup__text {
    font-size: 24px;
  }

  .main-popup__close {
    top: 10px;
    right: 20px;
  }
}

@media (max-width: 650px) {
  .popup-marketing .popup {
    max-width: calc(100vw - var(--container-padding-native) * 2);
    right: var(--container-padding-native);
    bottom: var(--container-padding-native);
    width: 100%;
  }
}

@media (max-width: 480px) {
  .base-popup--medium .base-popup__content {
    padding: 50px 20px 20px;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .base-popup__title {
    font-size: 42px;
  }

  .base-popup__text {
    font-size: 24px;
  }

  .rate-popup,
  .buy-popup {
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }

  .rate-popup__close,
  .buy-popup__close {
    width: 40px;
    height: 40px;
  }

  .rate-popup__close svg,
  .buy-popup__close svg {
    width: 16px;
    height: 16px;
  }

  .maillist-popup__close {
    width: 40px;
    height: 40px;
  }

  .maillist-popup__close svg {
    width: 16px;
    height: 16px;
  }

  .main-popup__close {
    width: 40px;
    height: 40px;
  }

  .main-popup__close svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 430px) {
  .popup-marketing .popup {
    bottom: 18px;
    padding: 20px;
    font-size: 13px;
  }

  .popup-marketing .popup__buttons {
    margin-top: 16px;
    font-size: 14px;
  }

  .popup-marketing .popup__buttons .button {
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1;
  }
}
.checkbox {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 0 4px 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox.disabled {
  cursor: default;
}

.checkbox-title {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 16px;
  padding-left: 10px;
  color: #8E8E8E;
}

.base-form__input .checkbox-title {
  white-space: normal;
}

.checkbox-title a {
  text-decoration: underline;
  color: #0a7ddd;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox input:checked ~ .checkbox-mark {
  background-color: #009482;
  border-color: #009482;
}

.checkbox input:checked ~ .checkbox-mark::after {
  display: block;
}

.checkbox input:disabled ~ .checkbox-mark {
  background-color: #e4e4e4;
  cursor: default;
  border: 1px solid #e4e4e4;
}

.checkbox input:disabled:not(:checked) ~ .checkbox-mark::after {
  display: none;
}

.checkbox-mark {
  position: absolute;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  background-color: #ffffff;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-property: background-color, border-color;
}

.checkbox-mark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox--requests input:checked ~ .checkbox-mark {
  background-color: #262B38;
  border-color: #262B38;
}

.checkbox-black {
  padding-left: 28px;
  cursor: pointer;
}

.checkbox-black label {
  display: block;
  cursor: pointer;
  position: relative;
  color: #4B4F5F;
  font-size: 20px;
  line-height: 24px;
  padding-left: 28px;
}

.checkbox-black input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  opacity: 0;
}

.checkbox-black span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid #DCDCDC;
  transition: 0.3s ease;
  padding: 3px;
}

.checkbox-black label:hover span {
  border: 1px solid #3E4454;
}

.checkbox-black input + span::after {
  position: absolute;
  content: '';
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAIAAADZrBkAAAAACXBIWXMAAAsTAAALEwEAmpwYAAAE7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuYjBmOGJlOSwgMjAyMS8xMi8wOC0xOToxMToyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjIgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wMi0yMlQxNDozMzo1MyswNDowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDItMjJUMTQ6MzQ6MzIrMDQ6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMDItMjJUMTQ6MzQ6MzIrMDQ6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjljYWNiODMzLTM5YjctZjA0Yi1hN2YxLTFmM2RiMjc3ODllYSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5Y2FjYjgzMy0zOWI3LWYwNGItYTdmMS0xZjNkYjI3Nzg5ZWEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo5Y2FjYjgzMy0zOWI3LWYwNGItYTdmMS0xZjNkYjI3Nzg5ZWEiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjljYWNiODMzLTM5YjctZjA0Yi1hN2YxLTFmM2RiMjc3ODllYSIgc3RFdnQ6d2hlbj0iMjAyNC0wMi0yMlQxNDozMzo1MyswNDowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIzLjIgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhDqT64AAACnSURBVCiRY7RzCWEgHTCRoWfQajPQ0yZZm6ebw8TehsrSbBK0ebo5VJRmMzAwPH/xGrs2CXFRGytTrHrmL1q9YPEquDizvJIWhMXDwz19cpu/j9uLl6/v3H2ARw+Ktl+/fvPwcBvqa9tam714+VpVWQGXHhRtDAwMFy5eZWBkhOi0sTbDpQddG7JOPHoYGBhYMIUWLFrFwMDA8J8Blx4GBgbG0aSMDgDJ50I01QsONAAAAABJRU5ErkJggg==') no-repeat center;
  opacity: 0;
  transition: 0.3s ease;
}

.checkbox-black input:checked + span::after {
  opacity: 1;
}

@media (hover: hover) {
  .checkbox:hover .checkbox-mark {
    border-color: #8E8E8E;
  }

  .checkbox-title a:hover {
    color: #4476D6;
  }
}
.heading--form {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
  margin-top: 20px;
  line-height: 1.5;
  color: #8E8E8E;
}

body {
  background-color: #F6F6F6;
  font-family: "IBM Plex Sans", sans-serif;
}

.form-block {
  background-color: #F6F6F6;
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.base-form {
  display: block;
  position: relative;
  width: 100%;
}

.base-form--page {
  background-color: #ffffff;
  max-width: 1020px;
  padding: 42px;
  border-radius: 8px;
  margin: 0 auto;
}

.base-form--page .base-form__title {
  text-align: center;
}

.base-form--page .base-form__desc {
  text-align: center;
}

.base-form__steps {
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #00D344;
  -ms-flex-pack: center;
  justify-content: center;
}

.base-form__step {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
}

.base-form__step-number {
  font-size: 20px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border: 1px solid #F1F1F1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  border-radius: 5px;
}

.base-form__step-number:not(.base-form__step:last-child .base-form__step-number):after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #F1F1F1;
  left: 50px;
  width: 150px;
}

.base-form__step-title {
  font-size: 16px;
  color: #8E8E8E;
}

.base-form__step.active .base-form__step-number {
  background: linear-gradient(0deg, #009482 0%, #00D344 100%);
  color: #ffffff;
  border: none;
}

.base-form__blocks {
  padding-top: 20px;
}

.base-form__block {
  display: none;
}

.base-form__block.active {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.base-form__block .base-form__input {
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.base-form__block .base-form__input:nth-child(odd) {
  padding-right: 10px;
}

.base-form__block .base-form__input:nth-child(even) {
  padding-left: 10px;
}

.base-form__block-footer {
  width: 100%;
}

.base-form__block-footer .base-form__input:nth-child(odd),
.base-form__block-footer .base-form__input:nth-child(even) {
  padding: 0;
}

.base-form__block:first-of-type .base-form__btns {
  -ms-flex-pack: end;
  justify-content: end;
}

.base-form__single-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.base-form__single-block .base-form__input {
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.base-form__single-block .base-form__links {
  width: 50%;
}

.base-form__btns {
  padding-top: 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.base-form__footer {
  margin-top: 18px;
}

.base-form__footer .base-form__txt {
  font-size: 14px;
}

.base-form__container {
  display: block;
  position: relative;
  width: 100%;
  background: #F6F6F6;
  padding: 39px 45px 48px 45px;
  border: 0;
  z-index: 1;
}

.base-form__title {
  display: block;
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  position: relative;
  text-align: center;
}

.base-form__label {
  font-size: 14px;
  margin-top: 12px;
  color: #8E8E8E;
}

.base-form__errors {
  font-size: 13px;
  color: #cc0000;
  padding-top: 10px;
  text-align: center;
}

.base-form--page .base-form__errors {
  padding-top: 16px;
}

.base-form__errors a {
  text-decoration: underline;
}

.base-form__desc {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-top: 1px solid #00D344;
  color: #8E8E8E;
  font-size: 15px;
  line-height: 18px;
  position: relative;
  padding-top: 17px;
  margin-bottom: 35px;
}

.base-form__error-title {
  font-weight: 600;
  color: #272b37;
  margin-bottom: 10px;
  font-size: 15px;
}

.base-form__error-text {
  max-height: 200px;
  overflow-y: auto;
}

.base-form__input {
  margin-top: 16px;
  position: relative;
}

.base-form__input-container {
  width: 100%;
}

.base-form__submit {
  margin-top: 21px;
}

.base-form__txt {
  display: block;
  position: relative;
  font-size: 12px;
  color: #8E8E8E;
  margin-top: 4px;
  width: 100%;
}

.base-form__message {
  font-size: 14px;
  color: #272b37;
  line-height: 1.4;
  padding: 30px 0 10px;
  max-width: 220px;
  display: inline-block;
}

.base-form__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.base-form__links a {
  color: #3E4454;
  border-bottom: 1px solid #3E4454;
  position: relative;
}

.base-form__radio {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 7px;
}

.base-form__radio-title {
  width: 100%;
  margin-bottom: 8px;
}

.base-form__radio label + label {
  margin-left: 15px;
}

.base-form--resizable::after {
  position: absolute;
  content: '';
  top: -13px;
  left: 4%;
  width: 92%;
  height: 100%;
  background: rgba(255, 255, 255, 0.36);
  z-index: 0;
}

.base-form--resizable::before {
  position: absolute;
  content: '';
  top: -25px;
  left: 8%;
  width: 84%;
  height: 100%;
  background: rgba(255, 255, 255, 0.36);
  z-index: 0;
}

.base-form .button {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  border-radius: 8px 8px 8px 0px;
  background: linear-gradient(180deg, #00d344 -0.02%, #009482 100.02%), #7daa30;
  padding: 12px 31px;
}

.base-form .button span {
  position: relative;
  z-index: 2;
}

.base-form .button::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  opacity: 0;
  background: linear-gradient(180deg, #009482 -0.02%, #00d344 100.02%);
  border-radius: 8px 8px 8px 0px;
}

.base-form .button:hover::after {
  opacity: 1;
}

.base-form .button[disabled] {
  pointer-events: none;
  opacity: 0.6;
  cursor: default;
}

.base-form__notification {
  margin-top: 1.3rem;
}

button {
  width: auto;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.hover-popup {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  z-index: 1;
  border: 2px solid #ad1616;
  padding: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.3;
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.captcha-notification {
  display: block;
  color: #8E8E8E;
  font-size: 13px;
  line-height: 1.3;
}

.captcha-notification a {
  color: #0a7ddd;
  text-decoration: underline;
}

.captcha-notification a:hover {
  color: #4476D6;
}

@media (max-width: 1100px) {
  .base-form__step {
    width: 180px;
  }

  .base-form__step-number:not(.base-form__step:last-child .base-form__step-number):after {
    width: 130px;
  }

  .base-form__single-block .base-form__links {
    width: 100%;
    margin-top: 20px;
  }

  .base-form--resizable {
    margin-right: auto;
    max-width: 514px;
  }

  .base-form__notification {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .heading--form {
    font-size: 16px;
  }

  .base-form--page {
    max-width: unset;
    box-shadow: none;
    border-radius: 0;
    padding: 25px 20px;
  }

  .base-form--page .base-form__desc {
    font-size: 12px;
  }

  .base-form__steps {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 15px;
  }

  .base-form__step {
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin-bottom: 15px;
  }

  .base-form__step-number {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
    font-size: 16px;
  }

  .base-form__step-number:not(.base-form__step:last-child .base-form__step-number):after {
    transform: none;
    width: 1px;
    height: 15px;
    top: 30px;
    left: 50%;
  }

  .base-form__block .base-form__input {
    width: 100%;
  }

  .base-form__block .base-form__input:nth-child(odd) {
    padding: 0;
  }

  .base-form__block .base-form__input:nth-child(even) {
    padding: 0;
  }

  .base-form__single-block .base-form__input {
    width: 100%;
  }

  .base-form__container {
    width: 100%;
    padding: 34px 30px 39px 30px;
  }

  .base-form__container .base-form__links a {
    font-size: 10px;
    line-height: 14px;
  }

  .base-form__title {
    font-size: 17px;
    line-height: 17px;
  }

  .base-form__desc {
    margin-top: 11px;
    margin-bottom: 11px;
    padding-top: 10px;
    border-top: 2px solid #f5f5f5;
    font-size: 10px;
    line-height: 1.2;
  }

  .base-form__input {
    margin-top: 8px;
  }

  .base-form__submit {
    margin-top: 14px;
  }

  .base-form__txt {
    font-size: 12px;
    line-height: 1.2;
  }

  .base-form__links {
    margin-top: 9px;
  }

  .base-form__links a {
    font-size: 12px;
  }

  .base-form--resizable::after {
    top: -8px;
  }

  .base-form--resizable::before {
    top: -16px;
  }

  .base-form--resizable .base-form__container {
    padding-bottom: 48px;
  }

  .hover-popup {
    font-size: 11px;
    padding: 0.5rem;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .base-form--resizable .base-form__container {
    max-width: none;
    padding: 69px 65px;
  }

  .base-form--resizable .base-form__title {
    font-size: 35px;
    line-height: 35px;
  }

  .base-form--resizable .base-form__desc {
    font-size: 22px;
    line-height: 1.2;
    border-top: 3px solid #f5f5f5;
    margin-top: 19px;
    padding-top: 25px;
  }

  .base-form--resizable .base-form__input {
    margin-top: 11px;
  }

  .base-form--resizable .base-form__submit {
    margin-top: 30px;
  }

  .base-form--resizable .base-form__links {
    margin-top: 30px;
  }

  .base-form--resizable .base-form__links a {
    font-size: 21px;
  }
}
html {
  font-family: "IBM Plex Sans", sans-serif;
}

.wrapper {
  display: block;
  width: 100%;
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding-native);
  margin-left: auto;
  margin-right: auto;
}

input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 9.5px 12px;
  color: #272b37;
  border: 1px solid #D9D9D9;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 1;
  outline: none;
  border-radius: 0;
  font-weight: 400;
  font-family: "IBM Plex Sans", sans-serif;
  transition: border 0.3s ease;
}

.input:-moz-read-only:not(.input--select) {
  opacity: 0.6;
  cursor: default;
  background-color: #f1f1f1;
}

.input.disabled,
.input:disabled,
.input:read-only:not(.input--select) {
  opacity: 0.6;
  cursor: default;
  background-color: #f1f1f1;
}

.input:not(:-moz-read-only, .input--error):focus {
  border: 1px solid #009482;
  font-family: "IBM Plex Sans", sans-serif;
}

.input:not(:read-only, .input--error):focus {
  border: 1px solid #009482;
  font-family: "IBM Plex Sans", sans-serif;
}

.input::-moz-placeholder {
  color: #8E8E8E;
  font-weight: 400;
}

.input:-ms-input-placeholder {
  color: #8E8E8E;
  font-weight: 400;
}

.input::placeholder {
  color: #8E8E8E;
  font-weight: 400;
}

.input:-moz-placeholder,
.input::-moz-placeholder {
  opacity: 1;
}

.input--large {
  padding: 12px 16px;
  font-size: 16px;
  height: 48px;
}

.input--small {
  font-size: 13px;
  line-height: 1.15;
  padding: 2px 3px;
  width: 60px;
}

.input--small::-moz-placeholder {
  color: #959bad;
}

.input--small:-ms-input-placeholder {
  color: #959bad;
}

.input--small::placeholder {
  color: #959bad;
}

.input--rounded {
  border-radius: 8px;
}

.input--dark {
  color: #fff;
  border: 1px solid #959bad;
  background-color: #959bad;
}

.input--dark::-moz-placeholder {
  color: #fff;
}

.input--dark:-ms-input-placeholder {
  color: #fff;
}

.input--dark::placeholder {
  color: #fff;
}

.input--noborder {
  border: none;
}

.input--noborder::-moz-placeholder {
  color: #959bad;
}

.input--noborder:-ms-input-placeholder {
  color: #959bad;
}

.input--noborder::placeholder {
  color: #959bad;
}

.input--error {
  border-color: #cc0000;
}

.input--field {
  max-width: 606px;
  padding: 16px 25px 20px;
  border: 2px solid #959BAD;
  font-size: 20px;
  line-height: 1;
}

.input--field:not(:-moz-read-only, .input--error):focus {
  border: 2px solid #959BAD;
}

.input--field:not(:read-only, .input--error):focus {
  border: 2px solid #959BAD;
}

.input--select {
  padding: 0;
  width: 100%;
  border: none;
}

.input--select .ss-main {
  padding: 16px 25px 20px;
  background-color: #EFF0F3;
  border-radius: 0;
  border: 2px solid #959BAD;
  line-height: 1.2;
  color: inherit;
}

.input--select .ss-main:focus {
  box-shadow: none;
}

.input__quantity {
  height: 32px;
  display: -ms-flexbox;
  display: flex;
}

.input__quantity input {
  border-left: 0;
  border-right: 0;
  padding: 6.5px 0;
  text-align: center;
  width: 36px;
  height: 100%;
  border-radius: 0;
  -moz-appearance: textfield;
}

.input__quantity input::-webkit-outer-spin-button,
.input__quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.input__quantity input:disabled {
  color: #959bad;
  pointer-events: none;
}

.input__quantity input:focus {
  border-color: #959bad;
  border-left: 0;
  border-right: 0;
}

.input__quantity-btn {
  display: inline-block;
  vertical-align: top;
  width: 22px;
  height: 100%;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: #8E8E8E;
  background: #ffffff;
}

.input__quantity-btn:disabled {
  color: #959bad;
  pointer-events: none;
}

.input__quantity-btn--minus {
  border-left: 1px solid #959bad;
  border-top: 1px solid #959bad;
  border-bottom: 1px solid #959bad;
}

.input__quantity-btn--plus {
  border-right: 1px solid #959bad;
  border-top: 1px solid #959bad;
  border-bottom: 1px solid #959bad;
}

.input__quantity--noborder {
  height: unset;
}

.input__quantity--noborder input {
  padding: 0;
  border: none;
  background: none;
  font-size: 12px;
}

.input__quantity--noborder .input__quantity-btn {
  border: none;
  background: none;
}

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

.input__select-clear {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%238E8E8E'%3E%3Cpath d='m16.192 6.344-4.243 4.242-4.242-4.242-1.414 1.414L10.535 12l-4.242 4.242 1.414 1.414 4.242-4.242 4.243 4.242 1.414-1.414L13.364 12l4.242-4.242z'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  cursor: pointer;
  display: none;
}

.input__select-clear.active {
  display: block;
}

.input__select-block {
  position: absolute;
  top: 100%;
  background-color: #fff;
  padding: 9px 0;
  z-index: 2;
  border: 1px solid #959aad;
  display: none;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

.input__select-block--medium {
  max-height: 200px;
}

.input__select-block--medium .input__select-option {
  padding: 8px 16px;
}

.input__select-block.active {
  display: block;
}

.input__select-option {
  font-size: 14px;
  padding: 15px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}

.input__select-option.not-active {
  background-color: #fa4c4c;
  cursor: auto;
}

.input__select-option.not-active:hover {
  background-color: #fa4c4c;
}

.input__select-option:hover {
  background: #EFF0F3;
}

.input__select-name {
  width: 100%;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 14px;
}

.input__select-inn,
.input__select-kpp,
.input__select-work-street {
  font-size: 12px;
}

.input__select-address {
  font-size: 12px;
  width: 100%;
  margin-top: 7px;
  color: #959BAD;
}

.input--request {
  padding: 16px 19px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid #E4E4E4;
}

.input--request::-moz-placeholder {
  color: #7A7F89;
}

.input--request:-ms-input-placeholder {
  color: #7A7F89;
}

.input--request::placeholder {
  color: #7A7F89;
}

.input--file-requests {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
}

.input._empty {
  color: #ad1616;
}

.input._empty:hover + .hover-popup {
  display: block;
  animation: fadeIn forwards ease 0.4s;
}

.input--capital {
  text-transform: capitalize;
}

.label {
  font-size: 14px;
  line-height: calc(20 / 14);
  color: #262B38;
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 767px) {
  .input {
    padding: 5.5px 12px;
    font-size: 11px;
    line-height: 13px;
  }

  .input--large {
    padding: 9px 12px;
    font-size: 12px;
    height: 34px;
  }

  .input--select {
    padding: 0;
  }

  .input--select .ss-main {
    padding: 5.5px 12px;
    font-size: 11px;
  }

  .input__select-option {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .input__select-block--medium {
    max-height: 130px;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .input--resizable {
    padding: 22.5px 12px;
    font-size: 22px;
    line-height: 1;
  }
}
.select-element {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 15px;
  line-height: 1;
}

.select-element.active .select__options {
  display: block;
}

.select-element.active .select__current::after {
  transform: translateY(-50%) rotate(225deg);
}

.select-element.input--error:not(.active) .select__current {
  border: 1px solid #cc0000;
}

.select-element.readonly .select__current {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
  background-color: #f1f1f1;
}

.select__current {
  height: 48px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  color: #8E8E8E;
}

.select-element.active .select__current {
  border-radius: 0 0 0 0;
  border-bottom: none;
}

.select__current::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  transition: 0.2s ease;
  border: solid #8E8E8E;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: translateY(-50%) rotate(45deg);
}

.select__options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0 0 10px;
  z-index: 2;
  max-height: 220px;
  overflow-y: auto;
}

.select__options .select__item {
  cursor: pointer;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.select__options .select__item:hover {
  background-color: #F6F6F6;
}

.select__options::-webkit-scrollbar {
  width: 5px;
}

.select__options::-webkit-scrollbar-thumb {
  border: 5px solid #8E8E8E;
  border-radius: 0;
  background: #fff;
}

.select__item {
  color: #8E8E8E;
  width: 100%;
  position: relative;
}

.select__item.active {
  color: #272b37;
}

@media (max-width: 767px) {
  .select-element {
    font-size: 12px;
  }

  .select__current {
    padding: 9px 12px;
    border-radius: 0;
    height: 34px;
    font-size: 12px;
  }

  .select-element.active .select__current {
    border-radius: 0 0 0 0;
  }

  .select__options {
    padding: 0 0 9px;
  }

  .select__options .select__item {
    padding: 5px 12px;
  }
}
.base-form__input .ss-main {
  border-radius: 8px;
  height: 48px;
  padding: 0;
  border: 1px solid #D9D9D9;
}

.base-form__input .ss-main:focus {
  box-shadow: none;
}

.base-form__input .ss-main .ss-single-selected,
.base-form__input .ss-main .ss-values {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: relative;
  color: #8E8E8E;
  font-size: 15px;
  padding: 12px 16px;
  margin-top: 0;
}

.base-form__input .ss-main .ss-arrow {
  margin-right: 12px;
  width: 14px;
}

.base-form__input .ss-main .ss-arrow path {
  stroke: #D9D9D9;
}

.base-form__input .ss-main .ss-single-selected .ss-arrow {
  margin: 0 6px;
}

.base-form__input .ss-main .ss-content {
  width: calc(100% + 2px);
  margin: -1px;
}

.base-form__input .ss-main.ss-open-below {
  border-bottom: none;
}

.base-form__input .ss-main .ss-placeholder {
  padding: 0 !important;
  color: #D9D9D9 !important;
  line-height: inherit;
}

.base-form__input .ss-main .ss-values .ss-single {
  margin: auto 0;
}

.base-form__input .ss-main.input--error {
  border: 1px solid #cc0000;
}

.base-form__input .ss-main .placeholder {
  font-size: 16px;
}

.base-form__input .ss-main .placeholder .ss-disabled {
  color: #D9D9D9;
}

.base-form__input .ss-content {
  border: 1px solid #D9D9D9;
  border-top: none;
  border-radius: 0 0 8px 8px;
  top: 85%;
  font-family: "IBM Plex Sans", sans-serif;
}

.base-form__input .ss-content .ss-list .ss-option.ss-highlighted,
.base-form__input .ss-content .ss-list .ss-option:hover {
  background-color: #EFF0F3;
  color: #8E8E8E;
}

.base-form__input .ss-content .ss-search input {
  border-radius: 4px;
  font-size: 15px;
  height: 40px;
}

.base-form__input .ss-content .ss-search input::-moz-placeholder {
  font-family: "IBM Plex Sans", sans-serif;
}

.base-form__input .ss-content .ss-search input:-ms-input-placeholder {
  font-family: "IBM Plex Sans", sans-serif;
}

.base-form__input .ss-content .ss-search input::placeholder {
  font-family: "IBM Plex Sans", sans-serif;
}

.base-form__input .ss-content .ss-search input:focus {
  box-shadow: none;
}

.ss-content {
  border: 1px solid #D9D9D9 !important;
  border-top: none !important;
}

.ss-content.ss-open-below {
  max-height: 220px !important;
}

.ss-content .ss-list {
  max-height: 220px;
}

.ss-content .ss-list .ss-option {
  padding: 8px 16px !important;
  font-size: 15px;
  color: #8E8E8E !important;
}

.ss-content .ss-list .ss-option:hover {
  background-color: #F6F6F6 !important;
  color: #8E8E8E !important;
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background-color: #D9D9D9 !important;
}

.ss-content .ss-search input {
  -webkit-appearance: none !important;
}

.ss-content .ss-search input:focus {
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .base-form__input .ss-main .ss-single-selected,
  .base-form__input .ss-main .ss-values {
    padding: 9px 12px;
    font-size: 12px;
  }

  .base-form__input .ss-main {
    height: 34px;
  }

  .ss-content .ss-list .ss-option {
    font-size: 12px !important;
  }
}
.tippy-box[data-theme~='3llight'] {
  background-color: #ffffff;
  width: 100%;
  max-width: 442px;
  z-index: 2;
  color: #262B38;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.tippy-box[data-theme~='3llight'] .tippy-arrow {
  color: #ffffff;
}

.tippy-box[data-theme~='3llight'] > .tippy-content {
  font-size: 14px;
  line-height: 1.5;
  padding: 16px;
  color: #262B38;
  letter-spacing: 0;
}
/* End */


/* Start:/local/templates/raskat/assets/css/intlTelInput.css?174248221325254*/
.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .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; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    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; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .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__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 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; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/local/templates/raskat/assets/css/../img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("/local/templates/raskat/assets/css/../img/flags@2x.png"); } }

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

/* End */
/* /local/templates/raskat/assets/css/index.css?17424822134038 */
/* /local/templates/raskat/assets/css/raskat-registration.css?175673816743642 */
/* /local/templates/raskat/assets/css/intlTelInput.css?174248221325254 */
