@charset "UTF-8";
.cupertino-overlay {
  position: fixed;
  left: 0;
  /*top: 64px;*/
  height: 100%;
  width: 100%;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
  min-width: 360px;
}
.cupertino-overlay:before {
  content: " ";
  display: block;
  position: absolute;
  height: 100%;
  left: 0;
  width: 100%;
  background: #1D113F;
  transition: opacity 0.4s;
  will-change: opacity;
  opacity: 0;
}
.cupertino-overlay--active {
  pointer-events: auto;
}
.cupertino-overlay--active:before {
  opacity: 0.8;
}
.cupertino-overlay > .cupertino-item {
  display: none;
}
.cupertino-overlay .cupertino-pane-wrapper .pane {
  background: transparent;
  box-shadow: 0px -4px 32px rgba(27, 56, 73, 0.2);
  border-radius: 0;
  padding: 0;
  max-width: 100%;
}
.cupertino-overlay .cupertino-pane-wrapper .pane[style*="translateY(0px)"] .cupertino-body {
  border-radius: 0;
}
.cupertino-overlay .cupertino-pane-wrapper .pane[style*="translateY(0px)"] .draggable {
  pointer-events: none;
  opacity: 0;
}
.cupertino-overlay .cupertino-pane-wrapper .pane[style*="translateY(0px)"] .destroy-button {
  pointer-events: auto;
  opacity: 1;
}
.cupertino-overlay .cupertino-pane-wrapper .cupertino-body {
  background-color: #493387;
  will-change: border-radius, padding-top;
  transition: border-radius 200ms ease, padding-top 200ms ease;
  border-radius: 16px 16px 0px 0px;
  padding: 44px 24px 48px 24px;
}
@media screen and (min-width: 992px) {
  .cupertino-overlay .cupertino-pane-wrapper .cupertino-body {
    padding: 52px 64px 48px 64px;
  }
}
.cupertino-overlay .cupertino-pane-wrapper .draggable {
  padding: 16px 24px 24px 24px;
  height: 44px;
  z-index: 1;
  transition: opacity 200ms ease;
}
.cupertino-overlay .cupertino-pane-wrapper .move {
  height: 4px;
  width: 120px;
  background: #fff;
  opacity: 0.2;
  border-radius: 100px;
}
.cupertino-overlay .cupertino-pane-wrapper .destroy-button {
  width: 28px;
  height: 28px;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L26 26M2 26L26 2' stroke='url(%23paint0_linear_1136_8117)' stroke-width='3'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1136_8117' x1='25.019' y1='-5.27778' x2='-5.28006' y2='4.60719' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E440FF'/%3E%3Cstop offset='1' stop-color='%232797FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  right: 30px;
  top: 25px;
  cursor: pointer;
  transition: opacity 200ms ease;
  pointer-events: none;
  opacity: 0;
}
.cupertino-overlay .cupertino-pane-wrapper .destroy-button svg {
  display: none;
}

