﻿@media print {
    html, body {
        display: none; /* hide whole page */
    }
}


.Octicon {
    filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(86deg) brightness(100%) contrast(100%);
}


.OcticonAzul {
    filter: invert(55%) sepia(86%) saturate(3699%) hue-rotate(162deg) brightness(95%) contrast(101%);
}

.OcticonRojo {
    filter: invert(67%) sepia(89%) saturate(7492%) hue-rotate(346deg) brightness(84%) contrast(146%);
}

.DivInterno{
    font-size: 12pt;
}

h1 {
    color:#2b2a29 ;
    margin: 40px;
}


.btn {
    background: hsl(var(--hue), 98%, 80%);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    color: black;
    font: 600 1.05rem/1 "Nunito", sans-serif;
    letter-spacing: 0.05em;
    overflow: hidden;
    padding: 1.15em 3.5em;
    min-height: 3.3em;
    position: relative;
    text-transform: lowercase;
}

.btn--yellow {
    --hue: 46;
}

.btn--green {
    --hue: 163;
}

.btn--purple {
    --hue: 244;
}

.btn--red {
    --hue: 0;
}

.btn--blue {
    --hue: 210;
}

.btn:active, .btn:focus {
    outline: 3px solid hsl(calc(var(--hue) + 90), 98%, 80%);
}

.btn + .btn {
    margin-top: 2.5em;
}

.btn__txt {
    position: relative;
    z-index: 2;
}

.btn__bg {
    background: hsl(var(--hueBg), 98%, 80%);
    border-radius: 50%;
    display: block;
    height: 0;
    left: 50%;
    margin: -50% 0 0 -50%;
    padding-top: 100%;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: scale(0);
    transform-origin: 50% 50%;
    transition: transform 0.175s cubic-bezier(0.5, 1, 0.89, 1);
    z-index: 1;
}

    .btn__bg:nth-of-type(1) {
        --hueBg: calc(var(--hue) - 90);
        transition-delay: 0.1725s;
    }

    .btn__bg:nth-of-type(2) {
        --hueBg: calc(var(--hue) - 180);
        transition-delay: 0.115s;
    }

    .btn__bg:nth-of-type(3) {
        --hueBg: calc(var(--hue) - 270);
        transition-delay: 0.0575s;
    }

    .btn__bg:nth-of-type(4) {
        --hueBg: calc(var(--hue) - 360);
        transition-delay: 0s;
    }

.btn:hover .btn__bg, .btn:focus .btn__bg, .btn:active .btn__bg {
    transform: scale(1.5);
    transition: transform 0.35s cubic-bezier(0.11, 0, 0.5, 0);
}


    .btn:hover .btn__bg:nth-of-type(1), .btn:focus .btn__bg:nth-of-type(1), .btn:active .btn__bg:nth-of-type(1) {
        transition-delay: 0.115s;
    }

    .btn:hover .btn__bg:nth-of-type(2), .btn:focus .btn__bg:nth-of-type(2), .btn:active .btn__bg:nth-of-type(2) {
        transition-delay: 0.23s;
    }

    .btn:hover .btn__bg:nth-of-type(3), .btn:focus .btn__bg:nth-of-type(3), .btn:active .btn__bg:nth-of-type(3) {
        transition-delay: 0.345s;
    }

    .btn:hover .btn__bg:nth-of-type(4), .btn:focus .btn__bg:nth-of-type(4), .btn:active .btn__bg:nth-of-type(4) {
        transition-delay: 0.46s;
    }


.BotonTareas {
    font: bold 12px Arial;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    padding: 2px 6px 2px 6px;
    border-top: 1px solid #CCCCCC;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #CCCCCC;
}

div.btn-container {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

    div.btn-container i {
        display: inline-block;
        position: relative;
        top: -9px;
    }

label {
    font-size: 13px;
    color: #424242;
    font-weight: 500;
}

.btn-color-mode-switch {
    display: inline-block;
    margin: 0px;
    position: relative;
}

    .btn-color-mode-switch > label.btn-color-mode-switch-inner {
        margin: 0px;
        width: 140px;
        height: 30px;
        background: #E0E0E0;
        border-radius: 26px;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
        /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
        display: block;
    }

        .btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
            content: attr(data-on);
            position: absolute;
            font-size: 12px;
            font-weight: 500;
            top: 7px;
            right: 20px;
        }

        .btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
            content: attr(data-off);
            width: 70px;
            height: 16px;
            background: #fff;
            border-radius: 26px;
            position: absolute;
            left: 2px;
            top: 2px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0px 0px 6px -2px #111;
            padding: 5px 0px;
        }

    .btn-color-mode-switch > .alert {
        display: none;
        background: #FF9800;
        border: none;
        color: #fff;
    }

    .btn-color-mode-switch input[type="checkbox"] {
        cursor: pointer;
        width: 50px;
        height: 25px;
        opacity: 0;
        position: absolute;
        top: 0;
        z-index: 1;
        margin: 0px;
    }

        .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
            background: #151515;
            color: #fff;
        }

            .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
                content: attr(data-on);
                left: 68px;
                background: #3c3c3c;
            }

            .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
                content: attr(data-off);
                right: auto;
                left: 20px;
            }

        .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
            /*background: #66BB6A; */
            /*color: #fff;*/
        }

        .btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
            display: block;
        }

