/* Global Styling */
/* * {
    font-family: "Helvetica", Sans-serif;
    box-sizing: border-box;
} */

/* Popup Background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
    box-sizing: border-box;
}

/* Popup Container */
.popup-container {
    font-family: "Helvetica", Sans-serif;
    background: #ffffff;
    max-width: 850px;
    width: 100%;
    border-radius: 25px;
    display: flex;
    position: relative;
    box-sizing: border-box;
}

/* Left Section */
.popup-left {
    background: linear-gradient(to bottom, #333333, #000000);
    color: #ffffff;
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 25px 0px 0px 25px;
}

.popup-left h2 {
    font-size: 30px;
    margin-bottom: 0;
    margin-top: 0;
    box-sizing: border-box;
}

.popup-left p {
    font-size: 22px;
    color: #FCD526;
    margin-bottom: 30px;
    box-sizing: border-box;
}

/* Right Section (Image) */
.popup-right {
    width: 50%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0px 25px 25px 0px;
/*            background: url('call-popup.jpg') center/cover no-repeat;*/
}

.popup-right img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-bottom: -5px;
    box-sizing: border-box;
}

/* Form Styling */
.popup-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
}

.popup-form #getCallBtn {
    background: #FCD526;
    color: black;
    font-weight: bold;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    box-sizing: border-box;
}
.popup-form #getCallBtn:disabled {
    background: #aaa;
}

.iti {
    width: 100%;
    box-sizing: border-box;
}

.iti__country-name {
    color: #000000;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    box-sizing: border-box;
}

/* Error Message */
.error {
    color: red;
    font-size: 12px;
    display: block;
}
.error:not(.phoneNumber) {
    margin-top: -5px;
    margin-bottom: 5px;
}
.error.phoneNumber {
    margin-top: 5px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .popup-container {
        flex-direction: column;
        width: 94%;
        max-width: 94%;
    }
    .popup-left, .popup-right {
        width: 100%;
        border-radius:25px;
    }
    .popup-right {
        display: none;
    }
    .popup-form #getCallBtn {
        margin-top: 10px;
    }

    .iti--flexible-dropdown-width .iti__country-list {
        width: 100%;
        max-width: 100%;
        top: 38px;
    }

}
.iti--inline-dropdown .iti__dropdown-content ,
.iti--inline-dropdown .iti__country-list ,
.iti--fullscreen-popup.iti--container.iti--country-search {
    z-index: 999999;
}
.iti .iti__selected-dial-code {
    color: #333;
    font-size: 16px;
}