/* ========================================
   MODAL
======================================== */

.nc-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.nc-modal.active{

    display:flex;

}

.nc-modal-content{

    width:650px;

    max-width:95%;

    background:white;

    border-radius:16px;

    padding:30px;

    box-shadow:var(--nc-shadow);

}