.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;

    align-items: center;
    justify-content: center;

    background-color: #fff4;
    z-index: 1000;
}

.overlay.active {
    display: flex;
    backdrop-filter: blur(10px);
}

.modal {
    display: none;
    padding: 40px;
    background-color: var(--gray-10);
    border-radius: 7px;
    box-shadow: 0px 0px 25px 0px #1E31421A;
    min-width: 600px;
}

.modal.active {
    display: block;
}
