/* Fixed Button Style */
.fixed-btn {
    position: fixed;
    bottom: 10px;
    left: 80px;
    padding: 8px 14px;
    background-color: #dc3545;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index:9;
}

.fixed-btn:hover {
    background-color: #0056b3;
}

/* Modal Box Styles */
.modal-custom.contact-rapid {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top:16px;
}
.modal-content form{
    margin-top:16px;
}
.modal-content .contact-form-title{
    color:#000000 !important;
    font-size:24px;
    margin-top: 32px;
}
/* Close Button */
.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal-content input:not([type="checkbox"]):not([type="radio"]),.modal-content select{
    min-height:unset;
    height:auto;
}
.modal-content .form-group{
    margin-bottom:8px;
}
.modal-content .form-group label:not(.error){
    line-height:normal;
}

@media screen and (max-width:768px){
    .fixed-btn{
    display:none;
    }
    .modal-content{
        max-width:95%;
    }
}

