
.aca-wrapper {
    width: 100%;
}

.aca-item {
    border: 1px solid #e7e7e7;
    border-radius: 12px;

    overflow: hidden;

    margin-bottom: 12px;

    background: #fff;

    transition: .2s ease;
}

.aca-item:hover {
    border-color: #dcdcdc;
}

.aca-toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    background: #fff;
    border: none;

    padding: 14px 16px;

    cursor: pointer;

    text-align: left;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

    color: #222;

    transition: .2s ease;
}

.aca-toggle:hover {
    background: #fafafa;
}

.aca-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aca-left::before {
    content: "+";

    width: 18px;
    height: 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    background: #f2f2f2;

    transition: .2s ease;
}

.aca-toggle.active .aca-left::before {
    content: "−";
}

.aca-title {
    display: inline-block;
}

.aca-count {
    font-size: 13px;
    opacity: .6;
    font-weight: 500;
}

.aca-content {
    display: none;

    padding: 0 16px 16px 42px;

    background: #fff;
}

.aca-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.aca-list-item {
    margin-bottom: 8px;
}

.aca-list-item:last-child {
    margin-bottom: 0;
}

.aca-list-item a {
    color: #333;
    text-decoration: none;

    font-size: 14px;

    transition: .2s ease;
}

.aca-list-item a:hover {
    opacity: .7;
    padding-left: 2px;
}

.aca-empty {
    font-size: 13px;
    opacity: .6;
}
.aca-content {
    display: none;
}

.aca-content.show {
    display: block !important;
}