


.cuerpototal {
  
  width: 100%;
  height: 99vh;
  margin: 0;
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
flex-flow: nowrap;
}



/*  ASIDE MENU  */

.cuerpoizquierdo {
	background-color: var(--menu-color);
	width: 14%;
    margin: 0;
    display:flex;
    flex-direction: column;
    justify-content: left;
	align-content: flex-start;
	align-items: flex-start;


    min-width: 160px;
	
}

.cuerpoizquierdo a {
 color: var(--link-color);
}

.cuerpoizquierdo a:hover {
	color: var(--link-hover-color);
}

.menu-avatar-user {
	padding: 10px;
}

/*

.menu-izquierdo {
	background-color: var(--menu-color);
    padding-left: 8px;
}
*/


/*  SECCION   */
.cuerpoderecho {
  width: 84%;
  background: #F4F6F7;
  display: flex;
  flex-direction: row;
  flex-flow: nowrap;
  justify-content: center;
  align-items: center;
}



/****    CUERPO     ******/


.fondocuerpo {

  background-color: var(--background-cuerpo-color);
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-start;
  flex-flow: nowrap;
}





.secfeed {
  width: 78%;
  min-width: 100px;
  background: #F4F6F7;
  margin-left: 8px;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}


/*       Lado Derecho   */

.ladoderecho {
  background-color: red;
	
  width: 22%;
  min-width: 100px;	
	
}


.cuerpo {
    width: 60%;
    min-width: 590px;
    margin: 0 auto;
    
}



.fondofeed {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  flex-flow:wrap;
  background-color: var(--background-feed-color);
  
}


.titulo2 {
	width: 100%;
}



.menu-51 {
  background-color: transparent;
  width: 160px;
  height: 54px;
  text-align: left;
  border: 1px solid #266DB6;
  box-sizing: border-box;
  color: #00132C;
  font-family: "Avenir Next LT W01 Bold",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 40px 3px 4px 16px;
  margin: 6px 0 6px 14px;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.menu-51:hover,
.menu-51:active {
  outline: 0;
}

.menu-51:hover {
  background-color: transparent;
  cursor: pointer;
}

.menu-51:before {
  background-color: #D5EDF6;
  content: "";
  height: 120px;
//  height: calc(100% + 3px);
  position: absolute;
  right: -7px;
  top: -9px;
  transition: background-color 300ms ease-in;
  width: 100%;
  z-index: -1;
}

.menu-51:hover:before {
  background-color: #6DCFF6;
}

@media (min-width: 768px) {
  .menu-51 {
    padding: 16px 2px;
  }
}