#ec-wrap-header {
  display:flex; 
  flex-direction: row; 
  justify-content: space-between; 
  align-content: center; 
  width:100%; 
  background: #EEE;
  cursor: pointer;
  margin-bottom: 5px;
}
#ec-wrap-container {
  margin: 0 auto;
  width: 100%;
}	

#ec-wrap-container ul {
  padding: 0 20px 10px 40px;  
}

.ec-wrap-content{		
  max-height: 0px; 
  overflow: hidden;				
  transition: max-height 0.3s ease-in-out;
}

.ec-wrap-content.active{
  max-height: 3000px;
}

li, a, span  {
  font-size: 1.3rem;
}

.icon-alert {			
    width: 50px;
  padding: 0 1rem 0 0;
}

.text-icon-left{
  display:flex;
  flex-direction: row;
  padding-bottom: 2rem;
}

.expand-button {			
  padding: 10px 10px;			
  font-size: 1.5rem;
  font-weight: 100;			
}	

.wrapIcon{   
  width: 25px;
  transition: transform 0.3s ease-in-out; /* Transición suave con duración de 0.5 segundos */						
}		

.section-text{
  font-size: 1.5rem;
  font-weight: 100;
}		

.rotated {
  transform: rotate(90deg);  
}	

.ec-wrap-labels{
  font-weight:400;
  color: #004F5D;
}

@media screen and (max-width: 500px) {

  .text-icon-left{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .icon-alert {			
    width: 40%;
    padding: 1rem;
  }	
  
  .expand-button {			
    font-size: 1.2rem;		
  }			

  .divContentBody{
    padding: 0 2rem;
  }
  
}	