@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

*{
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

/* Animaciones */

.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fast {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}
/* FIN DE LAS ANIMACIONES */

body{
  background: #e0dfdf;
}
::-webkit-scrollbar {
  width: 4px;

}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


.wrapper .sidebar{
  background:#28735e;  /*rgb(5, 68, 104);*/
  position: fixed;
  top: 0;
  left: 0;
  width: 225px;
  height: 100%;
  padding: 20px 0;
  transition: all 0.5s ease;
  -webkit-box-shadow: 3px 2px 5px 0px rgba(135,124,135,1);
-moz-box-shadow: 3px 2px 5px 0px rgba(135,124,135,1);
box-shadow: 3px 2px 5px 0px rgba(135,124,135,1);
}

.wrapper .sidebar .profiles{
  margin-bottom: 30px;
  text-align: center;
}

.wrapper .sidebar .profiles img{
  display: block;
  width: 100px;
  height: 100px;
    border-radius: 50%;
  margin: 0 auto;
}

.wrapper .sidebar .profiles h3{
  color: #ffffff;
  margin: 10px 0 5px;
  font-family: 'Merriweather', serif;
}

.wrapper .sidebar .profiles p{
  color:rgb(206, 240, 253);  font-weight: bold;
  font-size: 14px;
  font-family: 'Merriweather', serif;
}

.wrapper .sidebar ul li a{
  display: block;
  padding: 13px 30px;
  border-bottom: 1px solid #10558d;
  color:rgb(241, 237, 237);
  font-size: 16px;
  position: relative;
  text-decoration: none;
  font-weight: bold;
}

.wrapper .sidebar ul li a .icon{
  color:rgb(241, 237, 237);
  font-weight: bold;
  width: 30px;
  display: inline-block;
}

 

.wrapper .sidebar ul li a:hover,
.wrapper .sidebar ul li a.active{
  
  color:#28735e;  /*#0c7db1;*/
  background:white; /*white;*/;
  border-right: 2px solid rgb(5, 68, 104);
}

.wrapper .sidebar ul li a:hover .icon,
.wrapper .sidebar ul li a.active .icon{
  color: #0c7db1;
}

.wrapper .sidebar ul li a:hover:before,
.wrapper .sidebar ul li a.active:before{
  display: block;
}

.wrapper .section{
  width: calc(100% - 225px);
  margin-left: 225px;
  transition: all 0.5s ease;
  background: #d7d2d2;

}
/* ESTILOS BOTON AJUSTES */
.wrapper .section .divAjustes a{
    text-decoration: none;
    color: #ffff;
    font-weight: bold;
}
.wrapper .section .divAjustes  ul{
     background-color:#28735e;  /*rgb(7, 105, 185)*/;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(135,124,135,1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(135,124,135,1);
    box-shadow: 0px 2px 5px 0px rgba(135,124,135,1);
    
}
.wrapper .section .divAjustes  ul li{
    padding: 5px;  
}
.wrapper .section .divAjustes  ul li a{
  color: #ffff;
  font-weight: bold;
    
}

.wrapper .section .divAjustes  ul li:hover{
    transition: 0.5s;
     background: #ffff;
    
}
.wrapper .section .divAjustes  ul li a:hover{
    color: #28735e;
}
/*FINAL DE ESTILOS BOTON AJUSTES */

.wrapper .section .top_navbar{
  background: #28735e; /*rgb(7, 105, 185)*/;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(135,124,135,1);
-moz-box-shadow: 0px 3px 5px 0px rgba(135,124,135,1);
box-shadow: 0px 3px 5px 0px rgba(135,124,135,1);
max-width: 100%;
 
}

.wrapper .section .top_navbar .hamburger a{
  font-size: 28px;
  color: #ffff;
}

.wrapper .section .top_navbar .hamburger a:hover{
  color: #000;
}

 .wrapper .section .containere{
  margin: 20px;
  background: #fff;
 
  line-height: 28px;
  
}
.color-plata{
  background:rgba(187, 187, 187, 0.8);
}

body.active .wrapper .sidebar{
  left: -225px;
}

body.active .wrapper .section{
  margin-left: 0;
  width:100%;
}

@media (max-width: 600px) {
  
}


