#modal{
    display: none;
    position: fixed;
    z-index: 999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.45);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: 100%;
    background-repeat: no-repeat;
    overflow-y: scroll;
}

#modal-content-holder{
    position: relative;
    width: fit-content;
    background-color: white;
    box-shadow: var(--lightBoxShadow);
    border-radius: 8px;
    padding: 10px;
}

#close{
    font-size: 28px;
    transform: rotateZ(45deg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: white;
    box-shadow: var(--mediumBoxShadow);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -30px;
    right: -45px;
    cursor: pointer;
    transition-duration: 0.3s;
}

@media only screen and (max-width: 800px) {
    #close{
        top: -40px;
        right: 0;
    }

    #modal-content-holder {
        margin: 17% auto;
        width: 90%;
    }
}
