
.acordeon_content {
    display: none;
    padding: 1rem 1rem;
    border: 1px solid #f2f2f2;
}

.acordeon_title h2 {
    font-size: 17px;
    color: var(--white);
    padding: 1rem 1rem;
    font-weight: bold;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.acordeon_title {
    background: #3D3D3D;
}

.acordeon_title.active {
    background: var(--red);
}

.acordeon_title h2:after {
    content: url(/Portals/0/skins/ccma/images/iconos/arrow-down.svg);
    filter: invert(1);
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    transition: all .3s;
}

.acordeon_title.active h2:after {
    transform: rotate(180deg);
}

.acordeon__list .acordeon__item:first-child .acordeon_title {
    border-radius: 20px 20px 0 0 ;
    }

.acordeon__list .acordeon__item:last-child .acordeon_title,
.acordeon__list .acordeon__item:last-child .acordeon_title.active + .acordeon_content {
    border-radius: 0 0 20px 20px ;
    }
.acordeon__list .acordeon__item:last-child .acordeon_title.active  {
    border-radius: 0  ;
    }

.acordeon__list {
    margin: 3rem auto;
}

.acordeon_content li {
    list-style: disc !important;
}

.acordeon_content li::marker {
    color: var(--red) !important;
    font-size: 19px;
}