:root {
  --orange: #DA552F;
  --orange-dark: #ca4927;
  --white: #fff;
  --text-black: #5E6076;
  --text-black-hover: #434559;
  --grey: #F0F0F0;
  --grey-light: #ABADC5;
  --grey-light-2: #8F97AC;
  --grey-light-3: #d8dae1;
  --blue: #1C2A50;
  --grey-light2: #FAFAFA;

  --swiper-pagination-bullet-height: 1px;
  --swiper-pagination-bullet-width: 100%;
  --swiper-pagination-color: var(--white);
  --swiper-pagination-bullet-inactive-color: var(--white);
  --swiper-pagination-bullet-inactive-opacity: .3;

  --decor-flex-direction: row-reverse;
}

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

html {
  scrollbar-gutter: auto;
}

.page {
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--text-black);
}

.page, button, input {
  font-family: "Montserrat", "Arial", sans-serif;
}

pre {
  font-family: "Montserrat", "Arial", sans-serif;
  white-space: pre-wrap;
}

.content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ch-section {
  width: 100%;
  padding: 50px 40px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ch-section.section--bg-img {
  min-height: 635px;
}

.ch-section_advantages {
  margin-top: -150px;
}

.ch-section_dark {
  background-color: var(--grey);
  padding-top: 60px;
  padding-bottom: 60px;
}

.ch-button {
  user-select: none;
  cursor: pointer;
  background-color: var(--orange);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  transition: background-color 0.2s ease-in-out;

  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}

.ch-button:disabled {
  cursor: initial;
  opacity: .8;
}

.ch-button-text {
  user-select: none;
  background-color: unset;
  border: none;
  text-align: start;
  cursor: pointer;
  color: var(--text-black);
  transition: color 0.2s ease-in-out;
}

.ch-button-text:disabled {
  cursor: initial;
  color: var(--grey-light-3);
}

@media (hover: hover) {
  .ch-button:hover {
    background-color: var(--orange-dark);
  }

  .ch-button:hover:disabled {
    background-color: var(--orange);
  }

  .ch-button-text:hover {
    color: var(--blue);
  }

  .ch-button-text:hover:disabled {
    color: var(--grey-light-3);
  }
}

@media (hover: none) {
  .ch-button:active {
    background-color: var(--orange-dark);
  }

  .ch-button:active:disabled {
    background-color: var(--orange);
  }

  .ch-button-text:active {
    color: var(--blue);
  }

  .ch-button-text:active:disabled {
    color: var(--grey-light-3);
  }
}

.ch-lead {
  display: grid;
  grid-template-columns: calc(55% - 50px) calc(45% - 50px);
  grid-template-rows: 20px 1fr 1fr;
  grid-gap: 32px 100px;
}

.ch-lead img {
  grid-row-start: 1;
  grid-row-end: 4;
  margin-left: -50px;
  width: calc(100% + 50px);
  height: 100%;
  max-height: 1200px;
  object-fit: cover;
  border-top-right-radius: 100vw;
  border-bottom-right-radius: 100vw;
}

.ch-breadcrumbs {
  display: flex;
  list-style: none;
  gap: 4px;
}

.ch-breadcrumbs a {
  text-decoration-line: none;
  color: inherit;
}

.ch-lead__message {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 4px;
}

.ch-lead__message .ch-button {
  margin-top: 24px;
}

.ch-advantages {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}

.ch-advantages li {
  background-color: var(--grey);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.ch-advantages_row li {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-gap: 5px 20px;
}

.ch-advantages__img-container {
  flex: 1;
  display: flex;
  align-items: end;
}

.ch-advantages_row .ch-advantages__img-container {
  grid-row-start: 1;
  grid-row-end: 3;
  align-items: center;
}

.ch-advantages li img {
  margin-top: 15px;
  max-width: 46px;
  max-height: 46px;
}

.ch-advantages_row li img {
  margin-top: 0;
}

.ch-offer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 20px;
}

.ch-offer h3 {
  text-transform: uppercase;
}

.ch-offer p {
  line-height: 160%;
}

.ch-offer__quote {
  display: flex;
  column-gap: 40px;
}

.ch-hr-vertical {
  border: 2px var(--orange) solid;
}

.ch-faq {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}

.ch-accordion {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ch-accordion li {
  overflow: hidden;
  background-color: var(--white);
  /*padding: 40px 32px;*/
  border-radius: 20px;
  padding-bottom: 20px;
}

.ch-accordion__header {
  padding: 40px 32px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}

.ch-accordion__header img {
  max-width: 20px;
  max-height: 20px;
  transition: transform .2s ease-in-out;
}

.ch-accordion li img.ch-active {
  transform: rotate(45deg);
}

.ch-accordion__body {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height .2s ease-in-out;
}

.ch-accordion li.ch-active .ch-accordion__body {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}

.ch-objects {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ch-objects__container {
  display: grid;
  grid-template-columns: repeat(3, calc(calc(100% / 3) - calc(50px / 2)));
  grid-gap: 25px 50px;
}

.ch-objects__container li {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.ch-objects__container li h3 {
  margin-top: 10px;
  text-transform: uppercase;
}

.ch-objects__location {
  color: var(--grey-light);
}

.swiper.ch-swiper-object {
  border-radius: 20px;
  width: 100%;
  height: 355px;
}

.swiper.ch-swiper-object img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.ch-objects__container {
  list-style: none;
}

.swiper.ch-swiper-object .swiper-pagination {
  display: flex;
  width: calc(100% - 40px)!important;
  left: 50%!important;
  transform: translateX(-50%)!important;
}

.ch-object__tags {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
}

.ch-object__tags div {
  padding: 3px 5px;
  background-color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  column-gap: 3px;
}

.ch-object__tags div.ch-object__is-live:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--orange);
}

#ch-section-apartment {
  background-size: cover;
  background-position: center center;
}

.ch-apartment {

}

.ch-apartment form {
  width: 100%;
  max-width: 600px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.ch-apartment__room, .ch-apartment__date, .ch-apartment__price {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.ch-apartment__room p,
.ch-apartment__date p,
.ch-apartment__price p,
.ch-apartment__price label {
  color: var(--grey-light);
}

.ch-apartment__price input::-webkit-outer-spin-button,
.ch-apartment__price input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ch-section input[type="number"] {
  -moz-appearance: textfield;
}

.ch-apartment__input-container {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(2, 1fr);
}

.ch-apartment__input-container label {
  display: flex;
  position: relative;
}

.ch-apartment__input-container span {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.ch-apartment__input-container input {
  outline: none;
  border: 1px var(--grey) solid;
  background-color: var(--white);
  border-radius: 6px;
  width: 100%;
  padding: 20px 10px 20px 40px;
  font-size: inherit;
  font-weight: inherit;
}

.ch-apartment__range-container {
  position: relative;
  width: 100%;
  /*height: 100px;*/
}

.ch-apartment__range-container input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}

.ch-slider-track {
  cursor: pointer;
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.ch-apartment__range-container input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}

.ch-apartment__range-container input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}

.ch-apartment__range-container input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
}

.ch-apartment__range-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  background-color: var(--orange);
  background-image: url("/local/templates/main_new/tpl/tpl/assets/img/range-lines.svg");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top: -9px;
  pointer-events: auto;
  border-radius: 50%;
  transition: .1s background-color ease-in-out;
}

