@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=DM+Serif+Display:ital@0;1&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


body{
    font-family: "Almarai", sans-serif;
    font-size: 16px;
    color:#555;
    overflow-x:hidden;
        background: #15375a;
}

h2{
    color: #14375A;
    font-weight: bold;
    font-size: 30px;
}


/* login */
.btn-primary{
    background-color: #1841eb !important;
}
.btn-outline-primary {
    color: #1841eb !important;
    border-color: #1841eb !important;
}
.btn-outline-primary:not(:disabled):not(.disabled):active {
    color: white !important;
}
.form-login{
    position: fixed;
    width: 100vw;
    margin: auto;
    bottom: 0;
    min-height: calc(100vh - 200px);
    background: #15375a;
    padding-left: 20px;
    padding-right: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
        display: flex;
    align-items: center;
}
.form-login .btn-primary{
    background-color: #1841eb !important;
}
.form-login p,
.form-login label,
.form-login .forget,
.form-login h2{
    color: white;
}
.form-login label{
    font-size: 15px;
}
.form-login .input-group{
    background: #43586e;
    border-radius: 11px;
    padding: 4px; 
}
.form-login .input-group input.form-control{
    background-color: transparent !important;
}
.form-login .input-group input.form-control{
    border-bottom: 0px;
    color: white;
    font-size: 13px;
}
.form-login .input-group .input-group-text{
    border-bottom: 0px;
}

label{
    color: #14375A;
    font-weight: 500;
}

input.form-control{
    border: 0px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
}

input.form-control::placeholder{
    font-size: 15px;
    color: #ccc;

}

.input-group-text{
    background:transparent;
    border: 0px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
}

.btn-primary{

    background:#1841eb !important;

}

.full-width{
    border-radius: 13px;
    width: 100%;
    padding: 12px 10px;
    font-weight: 500;
    border: 0px;
}

.forget{
    color: #999;
    font-size: 14px;
    text-decoration: underline;
}

/* home */
body.login{
    background-color: white;
}

body.home:before, body.espacios:before,body.reservas:before  {
    content: "";
    position: fixed;
    top: -75vw;
    left: -25vw;
    width: 150vw;
    height: 150vw;
    background: #15375a;
    border-radius: 50%;
    z-index: -1;
    display: block;
}


.home .date, .espacios .date{
    color:#fff;
    /*width: 88vw;*/
    margin:auto;
   /* margin-top:15px;*/
}

.wrapper {
    width: 88vw;
    background: #fff;
    min-height: 50vh;
    border-radius: 30px;
    margin: auto;
    margin-top: 20px;
    box-shadow: 0px 6px 14px #00000024;
    padding-top: 3vh;
    text-align: center;
    padding-bottom: 3vh;
    margin-bottom: 45px;
}

.wrapper .book_type{
    width: 75vw;
    margin: 17px auto;
    box-shadow: 0px 2px 19px #dedede;
    display: flex;
    border-radius: 10px;
    align-items: center;
    gap: 15px;
}

.wrapper .book_type:after{
    font-family: FontAwesome;
    content: "\f054";
    color: #aaaaaa;
    font-size: 14px;
    margin-right: 10px;
}

.wrapper .book_type .img{
    width: 20vw;
    height: 70px;
    margin: 10px;
    border-radius: 10px;
    background: #b8d5d4;
    background-size: cover;
    background-position: center center;
}

.wrapper .book_type .name{
    width: 40vw;
    text-align: left;
    color: #666;
    font-size: 17px;
}
.wrapper .btn.full-width{
    font-size: 16px;
}
.wrapper .full-width{

    width: 75vw;
    margin:auto;
   
}

/* Espacios */


.wrapper .espacio{
    width: 75vw;
    margin: 17px auto;
    box-shadow: 0px 2px 19px #dedede;
    display: flex;
    border-radius: 10px;
    align-items: center;
    gap: 15px;
}

.wrapper .espacio .reservas {
    font-size: 14px;
}

