/*==================================
POPUP
==================================*/

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    padding:20px;

}

.popup-overlay.active{

    display:flex;

}

.popup-box{

    width:100%;

    max-width:600px;

    background:#fff;

    border-radius:18px;

    padding:45px;

    position:relative;

    animation:popup .3s ease;

}

@keyframes popup{

from{

transform:translateY(30px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

.popup-close{

    position:absolute;

    top:18px;

    right:18px;

    border:none;

    background:none;

    font-size:32px;

    cursor:pointer;

}

.popup-tag{

    color:var(--secondary);

    font-weight:700;

    font-size:14px;

}

.popup-box h2{

    margin:15px 0;

}

.quote-form{

    display:grid;

    gap:18px;

    margin-top:30px;

}

.quote-form input,
.quote-form textarea{

    width:100%;

    padding:16px;

    border:1px solid var(--border);

    border-radius:10px;

    font-size:16px;

}

.quote-form textarea{

    resize:none;

}
