@font-face {
  font-family: fuente1;

  src: url(../librerias/tipografia/Ubuntu-R.ttf);
}

body {
  background: #37474f;
  font-size: 16px;
  /* font-family:'Open Sans', sans-serif; */
  font-family: fuente1;
}



.barra-lateral {
  background: #262a34;
  color: #fff;
  min-width: 200px;
  min-height: 100vh;
  padding: 0;
}

.barra-lateral a {
  color: #fff;
}

.barra-lateral .logo {
  background: #1a237e;
  margin-bottom: 2px;
}

.barra-lateral .logo h2 {
  font-size: 30px;
  font-family: sans-serif;
  padding: 20px 0;
  text-align: center;
  font-weight: 300;
  margin: 0;
}
.barra-lateral .menu a {
  display: block;
  padding: 20px;
  font-family: sans-serif;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.barra-lateral .menu a:hover {
  background: #35ae6b;
  text-decoration: none;
  color: #fff;
}
.barra-lateral .menu i {
  padding-right: 3px;
}

.activePage {
  background-color: #37474f;
  text-decoration: none;
}
/*MEDIAQUERYS*/

@media screen and (max-width: 1300px) {
  .barra-lateral {
    min-width: auto;
  }
  .barra-lateral .logo {
    display: none;
  }

  .barra-lateral .menu a span {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .barra-lateral {
    min-height: auto;
    margin-bottom: 10px;
  }
  .barra-lateral .menu a {
    dislay: inline-block;
    border-bottom: none;
  }
}
