.button-show {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: transparent;
    border: 2px solid #32389c;
    color: #32389c;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 16px;
}

.button-text {
    text-decoration: underline;
    color: #32389c;

}

.button-show:hover {
    background: #32389c;
    color: #fff;
    cursor: pointer;
}

.button-base-list {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 20px;
    border: 1px solid #313FA0;
    padding: 10px;
    border-radius: 5px;
}

.button-base-list:hover {
    cursor: pointer;
}

.button-base-list .button-show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-base-list:not(.collapsed) .icon-btn-open {
    display: none;
}

.button-base-list.collapsed .icon-btn-close {
    display: none;
}