.accordion {
  background-color: transparent;
  color: #1D1D1D;
  cursor: pointer;
  padding-left: 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 21px;
  font-family: 'Inter-Regular';
  transition: 0.4s;
  border-bottom: 1px solid #C7DED0;
}
.accordion a{
  color: #6E6F71;
}
.activeAccordion{
  /*border: none;*/
}
.activeAccordion a{
  color: #008037;
  font-size: 21px;
  font-family: 'Inter-Regular';
  font-weight: 600;
}
.activeAccordion, .accordion:hover {
  color: #03865E;
  
}

.accordion:after {
  font-family: "Font Awesome 5 Free";
  content: '\f077';
  font-size: 12px;
  color: #1D1D1D;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.activeAccordion:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: #1D1D1D;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  
}
.activePanel{
  color:#03865E;
  background-color: #F8F8F8;
 padding: unset;
}
.item_menu_productos{
  /* border-bottom:1px solid #A5A5A5; */
  font-family:'Inter-Regular';
  color:#1D1D1D;
  font-size:14px;
  padding-top:10px;
  padding-bottom:10px;
  text-decoration: none;
  word-wrap: break-word;
  text-transform: uppercase;
  border-top: 1px solid white;
  background-color: white;
  border-bottom: 1px solid #D8D8D8;
}
.item_menu_productos:hover{
  color: #212121;
  text-decoration: underline;
}
.item_menu_productos_active{
  /* border-bottom:1px solid #A5A5A5; */
  font-family:'Inter-Bold';
  color: #1D1D1D;
  font-size:16px;
  padding-top:10px;
  padding-bottom:10px;
  text-decoration: none;
  word-wrap: break-word;
  text-transform: uppercase;
  background-color: white;
  border-bottom: 1px solid #D8D8D8;
}
.item_menu_productos_active:hover{
  color: #505050;
  text-decoration: none;
 
}