.carousel {
    display: block;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
    height: 60px;
}

.scroll-container {
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: scroll;
    scroll-behavior: smooth;
    /* scroll-snap-type: both mandatory; */
    scroll-snap-type: none;
    /* overscroll-behavior-y: contain; */
    height: 100%;
}

.slide {
    /* width: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 0 var(--padding);
    margin: 0;
    position: relative;
}

.slide:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 10px;
    height: 40px;
    width: 1px;
    background: var(--midgrey);
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.scroll-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.scroll-container {
    /* IE and Edge */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none;
}