*{
    margin: 0;padding: 0;box-sizing: border-box;list-style: none;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #221f1f;
}
.wrapper{
    width: 70vw;
    padding: 3rem 2rem;
    background: #e8e9a1;
    position: relative;
}
.wrapper .icon{
    width: 70px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right,#e8e9a1 70%, transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bolder;
    cursor: pointer;
    user-select: none;
    padding-right: 1.5rem;
}

.wrapper .icon:last-child{
    left: calc(100% - 70px);
    background: linear-gradient(to left,#e8e9a1 70%, transparent);
    padding-left: 2rem;
}
.tap_box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
    overflow: hidden;
    scroll-behavior: smooth;
}
.tap_box.dragging{
    scroll-behavior: auto;
    cursor: grab;
}
.tap_box::-webkit-scrollbar{
    height: 0;
}
.tap_box .tap{
    white-space: nowrap;
    user-select: none;
    padding: 1rem;
    background: #78d1df;
    color: #221f1f;
    font-weight: bolder;
}