*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wrapper{
    max-width: 1000px;
    margin: auto;
    box-shadow: 0 0 10px 8px #00000012;
/*			padding: 10px;*/
    min-height: 100vh;
}
.scroll-tab-container{
    background: black;	
    margin: 16px auto;
    border-radius: 4px;
    font-family: sans-serif;
    overflow: hidden;
    position: relative;
}
.scroll-tab-container svg{
    width: 24px;
    height: 24px;
    padding: 8px;
    cursor: pointer;
    color: white;
    transition: 0.2s;
    pointer-events: auto;
}
.scroll-tab-container ul{
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style:none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.scroll-tab-container ul::-webkit-scrollbar{
    display: none;
}
.scroll-tab-container ul.dragging{
    scroll-behavior: auto;
}

.scroll-tab-container ul.dragging a{
    pointer-events: none;
}

.scroll-tab-container a{
    color: #fff;
    text-decoration: none;
    background: #333; /*grey color */
    padding: 4px 24px;
    display: inline-block;
    border-radius: 4px;
    user-select: none;
    white-space: nowrap;
}

.scroll-tab-container a.active{
    background: #fff;
    color: black;
}
.scroll-tab-container .left-arrow,
.scroll-tab-container .right-arrow{
    position: absolute;
    height: 100%;
    width: 100px;
    top: 0;
    display: none;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;
}
.scroll-tab-container .right-arrow{
    right: 0;
    justify-content: flex-end;
    background: linear-gradient(to left, #000 50%,transparent);
}
.scroll-tab-container .left-arrow{
    background: linear-gradient(to right, #000 50%,transparent);
}

.scroll-tab-container svg:hover{
    background: #333;
    border-radius: 50%;
}

.scroll-tab-container .left-arrow.active,
.scroll-tab-container .right-arrow.active{
    display: flex;
}

.tab-body{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.tab-body > div{
    height: 300px;
}

.tab-body img{
    width: 100%;
    height: 100%;
}