.quote-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    font-family: "Poppins", Sans-serif;
}

.modal-content {
    background-color: #f1f1f1;
    margin: auto;
    padding: 20px;
    border-radius: 6px;
    width: 400px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.modal-content h2 {
    background: #242424;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    margin: -20px -20px 20px -20px;
    font-family: "Poppins", Sans-serif;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.modal-content button {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}

.close {
    color: #fff;
    float: right;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 8px;
}

.error {
    color: red;
    font-size: 12px;
    display: none;
}

.get-quote-btn{
    width: 100%
}
