/* Модальное окно - CSS стили */

/* Основной контейнер модального окна */
.popup {
  z-index: 9999;
  -webkit-backdrop-filter: blur(120px);
  backdrop-filter: blur(120px);
  background-color: rgba(255, 255, 255, 0.4);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.popup.active {
  display: flex;
}

/* Контейнер содержимого модального окна */
.cta-popup {
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cta-wrap-copy {
  background-color: #fff;
  border-radius: 4px;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  height: 550px;
  margin: auto;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  position: relative;
}

/* Левая часть модального окна */
.div-block-9-copy {
  border-right: 1px solid #e2e2e2;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-right: 48px;
  display: flex;
}

/* Правая часть модального окна */
.div-block-10-copy {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.div-block-11-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 48px 56px;
  display: flex;
}

/* Заголовок модального окна */
.text-block-2-copy {
  max-width: 530px;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  color: #000;
  font-family: 'Golos Text', sans-serif;
}

.text-span {
  color: #1b7def;
}

.text-block-5 {
  opacity: 0.5;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: 'Golos Text', sans-serif;
}

/* Кнопка закрытия */
.code-embed-6 {
  opacity: 0.75;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-top: 12px;
  margin-right: 12px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.2s;
}

.code-embed-6:hover {
  opacity: 0.5;
}

.code-embed-6 svg {
  width: 24px;
  height: 24px;
  color: #18181b;
}

/* Стили для формы Битрикс24 внутри модального окна */
.code-embed-2 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

/* Стили для формы Битрикс24 (если нужно кастомизировать) */
.b24-form-wrapper {
  width: 100%;
}

/* Кастомизация полей формы Битрикс24 */
.b24-form-control {
  font-family: 'Golos Text', sans-serif;
}

.b24-form-control input,
.b24-form-control textarea,
.b24-form-control select {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.b24-form-btn {
  font-family: 'Golos Text', sans-serif;
  font-weight: 500;
}

/* Адаптивные стили для мобильных устройств */
@media screen and (max-width: 991px) {
  .cta-wrap-copy {
    flex-flow: column;
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-block-11-copy {
    width: 100%;
  }

  .div-block-9-copy {
    border-right-style: none;
    width: 100%;
  }

  .div-block-10-copy {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .cta-wrap-copy {
    flex-flow: column;
    width: 100%;
    max-width: none;
    height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .div-block-11-copy {
    padding: 0 0 32px;
  }

  .div-block-9-copy {
    width: 100%;
    padding-top: 56px;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .cta-popup {
    width: 100%;
    height: 100%;
  }

  .text-block-2-copy {
    max-width: none;
    font-size: 30px;
    line-height: 34px;
  }

  .div-block-10-copy {
    width: 100%;
  }

  .popup {
    z-index: 3999;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    display: none;
    inset: 0%;
  }
}
