@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Lato:ital,wght@1,300&family=Maven+Pro&family=Merriweather:ital,wght@1,300&family=Noto+Sans+JP:wght@300&family=Nunito+Sans:wght@200&family=Roboto:wght@300;400&family=Source+Sans+Pro:wght@200&family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
*{
    margin:0;
    padding: 0;
    font-family: "Roboto Condensed", sans-serif;
}

.wrapper2{
    max-width: 1000px;
    background: #fff;
    border-radius: 13px;
    overflow-x: hidden;
    padding: 20px;
    position: relative;
}
.wrapper2 .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: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background: #d8d5f2;
}
.icon i:hover{
    background: #efedfb;
}
.icon:first-child i{
    margin-left: 15px;
}
.icon:last-child i{
    margin-right: 15px;
}
.wrapper2 .tabs-box{
    display: flex;
    list-style: none;
    gap: 12px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.wrapper2 .tabs-box .tab img{
    height: 150px;
    width: 150px;
}
.tabs-box.dragging{
    scroll-behavior: auto;
    cursor: grab;
}
.tabs-box .tab{
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    background: #f5f4fd;
    padding: 7px 25px;
    border: 1px solid #d8d5f2;
}
.tabs-box.dragging .tab{
    user-select: none;
    pointer-events: none;
}
.tabs-box .tab.active{
    color:#fff;
    background-color: rgb(127, 127, 206);
    border-color: transparent;
}
