/**
 * Month Offer Popup Styles
 *
 * Full-background-image modal with white header strip for modal title
 * and left-aligned body content (max 70% width) with white text.
 */
#fey-month-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
#fey-month-popup-overlay.open {
  display: flex;
}

#fey-month-popup-modal {
  max-width: 880px;
  width: 100%;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  animation: month-popup-slide-up 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 100%;
}
@media (max-width: 599px) {
  #fey-month-popup-modal {
    background-image: none;
  }
}
@media (max-width: 768px) {
  #fey-month-popup-modal {
    max-width: 90vw;
    border-radius: 12px;
  }
}
#fey-month-popup-modal .month-popup-close {
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: 50%;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.2s ease;
  width: 16px;
  height: 16px;
  padding: 0;
  color: rgb(107, 114, 128);
}
#fey-month-popup-modal .month-popup-close:hover {
  color: rgba(107, 114, 128, 0.8);
}
@media (max-width: 600px) {
  #fey-month-popup-modal .month-popup-close {
    top: 20px;
    right: 24px;
    font-size: 16px;
  }
  #fey-month-popup-modal .month-popup-close svg {
    width: 14px;
    height: 14px;
  }
}

.month-popup-header {
  flex-shrink: 0;
  background: #fff;
  padding: 20px 56px 20px 32px;
}
@media (max-width: 768px) {
  .month-popup-header {
    padding: 18px 52px 18px 24px;
  }
}

.month-popup-modal-title {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: rgb(34, 78, 66);
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .month-popup-modal-title {
    font-size: 18px;
  }
}

.month-popup-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 599px) {
  .month-popup-body {
    background-image: var(--month-popup-bg-mobile);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

.month-popup-content {
  width: 100%;
  max-width: 70%;
  background: linear-gradient(90deg, rgba(34, 78, 66, 0.5) 10.15%, rgba(34, 78, 66, 0) 100%);
  padding: 48px 32px 48px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 600px) {
  .month-popup-content {
    max-width: 100%;
    padding-top: 290px;
    background: linear-gradient(to top, rgba(34, 78, 66, 0.5) 10.15%, rgba(34, 78, 66, 0) 110px);
    background: none;
  }
}

.month-popup-body-logo {
  margin: 0 0 24px 0;
}
.month-popup-body-logo svg {
  width: 240px;
  height: auto;
}
@media (max-width: 600px) {
  .month-popup-body-logo {
    display: none;
  }
}

.month-popup-body-title {
  margin: 0 0 12px 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #fff;
}
@media (max-width: 768px) {
  .month-popup-body-title {
    font-size: 22px;
    margin: 0 0 10px 0;
  }
}

.month-popup-body-subtitle {
  margin: 0 0 24px 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-transform: capitalize;
}

.month-popup-body-description {
  margin: 0 0 24px 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  padding: 0 40px 20px 0;
  text-transform: uppercase;
  position: relative;
}
.month-popup-body-description:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #FFFFFF 25.48%, #92D500 100%);
}
.month-popup-body-description p {
  margin: 0;
  font-size: 18px;
}
@media (max-width: 600px) {
  .month-popup-body-description {
    margin: 0 0 12px 0;
    font-weight: 400;
    padding: 0 0 12px 0;
    text-transform: capitalize;
  }
  .month-popup-body-description p br {
    display: none;
  }
}

.month-popup-text-before-button {
  padding: 0;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.1px;
  text-transform: capitalize;
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 20px 0;
}
@media (max-width: 600px) {
  .month-popup-text-before-button {
    font-size: 16px;
  }
}

.month-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(120, 169, 66);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.15px;
  line-height: 1;
  transition: background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  padding: 14px 34px;
}
.month-popup-btn:hover {
  background: rgb(100, 145, 52);
  color: #fff;
  text-decoration: none;
}
.month-popup-btn svg {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .month-popup-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 11.5px;
    line-height: 24px;
  }
}

@keyframes month-popup-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=month-popup.css.map */