.cupertino-body .rent-item {
  background: rgba(143, 32, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
.cupertino-body .rent-item .container-item__wrapper {
  padding: 0;
}
.cupertino-body .rent-item .container-item__wrapper .container-item__wrapper, .cupertino-body .rent-item .container-item__wrapper .more-btn {
  background: transparent;
}
.cupertino-body .rent-item .location-info {
  gap: 16px;
}
.cupertino-body .rent-item .container-info {
  margin-top: 24px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .cupertino-body .rent-item .container-info .containers-more__condition {
    margin-top: 24px;
    display: block !important;
  }
}
.cupertino-body .rent-item .more-btn {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .cupertino-body .rent-item .containers-more {
    display: block !important;
    margin-top: 24px;
  }
}
.cupertino-body .rent-item .containers-more__conditions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .cupertino-body .rent-item .containers-more__conditions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .cupertino-body .rent-item .containers-more__condition {
    flex: 0 0 calc(50% - 12px);
  }
}
.cupertino-body .rent-item .item-button {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.cupertino-body .rent-item .item-button span {
  padding: 0;
  background: transparent;
}
.cupertino-body .rent-item .item-button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  border-radius: 4px;
  transition: 0.5s;
  height: 100%;
  z-index: 0;
  transform: none;
  opacity: 1;
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
}
.no-touch .cupertino-body .rent-item .item-button:hover:after {
  left: 0;
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
  transform: translate3d(-50%, 0, 0);
}
.no-touch .cupertino-body .rent-item .item-button:hover span {
  background: transparent;
}
.no-touch .cupertino-body .rent-item:hover .container-item__wrapper, .no-touch .cupertino-body .rent-item:hover .more-btn {
  background: transparent;
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .cupertino-body .rent-item.with-more-1 .container-info__item {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 0;
    grid-template-areas: "one three" "two three";
  }
  .cupertino-body .rent-item.with-more-1 .container-info__item > .container-info__item {
    grid-area: one;
  }
  .cupertino-body .rent-item.with-more-1 .container-info__item > .container-info__value {
    grid-area: two;
  }
  .cupertino-body .rent-item.with-more-1 .container-info__item .containers-more__condition {
    display: block !important;
    grid-area: three;
  }
  .cupertino-body .rent-item.with-more-1 .containers-more {
    display: none !important;
  }
}

.cupertino-overlay[data-cupertino=point-pane] .cupertino-pane-wrapper .pane {
  /*background-color: #1d113f;
  background-image: url(/images/crest.svg);
  background-size: 3000px 3000px;
  background-position: center center;*/
  background: linear-gradient(180deg, #1D113F 0%, #3B2480 100%);
}

@supports (overflow: overlay) {
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] {
    overflow-y: overlay !important;
  }
}
.no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane]::-webkit-scrollbar {
  width: 11px;
}
.no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane]::-webkit-scrollbar-thumb {
  background: rgba(198, 77, 255, 0.7);
  background-clip: content-box;
  border: 3px solid hsla(0, 0%, 100%, 0.001);
  border-radius: 10px;
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .cupertino-body {
  padding-left: 32px;
  padding-right: 32px;
  background: transparent;
  cursor: default;
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .cupertino-body {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media only screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .cupertino-body {
    padding-left: 97px;
    padding-right: 97px;
  }
}
@media only screen and (min-width: 1600px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .cupertino-body {
    padding-left: 120px;
    padding-right: 120px;
  }
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item {
  padding: 24px;
  transition: 0.4s;
}
.no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item:hover {
  background: rgba(143, 32, 255, 0.25);
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item {
    padding: 24px 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item {
    padding: 29px 32px;
  }
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-item__wrapper {
  transition: 0.4s;
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-item__wrapper {
    min-height: 56px;
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info {
    flex-direction: row;
    flex: 0 0 calc(100% - 204px);
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media only screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info {
    flex: 0 0 40%;
    gap: 32px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info__item {
    flex: 0 0 calc(50% - 16px);
  }
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info {
    margin-left: 0;
    flex-direction: row;
    flex: 0 0 calc(100% - 204px);
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media only screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info {
    margin-left: 32px;
    flex: 0 0 41%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1900px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info {
    flex: 0 0 45%;
  }
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button {
    position: absolute;
    top: 24px;
    right: 32px;
    display: block;
    width: 180px;
    margin: 0;
    background: linear-gradient(77.71deg, #e440ff -4.69%, #2797ff 109.07%, #e440ff 211.57%);
    padding: 2px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #392474;
    border-radius: 2px;
    position: relative;
    padding: 14px 31px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:after {
    width: 100%;
    z-index: 1;
    transition: 0.2s;
    background: #392474;
    opacity: 0;
    transform: scale(1.01);
  }
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:hover:after {
    opacity: 1;
  }
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:hover span, .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:hover:after {
    background: #4d2285;
  }
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .containers-more__condition {
    display: block !important;
    margin-top: 24px;
  }
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .containers-more {
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .containers-more {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item.with-more-1 .container-info__item {
    flex: 0 0 100%;
  }
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item.with-more-1 .containers-more__condition {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item.with-more-1 .containers-more__condition {
    margin-top: 16px;
  }
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item {
  padding: 24px;
  transition: 0.4s;
}
.no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item:hover {
  background: rgba(143, 32, 255, 0.25);
}
.cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .container-item__wrapper {
  min-height: 56px;
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item {
    padding: 24px 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item {
    padding-right: 257px;
  }
}
@media only screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item {
    padding-top: 29px;
    padding-bottom: 29px;
  }
}
@media only screen and (min-width: 1900px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item {
    padding: 32px 265px 32px 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .location-info {
    gap: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .container-info {
    gap: 32px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button {
    position: absolute;
    top: 24px;
    right: 32px;
    display: block;
    width: 180px;
    margin: 0;
    background: linear-gradient(77.71deg, #e440ff -4.69%, #2797ff 109.07%, #e440ff 211.57%);
    padding: 2px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #392474;
    border-radius: 2px;
    position: relative;
    padding: 14px 31px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button:after {
    width: 100%;
    z-index: 1;
    transition: 0.2s;
    background: #392474;
    opacity: 0;
    transform: scale(1.01);
  }
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button:hover:after {
    opacity: 1;
  }
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button:hover span, .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button:hover:after {
    background: #4d2285;
  }
}
@media only screen and (min-width: 1900px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .sale-item .item-button {
    top: 32px;
    right: 40px;
  }
}

.form-requests__list label {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}
.form-requests__list .form-cell__input {
  margin: 0 0 15px !important;
}
.form-requests__list .form-cell__input input {
  padding: 9px 23px !important;
}
.form-requests__list .form-cell__input input[type=tel] {
  width: 100%;
  border-radius: 12px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
}

@media only screen and (min-width: 1440px) {
  .form-callback__form .form-callback__list {
    display: flex;
  }
  .form-callback__form .form-callback__list .form-select {
    min-width: auto !important;
  }
}
.form-callback__form .form-callback__list__group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 992px) {
  .form-callback__form .form-callback__list__group {
    gap: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .form-callback__form .form-callback__list__group {
    flex: 0 0 calc(50% - 24px);
  }
}
@media only screen and (min-width: 1600px) {
  .form-callback__form .form-callback__list__group {
    flex: 0 0 calc(50% - 32px);
    gap: 48px;
  }
}
.form-callback__form .form-callback__list .filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.form-callback__form .form-callback__list .filter-wrapper .form-item {
  flex: 0 0 90px;
  max-width: initial;
}

.form-callback::-webkit-scrollbar {
  width: 11px;
}
.form-callback::-webkit-scrollbar-thumb {
  background: rgba(198, 77, 255, 0.7);
  background-clip: content-box;
  border: 3px solid hsla(0, 0%, 100%, 0.001);
  border-radius: 10px;
}
@supports (overflow: overlay) {
  .form-callback {
    overflow-y: overlay;
  }
}
.html-touch .form-callback {
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
.html-touch .form-callback::-webkit-scrollbar {
  width: auto;
}
.html-touch .form-callback::-webkit-scrollbar-thumb {
  background-clip: initial;
  background-color: initial;
  border: initial;
  border-radius: initial;
  cursor: auto;
  -webkit-transition: initial;
  transition: initial;
}

@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback {
    background: rgba(0, 0, 0, 0.5);
  }
  .form-callback.graph-modal-open {
    display: flex;
    align-items: center;
    pointer-events: none;
  }
  .form-callback > .graph-modal__close {
    display: none;
  }
}
.form-callback .btn-reset {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M8 8L24 24M8 24L24 8' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  top: 16px;
  right: 16px;
}
.form-callback .graph-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-callback .graph-modal__content > .btn-reset {
  display: block;
  position: absolute;
  right: 15px;
  top: 15px;
}
@media screen and (min-width: 375px) {
  .form-callback .graph-modal__content {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 768px) {
  .form-callback .graph-modal__content {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback .graph-modal__content {
    padding: 39px;
    background: radial-gradient(87.19% 96.03% at 50% 49.54%, #493387 0, #1d113f 100%);
    border: 1px solid rgba(198, 77, 255, 0.1);
    border-radius: 8px;
    height: auto;
    pointer-events: auto;
    position: relative;
  }
  .form-callback .graph-modal__content > .btn-reset {
    display: block;
  }
}
.form-callback .form-callback__title {
  font-size: 24px;
  line-height: 35px;
}
.form-callback__list {
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .form-callback__list {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.form-callback .form-cell__input {
  position: relative;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .form-callback .form-cell__input {
    flex: 0 0 calc(50% - 12px);
  }
  .form-callback .form-cell__input.name-input {
    flex: 0 0 100%;
  }
}
.form-callback .form-cell__input input {
  line-height: 24px;
  padding: 21px 23px 9px;
  height: 56px;
}
.form-callback .form-cell__input input.form-cell__input--error {
  background: rgba(255, 77, 77, 0.1) !important;
  border: 1px solid #ff4d4d !important;
}
.form-callback .form-cell__input input:focus ~ label, .form-callback .form-cell__input input.not-empty ~ label {
  font-size: 12px;
  line-height: 18px;
  top: -10px;
}
.form-callback .form-cell__input label {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid transparent;
  padding: 16px 23px 14px;
  color: #fff;
  opacity: 0.5;
  transition: 0.2s;
}
.form-callback .bottom-form {
  margin-top: 24px;
  flex-direction: column;
}
.form-callback .bottom-form__submit span {
  position: relative;
  z-index: 2;
}
.form-callback .bottom-form__submit:after {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .form-callback .bottom-form__submit {
    max-width: 100%;
    width: 100%;
  }
}
.form-callback .bottom-form__politic {
  margin: 24px auto 0 auto;
  font-size: 14px;
  width: 300px;
}
.form-callback .bottom-form__politic a {
  border: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.form-callback .bottom-form__politic a:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  transition: background-color 0.2s;
}
.no-touch .form-callback .bottom-form__politic a:hover {
  border: none;
}
.no-touch .form-callback .bottom-form__politic a:hover:after {
  background-color: #ABA1FF;
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback .success-message {
    min-height: 1px;
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
.form-callback .success-message svg {
  margin-bottom: 16px;
}
.form-callback .success-message h2 {
  font-size: 24px;
  line-height: 35px;
  margin: 0;
}
.form-callback .success-message p {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.5;
  margin-bottom: 24px;
}
.form-callback .success-message button {
  max-width: 360px;
  background: transparent;
  overflow: hidden;
}
.form-callback .success-message button:before {
  display: none;
}
.form-callback .success-message button span {
  position: relative;
  z-index: 2;
}
.form-callback .success-message button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  z-index: 1;
  border-radius: 4px;
  transition: 0.5s;
  height: 100%;
  opacity: 1;
  background: linear-gradient(77.71deg, #e440ff 0, #2797ff 50%, #e440ff 100%);
}
.no-touch .form-callback .success-message button:hover:after {
  left: -100%;
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback .success-message button {
    width: 122px;
  }
}
.form-callback__checkbox-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .form-callback__checkbox-wrapper {
    min-width: -moz-min-content;
    min-width: min-content;
    justify-content: center;
  }
}
.form-callback__checkbox-wrapper label {
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1;
  font-weight: 400;
  color: #968FAD;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: auto;
}
@media (max-width: 768px) {
  .form-callback__checkbox-wrapper label {
    line-height: 1.3;
  }
}
.form-callback__checkbox-wrapper label a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.form-callback__checkbox-wrapper input {
  cursor: pointer;
  margin-bottom: 2px;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .form-callback__checkbox-wrapper input {
    transform: scale(1.3);
  }
}

.form-cell__input input.form-cell__input--error {
  background: rgba(255, 77, 77, 0.1) !important;
  border: 1px solid #ff4d4d !important;
}
.no-touch .form-cell__input input.form-cell__input--error:hover {
  border: 1px solid #ABA1FF !important;
}

.distributors-screen {
  padding: 64px 0;
}
@media screen and (min-width: 992px) {
  .distributors-screen {
    padding: 96px 0;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen {
    padding: 160px 0;
  }
}

.distributors-text {
  margin-bottom: 48px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 992px) {
  .distributors-text {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-text {
    margin-bottom: 64px;
    font-size: 24px;
  }
}
.distributors-text__title {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 32px;
}
@media screen and (min-width: 992px) {
  .distributors-text__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-text__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-text__title {
    font-size: 64px;
  }
}
.distributors-text__title span {
  color: #2797ff;
  display: inline-block;
}
@supports (-webkit-text-fill-color: transparent) {
  .distributors-text__title span {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}

.distributors-screen {
  font-size: 0;
  line-height: 1;
}
.distributors-screen__circles {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 480px) {
  .distributors-screen__circles {
    max-width: 816px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen__circles {
    max-width: 1680px;
  }
}
@media screen and (min-width: 480px) {
  .distributors-screen__circle {
    flex: 0 0 calc(50% + 16px);
  }
}
@media screen and (min-width: 768px) {
  .distributors-screen__circle {
    flex: 0 0 calc(50% + 24px);
  }
}
@media screen and (min-width: 992px) {
  .distributors-screen__circle {
    flex: 0 0 calc(50% + 32px);
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen__circle {
    flex: 0 0 calc(33.33% + 24px);
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen__circle {
    flex: 0 0 calc(33.33% + 26.6666px);
  }
}
.distributors-screen__circle .circle-flex-wrapper {
  padding-top: 100%;
  position: relative;
  border-radius: 10000px;
}
@media screen and (min-width: 480px) {
  .distributors-screen__circle.num-circle {
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen__circle.num-circle {
    margin-right: 0;
    order: 2;
    margin-left: -36px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen__circle.num-circle {
    margin-left: -40px;
  }
}
.distributors-screen__circle.num-circle .circle-flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.distributors-screen__circle.num-circle .circle-flex-wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10000px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='296' height='296' rx='148' stroke='url(%23paint0_linear_6_150)' stroke-width='2'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6_150' x1='288.238' y1='-90.9723' x2='-90.5008' y2='32.5899' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E440FF'/%3E%3Cstop offset='1' stop-color='%232797FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
@media screen and (min-width: 992px) {
  .distributors-screen__circle.num-circle .circle-flex-wrapper:before {
    background-image: url("data:image/svg+xml,%3Csvg width='440' height='440' viewBox='0 0 440 440' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='436' height='436' rx='218' stroke='url(%23paint0_linear_6_150)' stroke-width='2'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6_150' x1='422.016' y1='-133.426' x2='-133.468' y2='47.7985' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E440FF'/%3E%3Cstop offset='1' stop-color='%232797FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen__circle.num-circle .circle-flex-wrapper:before {
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='596' height='596' rx='298' stroke='url(%23paint0_linear_6_150)' stroke-width='2'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6_150' x1='575.476' y1='-181.945' x2='-182.002' y2='65.1797' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E440FF'/%3E%3Cstop offset='1' stop-color='%232797FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  }
}
.distributors-screen__circle.partner-circle {
  margin-top: -32px;
}
@media screen and (min-width: 480px) {
  .distributors-screen__circle.partner-circle {
    margin-top: -64px;
  }
}
@media screen and (min-width: 480px) and (max-width: 575px) {
  .distributors-screen__circle.partner-circle .circle-flex {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 640px) {
  .distributors-screen__circle.partner-circle {
    margin-top: -80px;
  }
}
@media screen and (min-width: 768px) {
  .distributors-screen__circle.partner-circle {
    margin-top: -100px;
  }
}
@media screen and (min-width: 992px) {
  .distributors-screen__circle.partner-circle {
    margin-top: -120px;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen__circle.partner-circle {
    margin-top: 0;
  }
}
.distributors-screen__circle.partner-circle .circle-flex-wrapper {
  border: 1px solid rgba(171, 161, 255, 0.1);
}
.distributors-screen__circle.partner-singamas img {
  width: 156px;
}
@media screen and (min-width: 480px) and (max-width: 575px) {
  .distributors-screen__circle.partner-singamas img {
    width: 111px;
  }
}
@media screen and (min-width: 992px) {
  .distributors-screen__circle.partner-singamas img {
    width: 208px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen__circle.partner-singamas img {
    width: 260px;
  }
}
@media screen and (min-width: 480px) {
  .distributors-screen__circle.partner-cimc {
    margin-left: -32px;
  }
}
@media screen and (min-width: 768px) {
  .distributors-screen__circle.partner-cimc {
    margin-left: -48px;
  }
}
@media screen and (min-width: 992px) {
  .distributors-screen__circle.partner-cimc {
    margin-left: -64px;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen__circle.partner-cimc {
    margin-left: -36px;
    order: 3;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen__circle.partner-cimc {
    margin-left: -40px;
  }
}
.distributors-screen__circle.partner-cimc img {
  width: 154px;
}
@media screen and (min-width: 480px) and (max-width: 575px) {
  .distributors-screen__circle.partner-cimc img {
    width: 110px;
  }
}
@media screen and (min-width: 992px) {
  .distributors-screen__circle.partner-cimc img {
    width: 184px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen__circle.partner-cimc img {
    width: 246px;
  }
}
.distributors-screen .circle-flex {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.distributors-screen .circle-flex img {
  display: block;
  margin: 0 auto;
}
.distributors-screen .circle-flex .num-circle__title {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1;
  font-family: "EngraversGothicBT", sans-serif;
}
@media screen and (min-width: 992px) {
  .distributors-screen .circle-flex .num-circle__title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .distributors-screen .circle-flex .num-circle__title {
    font-size: 44px;
  }
}
@media screen and (min-width: 1400px) {
  .distributors-screen .circle-flex .num-circle__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen .circle-flex .num-circle__title {
    font-size: 64px;
  }
}
.distributors-screen .circle-flex .num-circle__title span {
  color: #2797ff;
  display: inline-block;
}
@supports (-webkit-text-fill-color: transparent) {
  .distributors-screen .circle-flex .num-circle__title span {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.distributors-screen .circle-flex .num-circle__content {
  padding: 0 48px;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .distributors-screen .circle-flex .num-circle__content {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen .circle-flex .num-circle__content {
    font-size: 24px;
  }
}
.distributors-screen .circle-flex .name {
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  opacity: 0.5;
  position: absolute;
  bottom: 61px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 480px) and (max-width: 575px) {
  .distributors-screen .circle-flex .name {
    bottom: 47px;
  }
}
@media screen and (min-width: 768px) {
  .distributors-screen .circle-flex .name {
    bottom: 63px;
  }
}
@media screen and (min-width: 992px) {
  .distributors-screen .circle-flex .name {
    font-size: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .distributors-screen .circle-flex .name {
    bottom: 119px;
  }
}

.investor-screen {
  margin: 0;
  padding: 64px 0;
}
@media screen and (min-width: 992px) {
  .investor-screen {
    padding: 96px 0;
  }
}
@media screen and (min-width: 1200px) {
  .investor-screen {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1600px) {
  .investor-screen {
    padding: 160px 0;
  }
}

@media screen and (min-width: 992px) {
  .investor-screen__row {
    display: block;
    padding: 0;
  }
}

.investor-main {
  margin: 0;
}
@media screen and (min-width: 992px) {
  .investor-main {
    display: block;
    height: auto;
  }
  .investor-main__text {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .investor-main__text {
    display: flex;
    gap: 32px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .investor-main__text {
      gap: 0;
    }
    .investor-main__text > * + * {
      margin-left: 32px;
    }
  }
  .no-flex-gap .investor-main__text {
    gap: 0;
  }
  .no-flex-gap .investor-main__text > * + * {
    margin-left: 32px;
  }
}
.investor-main__title {
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 32px;
  padding: 0;
  color: #2797ff;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.investor-main__title:before {
  display: none;
}
@media screen and (min-width: 992px) {
  .investor-main__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .investor-main__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1600px) {
  .investor-main__title {
    font-size: 64px;
  }
}
.investor-main__title span {
  color: #2797ff;
  display: inline-block;
}
@supports (-webkit-text-fill-color: transparent) {
  .investor-main__title span {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.investor-main__content {
  margin-bottom: 48px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .investor-main__content {
    font-size: 20px;
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1600px) {
  .investor-main__content {
    font-size: 24px;
  }
}
.investor-main__list {
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 640px) {
  .investor-main__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 992px) {
  .investor-main__list {
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .investor-main__list {
    flex: 0 0 calc(50% - 16px);
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1199px) {
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .investor-main__list {
      gap: 0;
    }
    .investor-main__list > * + * {
      margin-top: 16px;
    }
    @media screen and (max-width: 1199px) and (min-width: 640px) {
      .investor-main__list > * + *:nth-child(2n) {
        margin-left: 16px;
      }
      .investor-main__list > * + *:nth-child(2) {
        margin-top: 0;
      }
    }
    @media screen and (max-width: 1199px) and (min-width: 992px) {
      .investor-main__list > * + * {
        margin-top: 32px;
      }
      .investor-main__list > * + *:nth-child(2n) {
        margin-left: 32px;
      }
      .investor-main__list > * + *:nth-child(2) {
        margin-top: 0;
      }
    }
  }
  .no-flex-gap .investor-main__list {
    gap: 0;
  }
  .no-flex-gap .investor-main__list > * + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 640px) {
  .no-flex-gap .investor-main__list > * + *:nth-child(2n) {
    margin-left: 16px;
  }
  .no-flex-gap .investor-main__list > * + *:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .no-flex-gap .investor-main__list > * + * {
    margin-top: 32px;
  }
  .no-flex-gap .investor-main__list > * + *:nth-child(2n) {
    margin-left: 32px;
  }
  .no-flex-gap .investor-main__list > * + *:nth-child(2) {
    margin-top: 0;
  }
}
.investor-main__list li {
  padding: 23px;
  text-align: center;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 640px) {
  .investor-main__list li {
    flex: 0 0 calc(50% - 8px);
  }
}
@media screen and (min-width: 992px) {
  .investor-main__list li {
    flex: 0 0 calc(50% - 16px);
    padding: 47px;
    font-size: 20px;
    border-radius: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .investor-main__list li {
    height: 224px;
    padding: 23px;
  }
}
@media screen and (min-width: 1400px) {
  .investor-main__list li {
    padding: 47px;
  }
}
@media screen and (min-width: 1600px) {
  .investor-main__list li {
    height: 284px;
    font-size: 24px;
    border-radius: 48px;
  }
}
.investor-main__list li:before, .investor-main__list li:after {
  display: none;
}
.investor-main__list li + li {
  margin: 0;
}
.investor-main__video {
  height: 56vw;
  min-height: 200px;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .investor-main__video {
    height: 400px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .investor-main__video {
    height: 480px;
    flex: 0 0 calc(50% - 16px);
  }
}
@media screen and (min-width: 1600px) {
  .investor-main__video {
    height: 600px;
    border-radius: 48px;
  }
}
.investor-main__video .video-canvas {
  -webkit-mask-image: none;
          mask-image: none;
  background: rgba(171, 161, 255, 0.1);
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .investor-main__video .video-canvas {
    border-radius: 48px;
  }
}
.investor-main__video:after {
  display: none;
}

.list-investors {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .list-investors {
    margin-top: 96px;
    height: auto;
    margin-left: 0 !important;
    padding-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  .list-investors {
    margin-top: 120px;
  }
}
.list-investors__listing {
  margin: 0;
}
.list-investors__listing .listing-investors__item {
  min-width: 1px;
  background: transparent;
  margin: 0;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 24px;
  padding: 31px 23px;
}
@media screen and (min-width: 768px) {
  .list-investors__listing .listing-investors__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media screen and (min-width: 992px) {
  .list-investors__listing .listing-investors__item {
    padding: 47px;
    border-radius: 32px;
    flex: 0 0 calc(50% - 16px);
  }
}
@media screen and (min-width: 1600px) {
  .list-investors__listing .listing-investors__item {
    border-radius: 48px;
  }
}
.list-investors__listing .listing-investors__item ~ .listing-investors__item {
  background: transparent;
}
.list-investors__listing .listing-investors__item .item-innovation__title {
  margin: 0 0 16px 0;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .list-investors__listing .listing-investors__item .item-innovation__title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
@media screen and (min-width: 1600px) {
  .list-investors__listing .listing-investors__item .item-innovation__title {
    font-size: 32px;
  }
}
.list-investors__listing .listing-investors__item .item-innovation__title:before {
  display: none;
}
.list-investors__listing .listing-investors__item .item-innovation__title span {
  color: #2797ff;
  display: inline-block;
}
@supports (-webkit-text-fill-color: transparent) {
  .list-investors__listing .listing-investors__item .item-innovation__title span {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.list-investors__listing .listing-investors__item item-innovation__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 992px) {
  .list-investors__listing .listing-investors__item item-innovation__text {
    font-size: 18px;
  }
}
.list-investors__listing .listing-investors__item item-innovation__text p {
  margin-bottom: 24px;
}
.list-investors__listing .listing-investors__item item-innovation__text > *:last-child {
  margin-bottom: 0 !important;
}
.list-investors .list-investors__listing {
  display: block;
}
.list-investors .list-investors__listing .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .list-investors .list-investors__listing .swiper-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (min-width: 992px) {
  .list-investors .list-investors__listing .swiper-wrapper {
    gap: 32px;
  }
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .list-investors .list-investors__listing .swiper-wrapper {
    gap: 0;
  }
  .list-investors .list-investors__listing .swiper-wrapper > * + * {
    margin-top: 16px;
  }
  @media screen and (min-width: 768px) {
    .list-investors .list-investors__listing .swiper-wrapper > * + * {
      margin-top: 24px;
    }
    .list-investors .list-investors__listing .swiper-wrapper > * + *:nth-child(2n) {
      margin-left: 24px;
    }
    .list-investors .list-investors__listing .swiper-wrapper > * + *:nth-child(2) {
      margin-top: 0;
    }
  }
}
.no-flex-gap .list-investors .list-investors__listing .swiper-wrapper {
  gap: 0;
}
.no-flex-gap .list-investors .list-investors__listing .swiper-wrapper > * + * {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .no-flex-gap .list-investors .list-investors__listing .swiper-wrapper > * + * {
    margin-top: 24px;
  }
  .no-flex-gap .list-investors .list-investors__listing .swiper-wrapper > * + *:nth-child(2n) {
    margin-left: 24px;
  }
  .no-flex-gap .list-investors .list-investors__listing .swiper-wrapper > * + *:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .list-investors .list-investors__listing.swiper-initialized .swiper-wrapper {
    gap: 0;
  }
}

.investors-menu {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 0;
  line-height: 1;
}
@media screen and (min-width: 480px) {
  .investors-menu {
    display: inline-flex;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .investors-menu {
    gap: 48px;
    margin-top: 96px;
  }
}
@media screen and (min-width: 1200px) {
  .investors-menu {
    gap: 64px;
  }
}
@media screen and (min-width: 1600px) {
  .investors-menu {
    margin-top: 120px;
  }
}
.investors-menu a {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  color: #ABA1FF;
  padding-bottom: 8px;
  position: relative;
  transition: color 0.2s, opacity 0.2s;
}
@media screen and (min-width: 992px) {
  .investors-menu a {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .investors-menu a {
    font-size: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .investors-menu a {
    font-size: 40px;
  }
}
.investors-menu a:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #ABA1FF;
  transition: background-color 0.2s, opacity 0.2s;
  opacity: 0.2;
}
.no-touch .investors-menu a:hover {
  opacity: 0.5;
}

.cupertino-overlay .cupertino-pane-wrapper .cupertino-body {
  background: #30225C;
}

@media screen and (min-width: 992px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item {
    padding: 32px 236px 32px 40px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-item__wrapper {
    flex-wrap: nowrap;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info {
    flex: 0 0 calc(33.33% - 21.33333px);
    flex-direction: column;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info__item {
    flex: 0 0 auto;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info {
    margin: 0 0 0 32px;
    flex: 1 1 auto;
    flex-direction: row;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info__item {
    flex: 0 0 calc(50% - 16px);
    display: block;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info__item .containers-more__condition {
    display: block;
    margin-top: 16px;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button {
    right: 40px;
    top: 32px;
    width: 164px;
    background: transparent;
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button span {
    padding: 0;
    background: transparent;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:after {
    width: 200%;
    transition: 0.5s;
    height: 100%;
    opacity: 1;
    background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
  }
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:hover span {
    background: transparent;
  }
  .no-touch .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .item-button:hover:after {
    background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (min-width: 1440px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info {
    gap: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info {
    flex: 0 0 calc(50% - 16px);
    gap: 32px;
    flex-direction: row;
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .location-info__item {
    flex: 0 0 calc(50% - 16px);
  }
  .cupertino-pane-wrapper .cupertino-item[data-pane=point-pane] .rent-item .container-info {
    flex: 0 0 calc(50% - 16px);
  }
}

.cupertino-body .rent-item .item-button {
  border-radius: 12px;
}

.form-callback {
  background: #30225C;
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback {
    background: rgba(29, 17, 63, 0.5);
  }
}
.form-callback .bottom-form__submit {
  display: block !important;
  border-radius: 12px;
}
.form-callback .bottom-form__submit:after {
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
}
.form-callback .form-cell__input input {
  border-radius: 12px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback .success-message {
    min-width: 520px;
  }
}
.form-callback .success-message button {
  border-radius: 12px;
}
.form-callback .success-message button:after {
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
}
@media screen and (min-width: 768px) and (min-height: 500px) {
  .form-callback .graph-modal__content {
    background: #30225C;
    max-width: 550px;
    width: 100%;
  }
}

.cupertino-overlay .cupertino-pane-wrapper .cupertino-body {
  background: #30225C;
}

.cupertino-body .rent-item .item-button {
  border-radius: 12px;
}

.background {
  display: none;
}

.vacancies-wrapper {
  background: linear-gradient(180deg, #1D113F 0%, #3B2480 100%);
  padding: 120px 0 64px 0;
}
@media screen and (min-width: 992px) {
  .vacancies-wrapper {
    padding: 156px 0 96px 0;
  }
}
@media screen and (min-width: 1200px) {
  .vacancies-wrapper {
    padding: 200px 0 96px 0;
  }
}
@media screen and (min-width: 1600px) {
  .vacancies-wrapper {
    padding: 200px 0 120px 0;
  }
}
.vacancies-wrapper h1 {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 48px 0;
  color: #2797ff;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 992px) {
  .vacancies-wrapper h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .vacancies-wrapper h1 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1600px) {
  .vacancies-wrapper h1 {
    font-size: 64px;
    margin-bottom: 64px;
  }
}
@supports (-webkit-text-fill-color: transparent) {
  .vacancies-wrapper h1 {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.vacancies-wrapper .mc-intro {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1200px) {
  .vacancies-wrapper .mc-intro {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1600px) {
  .vacancies-wrapper .mc-intro {
    margin-bottom: 64px;
  }
}
.vacancies-wrapper .mc-intro .text {
  color: #fff;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (min-width: 992px) {
  .vacancies-wrapper .mc-intro .text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .vacancies-wrapper .mc-intro .text {
    flex: 0 0 calc(50% - 16px);
  }
  .vacancies-wrapper .mc-intro .text-inner {
    max-width: 400px;
  }
}
.vacancies-wrapper .mc-intro .video {
  border-radius: 24px;
  overflow: hidden;
  background-image: url(/images/8420efa94712c11d55784b3c6be9a5b9.jpg?baeef5cd49defde75f3edac2a216e771);
  background-size: cover;
  background-position: center center;
  position: relative;
  /*.no-touch &:hover:before{
      opacity: 0.3;
  }*/
  /*&:before{
      content: " ";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #1D113F;
      opacity: 0.5;
      transition: opacity 0.2s;
  }*/
}
@media screen and (max-width: 991px) {
  .vacancies-wrapper .mc-intro .video {
    min-height: 200px;
    height: 53vw;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .vacancies-wrapper .mc-intro .video {
    min-height: 400px;
    height: 39.0625vw;
    border-radius: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .vacancies-wrapper .mc-intro .video {
    height: 400px;
    flex: 0 0 calc(50% - 16px);
    border-radius: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .vacancies-wrapper .mc-intro .video {
    height: 480px;
    border-radius: 48px;
  }
}
.vacancies-wrapper .mc-intro .video svg {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -32px;
  margin-left: -32px;
}
@media screen and (max-width: 575px) {
  .vacancies-wrapper .mc-intro .video svg {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px), screen and (min-width: 1600px) {
  .vacancies-wrapper .mc-intro .video svg {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
  }
}

.empty-result {
  border-radius: 24px;
  color: #fff;
  background: rgba(171, 161, 255, 0.1);
  padding: 32px 24px;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (min-width: 992px) {
  .empty-result {
    border-radius: 32px;
    padding: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .empty-result {
    border-radius: 48px;
    padding: 48px;
    font-size: 18px;
    line-height: 160%;
  }
}

.vacancies-catalog {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .vacancies-catalog {
    gap: 32px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.vacancies-catalog .vacancy {
  background: rgba(171, 161, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  transition: background-color 0.2s;
}
.no-touch .vacancies-catalog .vacancy:hover {
  background-color: rgba(171, 161, 255, 0.2);
}
@media screen and (min-width: 992px) {
  .vacancies-catalog .vacancy {
    padding: 40px;
    border-radius: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .vacancies-catalog .vacancy {
    flex: 0 0 calc(50% - 16px);
  }
}
@media screen and (min-width: 1600px) {
  .vacancies-catalog .vacancy {
    border-radius: 48px;
    padding: 48px;
  }
}
.vacancies-catalog .vacancy .name {
  font-size: 20px;
  line-height: 1.2;
  color: #2797ff;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 1600px) {
  .vacancies-catalog .vacancy .name {
    font-size: 24px;
  }
}
@supports (-webkit-text-fill-color: transparent) {
  .vacancies-catalog .vacancy .name {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.vacancies-catalog .vacancy .intro {
  display: none;
}
@media screen and (min-width: 768px) {
  .vacancies-catalog .vacancy .intro {
    margin-top: 16px;
    font-size: 16px;
    line-height: 160%;
    color: #fff;
    display: block;
  }
}
@media screen and (min-width: 1600px) {
  .vacancies-catalog .vacancy .intro {
    margin-top: 24px;
    font-size: 18px;
  }
}
.vacancies-catalog .vacancy .bottom {
  margin-top: 16px;
  border-top: 1px solid rgba(171, 161, 255, 0.1);
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .vacancies-catalog .vacancy .bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
  }
}
.vacancies-catalog .vacancy .employment {
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .vacancies-catalog .vacancy .employment {
    padding-top: 2px;
  }
}
.vacancies-catalog .vacancy .employment + .salary {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .vacancies-catalog .vacancy .employment + .salary {
    margin-top: 0;
  }
}
.vacancies-catalog .vacancy .salary {
  display: inline-block;
  vertical-align: top;
  color: #2797ff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "EngraversGothicBT", sans-serif;
}
@media screen and (min-width: 768px) {
  .vacancies-catalog .vacancy .salary {
    font-size: 22px;
  }
}
.vacancies-catalog .vacancy .salary i {
  font-style: normal;
  font-size: 16px;
  vertical-align: baseline;
}
@supports (-webkit-text-fill-color: transparent) {
  .vacancies-catalog .vacancy .salary {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.vacancies-catalog .vacancy .readmore-btn {
  margin-top: 24px;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .vacancies-catalog .vacancy .readmore-btn {
    display: none;
  }
}

.detail-vacancy {
  max-width: 1162px;
}
@media screen and (min-width: 1440px) {
  .detail-vacancy {
    max-width: 1228px;
  }
}
@media screen and (min-width: 1600px) {
  .detail-vacancy {
    max-width: 1350px;
  }
}
.detail-vacancy h1 {
  margin-bottom: 32px;
}
.detail-vacancy .intro {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .detail-vacancy .intro {
    font-size: 20px;
  }
}
.detail-vacancy .to-form {
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.detail-vacancy .to-form span {
  position: relative;
}
.detail-vacancy .to-form:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 100%;
  transition: 0.5s;
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
}
.no-touch .detail-vacancy .to-form:hover:before {
  transform: translate3d(-50%, 0, 0);
}
.detail-vacancy .vacancy-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 992px) {
  .detail-vacancy .vacancy-details {
    gap: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .detail-vacancy .vacancy-details {
    margin-top: 64px;
  }
}
.detail-vacancy .text-detail {
  background: rgba(171, 161, 255, 0.1);
  border-radius: 24px;
  padding: 32px 24px;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .detail-vacancy .text-detail {
    padding: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .detail-vacancy .text-detail {
    font-size: 18px;
    padding: 48px;
  }
}
.detail-vacancy .text-detail > *:last-child {
  margin-bottom: 0 !important;
}
.detail-vacancy .text-detail h2 {
  font-size: 20px;
  line-height: 1.4;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 16px;
  color: #2797ff;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .detail-vacancy .text-detail h2 {
    font-size: 24px;
  }
}
@supports (-webkit-text-fill-color: transparent) {
  .detail-vacancy .text-detail h2 {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.detail-vacancy .text-detail p, .detail-vacancy .text-detail ol, .detail-vacancy .text-detail ul {
  margin-bottom: 1em;
}
.detail-vacancy .text-detail ul li {
  position: relative;
  padding-left: 24px;
}
@media screen and (min-width: 1600px) {
  .detail-vacancy .text-detail ul li {
    padding-left: 27px;
  }
}
.detail-vacancy .text-detail ul li:before {
  content: " ";
  display: block;
  position: absolute;
  left: 10px;
  top: 12px;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 1600px) {
  .detail-vacancy .text-detail ul li:before {
    left: 12px;
    top: 14px;
  }
}

.form-detail {
  background: linear-gradient(77.71deg, #2797ff -4.69%, #e440ff 109.07%, #2797ff 211.57%);
  border-radius: 24px;
  background-size: 0 0;
  position: relative;
  overflow: hidden;
}
.form-detail:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: auto;
  --mask: url('data:image/svg+xml;utf8,<svg  xmlns="http://www.w3.org/2000/svg" ><rect x="2" y="2" width="100%" height="100%" style="height:calc(100% - 4px);width:calc(100% - 4px)" rx="24" ry="24" stroke-width="2" fill="transparent" stroke="white"/></svg>');
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
.form-detail .form-inner {
  padding: 32px 24px;
  background: rgba(171, 161, 255, 0.1);
}
@media screen and (min-width: 992px) {
  .form-detail .form-inner {
    padding: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .form-detail .form-inner {
    padding: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .form-detail .form-inner {
    padding: 48px;
  }
}
.form-detail h2 {
  margin: 0 0 32px 0;
  font-size: 20px;
  line-height: 140%;
}
@media screen and (min-width: 992px) {
  .form-detail h2 {
    font-size: 24px;
  }
}
.form-detail h2 span {
  display: inline-block;
  color: #2797ff;
  font-weight: 400;
}
@supports (-webkit-text-fill-color: transparent) {
  .form-detail h2 span {
    background: linear-gradient(251.93deg, #E440FF -4.38%, #2797FF 100.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
.form-detail form[data-cv=file] .cv-file {
  display: block;
}
.form-detail form[data-cv=link] .cv-link {
  display: block;
}
.form-detail form input, .form-detail form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 21px 23px 9px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: "Circe", sans-serif;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  display: block;
  width: 100%;
  height: 56px;
  resize: none;
  color: #fff;
}
.no-touch .form-detail form input:hover, .form-detail form input:focus, .no-touch .form-detail form textarea:hover, .form-detail form textarea:focus {
  border-color: #ABA1FF;
}
.form-detail form input.error, .form-detail form textarea.error {
  border-color: #ff4d4d;
  background-color: rgba(255, 77, 77, 0.1);
}
.no-touch .form-detail form input.error:hover, .form-detail form input.error:focus, .no-touch .form-detail form textarea.error:hover, .form-detail form textarea.error:focus {
  border-color: #ABA1FF;
}
.form-detail form textarea {
  height: 200px;
}
.form-detail form .form-input, .form-detail form .form-textarea {
  position: relative;
}
.form-detail form .form-input input:focus ~ label, .form-detail form .form-input textarea:focus ~ label, .form-detail form .form-input input.not-empty ~ label, .form-detail form .form-input textarea.not-empty ~ label, .form-detail form .form-textarea input:focus ~ label, .form-detail form .form-textarea textarea:focus ~ label, .form-detail form .form-textarea input.not-empty ~ label, .form-detail form .form-textarea textarea.not-empty ~ label {
  font-size: 12px;
  line-height: 18px;
  top: -10px;
}
.form-detail form .form-input label, .form-detail form .form-textarea label {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid transparent;
  padding: 16px 23px 14px;
  color: #fff;
  opacity: 0.5;
  transition: 0.2s;
}
.form-detail form .form-radios {
  margin-bottom: 16px;
  background: rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  display: flex;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-radios {
    width: 336px;
    margin-bottom: 0;
  }
}
.form-detail form .form-radios input {
  display: none;
}
.form-detail form .form-radios input:checked + label {
  cursor: default;
}
.form-detail form .form-radios input:checked + label:before {
  opacity: 1;
}
.form-detail form .form-radios input:checked + label:after {
  opacity: 0 !important;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-radios input[value=file] + label {
    flex: 0 0 157px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .form-detail form .form-radios input[value=link] + label {
    flex: 0 0 179px;
    padding-left: 0;
    padding-right: 0;
  }
}
.form-detail form .form-radios label {
  flex: 0 0 50%;
  padding: 14px 0;
  position: relative;
  background: linear-gradient(77.71deg, #2797ff -4.69%, #e440ff 109.07%, #2797ff 211.57%);
  border-radius: 12px;
  background-size: 0 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
@media screen and (min-width: 480px) {
  .form-detail form .form-radios label {
    min-height: 56px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
  }
  .form-detail form .form-radios label br {
    display: none;
  }
}
.no-touch .form-detail form .form-radios label:hover:after {
  opacity: 1;
}
.form-detail form .form-radios label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: auto;
  --mask: url('data:image/svg+xml;utf8,<svg  xmlns="http://www.w3.org/2000/svg" ><rect x="2" y="2" width="100%" height="100%" style="height:calc(100% - 4px);width:calc(100% - 4px)" rx="12" ry="12" stroke-width="2" fill="transparent" stroke="white"/></svg>');
  -webkit-mask: var(--mask);
  mask: var(--mask);
  transition: opacity 0.3s;
  opacity: 0;
}
.form-detail form .form-radios label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(171, 161, 255, 0.1);
  transition: opacity 0.3s;
  opacity: 0;
}
.form-detail form .form-file {
  margin-bottom: 32px;
  position: relative;
  display: none;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-file {
    margin-left: 360px;
    margin-top: -56px;
    font-size: 0;
    line-height: 1;
  }
}
.form-detail form .form-file input {
  display: none;
}
.form-detail form .form-file input.error ~ .file-error {
  opacity: 1;
  transform: translate3d(0, -4px, 0);
}
.form-detail form .form-file input.changed ~ label, .form-detail form .form-file input.changed ~ .description {
  display: none;
}
.form-detail form .form-file input.changed ~ .loaded {
  display: flex;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-file input.changed ~ .loaded {
    display: inline-flex;
    max-width: 100%;
  }
}
.form-detail form .form-file label {
  cursor: pointer;
  display: block;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-file label {
    width: 157px;
    display: inline-block;
    vertical-align: middle;
  }
}
.form-detail form .form-file label:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 100%;
  transition: 0.5s;
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
}
.form-detail form .form-file label span {
  position: relative;
}
.no-touch .form-detail form .form-file label:hover:before {
  transform: translate3d(-50%, 0, 0);
}
.form-detail form .form-file .file-error {
  top: 68px;
  position: absolute;
  background: #ff7373;
  color: #fff;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  z-index: 1;
  border-radius: 4px;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-file .file-error {
    width: 157px;
  }
}
.form-detail form .form-file .file-error i {
  top: -8px;
  margin-left: -8px;
  left: 50%;
  transform: rotate(135deg);
  transform-origin: 100% 100%;
  width: 8px;
  height: 8px;
  background: #ff7373;
  position: absolute;
  display: block;
  font: 0/0 a;
}
.form-detail form .form-file .file-error-content {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  padding: 7px 10px;
  font-size: 14px;
  line-height: 1.2;
  z-index: 1;
  text-align: center;
}
.form-detail form .form-file .description {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 120%;
  opacity: 0.5;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .form-detail form .form-file .description {
    margin-left: 16px;
    margin-top: 0;
    width: calc(100% - 173px);
    display: inline-block;
    vertical-align: middle;
    text-align: left;
  }
}
.form-detail form .form-file .loaded {
  padding: 13px 15px;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  color: #fff;
  display: none;
}
.form-detail form .form-file .loaded span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.form-detail form .form-file .loaded i {
  font-style: normal;
  margin-left: 1px;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 1;
  width: 29px;
  height: 28px;
  position: relative;
  top: -1px;
}
.no-touch .form-detail form .form-file .loaded i:hover {
  opacity: 0.8;
}
.form-detail form .cv-link {
  margin-bottom: 32px;
  display: none;
}
@media screen and (min-width: 992px) {
  .form-detail form .cv-link {
    margin-left: 360px;
    margin-top: -56px;
  }
}
.form-detail form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .form-detail form .form-fields {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .form-detail form .form-fields .form-input {
    flex: 0 0 calc(50% - 12px);
  }
}
@media screen and (min-width: 992px) {
  .form-detail form .form-fields {
    max-width: 664px;
  }
}
.form-detail form .form-textarea {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .form-detail form .form-textarea {
    margin-bottom: 32px;
  }
}
.form-detail form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form-detail form button {
    width: calc(50% - 12px);
  }
}
@media screen and (min-width: 992px) {
  .form-detail form button {
    max-width: 320px;
  }
}
.form-detail form button:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 100%;
  transition: 0.5s;
  background: linear-gradient(251.93deg, #2797FF -4.38%, #E440FF 50.47%, #2797FF 100.94%);
}
.form-detail form button span {
  position: relative;
}
.no-touch .form-detail form button:hover:before {
  transform: translate3d(-50%, 0, 0);
}
.form-detail .success-inner {
  display: none;
  padding: 32px 24px;
  background: rgba(171, 161, 255, 0.1);
  align-items: center;
  height: 407px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .form-detail .success-inner {
    height: 674px;
  }
}
@media screen and (min-width: 1600px) {
  .form-detail .success-inner {
    height: 690px;
  }
}
.form-detail .success-inner svg {
  margin-bottom: 16px;
}
.form-detail .success-inner div {
  font-size: 24px;
  line-height: 35px;
  color: #FFFFFF;
}
.form-detail .success-inner p {
  margin: 0;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  opacity: 0.5;
}
.form-detail.succeed .form-inner {
  display: none;
}
.form-detail.succeed .success-inner {
  display: flex;
}

.header__logo {
  opacity: 1;
  pointer-events: auto;
}

.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection {
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  height: 56px;
  padding: 0;
}
.select2-container .select2-selection .select2-selection__rendered {
  display: none;
}
.select2-container .select2-selection .select2-selection__arrow {
  display: none;
}
.select2-container .select2-selection .select2-search {
  display: block;
}
.select2-container .select2-selection .select2-search .select2-search__field {
  margin: 0;
  padding: 15px 63px 15px 23px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  width: 100% !important;
  height: 56px;
  font-family: "Circe", sans-serif;
  font-weight: 400;
  opacity: 0;
}
.select2-container .select2-selection .select2-search .select2-search__field::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.select2-container .select2-selection .select2-search .select2-search__field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.select2-container .select2-dropdown {
  background: #31235F;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.select2-container .select2-dropdown.select2-dropdown--above {
  border-radius: 12px 12px 0 0;
}
.select2-container .select2-dropdown .select2-results__options {
  max-height: 264px;
  position: relative;
}
.no-touch .select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar {
  width: 11px;
}
.no-touch .select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background: rgba(198, 77, 255, 0.7);
  background-clip: content-box;
  border: 3px solid hsla(0, 0%, 100%, 0.001);
  border-radius: 10px;
}
@supports (overflow: overlay) {
  .no-touch .select2-container .select2-dropdown .select2-results__options {
    overflow-y: overlay;
  }
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option {
  border-top: 1px solid rgba(171, 161, 255, 0.1);
  padding: 16px 31px 15px 71px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  position: relative;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option:before {
  content: " ";
  display: block;
  position: absolute;
  left: 31px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 6px;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option:after {
  content: " ";
  display: block;
  position: absolute;
  left: 31px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: #ABA1FF;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.06173L5.51469 9L13 1' stroke='%233B2480'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 14px 10px;
  background-position: center center;
  opacity: 0;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted, .select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected {
  background: rgba(171, 161, 255, 0.1);
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected {
  color: #ABA1FF;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected:after {
  opacity: 1;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__message {
  padding-left: 31px;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__message:before, .select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__message:afteR {
  display: none;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--group {
  border: none;
  padding: 0;
  white-space: normal;
  display: none;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--group:before, .select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--group:afteR {
  display: none;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--group .select2-results__group {
  display: none;
}
.select2-container .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--group .select2-results__options {
  max-height: 9999px;
  overflow: visible;
}
.select2-container .select2-dropdown .select2-results[data-continent="8"] .select2-results__options .select2-results__option--group[aria-label="РФ и СНГ"] {
  display: block;
}
.select2-container .select2-dropdown .select2-results[data-continent="3"] .select2-results__options .select2-results__option--group[aria-label=Азия] {
  display: block;
}
.select2-container .select2-dropdown .select2-results[data-continent="2"] .select2-results__options .select2-results__option--group[aria-label=Европа] {
  display: block;
}
.select2-container .select2-dropdown .select2-search--dropdown {
  padding: 15px;
  border-bottom: 1px solid rgba(171, 161, 255, 0.1);
}
.select2-container .select2-dropdown .select2-search--dropdown input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 15px 23px;
  color: #fff;
  font-family: Circe, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 56px;
  line-height: 24px;
  transition: 0.2s;
  background-color: #3c2f6c;
  border: 1px solid rgba(171, 161, 255, 0.1);
  transition: 0.2s;
  border-radius: 12px;
}
.select2-container .select2-dropdown .select2-search--dropdown input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.select2-container .select2-dropdown .select2-search--dropdown input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.no-touch .select2-container .select2-dropdown .select2-search--dropdown input:hover, .select2-container .select2-dropdown .select2-search--dropdown input:focus {
  border-color: #ABA1FF;
}
.select2-container.select2-container--open .select2-selection .select2-search .select2-search__field {
  opacity: 1;
}
.select2-container.select2-container--open ~ .selected {
  display: none;
}
.select2-container .continent-switcher {
  padding: 16px 16px 15px 16px;
}
.select2-container .continent-switcher .switcher-items {
  display: flex;
  background: rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  position: relative;
}
.select2-container .continent-switcher .switcher-items:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
}
.select2-container .continent-switcher .switcher-item {
  flex: 0 0 33.33333%;
  position: relative;
  border-radius: 12px;
}
.select2-container .continent-switcher .switcher-item + .switcher-item:before {
  content: " ";
  position: absolute;
  display: block;
  left: -0.5px;
  height: 100%;
  width: 1px;
  top: 0;
  background: rgba(171, 161, 255, 0.1);
}
.select2-container .continent-switcher .switcher-item.switcher-item-active:before {
  display: none !important;
}
.select2-container .continent-switcher .switcher-item.switcher-item-active + .switcher-item:before {
  display: none !important;
}
.select2-container .continent-switcher .switcher-item input {
  display: none;
}
.select2-container .continent-switcher .switcher-item input:checked + label {
  background: rgba(171, 161, 255, 0.1);
  color: #fff;
}
.select2-container .continent-switcher .switcher-item label {
  cursor: pointer;
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}
.no-touch .select2-container .continent-switcher .switcher-item label:hover {
  color: #fff;
}
.select2-container.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 16px;
}

.select-countries {
  position: relative;
  padding-bottom: 0 !important;
}
.select-countries .select2-container .select2-selection .select2-selection__rendered {
  display: flex;
  color: #FFF;
  font-size: 16px;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin-left: 10px;
}

.phone-countries input[type=tel] {
  padding-left: 60px !important;
}

span.phoneCode {
  position: absolute;
  top: 36%;
  left: 14px;
  color: #fff;
  font-size: 16px;
}
span.phoneCode2 {
  position: absolute;
  top: 26%;
  left: 14px;
  color: #fff;
  font-size: 16px;
}

.label-none .select-countries label {
  display: none;
}

.form-callback .form-cell__input .select-countries label {
  display: none;
}

.js-countries, .js-callback-direction {
  top: 55px;
}

.form-select {
  position: relative;
}
@media screen and (min-width: 1440px) {
  .form-select {
    padding-bottom: 56px;
    min-width: 320px;
  }
}
.form-select:after {
  content: " ";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: 20px;
  right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L8 11L14 5' stroke='%23ABA1FF'/%3E%3C/svg%3E%0A");
  transition: 0.2s;
}
.form-select.opened:after {
  transform: scaleY(-1);
}
.form-select.changed > .selected {
  color: #fff;
}

.options-wrapper {
  font-size: 0;
  line-height: 1;
  z-index: 10;
  position: absolute;
  left: 0;
  display: none;
  background: #31235f;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.options-wrapper:before {
  left: 0;
  top: 0;
  height: 57px;
  border-radius: 0;
  background: #31235f;
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.options-wrapper:after {
  content: " ";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 19px;
  right: 23px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L8 11L14 5' stroke='%23ABA1FF'/%3E%3C/svg%3E%0A");
  transition: 0.2s;
  pointer-events: none;
  z-index: 3;
}
.options-wrapper .option-search {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #1D113F;
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 63px 15px 23px;
  color: #fff;
  outline: none;
  width: 100%;
  position: relative;
  z-index: 2;
}
.no-touch .options-wrapper .option-search:hover, .options-wrapper .option-search:focus {
  border-color: #aba1ff;
}
.options-wrapper .option-search:focus {
  background-color: #211447;
}
.no-touch .options-wrapper .option-search:focus:hover {
  background-color: #211447;
}
.options-wrapper .option-search::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.options-wrapper .option-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.options-wrapper .options .options {
  display: none;
}
.options-wrapper .options .option-item {
  padding: 15px 55px 16px 63px;
  position: relative;
  border-top: 1px solid #453879;
}
.options-wrapper .options .option-item:before {
  content: " ";
  display: block;
  position: absolute;
  top: 15px;
  left: 23px;
  width: 24px;
  height: 24px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 6px;
  transition: background-color 0.3s;
}
.options-wrapper .options .option-item:after {
  content: " ";
  display: block;
  position: absolute;
  top: 15px;
  left: 23px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  background-position: center center;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.06173L5.51469 9L13 1' stroke='%233B2480'/%3E%3C/svg%3E%0A");
}
.options-wrapper .options .option-item span {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.options-wrapper .options .option-item i {
  font-style: normal;
  margin-left: 8px;
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  opacity: 0.5;
}
.options-wrapper .options .option-region {
  position: relative;
}
.options-wrapper .options .option-region.region-hidden {
  display: none;
}
.options-wrapper .options .option-region.region-selected > .option-item {
  background: #3d306f;
}
.options-wrapper .options .option-region.region-selected > em:before {
  background: #ABA1FF;
  border-color: #ABA1FF;
}
.options-wrapper .options .option-region.region-selected-full > .option-item {
  color: #ABA1FF;
}
.options-wrapper .options .option-region.region-selected-full > .option-item > span {
  color: #ABA1FF;
}
.options-wrapper .options .option-region.region-selected-full > em:after {
  opacity: 1;
}
.options-wrapper .options .option-region > .option-item {
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.no-touch .options-wrapper .options .option-region > .option-item:hover {
  background: #3d306f;
}
.options-wrapper .options .option-region > .option-item:before {
  display: none;
}
.options-wrapper .options .option-region > .option-item:after {
  content: " ";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 12px;
  right: 15px;
  opacity: 1;
  left: auto;
  transition: transform 0.3s;
  background-size: 16px 16px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L8 11L14 5' stroke='%23ABA1FF'/%3E%3C/svg%3E%0A");
}
.options-wrapper .options .option-region.opened > .option-item:after {
  transform: scaleY(-1);
}
.options-wrapper .options .option-region.opened > .options {
  display: block;
}
.options-wrapper .options .option-region em {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  left: 23px;
  cursor: pointer;
  z-index: 1;
}
.options-wrapper .options .option-region em:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 6px;
  transition: background-color 0.3s;
}
.options-wrapper .options .option-region em:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  background-position: center center;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.06173L5.51469 9L13 1' stroke='%233B2480'/%3E%3C/svg%3E%0A");
}
.options-wrapper .options .option-country {
  position: relative;
}
.options-wrapper .options .option-country.country-hidden {
  display: none;
}
.options-wrapper .options .option-country.country-selected > .option-item {
  background: #3d306f;
}
.options-wrapper .options .option-country.country-selected > em:before {
  background: #ABA1FF;
  border-color: #ABA1FF;
}
.options-wrapper .options .option-country.country-selected-full > .option-item {
  color: #ABA1FF;
}
.options-wrapper .options .option-country.country-selected-full > .option-item > span {
  color: #ABA1FF;
}
.options-wrapper .options .option-country.country-selected-full > em:after {
  opacity: 1;
}
.options-wrapper .options .option-country > .option-item {
  padding-left: 79px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.no-touch .options-wrapper .options .option-country > .option-item:hover {
  background: #3d306f;
}
.options-wrapper .options .option-country > .option-item:before {
  display: none;
}
.options-wrapper .options .option-country > .option-item:afteR {
  content: " ";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 12px;
  right: 15px;
  opacity: 1;
  left: auto;
  transition: transform 0.3s;
  background-size: 16px 16px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L8 11L14 5' stroke='%23ABA1FF'/%3E%3C/svg%3E%0A");
}
.options-wrapper .options .option-country.opened > .option-item:after {
  transform: scaleY(-1);
}
.options-wrapper .options .option-country.opened > .options {
  display: block;
}
.options-wrapper .options .option-country em {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  left: 23px;
  cursor: pointer;
  z-index: 1;
}
.options-wrapper .options .option-country em:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 6px;
  transition: background-color 0.3s;
}
.options-wrapper .options .option-country em:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  background-position: center center;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.06173L5.51469 9L13 1' stroke='%233B2480'/%3E%3C/svg%3E%0A");
}
.options-wrapper .options .option-item-checkbox {
  padding: 0;
}
.options-wrapper .options .option-item-checkbox.checkbox-hidden {
  display: none;
}
.options-wrapper .options .option-item-checkbox:before, .options-wrapper .options .option-item-checkbox:after {
  display: none;
}
.options-wrapper .options .option-item-checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  outline: none;
  padding: 0;
  margin: 0;
  border: none;
}
.options-wrapper .options .option-item-checkbox input:checked + span {
  background: #3d306f;
  color: #ABA1FF;
}
.options-wrapper .options .option-item-checkbox input:checked + span:before {
  background: #ABA1FF;
  border-color: #ABA1FF;
}
.options-wrapper .options .option-item-checkbox input:checked + span:after {
  opacity: 1;
}
.options-wrapper .options .option-item-checkbox label {
  display: block;
  padding: 0;
  position: relative;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
}
.no-touch .options-wrapper .options .option-item-checkbox label:hover {
  background: #3d306f;
}
.options-wrapper .options .option-item-checkbox label span {
  display: block;
  padding: 15px 15px 15px 95px;
  position: relative;
  margin: 0;
  cursor: pointer;
}
.options-wrapper .options .option-item-checkbox label span:before {
  content: " ";
  display: block;
  position: absolute;
  top: 15px;
  left: 23px;
  width: 24px;
  height: 24px;
  background: rgba(171, 161, 255, 0.1);
  border: 1px solid rgba(171, 161, 255, 0.1);
  border-radius: 6px;
  transition: background-color 0.3s;
}
.options-wrapper .options .option-item-checkbox label span:after {
  content: " ";
  display: block;
  position: absolute;
  top: 15px;
  left: 23px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  background-position: center center;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.06173L5.51469 9L13 1' stroke='%233B2480'/%3E%3C/svg%3E%0A");
}
.options-wrapper .options-empty {
  padding: 15px 15px 16px 15px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  display: none;
}
.options-wrapper.bottom-options {
  padding-bottom: 56px;
}
.options-wrapper.bottom-options:before {
  top: auto;
  bottom: 0;
}
.options-wrapper.bottom-options:after {
  top: auto;
  bottom: 19px;
}
.options-wrapper.bottom-options .option-search {
  position: absolute;
  bottom: 0;
  left: 0;
}
