/**
 * NUEVA AGENDA
 **/

.agenda{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 1242px;
    margin: 0 auto;
}
.agenda_menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 18px;
    margin-bottom: 0px;
    border-bottom: 1px solid #d2d2d2;
    width: 100%;
}
.agenda_menu_btn{
    padding: 5px;
    border-radius: 25px;
    width: 40px;
    border: 1px solid #d2d2d2;
    cursor: pointer;
}
.agenda_menu_btn_left{
    margin-right: 15px;
}


.agenda_container{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}


.agenda_col_izq{
    width: 10%;
    width: 100px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}
.agenda_col_izq_hora_box{
    border: 1px solid #d2d2d2;
    margin-bottom: 5px;
    width: 95%;
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 650;
}

.agenda_col_listaEspera{
    width: 10%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d2d2d2;
    margin-right: 10px;
}


.agenda_body{
    width: 80%;
    min-width: 1050px;
    display: flex;
    flex-direction: column;
}
.agenda_body_dias_box{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
}
.agenda_body_dia_box{
    display: flex;
    flex-direction: column;
    width: 220px;
    margin-right: 10px;
}
.agenda_body_dia_title_box{
    width: 95%;
    height: 60px;
    font-weight: 650;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.agenda_body_dia_tareas_box{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.agenda_body_dia_tarea_box{
    width: 100%;
    border: 1px solid #d2d2d2;
    margin-bottom: 5px;
    height: 95px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    font-weight: 600;
}

.reservaAsistida{
    background-color: #b4fbc3;
}
.reservaNoAsistida{
    background-color: #f1b0b2;
}
.reservaLibre{
    background-color: #E4FDD8;
    cursor: pointer;
}
.reservaBloqueada{
    background-color: #F6F6F5;
}
.registroListaEspera{
    cursor: pointer;
}