/*mode preview*/
.dark-preview {
    background: #0d0d0d;
}

    .dark-preview div.btn-container i.fa-sun-o {
        color: #777;
    }

    .dark-preview div.btn-container i.fa-moon-o {
        color: #fff;
        text-shadow: 0px 0px 11px #fff;
    }

.white-preview {
    background: #fff;
}

    .white-preview div.btn-container i.fa-sun-o {
        color: #ffa500;
        text-shadow: 0px 0px 16px #ffa500;
    }

    .white-preview div.btn-container i.fa-moon-o {
        color: #777;
    }

p.by {
}

    p.by a {
        text-decoration: none;
        color: #000;
    }

.dark-preview p.by a {
    color: #777;
}

.white-preview p.by a {
    color: #000;
}

.blink {
    animation: blinker 1.5s linear infinite;
    /*color: wh !important;*/
    font-weight: 700;
    color:orange !important ;
}

.blinkRed {
    animation: blinker 1.1s linear infinite;
    /*color: wh !important;*/
    font-weight: 700;
    color: red !important;
}

@keyframes blinker {
    50% {
        opacity: .2;
    }
}

.FondoU {
    background-image: url("/images/Fondo2.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom:500px;
}


.FondoU2 {
    background-image: url("/images/Fondo.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 500px;
}



.Crecer:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: background-color 0.5s, -webkit-transform 0.5s ease-out;
    transition: background-color 0.5s, -webkit-transform 0.5s ease-out;
    transition: background-color 0.5s, transform 0.5s ease-out;
    transition: background-color 0.5s, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.Tab {
    border:2px solid black;
    border-radius: 10px 0px 10px 0px;
    background-color:white ;
    color:black;
    display:inline-block;
    padding: 10px 7px;
    text-decoration:none;
}
    .Tab:hover {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-transition: background-color 0.5s, -webkit-transform 0.5s ease-out;
        transition: background-color 0.5s, -webkit-transform 0.5s ease-out;
        transition: background-color 0.5s, transform 0.5s ease-out;
        transition: background-color 0.5s, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    }


.Tab a{
    margin:25px 15px;
    text-decoration: none;
    font-weight:bold;
}

    .Tab a:visited {
        text-decoration: none;
    }


    .Tab a:link {
        text-decoration: none;
    }



    .Tab:hover {
        background-color: lightskyblue ;
        text-decoration: none;
    }

.TabActive {
    border: 2px solid black;
    border-radius: 10px 0px 10px 0px;
    background-color: #3b49df;
    display: inline-block;
    padding: 10px 7px;
    font-weight: bold;
}

    .TabActive a {
        margin: 15px 8px;
        text-decoration: none;
        color: white;
    }

        .TabActive a:visited {
            text-decoration: none;
        }
        .TabActive a:link {
            text-decoration:none;
        }
        .TabActive a:hover {
            text-decoration: none;
            color: white;
        }

.Iconos {
    display: inline-block;
    margin-top: 60px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 60px;
    cursor: pointer;
    width: 200px;
    text-align: center
}
    .Iconos img {
      margin-left:40px; 
      margin-right:40px; 
      width:120px
    }
    .Iconos p {
        font-size: 16pt;
        color: #2b2a29;
        text-align: center;

    }

    .Iconos:hover {
        /*margin-top: 10px;
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 0px;*/
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-transition: background-color 0.5s, -webkit-transform 0.5s ease-out;
        transition: background-color 0.5s, -webkit-transform 0.5s ease-out;
        transition: background-color 0.5s, transform 0.5s ease-out;
        transition: background-color 0.5s, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    }

    /*.Iconos:hover img {
        margin-left: 10px;
        margin-right: 10px;
        width: 160px
    }
    .Iconos:hover p {
        font-size: 20pt;
        
    }*/


.Iconos p {
    background-image: linear-gradient( to right, #54b3d6, #54b3d6 50%, #000 50% );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text  ;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

    .Iconos:before p{
        content: '';
        background: #54b3d6;
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        transition: all 0.3s ease-in-out;
    }

    .Iconos:hover p{
        background-position: 0;
    }

    .Iconos:hover::before p{
        width: 100%;
    }



.IconoBiblioteca {
    display: inline-block;
    margin: 30px 30px;
    cursor: pointer;
    width: 300px;
    text-align: center;
    
}

    .IconoBiblioteca img {
        margin-left: 40px;
        margin-right: 40px;
       
    }

.Crecer180:hover {
    width:180px !important;
}

.Crecer270:hover {
    width: 270px !important;
}

.Crecer135:hover {
    width: 135px !important;
}
.Oculto2{
    display:none;
}

.invisible {
    display:none;
}

.boton1 {
        color: #fff;
        padding: 8px 16px;
        text-decoration: none;
        background-color: #006699;
        border-radius: 10px;
    }

    .boton1:hover {
        background-color: #005c8b;
        color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }
.boton2 {
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    background-color: red;
    border-radius: 10px;
    text-align:center ;
    width:220px;
    cursor:pointer;
}

    .boton2:hover {
        background-color: antiquewhite;
        color: red;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }

.BtnServicios a{
    color:white !important ;
    text-decoration:none !important ;
}

.BtnServicios a:visited {
    color: white !important;
    text-decoration: none !important;
}
.BtnServicios a:link {
        color: white !important;
        text-decoration: none !important;
    }

.ImagenCentral {
    width:100%;
    height:110%;
    top: -60px;
    z-index: -1;
    display: block;
    position:fixed;

}

.LoginArea {
    text-align: center;
    position: absolute;
    top: auto;
    bottom: 10%;
    width: 450px;
    left: 50%;
    -webkit-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    border-radius: 15px;
    background-color: white;
    opacity: .7;
    /*margin-top: 45%;*/
}

.EnLinea {
    display: inline-block;
    opacity:1 !important ;
    background-color:none !important ;
        
}

.TxtAzul {
    border-radius: 4px;
    background-color: rgb(212, 231, 238);
    border: 0;
    height: 25px;
}
.LogImg {
    width: 70px;
    height: 70px;
    margin: 50px 10px 50px 0;
    opacity: 1 !important;
    background-color:none !important ;
        
}

.LogoFlotante {
    width: 90px;
    height: 90px;
    left:50px;
    top:20px;
    opacity: 1 !important;
    position:fixed;
    z-index:0
}

.MenuUniversum {
    height:50px;
    width:100%;
    position:fixed;
    top:0;
    z-index:10;
}
.MenuUniversumIzquierda {
    height: 50px;
    width: auto;
    left:0;
    position: fixed;
    top: 0;
    z-index: 15;
}
.MenuUniversumDerecha {
    height: 50px;
    width: auto;
    right: 0;
    position: fixed;
    top: 0;
    z-index: 15;
}

    .MenuUniversumDerecha li {
        display: inline-block;
        padding-left: 20px;
        padding-right: 20px;
        font-family: Lato;
    }

    .MenuUniversumDerecha a, .MenuUniversumDerecha a:visited {
        color: #A5B3AE;
        text-decoration: none;
    }

        .MenuUniversumDerecha a:hover {
            color: white;
            cursor: pointer;
            text-decoration: none;
        }
        .MenuUniversumDerecha a:hover .MenuDesplegable {
display:block
        }

    .MenuUniversumDerecha li:active {
        color: white;
    }


.MenuUniversumDerechaOculto {
    display: none;
    height: 50px;
    width: auto;
    right: 20px;
    position: fixed;
    top: -20px;
    z-index: 15;
}

.ContenidoUniversumOculto {
    display: none;
}

.MenuIcono{

    text-decoration:none;
}
    .MenuIcono img {
        width: 20px;
        height: 20px;
    }
.Visible{
    display:block
}
.Oculto{
    display:none
}
.MenuIcono:hover .Visible {
    display: none
}
.MenuIcono:hover .Oculto {
    display: block
}

.FondoInterno{
    top:0;
    bottom:0;
    left:0;
    right:0;
    height:100%;
    object-fit:cover ;
    width:100%;
    z-index:-10;
    opacity:.4;
    position:fixed;
}

.Contenedor{
    width:auto;
    height:auto;
    /*margin:10px ;*/
    top: 50px;
    left:2px;
    right:2px;
    bottom:2px;
    z-index:10;
    position:fixed;
    overflow-y:auto ;
}
.FullScreen {
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    width: auto;
    height: auto;
    background-color: aquamarine;
    position: fixed;
    z-index: 15;
}

.TextoCursos {
    font-family:'Graublau Web' ;
}
/*.ContenedorCapa {
    width: auto;
    height: auto;
    background-color: white;
    margin: 10px;
    top: 70px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    position: fixed;
    opacity:.7;
    border-radius:15px;
}*/

.modal-contenido {
    width: auto;
    padding: 10px 20px;
    margin: 20% auto;
    position: relative;
    text-align: center;
	
}

.modal-texto {
    float: right;
    display: flex;
    align-items: center;
    word-break:break-all;
    margin: 0 0 1em 1em;
} 


.modal {
    background-color: hsla(0turn,100%,50%,0.5);
    /*position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;*/
    /*opacity: 0;
    pointer-events: none;*/
    transition: all 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%; /* Buscamos el centro horizontal (relativo) del navegador */
    left: 50%; /* Buscamos el centro vertical (relativo) del navegador */
    width: 550px; /* Definimos el ancho del objeto a centrar */
    height: 300px; /* Definimos el alto del objeto a centrar */
    margin-top: -200px; /* Restamos la mitad de la altura del objeto con un margin-top */
    margin-left: -300px; /* Restamos la mitad de la anchura del objeto con un margin-left */
    z-index: 21;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);

    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    background: #ffffff;
    margin: 0 0 25px;
    overflow: hidden;
    padding: 20px;
    border-radius: 35px 0px 35px 0px;
    -moz-border-radius: 35px 0px 35px 0px;
    -webkit-border-radius: 35px 0px 35px 0px;
    border: 2px solid #5878ca;

}

.mydatagrid {
    width: 80%;
    border: solid 2px black;
    min-width: 80%;
}

.header {
    background-color: #646464 !important;
    font-family: Arial !important ;
    color: White;
    border: none 0px transparent;
    height: 25px;
    text-align: center;
    font-size: 16px;
}

.rows {
    background-color: #fff;
    font-family: Arial;
    font-size: 14px;
    color: #000;
    min-height: 25px;
    text-align: left;
    border: none 0px transparent;
}

    .rows:hover {
        background-color: #ff8000;
        font-family: Arial;
        color: #fff;
        text-align: left;
    }

.selectedrow {
    background-color: #ff8000;
    font-family: Arial;
    color: #fff;
    font-weight: bold;
    text-align: left;
}

.mydatagrid a /** FOR THE PAGING ICONS **/ {
    background-color: Transparent;
    padding: 5px 5px 5px 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

    .mydatagrid a:hover /** FOR THE PAGING ICONS HOVER STYLES**/ {
        background-color: #000;
        color: #fff;
    }

.mydatagrid span /** FOR THE PAGING ICONS CURRENT PAGE INDICATOR **/ {
    background-color: #c9c9c9;
    color: #000;
    padding: 5px 5px 5px 5px;
}

.pager {
    background-color: #646464;
    font-family: Arial;
    color: White;
    height: 30px;
    text-align: left;
}

.mydatagrid td {
    padding: 5px;
}

.mydatagrid th {
    padding: 5px;
}


@media (max-width:1500px){
    .ImagenCentral{
        height:auto !important ;

    }
}




.table-condensed, .table-condensed tr td {
    border: 0px solid #000;
}

tr:nth-child(even) {
    background: #f8f7ff
}

tr:nth-child(odd) {
    background: #fff;
}


@media (max-width:1100px) {
    .LogoFlotante {
        width: 70px !important;
        height: 70px !important;
        top: 40px !important;
        left: 50% !important;
        -webkit-transform: translate(-50%,-20px) !important;
        -ms-transform: translate(-50%,-20px) !important;
        transform: translate(-50%,-20px) !important;
    }

    .LoginArea {
        top: 410px !important;
        bottom: auto !important;

    }
}


@media (max-width:800px) {
    .MenuUniversumDerecha{
        display:none;
    }
    .MenuUniversumDerechaOculto {
        display: block;
    }

    
    .LogoFlotante {
        width: 70px !important;
        height: 70px !important;
        top: 40px !important;
        left: 50% !important;
        -webkit-transform: translate(-50%,-20px) !important;
        -ms-transform: translate(-50%,-20px) !important;
        transform: translate(-50%,-20px) !important;
    }


    .ImagenCentral {
        width: 900px !Important;
        left: 50%;
        top: 10%;
        -webkit-transform: translate(-50%,-20%);
        -ms-transform: translate(-50%,-20%);
        transform: translate(-50%,-20%);
        height: auto !important;
        text-align: center;
    }

    .LoginArea {
        top: 320px !important ;
        bottom: auto !important ;
    }
}

@media (max-width:750px){
    .ContenidoUniversumOculto {
        display: block;
    }


}