.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  z-index: 1002;
  text-align: center;
  width: 90%;
  max-width: 560px;
  padding: 32px 40px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: auto;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .popup {
    gap: 16px;
  }
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup img {
  width: 100%;
  max-width: 300px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: 0.3s;
}

.overlay.show {
  opacity: 1;
  display: block;
}

.btn_close {
  margin-top: 10px;
  cursor: pointer;
  padding: 10px;
  background: red;
  color: white;
  border: none;
  border-radius: 5px;
}

.close_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  background: none;
  border: none;
}
@media (max-width: 992px) {
  .close_icon {
    top: 0;
    right: 0;
  }
}

img.copy_icon {
  width: 16px;
}

#coupon_code {
  color: #368cdc;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

#popup_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: 1px;
}

#popup_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border: 1px solid #333;
  background: #fff;
}
#popup_link:hover {
  background: var(--gray700, #ddd);
  transition: 0.2s;
}

.navbar.navbar-expand-md.fixed-top.navbar-transparent {
  z-index: 210;
}/*# sourceMappingURL=inbound_platform.css.map */