.calendario {
    margin-bottom: 60px;
}
.calendario h1 {
    font-weight: 100;
    color: #000;
    font-size: 36px;
    margin-top: 20px;
}
.tableContenedor {
    overflow-x: scroll;
    border: 1px solid #000;
}
.calendario .tableExterior {
    width: 100%;
}
.calendario .tableExterior > tbody > tr > td {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #000;
}
.calendario .tableExterior > tbody > tr:last-child > td {
    border-bottom:0;
}
.calendario .tableExterior > tbody > tr:nth-child(odd) > td {
    background: #f1f1f1;
}
.calendario .tableInterior > tbody > tr > td {
    min-width: 180px;
    max-width: 180px;
    height: 80px;
    border-right: 1px solid white;
    padding: 8px;
    font-size: 15px;
    line-height: 18px;
    color: white;
    font-weight: 100;
    letter-spacing: 0.5px;
    position: relative;
}
.calendario .tableInterior > tbody > tr > td:last-child{
    border-right: 0;
}
.calendario .tableInterior > tbody > tr > td:first-child {
    min-width: 80px;
    background: #000;
    border-right: 0;
    color: #fff;
    font-size: 22px;
    padding: 8px;
    font-weight: 100;
    line-height: 24px;
}
.calendario .tableInterior > tbody > tr > td .mas, .calendario .tableInterior > tbody > tr > td .cerrar {
    position: absolute;
    width: 18px;
    height: 18px;
    bottom: 5px;
    right: 5px;
    cursor: pointer;
}
.calendario .tableInterior > tbody > tr > td .cerrar {
    transform: rotate(45deg);
}
.calendario .tableInterior > tbody > tr > td .mas::before, .calendario .tableInterior > tbody > tr > td .mas::after,
.calendario .tableInterior > tbody > tr > td .cerrar::before, .calendario .tableInterior > tbody > tr > td .cerrar::after {
    content: "";
    display: block;
    height: 1px;
    width:18px;
    background: #fff;
    margin-top: 10px;
}
.calendario .tableInterior > tbody > tr > td .mas::after, .calendario .tableInterior > tbody > tr > td .cerrar::after {
    transform: rotate(90deg);
    margin-top: -1px;
}
.calendario .ocultoInfo {
    background: #000;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
.calendario .ocultoInfo ul li {
    color: #fff;
    line-height: 22px;
}
.calendario .ocultoInfo ul li:first-child {
    font-size: 17px;
}
.calendario .ocultoInfo ul li:nth-child(2) {
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 0;
}
.calendario td p{
    color: white;
}
.js-shave-char {
    color: white;
}
.calendario td a:focus{
    outline: 0;
    text-decoration: none;
}