.sv-simple-slider {
  --grid-gap: 10px;
}

.slider-items,
.slider-thumb,
.slider-is-modal {
   background-color: #fff;
}

.slider ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider-content {
  max-height: 100%;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider img {
  display: block;
}

.slider-items {
  max-height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

.slider-items::-webkit-scrollbar {
  display: none;
}

.slider-items > * {
  -webkit-animation: fade-in 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.slider-items > *:not(.active) {
  display: none;
}

.slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  cursor: pointer;
  color: #000;
  padding: 8px 40px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-nav svg {
  display: block;
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
}

.slider-nav-next {
  left: unset;
  right: 0;
  padding: 8px 8px 8px 40px;
}

.slider-nav [stroke*="#"],
.modal-slider-close [stroke*="#"] {
  stroke: currentcolor;
}

.slider-indicators {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-indicators > * {
  background-color: transparent;
  border-style: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.4s ease;
  margin: 0 7px;
}

.slider-indicators > *:after {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-indicators > *.active:after {
  background-color: #fff;
}

.slider-thumbs {
  margin: 20px 0 0 -10px;
}

@media only screen and (max-width: 600px) {
  .slider-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.slider-thumbs .active img {
  box-shadow:  0 0 0 1px #333;
}

.slider-is-modal .slider-thumbs {
  display: none;
}

.slider-thumb {
  width: calc(10% - calc(calc(var(--grid-gap) * 9) / 10));
  max-width: 100px;
  margin-left: 10px;
  display: inline-block;
  cursor: pointer;
}

.slider-thumb img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100px;
  pointer-events: none;
}

@media only screen and (min-width: 0px) {
  .slider-items {
    display: grid;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slider-items > * {
    scroll-snap-align: center;
  }

  .slider-items > *:not(.active) {
    display: block;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 50%;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 50%;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes kenburns-top {
  0% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16%;
  }
  100% {
    transform: scale(1.25) translateY(-15px);
    transform-origin: top;
  }
}

@keyframes kenburns-top {
  0% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16%;
  }
  100% {
    transform: scale(1.25) translateY(-15px);
    transform-origin: top;
  }
}

.slider-is-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal-slider-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-direction: column;
  display: none;
}

.slider-is-modal .modal-slider-close {
  display: flex;
}

.modal-slider-close span {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.modal-slider-close:hover span {
  opacity: 1;
}

.modal-slider-close svg {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
}

.page-width {
  max-width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

*:before, *:after {
  box-sizing: inherit;
}

.slider-object-fit-contain .slider-content img {
  object-fit: contain;
}

.slider-object-fit-cover .slider-content img {
  object-fit: cover;
}

.slider-with-next-prev-visible-on-hover .slider-nav {
   display: none
}
.slider-with-mouseover .slider-nav,
.slider-is-modal .slider-nav {
   display: flex
}
.slider-first-slide .slider-nav:not(.slider-nav-next),
.slider-last-slide .slider-nav-next {
   opacity: 0.3;
}

.slider-with-visible-modal,
.slider-with-visible-modal body {
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .slider-nav,
  .slider-with-mouseover .slider-nav,
  .slider-is-modal .slider-nav {
    display: none
  }
}