@charset='utf-8';
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.fila{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header{
  position: absolute;
  width: 100%;
  top: 0;
  display: none;
  z-index: 200;
}
.headlogo{
  width: 40%;
  padding: 1%
}
.headlogo img{
  width: 100%;
}

.col-usuario{
  background: #D8D8D8;
  width: 20%;
  position: fixed;
  overflow-y: scroll;
  height: calc(100%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1000;
}
.logo-content{
  width: 100%;
}
.jumbotron{
  width: 100%;
}
.avatar{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.avatar img{
  width: 60%;
}
.other-items-profile{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.other-items-profile .progress{
  width: 90%;
}
.menu-content{
  width: 100%;
}
.col-data{
  background: #FAFAFA;
  width: 79%;
  margin-left: 20%;
}

.aligner{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.arounder{
  display: flex;
  justify-content:space-around;
  align-items: center;
}
.espaciador{
  padding-top: 20px;
  padding-bottom: 20px;
}

.userprofile{
  width: 90%;
  text-align: center;
}
.userprofile img{
  width: 100%;
}
.logo{
  width: 96%;
  padding: 2%;
}
.profile{
  width: 60px;
}
.logo img{
  width: 65%;
}
.title{
  font-size: 30px;
}
.portada{
  width: 90%;
}
.mainbuttons{
  width:31.33%;
  padding: 20px 1%;
}
.mainbuttons a{
  text-decoration: none;
  text-align: center;
}
.botonprincipal{
  padding:7%;
  background: #D8D8D8;
  border-radius: 7px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  color: #333333;
  transition: all 0.5s;
}
.botonprincipal:hover{
  color: #337AB7;
  transform: scale(1.15);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  background: #E9E9E9;
}
.botonprincipal span{
  font-size: 40px;
}
.botonprincipal p{
  font-size: 18px;
}
.footerfixed{
  width: 100%;
  position: fixed;
  bottom: 0;
  background: #333333;
  color: #FFFFFF;
}
a{
  text-decoration: none;
  color: #000000;
}
a:hover{
  text-decoration: none;
  color: #000000;
}
.box-contenedor{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.box-detalle{
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.box-item{
  width: 32%;
  border: 1px solid #d8d8d8;
  margin: 0 10px 10px 0;
}
.box-item a{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.box-item:hover{
  background-color: rgba(0, 0, 0, 0.1);
}
.box-item .picture-user{
  width: 30%;
}
.box-item .picture-user img{
  width: 100%;
}
.box-item .data-user{
  width: 68%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.box-item .data-user p{
  width: 100%;
}
.box-first{
  width: 49%
}
.box-last{
  width: 49%;
}
@media screen and (max-width: 769px){
  .mobilefix{
    padding-top:40px;
  }
  .col-usuario{
    height: calc(100%);
    width: 60%;
    right: 100%;
  }
  .box-item{
    width: 48%;
  }
  .logo{
    display: none;
  }
  .fila{
    margin-top: 52px;
  }
  .col-data{
    width: 100%;
    margin-left: 0%;
  }
}
@media screen and (max-width: 481px){
  header{
    display: inline-block;
  }
  .box-item{
    width: 100%;
  }
  .col-usuario{
    height: calc(100%);
    width: 80%;

  }
  .col-data{
    height: 100%;
  }
  .mainbuttons{
    width:99%;
    padding: 10px 0.5%;
  }
  .botonprincipal{
    width: 94%;
    padding:3%;
  }
  .title{
    font-size: 20px;
  }
  .footerfixed{
    font-size: 12px;
  }
  .espaciador{
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .profile{
    display: none;
  }
}