@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.wrapper {
    padding: 35px;
    position: relative;
    overflow-x: hidden;
    max-width: 1000px;
    background: #fff;
    border-radius: 13px;
}
.custom-draggable-wrapper .icon {
    position: absolute;
    top: 0;
    height: 100%;
    width: 120px;
    display: flex;
    align-items: center;
}
.custom-draggable-wrapper .icon:first-child {
    left: 0;
    display: none;
}
.custom-draggable-wrapper .icon:last-child {
    right: 0;
    justify-content: flex-end;
    background: linear-gradient(-90deg, #fff 70%, transparent);
}
.custom-draggable-wrapper .icon i {
    width: 55px;
    height: 55px;
    cursor: pointer;
    font-size: 1.2rem;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
}
.custom-draggable-wrapper .icon:first-child i {
    margin-left: 15px;
}
.custom-draggable-wrapper .icon:last-child i {
    margin-right: 15px;
}
.custom-draggable-wrapper .tabs-box {
    display: flex;
    gap: 12px;
    list-style: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.custom-draggable-wrapper .tabs-box.dragging {
    scroll-behavior: auto;
    cursor: grab;
}
.custom-draggable-wrapper .tabs-box .tab {
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    background: #FFFFFF;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid #000000;
}
.custom-draggable-wrapper .tabs-box .tab:hover{
    background: #000000;
    color: #fff;
}
.custom-draggable-wrapper .tabs-box.dragging .tab {
    user-select: none;
    pointer-events: none;
}
.custom-draggable-wrapper .tabs-box .tab.active{
    color: #fff;
    background: #000000;
    border-color: transparent;
}