/* 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;
}

/* AJUSTES */
.titulo{
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: .5rem;
}
.option{
    margin-bottom: 1rem;
}
.op{
    line-height: thin;
    font-size: .8rem;
    opacity: 60%;
}
.op a{
    text-decoration: none;
    color: inherit;
}
.pildora{
    background-color: var(--gris-claro);            
    height: 1.2rem;
    border-radius: 30px;
    width: 2.5rem;
    margin: auto;
    padding-inline: 0.2rem;
    /* justify-content: start;
    transition: all .1s ease-in-out; */
}
.bubble{
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    transform: translateX(0%);
    transition: all .2s ease-in-out;
}
.pildora:has(.bubble.active) {
    background-color: var(--verde);
}
.bubble.active{
    transform: translateX(160%);
}
.legales{
    
    cursor: pointer;
}

/*  TABLA PUNTUACIÓN */
table{
    width: 100%;
}
tr :nth-child(1){
    width: 80%;
}
tr :nth-child(2){
    width: 20%;
}
td{
    border: 1px solid black;
}
td.bb-none{
    border-bottom: 0;
}
td.bt-none{
    border-top: 0;
}
/* 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;
}

.botonAceptar{
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: var(--azul-oscuro);
    border-radius: 25px;
    filter: invert(1);
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 0.3rem;
    cursor: pointer;
}

@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;
}