/* quote-form-overlay */
.quote-form-overlay{
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.65);
    z-index: 99999;
    pointer-events: auto;
}
.quote-form-overlay.active{
    display:flex;
}
.quote-form-overlay .spinner{
    width:40px;
    height:40px;
    border:4px solid rgba(0,0,0,0.12);
    border-top-color: rgba(0,0,0,0.7);
    border-radius:50%;
    animation: spin .85s linear infinite;
}
@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}