#quote_modal {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    max-width: 700px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.quote_popup_close {
    cursor: pointer;
    float: right;
}

.woocommerce-message.wcraq-success>p,
.wcraq-failed-validation p {
    margin: 0;
    line-height: 20px;
}


@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animateout {
    from {
        top: 0;
        opacity: 1
    }

    to {
        top: -300px;
        opacity: 0
    }
}

.modal-content {
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}

.modal-content.opening {
    animation-name: animatetop;
}

.modal-content.closing {
    animation-name: animateout;
}