.accordion[data-open="false"] .accordion-content {
    display: none;
}

.accordion-switcher[data-accordion-switcher-type="button"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size-2);
    min-width: var(--size-2);
    height: var(--size-2);
    min-height: var(--size-2);
    padding: var(--space-2);
    cursor: pointer;
}

.accordion-switcher[data-accordion-switcher-type="button"] span {
    width: var(--size-full);
    height: var(--size-full);
    background-image: url('../../assets/icons/nose-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    transform: rotate(-90deg);
    transition: var(--time-3);
}

.accordion[data-open="true"] .accordion-switcher[data-accordion-switcher-type="button"] span {
    transform: rotate(0deg);
}