.pm-icon-outer-label,
.more-pm--long {
  color: #fff !important;
}

@media (max-width: 400px) {
  .modal-ribbon {
    bottom: calc(100% - 5rem);
  }

  .exit-modal-heading {
    top: -5px;
    font-size: 20px;
  }
}
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.promo-popup.active {
  display: flex;
}

.promo-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.promo-popup__modal {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #032853;
  border-radius: 26px;
  padding: 26px 28px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  z-index: 2;
  color: #fff;
  animation: popupFadeUp 0.35s ease;
}

.promo-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.promo-popup__close:hover {
  opacity: 0.75;
}

.promo-popup__logo {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  color: #f0d37a;
  margin-bottom: 8px;
  font-family: cursive;
  display: flex;
  justify-content: center;
}

.promo-popup__flag-line {
  display: flex;
  height: 5px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 28px;
  max-width: 440px;
}

.promo-popup__flag-line .green {
  flex: 1;
  background: #16a34a;
}

.promo-popup__flag-line .white {
  flex: 1;
  background: #ffffff;
}

.promo-popup__flag-line .red {
  flex: 1;
  background: #dc2626;
}

.promo-popup__content h2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin: 0 20px 28px;
}

.promo-popup__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.promo-popup__form input {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: #10488A;
  color: #fff;
  padding: 0 16px;
  font-size: 18px;
  box-sizing: border-box;
}

.promo-popup__form input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.promo-popup__phone {
  display: flex;
  align-items: center;
  background: #10488A;
  border-radius: 10px;
  overflow: hidden;
}

.promo-popup__phone-code {
  min-width: 105px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  padding: 0 12px;
}

.promo-popup__phone input {
  border-radius: 0;
  background: transparent;
  flex: 1;
}

.promo-popup__submit {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: #4fd16f;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.promo-popup__submit:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

@keyframes popupFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .promo-popup__modal {
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .promo-popup__logo {
    font-size: 32px;
    padding-top: 10px;
  }

  .promo-popup__content h2 {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .promo-popup__form input,
  .promo-popup__phone-code,
  .promo-popup__submit {
    height: 50px;
    font-size: 16px;
  }

  .promo-popup__phone-code {
    min-width: 90px;
  }
}
.promo-popup__message {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  min-height: 20px;
}

.promo-popup__message.is-error {
  color: #ffb3b3;
}

.promo-popup__message.is-success {
  color: #9ff3b0;
}
.flag{
  width: 20px;
}