/* Custom popup styles 0042d869 */

.e-custom-popup-modal-0042d869 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.e-custom-popup-modal-0042d869.is-active {
    opacity: 1;
    visibility: visible;
}

.e-custom-popup-overlay-0042d869 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.e-custom-popup-content-0042d869 {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.e-custom-popup-modal-0042d869.is-active .e-custom-popup-content-0042d869 {
    transform: translateY(0);
}

.e-custom-popup-close-0042d869 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #333333;
    cursor: pointer;
    z-index: 12;
    padding: 5px;
    transition: color 0.2s ease;
}

.e-custom-popup-close-0042d869:hover {
    color: #ff0000;
}

.e-custom-popup-body-0042d869 {
    padding: 30px;
}

.e-custom-popup-title-0042d869 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    padding-right: 25px; /* Leave space for close button */
}

.e-custom-popup-text-0042d869 {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.e-custom-popup-text-0042d869 p:last-child {
    margin-bottom: 0;
}
