/* broucher styles */


.brochure-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

.brochure-popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.brochure-popup-box {
    position: relative;
    max-width: 700px;
    max-height: 800px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}


.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.popup-title {
    margin-bottom: 20px;
    font-weight: 600;
}

#brochureMessage {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: none;
}

.message-success {
    background: #d4edda;
    color: #155724;
}

.message-error {
    background: #f8d7da;
    color: #721c24;
}

.brochure-card {
    max-width: 700px;
    margin: auto;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.brochure-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}


.brochure-form .form-control,
.brochure-form select {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.brochure-form label {
    font-weight: 600;
    margin-bottom: 6px;
}

.phone-group {
    display: flex;
    align-items: center;
    width: 100%;
    /* max-width: 350px; */
    border: none !important;
    border-radius: 5px !important;
    height: 42px;
    flex-wrap: wrap;
}

.phone-group .input-group-text {
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.brochure-btn {
    height: 48px;
    font-weight: 600;
    border-radius: 6px;
    background: #0d6efd;
    border: none;
}

.brochure-btn:hover {
    background: #0b5ed7;
}

.agree-text {
    font-size: 14px !important;
    color: #555 !important;
}

.check-box-container {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 10px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

#captchaText {

    font-family: 'Special Elite', monospace;
    font-size: 26px;
    letter-spacing: 6px;
    font-weight: bold;

    background: #f1f1f1;
    padding: 8px 15px;

    display: inline-block;

    transform: skew(-5deg);

    color: #333;

    border-radius: 4px;

    user-select: none;

}



.refreshCaptcha {
    border: none;
    background: #eee;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
}


#captchaCanvas {
    background: #f3f3f3;
    border-radius: 4px;
    cursor: pointer;
}

.refreshCaptcha {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
}


.download-btn.disabled {
    color: #a51c30 !important;
    ;
    background-color: #fff;
    border: 1px solid #a51c30;
    cursor: not-allowed !important;
}


@media screen and (max-width:476px){
    .brochure-popup-box{
        width: 100%;
        height: 100%;
        top: unset;
        transform: unset;        
    }

    .brochure-popup-box .card{
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
}