.accordion {
    background-color: transparent;
    color: #505050;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 1px solid #DDDDDD;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-family: 'Montserrat-Regular';
    transition: 0.4s;
  }
  
  .activeAccordion, .accordion:hover {
    color: #2C85FB;
    background-color: #F8F8F8;
  }
  
  .accordion:after {
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    font-size: 18px;
    color: #505050;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .activeAccordion:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    color: #505050;
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    
  }
  .activePanel{
    color:#2C85FB;
    background-color: #F8F8F8;
   padding: unset;
  }
  .item_menu_productos{
    /* border-bottom:1px solid #A5A5A5; */
    font-family:'Montserrat-Medium';
    color:#2C85FB;
    font-size:14px;
    padding-top:10px;
    padding-bottom:10px;
    text-decoration: none;
    padding-left: 20px;
    word-wrap: break-word;
    background-color: #F8F8F8;
}
.item_menu_productos:hover{
    color: #212121;
    text-decoration: underline;
}
.item_menu_productos_active{
    /* border-bottom:1px solid #A5A5A5; */
    font-family:'Montserrat-Regular';
    color:#FFFFFF;
    font-size:14px;
    padding-top:10px;
    padding-bottom:10px;
    text-decoration: none;
    padding-left: 40px;
    word-wrap: break-word;
    background-color: #0D215E;
}
.item_menu_productos_active:hover{
    color: #FFFFFF;
    text-decoration: underline;
}