.dropdown-content{
    margin: 0;
    padding-top: 10px;
    padding-left: 0;
    list-style: none;
}
.dropdown-content hr{
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    margin-top: 1rem;
}
 
.title-dropbox-content{
    display: flex;
    flex-direction: column;
}
.title-dropbox{
    font-family: Roboto-Medium;
    color: #2c2044;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
 
.dropdown-list{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 10px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}
 
.dropdown-list.show{
    max-height: 1000px;
    opacity: 1;
    margin-top: 10px;
}
 
.dropdown-list li a{
    font-family: Roboto-Medium;
    color: #2c2044;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.dropdown-list hr{
    margin: 5px 0;
}

.dropdown-list li a:hover{
    color: #10cbb4;
    cursor: pointer;
}

.icon_dropdown {
  display: inline-block;
  font-family: "yape-icon", sans-serif !important;
  vertical-align: middle;
}

 
.title-dropbox .icon_dropdown{
    display:block;
    content:         "\f105";
    font-family:     "yape-icon", sans-serif;
    transform-origin:center;
    transition:      .5s transform ease;
    will-change:     transform;
    font-size:       16px;
    color:           #2c2044;
}

.icon-yape.icon_dropdown::before{
    display:block;
    content:         "\f10b";
    transform: rotate(90deg);
    transform-origin:center;
    transition:      .5s transform ease;
    will-change:     transform;
    font-size:       16px;
    color:           #2c2044;
}

.title-dropbox .icon_dropdown::before {
  display: block;
  content: "\f10b";
  transform: rotate(90deg);
  transform-origin: center;
  transition: 0.5s transform ease;
  will-change: transform;
  font-size: 16px;
  color: #2c2044;
}

.accordion .panel-title .title-accordion {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #e2dfe8;
}
 
.accordion .panel-title .title-accordion {
  padding: 15px 15px 15px 0;
}