.accordeon_ui {
    display: flex;
    flex-direction: column;
}

.accordeon_ui > .entry {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-sep);
    max-height: 20px;
    transition: max-height 0.2s cubic-bezier(0, 1, 0, 1);
}

.accordeon_ui > .entry.open {
    max-height: 500px;
    transition: max-height 0.4s linear;
}

.accordeon_ui > .entry > .t {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordeon_ui > .entry > .t img {
    width: 20px;
    height: 20px;
}

.accordeon_ui > .entry > .t > :nth-child(3),
.accordeon_ui > .entry.open > .t > :nth-child(2) {
    display: none;
}
.accordeon_ui > .entry.open > .t > :nth-child(3) {
    display: block;
}

.accordeon_ui > .entry > .c {
    opacity: 0;
    transition: opacity 0.1s cubic-bezier(0, 1, 0, 1);
    overflow: hidden;
}

.accordeon_ui > .entry.open > .c {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
