.wrapper{
    width: 100%;
}

.scroll-wrapper{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-box {
    padding: 0 2px 0 2px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3rem;
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nav-button.next,
.nav-button.prev {
    position: absolute;
    border-radius: 0.5rem;
    top: 0;
    bottom: 0;
    z-index: 5;
    border: none;
    background-color: transparent;
    opacity: 0;
    transition: all 150ms ease-in-out;
}

.nav-button.next {
    right: 0;
    width: 4rem;
    background-image: linear-gradient( 90deg, rgba(240, 240, 240, 0) 0%, rgba(150, 150, 150, 1) 60% );
    translate: 100% 0;
}

.nav-button.prev {
    left: 0;
    width: 4rem;
    background-image: linear-gradient( 90deg, rgba(150, 150, 150, 1) 40%, rgba(240, 240, 240, 0) 100% );
    translate: -100% 0;
}

.nav-button img {
    height: 2rem;
    width: 2rem;
}


.scroll-box::-webkit-scrollbar{
    display: none;
}

.scroll-box button {
    display: flex;
    padding: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 0.5rem;
    transition: 150ms ease all;
}

.scroll-box button:hover{
    background-color: #333;
    color: #efefef;
}

.scroll-box button a {
    color: #333;
}

.scroll-box button a:hover,
.scroll-box button:hover a{
    color: #efefef;
}

.show {
    opacity: 1 !important;
    translate: 0 0 !important;
}