#popup-window{
    position: fixed;
    width: 300px;

    top: 135px;
    padding: 20px 15px;

    margin-left: 50%;
    transform: translate(-50%, 0);

    background-color: white;
    
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.06), 0 6px 20px 0 rgba(0, 0, 0, 0.2);

    z-index: 2000;
}

#popup-text{
    font-family: 'Outfit', sans-serif;
    font-size: 17px;

    color: var(--light-text-color);
}

.popup-button-text{
    display: inline;
    vertical-align: top;
}

#popup-background{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;

    background-color: rgba(0, 0, 0, 0.534);
    z-index: 1999;
}


.not-scrollable{
    overflow: hidden;
}