﻿@font-face {
    font-family: "Nexa";
    src: url('../fonts/Fontfabric - Nexa Regular.otf') format('opentype');
}

@font-face {
    font-family: "Nexa Light";
    src: url('../fonts/Fontfabric - Nexa Light.otf');
}


@font-face {
    font-family: "Nexa Bolder";
    src: url('../fonts/Fontfabric - Nexa XBold.otf');
}


:root {
    --udem-yellow: #FFF500;
    --udem-black: #333333;
    --udem-light-gray: #e9e9e9;
    --primColor: #dcdcdc;
    --secoColor: #555555;
    --cornerRad: 4px;
}

body{
    font-family: "Nexa";
}

#side-menu {
    background-color: var(--udem-black);
    min-height: 100vh;
}

#topMenu {
    background-color: var(--udem-black);
    min-height: 3rem;
    display: none;
}

#content-side {
    margin: 0;
    padding: 0;
}

#titulo-asistencias{
    background: var(--udem-black);
    color: #FFF;
    padding: 10px;
}

.bg-yellow{
    background-color: var(--udem-yellow) !important;
}

.btn-black {
    background-color: var(--udem-black) !important;
}

.btn-yellow{
    background-color: var(--udem-yellow) !important;
}

.btn-yellow:active, .btn-yellow:focus{
    border: none !important;
}

.btn-tristate{
    background: none !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#listaMaterias tr, #listaAlumnos tr{
    vertical-align: middle;
}

#listaMaterias img{
   margin-right: 1rem !important;
}

th {
    font-family: "Nexa Bolder";
}

a.table-header{
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.btn-action {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 0.15rem !important;
}

.form-getAlumnos{
    display:inline !important;

}

#fecha {
    padding-right: 1rem !important;
}
}

/****** CLASES DE HOY ******/
.no-class {
    background: none;
}

.today-class {
    background: var(--udem-yellow);
}

.dias{
   height: 35px;
   width: 35px;
   border-radius: 20px;
   display: inline-flex;
   text-align:center;
}

.class-day{
    margin:auto;
    padding: 0;
}

#search-btn{
   /* background: url('img/search-icon.png') no-repeat 7px 7px;
    padding-left: 10px;*/
   border: 1px solid #DADADA !important;
   border-radius: 0 5px 5px 0;
}

#modalSpinner .modal-dialog {
    text-align: center;
    top: 50%;
}

.nombre-mobile {
    display: inline;
}


.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }


/*MOBILE*/
@media (max-width: 720px) {
    #side-menu{
        display: none !important;
    }

    #topMenu{
        display: block;
    }

    div.not-mobile{
        display: none;
    }

    .btn-menu-mobile{
        background: var(--udem-black) !important;
        color: white !important;
    }

    .nombre-mobile {
        display: block;
    }
}

/*TABLET*/
@media (min-width: 721px) and (max-width: 1023px) {
    #side-menu {
        display: none !important;
    }


    #topMenu {
        display: block;
    }

    div.not-mobile {
        display: none;
    }

    .btn-menu-mobile {
        background: var(--udem-black) !important;
        color: white !important;
    }

    .nombre-mobile{
        display: block;
    }
}



/************** AVISO DE CONFIDENCIALIDAD ****************/
.tit-aviso {
    font-family: "Nexa Bolder";
    margin-top: 3rem;
}

.txt-aviso {
    font-family: "Nexa Light";
    margin: 1rem 0 0 0;
    text-align: justify;
}

a.btn-aviso {
    padding: 1rem 0 0 0;
    color: #ff6a00 !important;
    text-decoration: none;
}

#msg-conf {
    max-width: 768px;
}


/**** TABS ****/
div#nav-tab{
    border: none !important;
    padding-bottom: 0.5rem;
}

    div#nav-tab .nav-link{
        border: none !important;
        color: black;
        border-radius: 0 !important;
    }

        div#nav-tab .nav-link:active {
            border: none !important;
            color: black;
            font-weight: 700;
        }

        div#nav-tab .nav-link.active {
            border: none !important;
            border-bottom: 4px solid var(--udem-yellow) !important;
            border-top: 4px solid var(--udem-yellow) !important;
            font-weight: 700;
         /*   box-shadow: 0px 3px 0px 0px rgba(0,0,0,1); */
        }

        div#nav-tab .nav-link:hover {
            border-top: 4px solid var(--udem-yellow) !important;
            border-bottom: 4px solid var(--udem-yellow) !important;
            opacity: 0.5;
        }

        div#nav-tab .nav-link:active {
            border-bottom: 4px var(--udem-yellow) solid !important;
            border-top: 4px var(--udem-yellow) solid !important;
            opacity: 1.0;
        }