
#cuerpo::-webkit-scrollbar {
  width: 5px;
}

/* Track */
#cuerpo::-webkit-scrollbar-track {

  border-radius: 10px;
  background: transparent;  
}
#cuerpo::-webkit-scrollbar-track:hover {

  border-radius: 10px;
  background: white;  
}
 
/* Handle */
#cuerpo::-webkit-scrollbar-thumb {
  background: transparent; 
  border-radius: 5px;
}

/* Handle on hover */
#cuerpo::-webkit-scrollbar-thumb:hover {
  background: #af0099;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5em;
    display:inline-block;
    width: 50%;
        letter-spacing: 1px;
}


.dataTables_wrapper .dataTables_filter label{
  
    
    display: inline-block;
    width: 50%;
    margin-left: 0.5em;
    letter-spacing: 1px;
}

.dataTables_wrapper .dataTables_filter {
    text-align: left;

}

::-webkit-scrollbar {
  width: 5px;
    height: 5;
}

/* Track */
::-webkit-scrollbar-track {

  border-radius: 10px;
  background: white;  
	
}

::-webkit-scrollbar-track:hover {

  border-radius: 10px;
  background: white;  
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #af0099; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #af0099; 
}



body {

    text-align: center;
    overflow-y:hidden;
}


.indice {
    
    display:inline-block; 
    color:#ff0099; 
    font-size:40px
}

#menu_on {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
}
#menu_on2 {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
}


h2 {
    color: #ff0099;
}

.button {
    background-color: #123;
    /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1 {
    background-color: white;
    color: black;
    border: 2px solid #123;
    border-radius: 7px;
}

.button1:hover {
    background-color: #123;
    color: white;
    border-color: #ff0099;
}
.button1:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
	color: #666666;
}


#menu_on span {
    width: 100%;
    height: 4px;
    border-radius: 4px;
    display: block;
    position: absolute;
    background: #fff;
    transition: all 0.25s ease;
    /* Propiedades a animar | Tiempo | Tipo animación*/
    transform-origin: 0px 100%;
}

#menu_on span:nth-child(2) {
    top: calc(50% - 2px);
}

#menu_on span:nth-child(3) {
    bottom: 0;
}


nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -400px;
    /* Escondemos nuestro menú con un valor negativo */
    width: 300px;
    z-index: 1;
    padding: 90px 30px 30px;
    background-color: black;
    opacity: 0;
    transition: all 0.75s ease;
    overflow-y: auto;
}

nav a {
    display: block;
    text-decoration: none;
    padding: 10px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all ease 0.25s;
    text-align: left;
}

nav a:hover {
    color: #ff0099;
    border-bottom-color: #ff0099;
    font-size: 24px;
}

.visible_menu nav {
    left: 0;
    opacity: 0.7;
}

#m2 {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -400px;
    /* Escondemos nuestro menú con un valor negativo */
    width: 300px;
    z-index: 1;
    padding: 90px 30px 30px;
    background-color: black;
    opacity: 0;
    transition: all 0.75s ease;
    overflow-y: auto;
	
}

.visible_menu2 #m2 {
    right: 0;
    opacity: 0.7;
	background-color: #ff0099;
	color: black;
}

.visible_menu span:nth-child(1) {
    transform: rotate(45deg) translate(-2px, 1px);
}

.visible_menu span:nth-child(2) {
    opacity: 0;
}

.visible_menu span:nth-child(3) {
    transform: rotate(-45deg) translate(-3px, 3px);
}



.visible_menu #content {
    /*  transform: translateX(260px);*/
}


header {

    background-image: linear-gradient(to bottom, #282828, transparent 99%), linear-gradient(to top, #282828, transparent 99%);

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

    min-height: 20px;
    padding: 5px;

    width: 95%;

    display: inline-block;
    padding: 10px;

}



#titulo {


    text-align: center;
    color: #FFF;

    font-size: 26px;
    font-family: Broadway;
    margin: auto;
    letter-spacing: 0.2em;



}

ul {
    list-style-type: none;
    color: #eee;
    margin-top: 0;
}



#cuerpo {

    text-align: center;
    
    overflow-y: auto;
    overflow-x: hidden;

    margin-top: 5px;
    padding: 10px;

    border: thin;
    border-color: #BBBAC9;
    border-style: outset;
    border-radius: 10px;

    display: inline-block;
    height: 85%;


    width: 95%;

    background-image: linear-gradient(to bottom, #fff, transparent 99%), linear-gradient(to top, #EEE, transparent 99%);
}

