#iesi-popup {
    box-sizing: border-box;
    position: fixed;
    inset: 0;
    width: min(480px, calc(100vw - 32px));
    max-width: none;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #fff;
    color: #153d57;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0, 0, 0, .3);
    font-family: "Tajawal", "Arial", sans-serif;
    letter-spacing: 0;
    overscroll-behavior: contain;
}
#iesi-popup:not([open]) { display: none !important; }
#iesi-popup::backdrop { background: rgba(0, 0, 0, .67); }
#iesi-popup *, #iesi-popup *::before, #iesi-popup *::after { box-sizing: border-box; letter-spacing: 0; }
#iesi-popup .iesi-popup-panel { max-height: inherit; overflow: auto; overscroll-behavior: contain; }
#iesi-popup .iesi-popup-close {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 2px solid #153d57;
    border-radius: 50%;
    background: #fff;
    color: #153d57;
    cursor: pointer;
    font: 32px/1 Arial, sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
#iesi-popup .iesi-popup-close:hover { background: #f5cf32; }
#iesi-popup .iesi-popup-close:focus-visible, #iesi-popup .iesi-popup-link:focus-visible { outline: 3px solid #d49b00; outline-offset: -4px; }
#iesi-popup .iesi-popup-link { display: block; color: inherit; text-decoration: none; }
#iesi-popup .iesi-popup-heading { padding: 21px 66px 17px 20px; border-bottom: 1px solid #e0e5e8; }
#iesi-popup #iesi-popup-title { margin: 0; padding: 0; font-size: 23px; line-height: 1.65; font-weight: 700; color: #075481; overflow-wrap: anywhere; }
#iesi-popup .iesi-popup-poster { padding: 12px 18px 0; text-align: center; }
#iesi-popup .iesi-popup-poster img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 58vh;
    max-height: 58dvh;
    object-fit: contain;
    margin: 0 auto;
}
#iesi-popup .iesi-popup-action { padding: 15px 18px 18px; }
#iesi-popup #iesi-popup-button { display: block; border-radius: 4px; background: #075481; color: #fff; padding: 12px 18px; font-size: 19px; font-weight: 700; line-height: 1.5; text-align: center; overflow-wrap: anywhere; }
#iesi-popup .iesi-popup-link:hover #iesi-popup-button { background: #063e60; }
@media (max-width: 520px) {
    #iesi-popup { width: calc(100vw - 24px); max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); }
    #iesi-popup #iesi-popup-title { font-size: 20px; }
    #iesi-popup .iesi-popup-heading { padding-top: 18px; padding-bottom: 15px; }
    #iesi-popup .iesi-popup-poster { padding: 10px 12px 0; }
    #iesi-popup .iesi-popup-action { padding: 12px; }
}
@media (prefers-reduced-motion: no-preference) {
    #iesi-popup[open] { animation: iesi-popup-enter .18s ease-out; }
    @keyframes iesi-popup-enter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-height: 450px) {
    #iesi-popup .iesi-popup-poster img { max-height: max(100px, calc(100vh - 220px)); max-height: max(100px, calc(100dvh - 220px)); }
}
