#btn-reservation {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(59, 63, 78, 0.5);
    color: white;
    text-align: center ;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
}
/*
br {
    line-height: 0.75em;
}
 */
#btn-reservation:hover {
    background-color: rgba(59, 63, 78, 1);
}

#reservations-popup {
    display: none;
    position: fixed;
    border: 1px solid gray;
    z-index: 9999;
    /*background-color: #fcf7ee;*/
    background-color: white;
    color: black;
    text-align: left;
    font-weight: 100;
    top: 0;
    padding: 20px;
    margin: 12px;
    width: auto;
    line-height: 1.25em;
    max-width: 880px;
}

#reservations-popup img {
    float: right;
    opacity: 0.4;
    cursor: pointer;
    margin-bottom: 50px;
    margin-left: 40px;
}

#reservations-popup img:hover {
    opacity: 1;
}

@media only screen and (max-width: 800px) {
    #reservations-popup {

        position: fixed;
        padding: 10px;
        margin: 10px;
        width:auto;
        font-size: 0.6em;
        line-height: 1.2em;
    }

    #reservations-popup .bold {
        font-size: 0.75em;
        line-height: 1.2em;
    }

    #close-reservations-popup{
        width: 20px;
    }
}

@media screen and (max-device-width: 480px) {
    #reservations-popup {
        top: 0;
        left: 0;
        right: 0;
        transform: translate(0%, 0%);
        padding: 40px;
        margin: 10px;
        width:auto;
        font-size: 1.45em;
        /*background-color: silver;*/
    }
    #btn-reservation {
        background-color: rgba(59, 63, 78, 1);
    }

    #reservations-popup img {
        opacity: 1;
    }
}