/* File: custom-request-a-quote.css */
.crq-overlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.6) !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
}
.crq-overlay.active {
    display: flex !important;
}
.crq-modal {
    background: #fff !important;
    border-radius: 8px !important;
    max-width: 60% !important;
    width: 95% !important;
    padding: 24px !important;
    position: relative !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important;
    z-index: 100000 !important;
}
.crq-close {
    position: absolute !important;
    right: 15px !important;
    top: 10px !important;
    font-size: 14px !important;
    cursor: pointer !important;
}
.crq-field { margin-bottom: 14px; }
.crq-field label { font-weight: 600; display: block; margin-bottom: 6px; }
.crq-field input, .crq-field select, .crq-field textarea {
    width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px;
}
.crq-btn {     background: #010101;
    color: #fff;
    padding: 7px 18px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    margin: auto; }
.crq-btn:hover { background: #005f8d; }
.crq-product-info { background: #f9f9f9; padding: 10px; margin-bottom: 15px; border-radius: 6px; }
.crq-success { text-align: center; padding: 20px; }



/*Mobile Media Query*/
@media screen and (max-width: 800px) {
    .crq-modal {
    max-width: 98% !important;
    width: 100% !important;
}
}
