/* Fullscreen overlay */
#cdp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* allow scrolling */
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}
body.cdp-no-scroll {
    overflow: hidden;
    height: 100%;
}
/* Popup content box */
.cdp-popup-content {
    background: #fff;
    margin: 50px auto;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    border-radius: 8px;
    position: relative;  
}

/* Close button */
#cdp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#cdp-form input, #cdp-form select, #cdp-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
#cdp-form button {
    background: #c9331a;
    color: #fff;
    padding: 8px 25px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
#cdp-form button:hover {
    background: #8d1a07;
}


#cdp-popup h2,#cdp-popup label {
                color: #c9331a;
            }
#cdp-popup h2{ 
    margin: 0 0 15px;
}
            #cdp-popup select, #cdp-popup input, #cdp-popup textarea{
                color: #000 !important;
                width: 100% !important;
                border-radius: 5px !important;
                line-height: 40px;
				padding:0px 10px !important;
            }

            #cdp-popup select, #cdp-popup input, #cdp-popup textarea {
                border: 1px solid #ccc !important;
            }

            #cdp-popup select, #cdp-popup input{
                height: 40px;
            }
			#cdp-popup .select2-container {
    display: none;
}

#cdp-popup select {
display: block;
height: 40px !important;
position: static !important;
clip: unset !important;
-webkit-clip-path: unset !important;
clip-path: unset !important;
}
#cdp-popup input[type="file"] {
    padding: 0 !important;
    line-height: 32px !important;
}

#cdp-popup input[type="file"]::file-selector-button {
    background-color: #c9331a;
    color: #fff;
    border: none;
    padding: 3px 15px;
    border-radius: 4px;
    cursor: pointer; 
}

#cdp-popup input[type="file"]::file-selector-button:hover {
    background-color: #6e1405;
}