:root {
    --green: #4b863d;
    --red: #b3282c;
}

.tabs-style ul {
    list-style: none;
}
.tabs-style .items-box {
    display: flex;
    margin-bottom: 26px;
}
.tabs-style img {
    width: auto;
    height: 7vw;
}
.tabs-style .item-img {
    padding: 15px;
}
.tabs-style .item-img img {
    border-radius: 50%;
}

.tabs-style .filter-menu > li {
    display: inline-block;
    padding: 15px 28px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.tabs-style .filter-menu > li:hover,
.tabs-style .filter-menu > li.current {
    background: var(--green);
    border-radius: 50px;
}
.tabs-style .filter-item {
    display: flex;
    flex-wrap: wrap;
}
.tabs-style .filter-item > li {
    width: 100%;
    padding: 2px;
    float: left;
}
.tabs-style .item-content {
    width: 100%;
}
.tabs-style .item-content ul {
    display: flex;
    flex-wrap: wrap;
}
.tabs-style .item-content ul li {
    margin: 0 15px 0 0;
    color: #2b2c2d;
    border-bottom: 1px dotted;
}

.tabs-style .filter-item > li.active {
    width: 50%;
    padding: 2px;
    transition: all 0.5s ease;
}

.tabs-style .filter-item > li.delete {
    width: 0%;
    padding: 0;
    display: none;
    transition: all 0.5s ease;
}

@media screen and (min-width: 768px) {
    .tabs-style .filter-item > li.active,
    .tabs-style .filter-item > li {
        width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .tabs-style .filter-item > li.active,
    .tabs-style .filter-item > li {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .tabs-style .menu-tabbing ul {
        background: #2b2c2d !important;
        border: 0;
    }
}
