        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: inherit;
            background: rgba(0, 0, 0, 0.5);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        } */

        .popup-overlay {
            background: rgba(0, 0, 0, 0.5);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
        }

        .popup-container {
            margin-top:10px!important;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: flex;
            position: relative;
            animation: slideIn 0.4s ease-out;
            margin: auto;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(0, 0, 0, 0.1);
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-btn:hover {
            background: rgba(0, 0, 0, 0.2);
            transform: rotate(90deg);
        }

        .popup-left {
            flex: 1;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .brand-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
        }

        .popup-right {
            flex: 1;
            padding: 30px 30px 0 30px;
        }

        .popup-right h3 {
            font-size: 26px;
            color: #333;
            margin-bottom: 10px;
        }

        .popup-right .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .custom-btn-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .custom-btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .custom-btn-submit:active {
            transform: translateY(0);
        }

        .privacy-text {
            margin-top: 20px;
            font-size: 12px;
            color: #999;
            text-align: center;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .popup-container {
                flex-direction: column;
                max-width: 500px;
            }

            .popup-left {
                padding: 0;
                min-height: 250px;
            }

            .brand-image {
                width: 100%;
                height: 100%;
                min-height: 250px;
            }

            .popup-right {
                padding: 40px 30px;
            }

            .popup-right h3 {
                font-size: 22px;
            }

            .close-btn {
                top: 15px;
                right: 15px;
                width: 32px;
                height: 32px;
                font-size: 18px;
                background: #f7eeee;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .popup-left {
                padding: 0;
            }

            .popup-right {
                padding: 30px 20px;
            }

            .brand-image {
                width: 100%;
                height: 100%;
                font-size: 32px;
            }

            .popup-left h2 {
                font-size: 20px;
            }

            .popup-right h3 {
                font-size: 20px;
            }

            .form-group input {
                padding: 12px 15px;
            }

            .custom-btn-submit {
                padding: 14px;
            }
        }
.cpm-html-popup-overlay {    
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Just below the popup */
}
.cpm-html-popup-content {   
    
    display: none;
    position: fixed;    
    /* background: #fff; */
    padding: 6px;
    /* max-width: 600px; */
    
    z-index: 10000;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.2); */
    /* border-radius: 8px; */
    /* border: 2px solid #3faf9f; */
    /* text-align: center; */
    /* border-radius: 50%; */
    /* -webkit-border-radius: 50%; */
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    /* box-shadow: 0px 0px 9px #1fbbbb; */
    /* -webkit-box-shadow: 0px 0px 9px #32dba4; */
    -moz-box-shadow: 0px 0px 9px #000000;
 
}

.cpm-html-popup-close {
    position: absolute;
    top: -10px;
    right: -15px;
    cursor: pointer;
    font-size: 40px;
    font-family: 'MavenPro-Regular', Gotham, Helvetica Neue, Helvetica, Arial, sans-serif;
    /* font-weight: bold !important; */
    line-height: 1.8;
    background-color: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 9px #000000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    border-radius: 50%;    
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;   
    -webkit-box-shadow: 0px 0px 9px #000000;
    -moz-box-shadow: 0px 0px 9px #000000;
    -khtml-box-shadow: 0px 0px 9px #000000;
}

.popup-link {
    background-color: #00babc;
    text-transform: uppercase;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    padding: 10px;
    /* font-weight: 500; */
    border-radius: 10px;
}
.main-div-part.clearfix {
    padding-bottom: 10px;
}
.pop-img-part-100{
    margin-top: -23px;
    margin-bottom: -15px;
}
 
.popup-error-class{      
    border: 1px solid #ff0b0b!important; 
}
span.error{      
    color: #ff0b0b; 
}
input#popup-firstname, 
input#popup-lastname, 
input#popup-email,
textarea#popup-message
{
    margin-top: 3px;
}
@media (min-width: 575.98px) {
    .cpm-html-popup-content {            
        top: 45%;
        transform: translate(-50%, -50%);
        left: 50%;
        width: 74%;
    }  
    .pop-img-part-50 {
        float:left; 
        width:50%;
    }  
    .pop-img-part-100 {        
        width:100%;
    }   
    .pop-content-part-50 {
        float:right; 
        width:50%;
        padding-right: 27px;
        text-align: justify;
    }
    .pop-content-part-100 {
        text-align: justify;
    }
    .popup-first-name-row{
        width:47%;
        float:left;
        
    }
    .popup-last-name-row{
        width:50%;
        float:right;
        
    }
}
@media (max-width: 575.97px) {
    .cpm-html-popup-content {            
        top: 57%;
        transform: translate(-69%, -60%);
        left: 67%;
        
    }  
    .pop-img-part {
       width:100%;
    }      
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
span.PIN_1745484743324_button_pin.PIN_1745484743324_save {
    display: none;
}
span[class^="PIN_"] {
    display: none;
}

label.form-input-title {
    color: #2c2a2a; 
    text-transform: math-auto;
    margin-bottom: 0px;
}
.popup-first-name-row, 
.popup-last-name-row,
.popup-email,
.popup-message,
.popup-file-upload,
.popup-Official-rule{
    text-align: left;
}

.container-div {
    display: flex;                         
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    flex-wrap: wrap;
}

.left, .right {
    flex: 1 1 50%;
    min-width: 300px;
}

.left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right h2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.right p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
display: block;
margin-bottom: 5px;
font-size: 14px;
color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 43px;
    margin-bottom: 0px!important;
}

.form-group input:focus {
border-color: #007bff;
outline: none;
}

.submit-btn {
    background-color: #f26822;
    color: #fff;
    /* padding: 12px; */
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 97px;
    height: 42px;
}
.submit-btn:hover {
    background-color: #daa360;
    color: #ffffff;
}

.right .submit-btn {

}

 

@media (max-width: 768px) {
    .container-div {
        flex-direction: column;
    }

    .left, .right {
        flex: 1 1 100%;
    }

    .right {
        padding: 20px;
    }
}

 .popup-non-clickable-button {
        background-color: #f4524d!important;
        border: none;
        color: #cec2ab;     
        text-align: center;
        text-decoration: none;
        display: inline-block;     
        cursor: default;
        pointer-events: none;
    }
    .popup-loadIcon {
        display:none;
        position: absolute;
        left: none!important;
        top: none!important;
        margin-top: 0px;  
        margin-left: 12px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 2s linear infinite;
    }


