﻿
body 
{
    min-height: 100vh;
    font-size:18px!important;
    background-color: #F2F4F5;
}

/*NAVIGATION MENU*/

#content
{
    background-color: #F2F4F5;   
}

.navbar
{
    background-color: #e15f64;
}

.nav-link
{
    display: inline !important;
}

.fa-search, .fa-fire, .fa-sign-out-alt, .fa-key
{
    color:White;
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
}

#sidebarCollapse span {
    width: 100%;
    height: 2px;
    margin: 5px auto;
    display: block;
    background: #555;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
}

#sidebarCollapse.active span:first-of-type {
    /* rotate first one */
    transform: rotate(45deg) translate(2px, 2px);
    margin: 0px!important;
}
#sidebarCollapse.active span:nth-of-type(2) {
    /* second one is not visible */
    opacity: 0;
    margin: 0px!important;
}
#sidebarCollapse.active span:last-of-type {
    /* rotate third one */
    transform: rotate(-45deg) translate(1px, -1px);
    margin: 0px!important;
}
#sidebarCollapse span {
    /* no rotation */
    transform: none;
    /* all bars are visible */
    opacity: 1;
}

@media (max-width: 765px) 
{
    .navbar
    {
        position:fixed!important;
        top:0;
        left:0;
        right:0;
        z-index:100;
    }
    .contenedor
    {
        margin-top:100px!important;
        z-index:80;
    }
    .dropdown-divider
    {
        width:300px;
    }
    .navbar-brand
    {
        margin-left:0px;
        font-size:16px;
    }
}

@media (max-width: 1024px) 
{
    
    .imgLogoContainer
    {
        max-width:200px!important;
    }
}

@media (min-width: 768px) 
{
    a.navbar-brand
    {
        width:100%;
        word-wrap:break-word;
        white-space:break-spaces!important;
    }
    .navbar
    {
        display: inline-block;
    }
    .navbar-expand-sm .navbar-nav,
    .navbar-expand-md .navbar-nav,
    .navbar-expand-lg .navbar-nav
    {
        display:block;
        flex-direction: column;
    }
    #collapsibleNavbar
    {
        display:block;
    }
    #content
    {
        display:flex;
    }
    
}

@media (min-width: 1025px) 
{
    .contenedor
    {
        width: 861px;
    }
}

.fullHeight
{
    min-height: 100vh;
}

.contenedor
{
    background-color: White;
    border-radius: 10px;
    height: 50%;
}

.txtRound
{
    width: 100%;
    border-radius: 5px;
    border: solid 1px;
    border-color: #CCC;
    background-color: #E6E6E6;
}

.btnEnviar
{
    border-radius: 5px;
    background-color: #e15f64;
    border: solid 1px;
    border-color: #e15f64;
    color: White;
    font-weight: bold;
}

#loginForm
{
    max-width:360px;
}

.red
{
    color:Red;
}

.contenedorPrograma
{
    width:200px;
    height:300px;
    border-radius:10px;
}

.contenedorPrograma:hover
{
    box-shadow: 0px 0px 10px 4px rgba(173,173,173,1);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.lblPrograma
{
    font-size:30px!important;
    color:White;
    
}

.imgLogoContainer
{
    width:100%;
    max-width:260px; 
    position:absolute; 
    bottom:0;
}