.wrapper .espacio .reservas .icon-reserva {
    display: inline-block;
    height: 10px;
    width: 10px;
    background-color: gray;
    border-radius: 50%;
    margin-top: 5px;
    margin-right: 2px;
}

.wrapper .espacio .reservas .icon-reserva.disponible {
    background-color: #1841eb;
}

.wrapper .espacio .reservas .icon-reserva.no-disponible {
    background-color: gray;
}

.salto-linea {
    line-height: 2;
}

.wrapper .espacio .icons{
    display:none;
}

.wrapper .espacio.active{
    width: 75vw;
    margin: 17px auto;
    box-shadow: 0px 10px 19px #dedede;
    height: auto;
    border-radius: 10px;
    display: block;
}


.wrapper .espacio.active .icons{
    display: flex;
    flex-direction: row;
    justify-content: left;
    list-style:none;
    padding:0px;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 5px;
    height: 35px;
    flex-wrap: wrap;
}

.wrapper .espacio.active .icons li{
    display: flex;
    width: 33.3%;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    flex: 0 calc(33.3% - 5px);
}

.wrapper .espacio.active .icons li div {
    border: 1px solid lightgray;
    border-radius: 20px;
    padding: 2px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .espacio.active .icons li i{
    background: #ffffff50;
    border-radius: 3px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    color: #aaaaaa;
}
.wrapper .espacio.active .icons-wrapper {
    margin-top: 15px;
    margin-bottom: 5px;
}

.wrapper .espacio.active .icons li img {
    background: #ffffff50;
    border-radius: 3px;
    height: 20px;
    text-align: center;
    line-height: 25px;
    color: #aaaaaa;
    margin-right: 2px;
}

.wrapper .espacio.active .icons li span {
    font-size: 10px;
}

.wrapper .espacio:after{
    font-family: FontAwesome;
    content: "\f078";
    margin-right: 10px;
    font-size: 14px;
}

.wrapper .espacio.active:after{
    content: "";
}

.wrapper .espacio .img{
    width: 25vw;
    height: 91px;
    margin: 0px;
    float: left;
    border-radius: 10px 0px 0px 10px;
    background-size: cover;
    background-position: center center;
}

.wrapper .espacio.active .img{
    display: none;
    width: 75vw;
    height: 200px;
    margin: 0px;
    float: left;
    border-radius: 10px 10px 0px 0px;
    background-size: cover;
    background-position: center center;
    transition: width 0.5s, height 0.5s; /* Transición para el cambio de tamaño */
}

.wrapper .espacio .name{
    margin: 10px;
    width: 40vw;
    text-align: left;
    font-size: 17px;
}

.wrapper .espacio .desc{
    display:none;
}

.wrapper .espacio.active .name{
    clear: both;
    text-align: center;
    margin: auto;
    display: block;
    font-weight: bold;
    font-size: 20px;
    line-height: 41px;
    color: #14375a;

}

.wrapper .espacio.active .desc{
    clear:both;
    display:block;
    font-size:15px;
    padding:10px;
}

.wrapper .espacio.active .reservar{

    width: 100%;
    margin:auto;
    border: 1px solid #1841eb;
    color:#1841eb;
    background:#fff;
    text-transform:uppercase;
    margin-top: 10px;
   
}

.wrapper .espacio.active button.disabled{
    width: 100%;
    margin:auto;
    border: 1px solid lightgray;
    color:white;
    background: lightgray;
    text-transform:uppercase;
    margin-top: 10px;
    cursor: none;
}

h3{
    text-align:center;
    color:#fff;
    font-size:14pt;
    margin-top:4vh;
}

input.calentim{
    width: 88vw;
    margin: auto;
    background: transparent;
    color: #fff;
    font-size: 13px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 10px 5px;
    margin-top: 10px;
        background-image: url(/content/img/clock.svg);
    background-position: right 10px center;
    background-size: 17px;
    background-repeat: no-repeat;
    font-size: 15px;
}
.date-espacio, .date-bloqueo, .date-reservas {
    text-align: center;
}
.date-espacio input, .date-bloqueo input, .date-reservas input {
    width: 88vw;
    margin: auto;
    font-size: 15px;
    padding: 10px 5px;
    margin-top: 10px;
    border-radius:10px;
    border:1px solid white;
    background-color: transparent;
    text-align: center;
    background-image: url(/content/img/calendar-white.svg);
    background-position: right 10px center;
    background-size: 20px;
    background-repeat: no-repeat;
    color: white;
}

.date-reservas input {
    padding: 7px 5px !important;
}

.filtro_usuario {
    width: 88vw;
    height: 40px !important;
    margin: auto;
    font-size: 15px;
    padding: 10px 5px;
    margin-top: 10px;
    border-radius:10px;
    border:1px solid white;
    background-color: transparent;
    text-align: center;
    color: white;
}

.filtro_usuario:focus {
    border:1px solid white;
    background-color: transparent;
    color: white;
}

.filtro_usuario:focus option {
    color: black;
}

.form-login-all .logo img{
    width: 100%;
    margin-top: 20px;
}
.form-login-all .input-group.mail img{
    width: 24px;
}
.form-login-all .input-group.password img{
    width: 20px;
}

.top .ubicacion {
    cursor: pointer;
}

.top .ubicacion img{
    width: 10px;
    margin-right: 5px;
}
.top .ubicacion span{
    color: rgba(255,255,255);
    font-size: 15px;
}
.top{
    display: flex;
    align-items: center;
    padding: 30px 0px 10px 0px;
    max-width: 88vw;
    margin: 0 auto;
}
.top .left{
    flex: 1;
    color: white;
}
.top .middle{
    flex: 2;
}
.top .right{
    text-align: right;
    flex: 1;
}   
.top img{
    width: 40px;
}
.select-date{
    width: 75vw;
    margin: 0 auto;
    text-align: left;
}
.select-date div{
    margin-bottom: 5px;
    font-size: 15px;
}
.select-date input{
    border-radius:10px;
    border:0px;
    background-color: #F8F8F8;
    padding: 10px;
    width: 100%;
    background-image: url(/content/img/calendar.svg);
    background-position: right 10px center;
    background-size: 20px;
    background-repeat: no-repeat;
    font-size: 15px;
}

.top  h3{
    margin: 0px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
   opacity: 0;
}
.bottom{
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0;
    background: white;
    padding: 5px 10px;
}
.bottom .inner{
   display: flex;
   align-items: center;
}
.bottom .inner > div{
    flex: 1;
    text-align: center;
}
.bottom .left img,
.bottom .right img{
    width: 20px;
}
.bottom .middle img{
    width: 45px;
}
.calentim-container-mobile .calentim-input .calentim-timepickers{
    background-color: white !important;
}
.calentim-container-mobile .calentim-input .calentim-footer,
.calentim-container-mobile .calentim-input .calentim-timepickers
.calentim-timepicker .calentim-timepicker-hours-wrapper .calentim-timepicker-hours,
.calentim-container-mobile .calentim-input .calentim-timepickers .calentim-timepicker .calentim-timepicker-minutes-wrapper .calentim-timepicker-minutes{
    border: 0px !important;
}

.calentim-container-mobile .calentim-input .calentim-footer button.calentim-apply{
        background: #1841EB !important;
        font-size: 18px;
}
.calentim-container-mobile .calentim-input .calentim-footer button.calentim-cancel{
    color: white !important;
    font-size: 18px;
}
.calentim-container-mobile .calentim-input{
    margin: 0px !important;
    border-radius: 0px !important;
}

/* Reservas */
.reservas_page{
    padding: 0px 20px;
}
.reservas_page .titular,
.modales .modal-reservado .titular,
.modales .modal-puesto .titular{
    color: #1A2563;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}
.reservas_page .titular{
    margin-bottom: 0px;
}
.reservas_page p{
    text-align: left;
}
.reservas_page .pendientes{
    margin-bottom: 20px;
}
.card-reserva{
    background: white;
    border-radius: 20px;
    box-shadow: 0px 0px 14px #0000001f;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.reservas_page .card-reserva .imagen{
    flex: 0 60px;
    max-width: 50px;
}
.reservas_page .card-reserva .imagen img{
    width: 40px;
}
.reservas_page .card-reserva .info{
    text-align: left;
    max-width: 145px;
}
.reservas_page .card-reserva .info p{
    margin-bottom: 0px;
    font-size: 15px;
}
.reservas_page .card-reserva .info .fecha{
    color: #b7b3b3;
    font-size: 13px;
}
.reservas_page .card-reserva .info .observaciones{
    color: #8f8f8f;
    font-size: 13px;
    font-style: italic;
}
.reservas_page .card-reserva .acciones a{
    border-radius: 13px;
    width: 100%;
    padding: 9px 10px;
    border: 0px;
    font-size: 14px;
    display: block;
    color: white;
}
.reservas_page .card-reserva .acciones a.checkin{
    background: #1841eb !important;
    margin-bottom: 5px;
}
.reservas_page .card-reserva .acciones a.cancelar{
    background: #83465A !important;
}
.modales{
    position: absolute;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    z-index: 9999;
}
.modales .modal-reservado,
.modales .modal-puesto{
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.modales .modal-reservado p.titular,
.modales .modal-puesto p.titular{
    text-align: center;
}
.modales .modal-reservado img{
    width: 60%;
}
.modales .modal-reservado p.info{
    font-size: 14px;
}
.modales .modal-reservado .btn-siguiente{
    margin-bottom: 15px;
    color: white;
}
.modales .modal-reservado .acciones a{
    border-radius: 13px;
    padding: 12px 20px;
    font-weight: 500;
    border: 0px;
    color: white;
    margin-right: 5px;
    margin-left: 5px;
    display: inline-block;
}
.modales .modal-reservado .acciones a.confirmar{
    background: #14375A;
}
.modales .modal-reservado .acciones a.finalizar{
    background: #C7DAED;
    color: #14375A;
}
.modales .modal-puesto .btn-cancelar button{
    background-color: #f3cfc3;
    margin-top: 10px;
    color: white;
}
body .wrapper{
    padding-bottom: 1px;
}
body.espacios .wrapper{
    padding: 0PX;
    background-color: transparent;
    box-shadow: none;
    padding-bottom: 1px;
}
.wrapper .espacio{
    background-color: white;
    box-shadow: none;
    width: 100%
}
.wrapper .espacio .slick-next{
    right: 10px;
}
.wrapper .espacio .slick-prev {
    left: 10px;
    z-index: 9;
}
.wrapper .espacio .slick-next:before,
.wrapper .espacio .slick-prev:before {
    right: -40px;
    color: #15375a;
    display: none;
}

.wrapper .espacio.active {
    width: 100%;
    box-shadow: none;
}
.wrapper .espacio .slick-slide img{
    display: table;
    margin: 0 auto;
    height: 28.2vh !important;
    width: 88vw;
    object-fit: cover;
}

/* Área privada */

.perfil-top,
.perfil-acciones,
.top-buscador,
.listado-informe{
    padding: 0px 20px;
}
.perfil-top .card-reserva {
    margin-bottom: 25px;
}
.perfil-top .card-reserva > div{
    flex: 1;
}
.perfil-top .card-reserva .imagen{
    width: 80px;
    height: 80px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    flex: 0 80px;
    border-radius: 50%;
}
.perfil-top .card-reserva .info p{
    margin-bottom: 0px;
    text-align: left;
}
.perfil-top .card-reserva .acciones{
    flex: 0 45px;
}
.perfil-top .card-reserva .acciones img{
    width: 45px;
}
.perfil-top .card-reserva .info .nombre{
       font-weight: bold;
    font-size: 17px;
}
.perfil-top .card-reserva .info .puesto{
    color: #b7b3b3;
    font-size: 13px;
}
.perfil-top .card-reserva button {
    border-radius: 13px;
    width: fit-content;
    padding: 8px 10px;
    font-weight: 500;
    background: transparent;
    color: #1841eb;
    border: 1px solid #1841eb;
}
.perfil-acciones .item-perfil-acciones{
    background: white;
    border-radius: 20px;
    box-shadow: 0px 0px 14px #0000001f;
    padding: 10px;
    margin-bottom: 10px;
}
.item-perfil-acciones.full {
    width: 100%;
}
.perfil-acciones .item-perfil-acciones.round i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #133659;
    border-radius: 50%;
}
.color-locked {
    color: white;
    background-color: #f3cfc3 !important;
}
.color-unlocked {
    color: white;
    background-color: #1841eb !important;
}
.color-disabled {
    color: white;
    background-color: #94c6ff !important;
}
.perfil-acciones .item-perfil-acciones a,
.activar-notificaciones {
    display: flex;
    gap: 15px;
    align-items: center;
    color: black;
}
.activar-notificaciones > div{
    flex: 1;
    text-align: left;
}
.activar-notificaciones .activar{
    flex: 0 45px;
}
.acciones-container {
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.perfil-acciones .item-perfil-acciones .imagen.icono {
    min-width: 40px;
    min-height: 40px;
    background-color: #e1eaf4;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.perfil-acciones .item-perfil-acciones .imagen.icono i {
    color: #133659;
}
.perfil-acciones .item-perfil-acciones .imagen img {
    width: 40px;
}
.perfil-acciones .item-perfil-acciones.items {
    width: 80%;
    margin-bottom: 0;
}
.actions-button {
    background-color: #133659;
    width: 40px;
    height: 40px;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.activar-notificaciones .imagen{
    flex: 0 35px;
}

.activar-notificaciones input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}

.activar-notificaciones label {
    cursor: pointer;
    text-indent: -9999px;
    width: 40px;
    height: 20px;
    background: #e3e0e0;
    display: block;
    border-radius: 100px;
    position: relative;
    top: -6px;
}

.activar-notificaciones label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.activar-notificaciones input:checked + label {
    background: #1841eb ;
}

.activar-notificaciones input:checked + label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.activar-notificaciones label:active:after {
    width: 40px;
}
.cerrar_sesion,
.cancelar-invitacion{
    margin: 40px 0px 20px 0px;
}
.cerrar_sesion img{
    width: 20px;
    margin-right: 10px;
}
.listado-invitaciones .info-persona {
	text-align: left;
}
.listado-invitaciones .info-persona .rol{
    text-align: left;
    font-size: 13px;
    color: #b3b3b3;
}
.top-buscador{
    margin-bottom: 30px;
}
.top-buscador input{
    border-radius: 10px;
    border: 0px;
    background-color: #F8F8F8;
    padding: 10px;
    background-position: right 10px center;
    background-size: 20px;
    background-repeat: no-repeat;
    font-size: 15px;
    display: inline-block;
}
.top-buscador input.form-control{
    width: 95%;
    margin-bottom: 10px;
}
.top-buscador  button{
    border: 0;
    color: white;
    background-color: #14375A;
    height: 100%;
    padding: 0 0;
    border-radius: 5px;
}
.top-buscador  button img{
    width: 45px;
}
.top-buscador  button i{
    width: 45px;
}
.listado-invitaciones,
.listado-informe{
    margin-bottom: 20px;
}
.item-listado-informe{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.item-listado-informe > div{
    flex: 1;
}
.item-listado-informe .item-inner{
    padding: 10px 9px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.item-listado-informe .item-inner.sala{
    background: #14375A;
    color: white;
    min-width: 35%;
}
.item-listado-informe .item-inner.sala span{
    margin-top: 6px;
    font-size: 18px;
}
.item-listado-informe .item-inner.reservas{
    background:#C7DAED;
}
.item-listado-informe .item-inner.ocupacion.lleno{
    background: #EB7474;
}
.item-listado-informe .item-inner.ocupacion.medio{
    background: #F19752;
}
.item-listado-informe .item-inner.ocupacion.vacio{
    background: #8ADC72;
}
.item-listado-informe{
    font-size: 11px;
    text-align: center;
}
.item-listado-informe span{
    display: block;
    font-size: 25px; /* 30px */
    font-weight: bold;
}

.wrapper.invitacion {
    text-align: left;
}
.cancelar-invitacion{
    text-align: center;
}
.cancelar-invitacion a{
    background: #f3cfc3 !important;
}
.servicios-container {
    display: none;
}
.check-servicio {
    display: flex;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 11px;
    align-items: center;
    margin-bottom: 10px;
}
.check-servicio input {
    width: 18px;
    height: 18px;
}
.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Asegúrate de que esté por encima de otros elementos */
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3); /* Color del spinner */
    border-top: 4px solid #fff; /* Color del spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.message {
    color: white;
    font-size: 20px;
    margin-top: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* .slider-container {
    width: 80%;
    margin: 20px auto;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
  } */


  .range_container {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 35% auto;
  }
  
  .sliders_control {
    position: relative;
    min-height: 50px;
  }
  
  .form_control {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    color: #635a5a;
  }
  
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;
  }
  
  input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;  
  }
  
  input[type=range]::-webkit-slider-thumb:hover {
    background: #f7f7f7;
  }
  
  input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  }
  
  input[type="number"] {
    color: #8a8383;
    width: 50px;
    height: 30px;
    font-size: 20px;
    border: none;
  }
  
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button {  
     opacity: 1;
  }
  
  input[type="range"] {
    -webkit-appearance: none; 
    appearance: none;
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
  }
  
  #fromSlider {
    height: 0;
    z-index: 1;
  }

  .show-button {
    width: fit-content;
    margin: auto;
    border: 1px solid #255159;
    color: #255159;
    background: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    border-radius: 9px;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 12px;
  }

  .listado-reservas-container {
    margin-bottom: 10px;
  }

  .listado-reservas {
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .listado-reservas li {
    margin: 6px 0;
    font-size: 14px;
    color: #255159;
  }

  .buscador-reservas {
    width: 90%;
    height: 40px !important;
    margin: auto;
    font-size: 15px;
    padding: 10px 5px;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid white;
    background-color: transparent;
    text-align: center;
    color: white;
  }

  .buscador-reservas:focus {
    box-shadow: none;
    background-color: transparent;
    color: white;
  }

@media (min-width: 992px) {
    body .wrapper {
        margin-bottom: 100px;
    }

    .container {
        max-width: 600px !important;
    }

    .wrapper {
        max-width: 90% !important;
    }

    .wrapper .book_type {
        max-width: 90% !important;
    }

    .wrapper .full-width {
        max-width: 90% !important;
    }

    .date-espacio input, .date-bloqueo input, .date-reservas input, .filtro_usuario {
        max-width: 90% !important;
    }

    input.calentim {
        max-width: 90% !important;
    }

	.reservas_page .card-reserva .info {
        min-width: 60%;
    }

    .reservas_page .card-reserva .acciones {
        width: 20%;
    }

    .wrapper .book_type .img {
        height: 115px;
    }

    .bottom {
        position: fixed;
        max-width: 40%;
        left: 30%;
        right: 30%;
        bottom: 0;
        background: white;
        padding: 5px 10px;
    }
	
	.wrapper .espacio.active {
        width: 100%;
        box-shadow: none;
    }

    .wrapper .espacio .slick-slide img{
        display: table;
        margin: 0 auto;
        height: 32vh !important;
        width: 100%;
        object-fit: cover;
    }

    .wrapper .espacio .slick-carousel {
        height: 32vh !important;
    }

    .wrapper .espacio .name {
        width: 100%;
    }
	
	.form-login {
        max-width: 600px;
        width: fit-content;
    }
	
	.select-date {
		max-width: 90%;
	}
	
	.top-buscador input.form-control {
		margin-right: 0;
    	width: 90%;
	}

    .modales {
        height: 100%;
        width: 100%;
        justify-content: center;
    }
}