.sense7-product-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    position: relative;
}

.sense7-product-gallery__thumbs {
    height: 100%;
}
.sense7-product-gallery__thumbs img {
    max-width: 100%;
    width: 5.8rem;
    height: 5.8rem;
    object-fit: cover;
    border-radius: var(--space-xs);
}

.sense7-product-gallery__photos {
    width: 100%;
    grid-column: 2 / span 6;
}
.sense7-product-gallery__photos img {
    max-width: 100%;
    max-height: 680px;
    margin: 0 auto;
}

li.splide__slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.sense7-product-gallery__thumbs .splide__track--nav > .splide__list > .splide__slide {
    background-color: #fff !important;
    background-size: contain !important;
}

.splide__track--nav > .splide__list > .splide__slide {
    border: 3px solid transparent;
    cursor: pointer;
    border-radius: var(--space-xs);
    opacity: 0.5;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
    border-color: var(--primary);
    opacity: 1;
}

.oxy-sense7-slide  {
    list-style: none;
}

@media (max-width: 768px) {
    .sense7-product-gallery {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .sense7-product-gallery__thumbs {
        display: none;
    }
}

.splide__arrow {
    background: var(--accent) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACSSURBVHgB7ZTBDYAgDEWLcQ9gFCd3FGESbA0HRRP7SQgceBeNaf/TWiWa9MYgxdba42oyZguMpmchHJdS2h2jKYYEcud8CIgEGpEgoRIupyL7GxcsQCVVAkRSLdBK1rIpr6IjBRz+8GWZv1+sWVOI1xPEGD0p+RpRWTPmS266pk0/NDRcgLYIDYcFmYD8rif9OQEZ6HS2qu86mwAAAABJRU5ErkJggg==) no-repeat scroll 50% 50% / 2.4rem 2.4rem;
    width: 5.6rem;
    height: 5.6rem;
    opacity: 1;
    background-color: var(--accent) !important;
    transform-origin: center center;
    transform: translateY(0);
}

.splide__arrow--prev {
    left: 0;
    rotate: 180deg;
}