/* HEADER */
header{
    position: relative;
    top: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
header a.volver{
    text-decoration: none;
    color: white;
}
header a.volver span{
    font-size: 1.6rem;
    font-weight: bold;
}

/* SELECTOR DE PUNTOS */
.selector-puntos .row{
    background-color: var(--gris-claro);
    color: var(--gris-oscuro);
    border-radius: 30px;
}
.selector-puntos .pill{
    cursor: pointer;
    font-size: .8rem;
}
.selector-puntos .row .active{
    background-color: var(--azul-oscuro);
    color: white;
    border-radius: 30px;
}

/*  PUNTOS  */
.underline{
    background-color: var(--azul-medio);
    color: white;
    border-radius: 20px;
}
thead{
    border-bottom: 1px solid black;
}
th, td{
    text-align: center;
}
.caducados{
    /* opacity: 0.5; */
    color: #9c0000;
}
.masinfo{
    max-width: 1.5rem;
    cursor: pointer;
}

/* MODAL EVENTOS */
.modal-content{
    height: unset;
}
.modal-text{
    max-height: 90dvh;
    overflow-y: scroll;
}
.decoration-none{
    text-decoration: none;
}
.contenido{
    font-size: .8rem;
    text-align: start;
}
/* RESPONSIVE */
.menuButton{
    max-width: 100px;
    cursor: pointer;
}
.secondaryButton{
    max-width: 60px;
}
main {
  overflow: auto;        /* permite scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE y Edge */
}

main::-webkit-scrollbar {
  display: none;         /* Chrome, Safari */
}
.cont-busqueda{
    max-width: 800px;
}
/* Header Desktop */
.header-desktop{
    display: none;
    z-index: 10; /* Para evitar bug del video */
}

.header-mobile{
    display: none;
}
@media only screen and (min-width: 1180px) {
    .header-desktop{
        display: flex;
    }
    .main-desktop main{
    max-height: calc(-160px + 100dvh) !important;
}
}
@media only screen and (max-width: 1180px) {
    .header-mobile{
        display: flex;
    }
    
}
.cont-notification{
    max-width: 150px;
}
.invertirColor{
    filter: invert(100%);
}
.contenedor-ajustes{
    max-width: 450px;
}