.tags-tabber__tag {
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: rgb(243, 243, 243);
    border-radius: 2px;
    padding-right: 10px;
    padding-left: 10px;
    display: inline-block;
}
.tags-tabber__checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tags-tabber__hidden {
    display: inline-block;
    width: 0;
    height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease-in-out;
    margin: 0;
}

.tags-tabber__toggle {
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    width: max-content;
    color: #0094ce;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 500;
    display: inline;
}

.tags-tabber__checkbox:checked ~ .tags-tabber__hidden {
    max-height: 1000px;
    opacity: 1;
    margin-top: 8px;
    display: inline;
}

.tags-tabber__more,
.tags-tabber__less {
    transition: opacity 0.2s ease;
}

.tags-tabber__less {
    opacity: 0;
    position: absolute;
    display: inline-block;
    width: 0;
}

.tags-tabber__checkbox:checked ~ .tags-tabber__toggle .tags-tabber__more {
    display: inline-block;
    opacity: 0;
    width: 0;
}

.tags-tabber__checkbox:checked ~ .tags-tabber__toggle .tags-tabber__less {
    opacity: 1;
    position: static;
}
