#divExibeNumeros {
    background-color: #455a64 !important;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0px;
}

.numsel {
    width: 50px;
    height: 50px;
    margin: 5px;
    border: 0px;
    border-radius: 25px;
    background-color: #f90;
    padding: 10px;
    color: #fff;
    font-size: 1.5rem;
    transition: .5s ease;
}

.gallery-cell {
    width: 100%;
    height: auto;
    margin-right: 10px;
}

/* TELA 1199PX > PRA CIMA - MOBILE*/
@media only screen and (max-width: 1199px) {
    .conjunto {
        margin: 0px 0px;
    }

}

/* TELA 1200PX > PRA CIMA - DESKTOP*/
@media only screen and (min-width: 1200px) {
    .conjunto {
        margin: 15px 10px;
    }
}


.conjunto i {
    font-size: 80px;
    animation-duration: 5s;
    animation-name: slidein;
    animation-iteration-count: 1;
}

.divin {
    font-size: 1.5rem;
}

numero {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 5px;
    float: left;
    border: 0px;
    border-radius: 25px;
    background-color: #090;
    color: #fff;
    box-sizing: border-box;
}

numero.reservado {
    background-color: #0073ff !important;
}

numero.pago {
    background-color: #ccc !important;
}

numero div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 25px;
    transition: .5s ease;
}

numero input {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: 0;
    cursor: pointer;
}

input[type=checkbox]:checked ~ div {
    background-color: #f90;
    border-radius: 25px;
    color: #fff;
}