.carousel {
    color: #fff;
    --carousel-button-bg: rgba(0,0,0,.6);
    --carousel-button-svg-width: 30px;
    --carousel-button-svg-height: 30px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-border-radius: 2px
}

.carousel .carousel__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 320px;
    padding: 0 7.5px;
    position: relative
}

.carousel .carousel__slide img {
    height: 100%;
    border-radius: 8px;
}

.carousel .carousel__slide video {
    height: 100%
}

.carousel .carousel__slide .play {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    display: block;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat
}

.carousel .carousel__viewport {
    overflow: hidden;
    width: 100%
}

.carousel .carousel__viewport .carousel__track {
}

.carousel .carousel__viewport::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.carousel .carousel__viewport::-webkit-scrollbar-track {
    box-shadow: 1px 1px 5px rgba(0,0,0,.3) inset;
    border-radius: 8px
}

.carousel .carousel__viewport::-webkit-scrollbar-thumb {
    background-color: #7a7a7a;
    border-radius: 8px
}

.carousel .carousel__viewport::-webkit-scrollbar-thumb:hover {
    background-color: #525252
}

.carousel .carousel__dots {
    height: 8px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0,0,0,.3) inset;
    align-items: center
}

.carousel .carousel__dots .carousel__dot {
    height: 8px!important;
    width: initial!important;
    flex-shrink: 1;
    flex-grow: 1
}

.carousel .carousel__dots .carousel__dot.is-selected {
    height: 8px;
    border-radius: 5px;
    background-color: #7a7a7a
}

.carousel .carousel__dots .carousel__dot::after {
    background-color: transparent!important
}