.hummingbird-treeview,
.hummingbird-treeview *
{
    list-style: none;
    font-size: 20px;
    line-height: 24px;
}

    .hummingbird-treeview label {
        font-weight: normal;
        padding: 8px !important;
        background: none !important;
        margin-right: 16px;
        position: relative;
    }

    .hummingbird-treeview .fa-minus {
        background: white !important;
        color: #c66b6b !important;
    }
    .hummingbird-treeview .fa-plus {
        background: white !important;
        color: #577757 !important;
    }


    .hummingbird-treeview input[type=checkbox] {
        width: 16px;
        height: 16px;
        padding: 0px;
        margin: 0px;
        right: -14px;
        top: 11px;
    }

.hummingbird-treeview ul:not(.hummingbird-base) {
    display: none;
}

    .hummingbird-treeview .fa {
        background: #80808026;
        padding: 0px;
        height: 25px;
        width: 26px;
        color: gray;
        font-size: 12px;
        text-align: center;
        border: #dfdfdf 1px solid;
        border-radius: 25px !important;
    }

    .hummingbird-treeview .fas {
        border-radius: 25px !important;
        background: #80808026;
        padding: 0px;

        height: 25px;
        width: 26px;
        color: gray;
        font-size: 12px;
        text-align: center;
        border: #dfdfdf 1px solid;
    }

.hummingbird-base {
    white-space:nowrap;
}

@keyframes counterAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.size-selected-checks {
    font-size: 12px;
    background: #ceffc300;
    padding: 0px 12px;
    border-radius: 10px;
    color: var(--primary-color);
    /* border: #dde2ef 1px solid; */
    position: absolute;
    left: 34px;
    top: 77px;
    height: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .size-selected-checks.show {
        opacity: 1;
        visibility: visible;
        animation: fadeIn 0.5s forwards;
    }

    .size-selected-checks.hide {
        opacity: 0;
        visibility: hidden;
    }

    .size-selected-checks.counter-effect {
        animation: counterAnimation 1s;
    }
