.select-options li.active{
    background-color: var(--primary-hover-color);
    border-bottom: 1px solid white;
}
.select-options {
    /* display: none; */
}
.select-options.active {
    /* display: block; */
}
.select-options-div.has-selected-options::before{
    content: attr(data-options_count);
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: var(--primary-hover-color);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    left: 0;
    color: white;
    top: -5px;
    z-index: 55;
}