@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.webinar-popup-overlay-cd9dcb6d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: webinarPopupFadeIn_cd9dcb6d 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

@keyframes webinarPopupFadeIn_cd9dcb6d {
    from { opacity: 0; }
    to { opacity: 1; }
}

.webinar-popup-container-cd9dcb6d {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 720px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: webinarPopupSlideUp_cd9dcb6d 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

@keyframes webinarPopupSlideUp_cd9dcb6d {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.webinar-popup-close-cd9dcb6d {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.webinar-popup-close-cd9dcb6d:hover {
    background: rgba(0, 0, 0, 0.75);
}

.webinar-popup-image-link-cd9dcb6d {
    display: block;
    text-decoration: none;
}

.webinar-popup-image-cd9dcb6d {
    width: 100%;
    overflow: hidden;
}

.webinar-popup-image-cd9dcb6d img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.webinar-popup-image-link-cd9dcb6d:hover .webinar-popup-image-cd9dcb6d img {
    transform: scale(1.02);
}

.webinar-popup-content-cd9dcb6d {
    padding: 28px 32px 32px;
    background: #ffffff;
}

.webinar-popup-badge-cd9dcb6d {
    display: inline-block;
    background: #005dbc;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.webinar-popup-title-cd9dcb6d {
    font-size: 22px;
    font-weight: 800;
    color: #1e1e2f;
    margin: 0 0 12px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.webinar-popup-description-cd9dcb6d {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
}

.webinar-popup-details-cd9dcb6d {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.webinar-popup-detail-item-cd9dcb6d {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-family: 'Poppins', sans-serif;
}

.webinar-popup-detail-item-cd9dcb6d svg {
    color: #005dbc;
    flex-shrink: 0;
}

.webinar-popup-cta-cd9dcb6d {
    display: inline-block;
    background: #005dbc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.webinar-popup-cta-cd9dcb6d:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 93, 188, 0.4);
    background: #004a96;
    color: #ffffff;
}

@media (max-width: 600px) {
    .webinar-popup-container-cd9dcb6d {
        max-width: 100%;
        border-radius: 12px;
    }

    .webinar-popup-content-cd9dcb6d {
        padding: 20px;
    }

    .webinar-popup-title-cd9dcb6d {
        font-size: 18px;
    }

    .webinar-popup-cta-cd9dcb6d {
        width: 100%;
        text-align: center;
    }
}