.ch-apartment__range-container input[type="range"]::-moz-range-thumb,
.ch-apartment__range-container input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--orange);
  background-image: url("/local/templates/main_new/tpl/tpl/assets/img/range-lines.svg");
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
  transition: .1s background-color ease-in-out;
}

@media (hover: hover) {
  .ch-apartment__range-container input[type="range"]:hover::-webkit-slider-thumb{
    background-color: var(--orange-dark);
  }
}

@media (hover: none) {
  .ch-apartment__range-container input[type="range"]:active::-webkit-slider-thumb{
    background-color: var(--orange-dark);
  }
}

.ch-button-group {
  display: flex;
}

.ch-button-group .ch-button-choose:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.ch-button-group .ch-button-choose:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.ch-button-choose {
  cursor: pointer;
  font-size: inherit;
  color: var(--text-black);
  background-color: var(--white);
  border: 1px var(--grey) solid;
  padding: 20px 0;
  width: 100%;
  transition: .1s background-color ease-in-out, .1s border-color ease-in-out, .1s color ease-in-out;
}

.ch-button-choose.ch-active {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.ch-apartment form .ch-button {
  padding-top: 25px;
  padding-bottom: 25px;
}

.ch-about-lead {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 20px 30px;
}

.ch-about-lead img {
  width: calc(100% + 40px);
  height: 100%;
  max-height: 1200px;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  border-top-left-radius: 100vw;
  border-bottom-left-radius: 100vw;
  object-fit: cover;
}

.ch-about-lead__title {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ch-about-lead__title h1 {
  white-space: nowrap;
}

.ch-about-lead__content {
  max-width: 500px;
  align-self: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ch-about-awards {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 2fr 4fr;
  grid-gap: 30px 60px;
}

.ch-about-awards h2 {
  color: var(--orange);
}

.ch-about-awards h3 {
  text-transform: uppercase;
}

.ch-about-awards ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 40px;
}

.ch-about-awards ul .ch-text-30-800 {
  word-break: break-word!important;
}

.ch-about-awards li {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.ch-about-awards li:first-of-type {
  grid-row-start: 1;
  grid-row-end: 3;
}

.ch-about-advantages {
  padding-top: 100px;
  padding-bottom: 100px;
  color: var(--white);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.ch-about-advantages__text {
  display: flex;
  column-gap: 30px;
  max-width: 370px;
  text-transform: uppercase;
}

.ch-about-builds {
  display: flex;
  flex-direction: column;
}

.ch-about-builds__item {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.ch-about-builds__item:not(:first-of-type) {
  border-top: 1px rgba(255, 255, 255, .2) solid;
}

.ch-about-builds__item ul {
  display: flex;
  gap: 40px;
}

.ch-about-builds__item li {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.ch-about-builds__item li h3 {
  text-transform: uppercase;
  white-space: nowrap;
  overflow-wrap: normal;
}

.project-comfort {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.project-comfort h2 {
  margin-bottom: 30px;
  color: var(--orange);
}

.project-comfort__content {
  display: flex;
  gap: 20px;
}

.project-comfort__c-img {
  border-radius: 20px;
  width: calc(50% - 10px);
  overflow: hidden;
  max-height: 500px;
}

.project-comfort__c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-comfort__content:nth-of-type(2) {
  flex-direction: row-reverse;
}

.project-comfort__content ul {
  width: calc(50% - 10px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-comfort__content li {
  padding: 40px;
  border-radius: 20px;
  min-width: calc(50% - 5px);
  background-color: var(--white);
  box-shadow: 0 34px 69px 0 rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  justify-content: center;
}

.ch-video-about {
  display: grid;
  grid-template-columns: 3fr 9fr;
  grid-gap: 25px 100px;
}

.ch-video-about__content {
  justify-content: center;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.video-js {
  background-color: transparent!important;
  box-shadow: 0 34px 69px 0 rgba(0, 0, 0, 0.1);

  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 700px;
}

.vjs-poster img {
  object-fit: cover!important;
}

.video-js .vjs-tech {
  /*object-fit: cover;*/
}

.video-js .vjs-big-play-button {
  line-height: 3em!important;
  height: 3em!important;
  border-radius: 50%!important;
  border: none!important;
  margin: 0!important;
  transform: translate(-50%, -50%);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-size: 50px;
  color: var(--orange);
}

.ch-dialog {
  display: flex;
  border: none;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 20px), -50%);
  max-width: 1500px;
  width: calc(100% - 40px);
  margin: 0 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility .2s ease-in-out, opacity .2s ease-in-out;
}

.ch-dialog[open] {
  visibility: visible;
  opacity: 1;
}

.ch-dialog h2 {
  color: var(--text-black);
}

.ch-dialog__body {
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
}

.ch-dialog__content {
  /*position: relative;*/
  /*display: flex;*/
  padding: 40px;
}

.ch-dialog__title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  column-gap: 10px;
}

.ch-dialog__title button {
  cursor: pointer;
  display: flex;
  background-color: unset;
  border: none;
}

.ch-dialog__title button img {
  width: 30px;
  height: 30px;
}


.ch-dialog__form-container,
.ch-dialog__success-container,
.ch-dialog__fail-container,
.ch-dialog__form-sms-container {
  width: 100%;
  height: 100%;
  /*position: absolute;*/
  /*visibility: hidden;*/
  /*opacity: 0;*/

  display: none;
  flex-direction: column;
  justify-content: space-between;
  flex: 0;
  row-gap: 20px;
}

.ch-dialog__form-container.ch-active,
.ch-dialog__success-container.ch-active,
.ch-dialog__fail-container.ch-active,
.ch-dialog__form-sms-container.ch-active {
  /*visibility: visible;*/
  /*opacity: 1;*/
  display: flex;
}

.ch-dialog__form-container {
  flex-direction: column;
  justify-content: start;
  row-gap: 30px;
}

.ch-dialog .video-js {
  min-height: 500px;
}

.ch-dialog__form {
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.ch-dialog label {
  color: var(--text-black);
  cursor: pointer;
}

.ch-dialog input {
  cursor: pointer;
}

.ch-dialog input[type="text"],
.ch-dialog input[type="number"] {
  border: 1px var(--grey) solid;
  outline: none;
  border-radius: 6px;
  width: 100%;
  padding: 20px 10px
}

.ch-dialog input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.ch-dialog input::placeholder {
  color: var(--grey-light);
}

.ch-dialog input:focus {
  outline: 1px var(--text-black) solid;
}

.ch-dialog input[type="number"]::-webkit-inner-spin-button,
.ch-dialog input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Убираем стрелки для Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.ch-dialog a {
  color: inherit;
}

.ch-dialog__c-btn {
  flex: 1;
  display: flex;
  align-items: end;
}

.ch-dialog__c-btn .ch-button {
  width: 100%;
}

.ch-dialog input ~ span,
.ch-dialog .ch-dialog__form-sms-number > span:nth-of-type(2) {
  visibility: hidden;
  opacity: 0;
  color: var(--orange);
}

.ch-dialog input.ch-validation-error ~ span,
.ch-dialog .ch-dialog__form-sms-number.ch-validation-error > span:nth-of-type(2) {
  visibility: visible;
  opacity: 1;
}

.ch-dialog .ch-dialog__form-sms-number > span:nth-of-type(2) {
  margin-bottom: -30px;
}

.ch-dialog .ch-dialog__form-sms-number.ch-validation-error > span:nth-of-type(2) {
  margin-bottom: 0;
}

.ch-dialog input.ch-validation-error {
  border-color: var(--orange);
}

.ch-dialog .ch-button.loading .loader {
  display: flex;
}

.loader {
  display: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
  0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
  25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
  50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
  100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

.ch-dialog__form-sms {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
}

.ch-dialog__form-sms-body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.ch-dialog__form-sms-number {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}


.ch-dialog__form-sms-number p {
  color: var(--grey-light-2);
}

.ch-dialog__form-sms-number span {
  color: var(--blue);
}

.ch-decor-title {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ch-decor-title h1 {
  text-transform: uppercase;
}

.ch-decor {
  display: flex;
  column-gap: 50px;
  align-items: center;
}

.ch-decor__link {
  width: calc(75% - (50px / 2));
  position: relative;
}

@media (hover: hover) {
  .ch-decor__link:hover .ch-decor__img {
    filter: brightness(100%);
  }
}

@media (hover: none) {
  .ch-decor__link:active .ch-decor__img {
    filter: brightness(100%);
  }
}

.ch-decor__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  max-height: 800px;
  filter: brightness(90%);
}

.ch-decor__icon {
  background-color: var(--white);
  padding: 20px;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ch-decor__wrapper {
  width: calc(25% - (50px / 2));
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ch-decor__wrapper h2 {
  text-transform: uppercase;
}

.ch-decor__light-text {
  color: var(--grey-light);
}

.swiper-decor-include {
  user-select: none;
}

.ch-decor-include h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
}

.ch-decor-include h3 {
  text-transform: uppercase;
}

.ch-decor-include p {
  margin-bottom: 10px;
}

.ch-decor-include .swiper-slide {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  height: auto !important;
}

.ch-swiper-decor-include {
  user-select: none;
}

.ch-swiper-decor-include__img {
  width: 100%;
  object-fit: cover;
  max-height: 850px;
  height: 100%;
}

.ch-swiper-decor-include .swiper-button-next, .ch-swiper-decor-include .swiper-button-prev {
  background-color: var(--grey-light2);
  border-radius: 50%;
}

.ch-swiper-decor-include .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
}

.ch-swiper-decor-include .swiper-button-prev {
  position: static;
  width: 50px;
  height: 50px;
}

.ch-swiper-decor-include__button-wrapper {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 62%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}

.ch-swiper-decor-include .swiper-button-next::after {
  content: url("/local/templates/main_new/tpl/tpl/assets/img/icon-arrow-next.svg");
  font-size: initial;
  margin-bottom: -2px;
}

.ch-swiper-decor-include .swiper-button-prev::after {
  content: url("/local/templates/main_new/tpl/tpl/assets/img/icon-arrow-prev.svg");
  font-size: initial;
  margin-bottom: -2px;
}

.ch-form {
  max-width: 600px;

  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;

  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.ch-form .ch-text-30-900 {
  text-transform: uppercase;
}

.ch-form__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.ch-label {
  display: flex;
  flex-direction: column;
}

.ch-check-label {
  user-select: none;
  cursor: pointer;
}

.ch-check-label a {
  color: var(--text-black);
  text-decoration: none;
  border-bottom: 1px var(--text-black) solid;
}

@media (hover: hover) {
  .ch-check-label a:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
  }
}

@media (hover: none) {
  .ch-check-label a:active {
    color: var(--orange);
    border-bottom-color: var(--orange);
  }
}

.ch-input {
  padding: 20px 10px;
  border: 1px var(--grey) solid;
  border-radius: 6px;
}

.ch-input:focus {
  outline: 1px var(--orange) solid;
}

.ch-input::placeholder {
  color: var(--grey-light);
}

.input_errors {
  display: block;
  border-color: #e6432e;
}

.ch-form.js-form.js-validate.is-submitted {
  display: none;
}

.ch-form.js-form.js-validate.is-submitted ~ .js-form-ok {
  display: block;
}

.finish-form-static-wrap {
  max-width: 600px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.finish-form-static-wrap.is-active {
  padding: 0;
}