#menu {

    float: left;
    text-align: left;

}

#menu2 {
    display: inline-block;

    padding-left: 10px;
    padding-right: 10px;


    width: 95%;
    background-color: #282828;

    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    
    font-size: 15;

}

#menu2 a {
    display: inline-block;
    font-family: "Comic Sans MS";
    padding: 2px;
    color: white;



}


#menu2 li {

    text-align: center;
    border-color: #BBBAC9;
    background-color: #282828;
    letter-spacing: 2;

}


#menu2 a:hover {

    color: #123;
    background-color: #ff0099;

}

.menu3 {
    padding: 0;
    margin: 0;
    max-width: 700px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}

.menu3 li a {
    text-decoration: none;
    align-self: center;
    border-radius: 5px;
    font-size: 14px;
    padding: 10px 15px;
    transition: background .2s linear;
}

footer {

    background-image: linear-gradient(to bottom, #282828, transparent 99%), linear-gradient(to top, #282828, transparent 99%);
    border-radius: 5px;

    margin-top: 5px;
    color: white;

    width: 95%;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    
    height: 18px;
    letter-spacing: 2;


}

a {
    color: white;
    text-decoration: none;
}

#usuario2 {
    color: white;
    display: inline-block;
    font-family: Tahoma, Geneva, sans-serif;
}

#usuario2 a:hover {

    color: #ff0099;
}

#usuario3 {

    color: #ff0099;

    margin-left: 1em;
    margin-right: 1em;
    display: inline-block;

    font-family: Tahoma, Geneva, sans-serif;
}


.left {
    float: left;
}

.right {
    float: right;
}

.center {
    width: auto;
    margin: 0 auto
}

.cuadritos {
    float: left;
    border: thin;
    border-color: #ff0099;
    border-style: outset;
    border-radius: 10px;
    padding: 5px;
    background-color: white;
    margin: 10px;

}

.cuadritos:hover {
    float: left;
    max-width: 236px;
    max-height: 256px;
    border: 3px;
    border-color: yellow;
    border-style: outset;
    border-radius: 10px;
    padding: 5px;
    background-color: #ff0099;

}

textarea,
input,
select {
    width: 150px;
    height: 17px;
    background: #112233;
    border: 2px solid #f6f6f6;

    margin-top: 5px;
    padding-left: 5px;
    font-size: 14px;
    color: white;
    text-align: central;
    display: inline-block;
    border-radius: 5px;

}

select:hover {
  border-color: #123;
    background-color: #ff0099;
}

input:hover {
    border-color: #123;
    background-color: #ff0099;
}

h1 {
    display: inline-block;
    
    width: 90vw;
    
     font-family: Tahoma, sans-serif;
    text-align: center;
  
    margin: auto;


}

.padre {
    text-align: center;
}

.hijo {
    background-color: yellow;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    width: 300px;
}

.hijo2 {
    background-color: yellow;
    display: inline-block;
}

.iconos {

    display: inline-block;


    border: 3px;
    border-color: #123;
    border-style: outset;
    border-radius: 7px;
    padding: 5px;
    background-color: white;
    margin: 10px;
}

.iconos:hover {


    border: 4px;
    border-color: #ff0099;
    border-style: outset;

    background-color: #282828;

}

.hijo4 {

    display: inline-block;
    text-align: left;
    
   
     
    width: 300;

    margin: 5px;
}

#grafica {


    width: 700px;
    display: inline-block;

}

#cuerpo2 {

    font-family: 'Comic Sans', sans-serif;
    color: #00366C;
    font-size: 20px;
    min-width: 320px;
    max-width: 1000px;
    margin: auto;
    text-align: left;
    max-height: 390px;
    padding: 5px;


}

.cuadritos {
    float: none;
    border: thin;
    border-color: #ff0099;
    border-style: outset;
    border-radius: 10px;
    padding: 5px;
    background-color: white;
    margin: 10px;

}



#cuerpo2 {

    max-height: 420px;
    margin-top: 0px;
}


#grafica {


    width: 350px;
    display: inline-block;

}

@media (max-width: 750px) {
    
    .indice {
    
    font-size: 20;
}

    
    .right{
        
        font-size: 10;
    }

    header {

        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    #menu2 {
        display: none;
    }

    #cuerpo {

        min-height: 82vh;
    }
}


@media (max-width: 500px) {



    #titulo {
        /*display: none;*/
        font-size: 20px;
    }

    #menu2 {
        display: none;
    }

    #usuario2 {
        display: none;
    }

    footer {
        margin-top: 0px;
    }

}
