summary {
    list-style-type: none;
    position: relative;
    padding: 10px;
    cursor: pointer;
    color: #333;
    background-color: #f0f0f0;
}

summary:hover {
    color: #333;
    background-color: #ddd;
    border-radius: 5px;
}

summary::after {
    content: url('/img/icons/arrow_down.svg');
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

details[open] summary::after {
    content: url('/img/icons/arrow_up.svg');
}



details>div {
    padding: 0px;
}

details {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.expanded {
    font-size: 18px;
    font-weight: 100;
    line-height: 30px;
    padding-left: 10px;
    padding-top: 10px;
}