/*CLASES SIN INTERPRETACION DE TAMAÑO*/

/* Diseño de circulo informativo*/
.circle-inf {
    margin-right: 17px;
    position:relative;
}
.circle-inf:before {
    content: " ";
    position: absolute;
    z-index: 2;
    left: 0;
    width: 15px;
    height: 15px;
    bottom: 1px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #0ae489;
    opacity: .6;
}
/* Diseño de circulo informativo*/

/* Diseño de boton horario*/
.btn-primary-old{
    border:1px solid #182F44;
    background-color: #182F44;
    color: white!important;
}
.btn-primary-old:hover{
    border:1px solid #182F44;
    background-color: #182F44;
    color: white!important;
}
.btn-blue-old{
    border:1px solid #182F44;
    background-color: #ffffff;
    color: #253f56 !important;
}
.btn-blue-old h6{
    color: #253f56 !important;
}
.btn-blue-old-active, .btn-blue-old:hover{
    border:1px solid #182F44;
    background-color: #182F44;
    color: white!important;
}

.blue-border{
    border-color: #182F44!important;
}

.btn-blue-old-active h6, .btn-blue-old:hover h6{
    color: white!important;
}

/* Diseño de boton horario*/

/* Input search*/
.input-search{
    width: 20%;
    padding: 3px 15px;
    float: right;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-top: 0px;
    background-color: transparent
}
/* Input search*/

/* Boton search*/
.btn-search{
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.btn-search-before{
   border-top-right-radius:0px;
    border-bottom-right-radius: 0px
}
/* Boton search*/

/* Efecto de zoom*/
.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.04);
}

/*Mantiene la cebcera de una tabla fija, utilisar clase en thead*/
.cabecera-fija {
    position: sticky;
    top: 0px;
    z-index: 10;
}

/*Contenedor de form reserva*/
.box-cabecera {
    margin-bottom: 15px;
}

.box-content-reserva {
    height: 80%;
}

.box-reserva {
    height: 100%;
    border: 2px dashed #D1E3F5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 5px;
}

/*Division de contenedor para mantener en la misma linea*/
.contenedor {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.principal {
    width: auto;
}

.sidebar {
    text-align: left;
    width: auto;
    vertical-align: middle;
}


/*Permite crear un input number personalizado con boton de mas y menos */
.box-content-sum-res {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.2em;
    text-transform: uppercase;
    border-radius: 5px;
    justify-items: center;
    border: 1.3px solid rgba(39, 46, 77, 0.62);
}

.box-content {
    width: 50%;
}

.texto-encima{
        position: absolute;
        color: white;
        vertical-align: middle;
        bottom: 0%;
        width:  100%;
        height: 100%;
    }

.centrar{
    text-align: center;
    padding: 20%;
    height: 100%;
}

.box-suma {
    width: 25%;
    background-color: transparent;
    border-left: 1px solid rgba(39, 46, 77, 0.62);

}

.box-suma a {
    color: #22374C;
    padding: 10px 50% 10px 40%;
}

.box-resta {
    width: 25%;
    background-color: transparent;
    border-right: 1px solid rgba(39, 46, 77, 0.62);
}

.box-resta a {
    color: #22374C;
    padding: 10px 40% 10px 50%;
}

/* Permite mantener una imagen cuadrada dentro de contenedor sin perder resolución*/
.box-content-img {
    background-color: #0b2f44;
    border-radius: 5px;
}

.box-content-img img {
    width: 100%;
    height: 100%;
}

@supports (object-fit: cover) {
    .box-content-img img {
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

/* Colores de texto personalizado */
.text-primary-old{
    color: #01090a !important;
}

/* Diseño de check
 <label class="switch">
    <input type="checkbox">
    <div class="slider round"></div>
</label>
*/

/* Formateamos el label que servirá de contenedor */
.switch {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 20px;
    border-radius: 20px;
}

/* Ocultamos el checkbox html */
.switch input {
    display: none;
}

/* Formateamos la caja del interruptor sobre la cual se deslizará la perilla de control o slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(213, 216, 220, 0.74);
    -webkit-transition: .4s;
    transition: .4s;
}

/* Pintamos la perilla de control o slider usando el selector before */
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    bottom: 0px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 40%);
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

/* Cambiamos el color de fondo cuando el checkbox esta activado */
input:checked + .slider {
    background-color: rgba(17, 218, 35, 0.56);
}

/* Deslizamos el slider a la derecha cuando el checkbox esta activado */
input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Aplicamos efecto de bordes redondeados en slider y en el fondo del slider */
.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Centrar elmentos al medio verticalmente */
.v-align-middle{
    display: flex;
    align-items: center;
    align-content: center;
    /*justify-content: center*/
}

/*CLASES CON INTERPRETACION DE TAMAÑO*/

/* Menu fijo izquierdo despues de tamaño sm controlado con clase menu por jquery*/
@media (min-width: 768px) {
    .menu-left-fixed {
        position: sticky;
        position: -webkit-sticky;
        /*position:fixed;*/
        /*z-index: 1000;*/
        top: 25px;
    }
}