.summary {
    color: white;
    position: relative;
    display: block;
    padding: 10px 10px 10px 30px;
    margin-bottom: 1px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    background-color: #95cf4a;
    transition: 0.2s;

    &:hover {
        background-color: #aecea9;
    }

    &::-webkit-details-marker {
        display: none;
    }

    &:before {
        content: "";
        position: absolute;
        display: block;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.2s;
        left: 0.1em;
        width: 1.5em;
        height: 1.5em;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='8' d='m19 12l12 12l-12 12'/%3E%3C/svg%3E") no-repeat center / contain;

    }


}

.details+.details {
    margin-top: 10px;
}

.details[open] {
    .summary {
        &:before {
            transform: translateY(-50%) rotate(90deg);
        }
    }

    .content {
        animation: fadeIn 0.5s ease;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}