.reservation-body{
    position: relative;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    display: flex;
    margin-top: 50px;
    width: 100%;
    min-height: 50%;
}
.reservation-body .calendar-style{
    width: 220px;
    height: 50px;
    font-size: 1.5rem;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 5px;
}
.reservation-body .reservation-table{
    width: 100%;
}
.reservation-body .reservation-table table{
    border-collapse: collapse;
    margin-top: 50px;
    width: 100%;
    color: white;
}
.reservation-body .reservation-table table th{
    font-size: 1.2rem;
}
.reservation-body .reservation-table table tr{
    height: 50px;
}
.reservation-body .reservation-table table tr td{
    text-align: center;
}
.reservation-body .reservation-table table tr:nth-child(even){
    background-color: #d39395;
}
.reservation-body .reservation-table button{
    width: 120px;
    height: 35px;
    color: white;
    background-color: #8e4b50;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 25px;
    border: 2px solid #d39395;
}
/* ####################################################################
   ####################################################################
*/
.modal_mask{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.5);
    transition: 1s;
}
.acept_modal{
    position: absolute;
    display: flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    border-radius: 25px;
    color: white;
    padding: 20px;
    top: 30%;
    left: 38%;
    width: 500px;
    height: 300px;
    background-color: #d39395;
    border: 2px solid #8e4b50;
    transition: 1s;
}
.acept_modal .modal_header{
    height: 2em;
    width: 100%;
    display: flex;
    justify-content: center;
}
.acept_modal .modal_body{
    height: 180px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.acept_modal .modal_body p{
    font-size: 1rem;
}
.acept_modal .modal_footer{
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.acept_modal .modal_footer button{
    width: 180px;
    height: 40px;
    border-radius: 25px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}
.acept_modal .modal_footer button:hover{
    background-color: #8e4b50;
    color: white;
}
.acept_modal_hide{
    display: none;
    transition: 1s;
}

/* ####################################################################
   ####################################################################
*/
@media screen and (max-width: 480px) {
    .reservation-body .reservation-table table th{
        font-size: 1rem;
    }
    .reservation-body .calendar-style{
        width: 180px;
        height: 40px;
        font-size: 1.1rem;
        padding: 10px;
    }
    .reservation-body .reservation-table button{
        width: 90px;
        height: 30px;
        color: white;
        background-color: #8e4b50;
        font-size: 0.9rem;
        font-weight: bold;
        border-radius: 25px;
        border: 2px solid #d39395;
    }
        
    /* ####################################################################
    ####################################################################
    */
    .acept_modal{
        padding: 10px;
        top: 20%;
        left: 10%;
        width: 350px;
    }
    .acept_modal .modal_body p{
        font-size: 1rem;
    }
    .acept_modal .modal_footer button{
        width: 120px;
    }
    /* ####################################################################
    ####################################################################
    */
}