.carousel_sub img {
    aspect-ratio: 1/1;
    width: 125px;
    height: 125px;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    margin-bottom: 16px;
    border-radius: clamp(0px, ((100vw - 4px) - 100%) * 9999, 4px);
}

.carousel_sub .dragging a {}

.carousel_sub .carousel__wrapper {
    position: relative;
    margin-bottom: 24px;
}

@media only screen and (min-width: 1180px) {
    .carousel_sub .carousel__wrapper.has-arrows .carousel__content {
        justify-content: space-between;
    }
}

@media only screen and (min-width: 1180px) {
    .carousel_sub .carousel__wrapper.has-arrows .carousel__arrows {
        display: flex;
    }
}

.carousel_sub .carousel__header {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.carousel_sub .carousel__content {
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: grid;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding: 0;
    margin: 0;
    grid-gap: 24px;
    grid-auto-flow: column;
    list-style: none;
}

.carousel_sub .carousel__content::-webkit-scrollbar {
    display: none;
}

.carousel_sub .carousel__item .carousel__description {
    width: 100%;
}



.carousel_sub .carousel__controls {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 24px;
}

.carousel_sub .carousel__arrow {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border: 0;
}

.carousel_sub .carousel__arrow:before {
    content: "";
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=");
    background-size: contain;
    filter: brightness(3);
    display: block;
    width: 18px;
    height: 12px;
    cursor: pointer;
}

.carousel_sub .carousel__arrow.arrow-prev:before {
    transform: rotate(90deg);
}

.carousel_sub .carousel__arrow.arrow-next:before {
    transform: rotate(-90deg);
}

.carousel_sub .carousel__arrow.disabled::before {
    filter: brightness(2);
}