/* FULLSCREEN OVERLAY */
.creative-popup {position: fixed;inset: 0;background: rgba(0, 0, 0, 0.45);display: flex;justify-content: center;align-items: center;z-index: 999999;opacity: 0;pointer-events: none;transition: opacity .45s ease;}
.creative-popup.show {opacity: 1;pointer-events: auto;}
.creative-popup .popup-content {
  position: relative;width: 92%;max-width: 900px;border-radius: 20px;overflow: hidden;background: #000;transform: scale(0.85) translateY(30px);opacity: 0;transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);}
.creative-popup.show .popup-content {transform: scale(1) translateY(0);opacity: 1;}
.creative-popup .popup-close {position: absolute; top: 5px; right: 24px;font-size: 40px;background: none;border: none;color: #0A483B;cursor: pointer;z-index: 10;font-weight: 600;}
.creative-popup .popup-image {display: block;width: 100%;height: auto;}

@media (max-width: 992px) {
.creative-popup .popup-content {width: 85%;max-width: 600px;}
.creative-popup .popup-close {top: 9px;right: 26px;font-size: 46px;}
}
@media (max-width: 767px) {
.creative-popup .popup-content {width:85%;max-width:380px;}
.creative-popup .popup-close {top:-1px;right:12px;font-size:32px;}
}