:root{
    --azul_oscuro : #0d284de8;
    --amarillo : #fbc200;
    --blanco: #fff;
}

/* ESTILOS GENERALES */
.bg-fondo{
    background-image: url("/assets/img/mobile-fondo-coche-der.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100dvh;
}
.bg-azul{
    background-color: var(--azul_oscuro);
}
.tx-azul{
    color: var(--azul_oscuro);
}
.bg-amarillo{
    background-color: var(--amarillo);
}
.tx-amarillo{
    color: var(--amarillo);
}
.bg-blanco{
    background-color: var(--blanco);
}
.tx-blanco{
    color: var(--blanco);
}
.py-2-5{
    padding-block: 0.75rem;
}

/* INDEX */
.botones a{
    color: var(--blanco);
    text-decoration: none;
}
.botones a:hover{
    color: var(--amarillo) !important;
}

/* AGENDA */
.titulo_pagina{
    border-radius: 6px;
    border: 1px solid var(--amarillo);
}
.dia{
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid var(--amarillo);
}
.actos{
    font-size: 0.8rem;
}

/* MENU */
.lang{
    cursor: pointer;
}
.activo{
    color: var(--amarillo);
    font-weight: 700;
}
.open, .close, .logout{
    max-width: 40px;
    cursor: pointer;
    transition: all .5s;
}

.menu-lateral{
    position: fixed;
    top:0;
    left: -100dvw;
    height: 100dvh;
    width: 100dvw;
    opacity: 1;
    transition: all .5s;
}



/* MODAL */
.modal{
    position: absolute;
    background-color:rgba(13, 40, 77, 0.8);
    top:0;
    left: 0;
    height: 100vh;
    z-index: 1201 !important;
}
.aviso-modal{
    border-radius: 10px;
    position: relative;
}
.aviso-modal svg{
    position: absolute;
    top: 10%;
    right: 3%;
    cursor: pointer;
}

/* FORM*/
.error:after{
    content: "!";
    color: var(--amarillo);
    font-size: 1rem;
    margin-left: 1rem;    
}
.inputerror{
    border: 2px solid red;
}


/* FOOTER */
.footer{
    font-size: 0.8rem;
}
.footer a{
    color: var(--blanco);
    text-decoration: none;
}

@media (min-width:768px){
    .footer{
        font-size: 0.8rem;
    }
    .menu-lateral{
        width: 30dvw;
    }
}
@media (min-width:992px) {

}