.promo-modal .modal-dialog {
  max-width: 1000px;
}

.promo-modal .modal-content {
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-top-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
  border: 0;
}

.promo-modal__wrapper {
  display: flex;
  min-height: 500px;
}

.promo-modal__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
}

.promo-modal__left img {
  max-width: 100%;
  height: 100%;
}

.promo-modal__right {
  flex: 1;
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* COUNTDOWN */
.promo-modal__countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.promo-modal__time-group {
  text-align: center;
}

.promo-modal__digits {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.promo-modal__digit {
  position: relative;
  width: 38px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f2a44;
}

.promo-modal__digit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #0f3a68;
  z-index: 1;
}

.promo-modal__digit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #1f2a44;
  z-index: 1;
}

.promo-modal__digit span,
.promo-modal__digit {
  z-index: 2;
}

.promo-modal__digit {
  box-shadow:
    inset 0 -2px 0 rgba(0,0,0,0.2),
    0 4px 10px rgba(0,0,0,0.1);
}

.promo-modal__time-group small {
  display: block;
  font-weight: 400;
  margin-top: 6px;
  font-size: 16px;
  color: #222943;
}

.promo-modal__form {
  margin-top: 10px;
}

.promo-modal__form-group {
  margin-bottom: 20px;
}

.promo-modal__input {
  width: 100%;
  height: 56px;
  border-radius: 4px;
  border: 1px solid #DEE3ED;
  padding: 0 18px;
  font-size: 16px;
  color: #586473;
  outline: none;
  transition: all .2s ease;
}

.promo-modal__input::placeholder {
  color: #586473;
}

.promo-modal__input:focus {
  border-color: #002855;
  box-shadow: 0 0 0 3px rgba(0,40,85,0.08);
}

.promo-modal__btn-full {
  width: 100%;
  height: 44px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  background-color: #002855;
  color:white;
}

.promo-modal__title {
  margin-bottom: 16px;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 44px;
  color: #002855;
}

.promo-modal__description {
  font-size: 16px;
  font-weight: 400;
  color: #586473;
  text-align: center;
  margin-bottom: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
}

.promo-modal__description p {
  margin-bottom: 0;
  line-height: 22px;
}

.promo-modal__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-modal__buttons.promo-modal__buttons--double {
  flex-wrap: nowrap;
}

.promo-modal__buttons--single .promo-modal__btn-primary {
  width: 100%;
}

.promo-modal__buttons--double .promo-modal__btn-primary,
.promo-modal__buttons--double .promo-modal__btn-secondary {
  width: 50%;
}

.dls-btn.promo-modal__btn-primary {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  border-radius: 60px;
  padding: 11px 24px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.34px;
  font-weight: 700;
  border: none;
  color: #fff;
  background: #002855;
}

.dls-btn.promo-modal__btn-secondary {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  border: 1px solid #0b2d52;
  color: #0b2d52;
  border-radius: 60px;
  padding: 10px 25px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.34px;
  font-weight: 700;
  background: #fff;
}
.promo-popup-wrapper .dls-btn:hover,
.promo-popup-wrapper .dls-btn:focus {
  box-shadow: none;
}
.promo-modal__btn-primary:hover,
.promo-modal__btn-primary:focus {
  color: white;
}
.promo-modal__btn-secondary:hover,
.promo-modal__btn-secondary:focus {
  color: #002855;
}

.promo-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0px 0px;
  border: none;
  font-size: 18px;
}

.promo-modal__close:focus {
  outline: none;
}

@media (max-width: 991px) {
  .promo-modal__wrapper {
    flex-direction: column;
  }
  .promo-modal .modal-dialog {
    max-width: 100%;
    margin: 0 27px 0 28px;
  }
  .promo-modal__left {
    min-height: 320px;
    min-width: 100%;
  }
  .promo-modal__right {
    padding: 24px;
  }
  .promo-modal__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -1%;
    margin-bottom: 20px;
  }
  .promo-modal__description {
    font-size: 14px;
    font-weight: 400;
    -webkit-line-clamp: 5;
    margin-bottom: 20px;
  }
  .promo-modal__description p {
    margin-bottom: 0;
    line-height: 18px;
  }
  .promo-modal__buttons.promo-modal__buttons--double {
    flex-wrap: wrap;
  }
  .promo-modal__buttons--double .promo-modal__btn-primary,
  .promo-modal__buttons--double .promo-modal__btn-secondary {
    width: 100%;
  }
  .promo-modal__countdown {
    gap:10px;
  }
  .promo-modal__digits {
    gap:2px;
  }
  .promo-modal__digit {
    width: 27px;
    height: 36px;
    font-size: 22px;
  }
  .promo-modal__time-group small {
    font-size: 12px;
  }
}
