div.zsiq_floatmain {
    z-index: 10000 !important;
}

iframe {
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

.col-label {
    position:absolute;
    right: 8px;
    top: 10px;
    background: #EB4D5E;
        border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}


.form-snippet {
    max-width: 600px;
    margin: auto;
}

.overflow-hidden {
    overflow-x: hidden;
}

.zpbutton {
    transition: .2s !important;
}

.white-text, .white-text a {
	color: #ffffff !important;
}

.zoho-one-img .zpimage-container.zpimage-align-center.zpimage-size-fit figure img {
    max-height: 201px;
    width: auto !important;
    max-width: 100% !important;
}

/*
*	Popup
*/
.contact-us-popup {
    position: fixed;
    display: flex;
    max-width: unset !important;
    width: auto !important;
    background-color: #00000080;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000000;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.contact-us-popup > div {
    max-width: 900px;
}

.contact-us-popup.hidden {
    position: static;
    display: none;
}

.close-popup {
    position: absolute;
    cursor: pointer;
    margin: 0;
    right: -10px;
    top: -10px;
    z-index: 2000000;
}

.close-popup:hover {
    background: #3d5368;
}

/*
*	Subscribe YouTube
*/
.subscribe-container {
    padding: 12px
}

.subscribe-container .zpbutton {
    position: relative;
    display: inline-flex;
    align-items: center;
    filter: none !important;
}

.subscribe-container .zpbutton > span {
    z-index: 1;
}

.subscribe-container .zpbutton:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #e22323;
    left: 0;
    opacity: 0;
    transition: .2s !important;
}


.subscribe-container .zpbutton:hover:before {
    opacity: 1;
}

.subscribe-container .zpbutton svg {
    width: 24px;
    height: 24px;
}

.subscribe-close {
    position: absolute;
    right: -14px;
    top: -12px;
    color: #000;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 2px;
    text-align: center;
    cursor: pointer;
}

.subscribe-close > div {
    width: 22px;
    height: 22px;
    font-size: 18px;
    line-height: 1;
}

.subscribe-close:hover {
    background: #f2f2f2;
}

.theme-blog-cover-img-container + .theme-blog-part .theme-blog-summary-image {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .zls-sptwndw {
        display: none !important;
    }
}

@media screen and (max-width: 400px) {
    .subscribe-container .zpbutton {
        font-size: 14px;
    }
    
    #titlediv {
        display: none;
    }
}

    /* 1. Overlay (The Dimming Background - Remains the same) */
    #custom-popup-modal {
        position: fixed;
        z-index: 1000000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-hidden {
        display: none !important;
    }

    /* 2. Modal Box (CUSTOMIZED CONTENT AREA - SIGNIFICANT CHANGES) */
    .modal-content {
        /* --- NEW: Background Image and Dimensions --- */
        background-image: url('https://en.crmoz.com/Christmas%20Sale%201280_720.png'); /* Your image */
        background-size: contain; /* Ensures image covers the whole content area */
        background-position: center;
        background-repeat: no-repeat; /* Prevent tiling */

        background-color: black; /* IMPORTANT: Remove background color to show image */
        color: white; /* Ensure any remaining text is visible */

        padding: 0; /* IMPORTANT: Remove padding here, we'll add it to internal elements */
        border-radius: 12px;
        width: 90%;
        max-width: 800px; /* INCREASED: Make the modal wider to fit the image better */
        height: auto; /* Allow height to adjust based on content/image aspect ratio */
        min-height: 450px; /* Set a minimum height if the image is tall */
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Adjust shadow for the overall dark theme */
        text-align: center;

        /* Flexbox for vertical alignment of internal content if needed */
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Pushes header/footer to ends */
    }

    /* Internal padding for text, so it doesn't stick to edges */
    .modal-inner-content {
        padding: 30px; /* Padding for the text content inside the modal */
        flex-grow: 1; /* Allow this section to take up available space */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically */
        align-items: center; /* Center content horizontally */
    }


    /* 3. Close Button (Adjust color/position if needed for the new image) */
    .close-btn {
        color: #eee;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 15px;
        right: 20px;
        cursor: pointer;
        background-color: rgba(0,0,0,0.5); /* Optional: add background for visibility */
        border-radius: 50%;
        width: 30px;
        height: 30px;
        line-height: 28px; /* Center 'x' vertically */
        text-align: center;
    }

    .close-btn:hover,
    .close-btn:focus {
        color: #fff;
        background-color: rgba(0,0,0,0.7);
    }


    .modal-buttons-container {
        position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;

        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;

        padding: 5px 10px;
        gap: 15px;
    }

    /* 5. CUSTOM BUTTON STYLES (Adjusted for new layout) */
    .custom-cta-primary, .custom-cta-secondary {
        flex: 1; /* Make buttons take equal space */
        max-width: 250px; /* Limit button width */
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 18px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    @media (max-width: 768px) {
        .modal-buttons-container {
            bottom: 20px;
        }

        .custom-cta-primary, .custom-cta-secondary {
            padding: 8px 12px;
            font-size: 16px;
        }
    }

    .custom-cta-primary {
        background-color: #de1756; /* Your Black Friday Yellow */
        color: #fff;
        box-shadow: 0 4px 10px rgba(253, 224, 71, 0.4);
    }
    .custom-cta-primary:hover {
        background-color: #FFC107;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(253, 224, 71, 0.6);
    }

    /* Adjust text within the modal for better contrast if needed */
    .modal-content h2, .modal-content p {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* Optional: add shadow for text visibility */
        position: relative; /* Ensure it's above the image */
    }

    /* Optional: Make the h2/p smaller if the image already has large text */
    .modal-content h2 {
        font-size: 24px; /* Reduced to avoid conflict with image text */
        margin-bottom: 5px;
    }
    .modal-content p {
        font-size: 16px; /* Reduced */
        margin-bottom: 15px;
    }