@charset "utf-8";
/* CSS Document */
 #bodyContainer{
        box-sizing: border-box;
        padding-top: 65px;
        min-height:calc(100vh - 56px);
        min-width: 100%;
}
        /*-----TOP NAVBAR APLICATION*/
     
        
        .containerTopNavbar{
            position:fixed;
            min-width: 100%;
			z-index: 1;
        }
        .topNavbarRow{
            min-width: 100%;
            min-height: 56px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            padding:16px;
            position: relative;
            display: flex;
        }
        .topNavbarSectionStart{
            display: inline-flex;
            flex: 1 1 auto;
            align-items: center;
            min-width: 0;
            z-index: 1;
            justify-content: flex-start;
            box-sizing: border-box;
            /*padding: 8px 12px;*/
            
        } 
        .topNavbarSectionEnd{
            display: inline-flex;
            flex: 1 1 auto;
            align-items: center;
            min-width: 0;
            z-index: 1;
            justify-content:flex-end;
            box-sizing: border-box;
            /*padding: 8px 12px;*/
            
        }
        .topNavbarButtonMenu{
            position: relative;
            overflow: hidden;
        }
        .topNavbarButtonMenu:hover{
            background: rgba(225,225,225, .35);/*cambiar por el mismo del tema del botton de seccion colores*/
        }
        .topNavbarButtonMenu:after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 5px;
          height: 5px;
          background: rgba(255, 255, 255, .5);/*cambiar por el mismo del tema del botton de seccion colores*/
          opacity: 0;
          border-radius: 100%;
          transform: scale(1, 1) translate(-50%);
          transform-origin: 50% 50%;
        }
        
        @keyframes ripple {
          0% {
            transform: scale(0, 0);
            opacity: 1;
          }
          20% {
            transform: scale(25, 25);
            opacity: 1;
          }
          100% {
            opacity: 0;
            transform: scale(40, 40);
          }
        }

        
        .topNavbarButtonMenu:focus:not(:active)::after {
          animation: ripple 1s ease-out;
        }
        
        
        .titleTopNavbar{
            font-size: 20px;
            font-family:Roboto,sans-serif;
            padding-left: 32px;
            font-weight: bold;
        }
/*/TOP NAVBAR APLICATION-----------*/

    /*GENERAL STYLES TO ASAID NAVEGATION DRAWER*/
    body {
    display: flex;
    height: 100vh;
    }
    .drawer {
     border-color: rgba(0,0,0,.12); 
     border-radius: 0 0 0 0; 
     z-index: 6; 
     width: 256px; 
     display: -ms-flexbox;
     display: flex;
    -ms-flex-direction: column;
     flex-direction: column; 
    -ms-flex-negative: 0;
     flex-shrink: 0; 
    -webkit-box-sizing: border-box;
     box-sizing: border-box; 
     height: 100%; 
     border-right-width: 1px; 
     border-right-style: solid; 
     overflow: hidden; 
}

    .drawerModal {
    -webkit-box-shadow: 0 8px 10px -5px rgba(0,0,0,.2), 0 16px 24px 2px rgba(0,0,0,.14), 0 6px 30px 5px rgba(0,0,0,.12);
    box-shadow: 0 8px 10px -5px rgba(0,0,0,.2), 0 16px 24px 2px rgba(0,0,0,.14), 0 6px 30px 5px rgba(0,0,0,.12);
    left: 0;
    right: auto;
    display: none;
    position: fixed;
}
    .drawerHeader {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 64px;
    padding: 16px 16px 4px;
}
    .drawerTitle {
    font-family: Roboto,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 500;
    text-decoration: inherit;
    text-transform: inherit;
    display: block;
    margin-top: 0;
	color: #F4F4F4;
}
    .drawerSubtitle {
    font-family: Roboto,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    text-decoration: inherit;
    text-transform: inherit;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
	color: #F4F4F4;
}
    
    .listGroupSubheader {
    font-family: Roboto,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    text-decoration: inherit;
    text-transform: inherit;
    display: block;
    margin-top: 0;
    line-height: normal;
    margin: 0;
    padding: 16px 16px;
}
    .drawerContent {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
    .listDrawer {
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    /* -webkit-font-smoothing: antialiased; */
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    text-decoration: inherit;
    text-transform: inherit;
    margin: 0;
    padding: 8px 0;
    list-style-type: none;
}
    .listItemDrawer {
     box-sizing: border-box;
     font-family: Roboto,sans-serif; 
    -moz-osx-font-smoothing: grayscale;
     -webkit-font-smoothing: antialiased; 
     font-size: .875rem; 
     line-height: 1.375rem; 
     font-weight: 500; 
     text-decoration: inherit; 
     text-transform: uppercase;
     height: 40px; 
     margin: 8px; 
     padding: 8px 8px; 
     display: flex;
}
    .listItemDrawer:hover{
            background: rgba(225,225,225, .35);
        }

    
    .listDivider {
    height: 0;
    margin: 0;
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0,0,0,.12);
}
    
    .iconDrawerNav{
        padding-right: 16px;
    }


