/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

.wrapper {
    padding: 28px;
    position: relative;
    overflow-x: hidden;
    /* max-width: 1000px; */
    max-width: 100%;
    background: #fff;
    border-radius: 13px;
}
.wrapper .icon {
    position: absolute;
    top: 0;
    height: 100%;
    width: 120px;
    display: flex;
    align-items: center;
}
.icon:first-child {
    left: 0;
    display: none;
    background: linear-gradient(90deg, #fff 70%, transparent);
}
.icon:last-child {
    right: 0;
    justify-content: flex-end;
    background: linear-gradient(-90deg, #fff 70%, transparent);
}
.icon i {
    width: 55px;
    height: 55px;
    cursor: pointer;
    font-size: 1.2rem;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
}
.icon i:hover {
    background: #efedfb;
}
.icon:first-child i {
    margin-left: 15px;
}
.icon:last-child i {
    margin-right: 15px;
}
.wrapper .tabs-box {
    display: flex;
    gap: 12px;
    list-style: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.tabs-box.dragging {
    /* scroll-behavior: auto; */
    cursor: grab;
}
.tabs-box .tab {
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    /*background: linear-gradient(
        88deg,
        rgba(28, 97, 89, 0.9) 0%,
        rgb(102, 148, 170) 46%
    );*/
    background-color:#008862;
    padding: 10px 18px;
    margin-bottom: 4px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
}
.tabs-box .tab:hover {
    background-color:#008862;
}
.tabs-box.dragging .tab {
    user-select: none;
    pointer-events: none;
}
.tabs-box .tab.active {
    color: #000000;
    /* background: #5372f0; */
    /* border-color: transparent; */
}

/* @media screen and (min-width: 360px) {
    .tabs-box {
        margin-left: 0px;
        max-width: 1000px;
        overflow: auto;
        overflow-y: hidden;
        overflow-x: scroll;
    }
} */
@media only screen and (max-width: 390px) {
    .tabs-box {
        margin-left: 0px;
        max-width: 1000px;
        overflow: auto;
        overflow-y: hidden;
        overflow-x: scroll;
    }
}
@media screen and (min-width: 1200px) {
    .tabs-box {
        margin-left: 260px !important;
        max-width: 100%;
        position: fixed;
    }
}
