#site-header-cart{
    opacity: 0;
}

#site-header-cart.showSiteHeaderCart{
    opacity: 1!important;
}

.quotationBtn{
    width: 100%;
    font-size: 22px;
    padding: 8px!important;
}

.modalQuotation {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3001;

}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    border: 1px solid #888;
    width: 70%;
    max-width: 800px; /* Limit the width of the modal for very wide screens */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Optional: Add a shadow for a bit of depth */
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .modal-content {
        width: 90%; /* Make the modal wider on small screens */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .modal-content {
        width: 80%; /* Adjust the modal width for tablets */
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #888;
    background-color: white;
    position: relative;
}

.modal-header h2 {
    margin: 0;
}

.closeBtn {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #888;
    background-color:white;
    text-align: right;
}

.formQuotation{
    margin-bottom: 0!important;
}

.formQuotation label {
    display: block;
    margin-bottom: 10px;
}

.formQuotation  input[type="text"], .formQuotation select, .formQuotation textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.formQuotation .modal-body input:not([readonly]),
.formQuotation .modal-body textarea:not([readonly]),
.formQuotation .modal-body select:not([readonly]) {
    background-color: white!important;
}

.formQuotation input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    margin:0!important;
}

/*
.formQuotation input[type="submit"]:hover {
    background-color: #0056b3;
}
*/

.closeBtn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.formMessage{
    display: none;
    padding: 20px;
}

.errorMessage{
    display: none;
}

.form-quotation-input-row.invalid{
    color: red;
}

.form-quotation-input-row.invalid .errorMessage{
    display: inline-block;
    margin-left: 10px;
}

.buttonModalDownload{
    margin-top: 12px;
}

/* modal error */

.quotationModalError {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */

}

/* Modal Content */
.modal-content-quotation-error {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    max-width: 90%;
    text-align: center;
}

/* woocommerce menu */

.woocommerce-MyAccount-navigation-link--quotations > a:before{
    content: "\f543" !important;
}