/* ==========
   COLORES LYL
   ========== */

[data-md-color-scheme="default"]{

    --md-primary-fg-color: #3293CD;
    --md-primary-fg-color--light: #58A9D8;
    --md-primary-fg-color--dark: #287EAF;

    --md-accent-fg-color: #21E048;

    --md-default-fg-color: #26211D;
}


/* CABECERA */

.md-header{
    background:#3293CD;
}


/* MENU SUPERIOR */

.md-tabs{
    background:#287EAF;
}


/* MENU IZQUIERDO */

.md-nav__title{
    color:#3293CD;
    font-weight:700;
}


/* ENLACES */

.md-typeset a{
    color:#3293CD;
}

.md-typeset a:hover{
    color:#580680;
}


/* TITULOS */

.md-typeset h1{
    color:#3293CD;
    font-weight:700;
}

.md-typeset h2{
    color:#287EAF;
}

.md-typeset h3{
    color:#580680;
}


/* TABLAS */

.md-typeset table th{
    background:#3293CD;
    color:white;
}


/* ADMONITIONS */

.md-typeset .admonition.note{
    border-left:5px solid #21E048;
}

.md-typeset .admonition.warning{
    border-left:5px solid #FA5301;
}

.md-typeset .admonition.tip{
    border-left:5px solid #EE018D;
}


/* BOTON SUBIR */

.md-top{
    background:#3293CD;
}

/* ==========================================
   MENÚ LATERAL LYL
   ========================================== */

/* Texto general */
.md-nav__link{
    font-size:.84rem;
    font-weight:400;
    color:#444;
    padding:.28rem 0;
    transition:.15s;
}

/* Hover */
.md-nav__link:hover{
    color:#3293CD;
}

/* Títulos principales (Docentes, Estudiantes...) */
.md-nav__title{
    font-size:.86rem;
    font-weight:700;
    color:#26211D;
    margin-bottom:.25rem;
}

/* Padres del menú */
.md-nav__item--nested > label.md-nav__title{
    font-size:.84rem;
    font-weight:600;
    color:#26211D;
}

/* Quitar casi todas las líneas */
.md-nav > .md-nav__list > .md-nav__item > .md-nav__link,
.md-nav > .md-nav__list > .md-nav__item > label.md-nav__title{
    border:none;
    margin-top:.15rem;
    padding-top:.35rem;
}

/* Subniveles */
.md-nav .md-nav{
    margin-left:.8rem;
    padding-left:.8rem;
    border-left:1px solid #efefef;
}

/* Página actual */
.md-nav__link--active{
    color:#3293CD !important;
    font-weight:600;
    background:#EDF7FD;
    border-radius:5px;
    padding-left:.55rem;
}

/* Grupo abierto */
.md-nav__item--active > label.md-nav__title{
    color:#3293CD;
    font-weight:700;
}

/* Flechas */
.md-nav__icon{
    color:#888;
}

.md-nav__item--active > label .md-nav__icon{
    color:#3293CD;
}

/* Espacio entre bloques */
.md-nav__item{
    margin:.08rem 0;
}

/* Scrollbars */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
    background:#b8b8b8;
    border-radius:8px;
}

::-webkit-scrollbar-thumb:hover{
    background:#8c8c8c;
}

::selection{
    background:#3293CD33;
    color:#26211D;
}

::-moz-selection{
    background:#3293CD33;
    color:#26211D;
}