@import url('https://fonts.googleapis.com/css2?family=Jost&family=Merriweather+Sans&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    box-sizing: border-box;
}

.wrapper {
    z-index: 1;
    position: relative;
    width: (100% - 0%);
    height: 70px;
    top: 0;
    display: flex;
}

header {
    position: fixed;
    background: #0500bb;
    padding: 20px;
    width: 100%;
    height: 30px;
}

.left h3 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;

}

.logout {
    padding: 5px;
    float: right;
    margin-right: 40px;
    margin-top: -30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #0500bb;
    text-decoration: none;
    transition-property: background;
}

.logout:hover{
    background: #fff;
    color: #03013d;
}

.wrapper .sidebar {
    background: #fff;
    position: fixed;
    left: 0;
    width: 270px;
   top: 70px;
   bottom: 0;
   overflow-y: scroll;
    transition: 0.4s;
    transition-property: left;
    
    

}

.sidebar .logo {
    margin-top: 10px;
    width: 140px;
    height: 120px;
    margin-bottom: 10px;
    margin-left: 10px;

}

.sidebar .search {
    text-align: center;
    border: 0;
    border-radius: 15px;
    width: 110px;
    height: 20px;
}

.sidebar i {
    padding-left: 10px;
    color: #fff;


}

.sidebar .menu {
    margin-top: 20px;
    color: #0500bb;
    display: block;
    width: 100%;
    line-height: 25px;
    text-decoration: none;
    padding-left: 35px;
    box-sizing: border-box;
    transition: 0.3s;
    transition-property: background;
    overflow: auto;
    margin-bottom: 10px;
}

.sidebar .menu_large {
    margin-top: 20px;
    color: #0500bb;
    display: block;
    width: 100%;
    line-height: 30px;
    text-decoration: none;
    padding-left: 40px;
    box-sizing: border-box;
    transition: 0.3s;
    transition-property: background;
    margin-bottom: 15px;

}
.sidebar .menu:hover {
    background: #0500bb;
    color: #fff;
}

.sidebar .menu_large:hover {
    background:#0500bb;
    color: #fff;
}

.sidebar-btn {
    z-index: 1;
    color: #0B4B3D;
    position: fixed;
    cursor: pointer;
    left: 380px;
    font-size: 20px;
    margin: 5px 0;
    transition: 0.3s;
    transition-property: color;
}

.sidebar-btn:hover {
    color: #8BBCB1;

}

.wrapper.collapse .sidebar {
    left: -180px;
    width: 70px;
    background: #E2EBE9;

}

.wrapper.collapse .sidebar a span {
    display: none;
}

.wrapper.collapse .sidebar a {
   font-size: 20px;
   margin-left: 195px;
   width: 80px;
   transition-property: background;
   transition: 0.3s;

}

.wrapper.collapse .sidebar a:hover {
   font-size: 20px;
   margin-left: 195px;
   width: 80px;
   background: #E2EBE9;

}

.wrapper.collapse .sidebar .logo {
   width: 60px;
   height: 50px;
   margin-left: 190px;
   }

.wrapper.collapse .main-content {
  
   margin-left: 120px;
   }



#check {
    display: none;
}

.wrapper .main-content {
    width: (100% - 450px);
   
    height: 100%;
    margin-top: 80px;
    margin-left: 250px;
    padding: 15px;
    overflow: visible;
    


}

/* AQUI EMPIEZA EL CONTENIDO */

.main-content p {
    font-size: 30px;

}

.linea {
  border-top: 1px solid;
  height: 2px;
  padding: 0;
  max-width: 1600px;
  min-width: 500px;
  width: 100%;
  margin: 20px auto 0 auto;
  border-color: #E6E6E6;
}



table{
  border-collapse: collapse;
  font-size: 12pt;
  font-family: 'arial';
  width: 90%;
  margin-left: 20px;

}
table th{
  text-align: left;
  padding: 10px;
  background: #0500bb;
  color: #fff;
}
table tr:nth-child(odd){
  background: #fff;

}

table td{
  padding: 11px;
}

.link_ver{
  color: #0ca4ce;
}

.link_edit{
  color: #c90e14;
}
.borderfade ul li{
  list-style-type: square;
  text-align: left;
}
.borderfade a {
  
  padding: 10px;
  color: #042e29;
  font-weight: 700;
  text-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 20px;
  text-decoration: none;
}

.borderfade a:before, .borderfade a:after {
 
  left: 0;
  position: static;
  width: 100%;
  height: 2px;
  background:#042e29;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}
.borderfade a:before {
  top: 0;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}
.borderfade a:after {
  bottom: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}
.borderfade a:hover, .borderfade a:focus {
  color: #559B93;
}
.borderfade a:hover:before, .borderfade a:hover:after, .borderfade a:focus:before, .borderfade a:focus:after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}



