.slider-right {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100vh;
    bottom: 0%;
    width: 10rem;
    z-index: 999999;
    margin-left: 1rem;
}

.slider-left {
    position: absolute;
    top: 0%;
    right: 0%;
    height: 100vh;
    bottom: 0%;
    width: 10rem;
    z-index: 999999;
    margin-left: 1rem;
}

.slider-right *:hover>* {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.slider-left *:hover>* {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.hDGOOH {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ldCYpm {
    white-space: nowrap;
    overflow: hidden;
    padding: 0.5rem 0px;
    display: flex;
    flex-direction: column;
}

.jFbqNG {
    position: relative;
    height: 8rem;
    width: 8rem;
    overflow: hidden;
    margin: 0px 0.2rem;
    bottom: 0px;
    display: grid;
    place-content: center;
    opacity: 0.8;
    transition: opacity 125ms ease-in-out 0s;
}

.jFbqNG img {
    max-width: 100%;
    max-height: 100%;
    background-color: aqua;
    object-fit: cover;
}

.kVBCqT-hori {
    display: block;
    animation: 120s linear 0s infinite normal none running anim1_hor;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

.kjzvbf-hori {
    display: block;
    animation: 120s linear 0s infinite normal none running anim2_hor;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

.jwsRRb-hori {
    display: block;
    animation: 120s linear 0s infinite normal none running anim3_hor;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

@keyframes anim1_hor {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes anim2_hor {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes anim3_hor {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(200%);
    }
}

.more_button {
    background-color: rgb(161, 161, 161);
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 99999;
    border-radius: 50%;
    bottom: 0%;
    left: 150px;
    overflow: hidden;
    margin: 50px;
}


.slider__track-container {
    width: 100%;
    height: 100%;
}

.slider__track {
    position: relative;
    height: 100%;
}

.slider__track .slide {
    position: absolute;
    display: flex;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    cursor: pointer;
    opacity: 0;
    background-color: aqua;
    transition: all cubic-bezier(0.48, 1.35, 0.86, 1.22) 1000ms;
}

.slider__track-container {
    overflow: hidden;
}

.slide.show {
    opacity: 1;
    transition: all cubic-bezier(0.48, 1.35, 0.86, 1.22) 1000ms;
}

.slider__track-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}