/**
 * PROMO BLOCKS
 */
.promo__start-three-months {
  transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 999;
  bottom: 50px;
  left: 50px;
  width: 430px;
  max-width: calc(100% - 50px - 50px);
  border-radius: 12px;
  background: #4653b7;
  color: #e5e5e5;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .promo__start-three-months {
    left: 10px;
    bottom: 20px;
    padding: 20px 30px;
    max-width: calc(100% - 10px - 10px);
  }
}
.promo__start-three-months.discarded {
  opacity: 0;
  transform: scale(0);
  bottom: 0;
}
.promo__start-three-months__title {
  font-size: 28px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .promo__start-three-months__title {
    font-size: 22px;
    line-height: 1.2;
  }
}
.promo__start-three-months__button {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border-radius: 0.375rem;
  background: #ad6b57;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
.promo__start-three-months__button:hover {
  background-color: #ad6b57;
  opacity: 0.9;
}
.promo__start-three-months__close {
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  width: 22px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.promo__start-three-months__close:hover {
  opacity: 0.8;
  transform: scale(0.95);
}
.promo-box {
  background: #e5e5e5;
  padding: 30px;
  border-radius: 20px;
}

/*# sourceMappingURL=promo.css.map */
