.slideshow .flexslider {
    border: none;
}
.slideshow .flexslider ul,
.slideshow .fs-carousel ul{
    margin: 0;
}
.slideshow .flexslider ul li,
.slideshow .fs-carousel ul li{
    list-style-type: none;
    margin: 0;
}
.slideshow .flexslider ol,
.slideshow .fs-carousel ol{
    list-style-type: none;
    margin: 0;
}
.slideshow .flexslider img, .slideshow .fs-carousel img {
    border: 0;
}
.flexslider .slide {
    margin-bottom: 10px;
}
.slideshow .flexslider a:hover {
    border-bottom: 0;
}
.slideshow .flex-direction-nav a {
    overflow: visible;
}
.slideshow a.flex-next:hover, .fs-carousel a.flex-next:hover {border-bottom: none;}

.fs-carousel {
    position: relative;
}

.slidesthumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: hidden;
    /*padding: 0 44px 8px 44px;*/
    /*margin: 0 0 10px 0;*/
    list-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.slidesthumbs li {
    flex: 0 0 auto;
    cursor: pointer;
}

.slidesthumbs .slidethumb {
    display: block;
    /*width: 130px;*/
    /*height: 130px;*/
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0.55;
}

.slidesthumbs .slidethumb:hover {
    opacity: 0.95;
}

.slidesthumbs li.is-active .slidethumb {
    opacity: 1;
    box-shadow: 0 0 0 2px #000;
}

.thumbs-nav {
position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.57);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.thumbs-nav:hover {
    background: rgba(0,0,0,0.85);
}

.thumbs-nav--prev {
    left: 6px;
}

.thumbs-nav--next {
    right: 6px;
}

.thumbs-nav.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.fs-carousel {
    position: relative;
    /*bottom: 125px;*/
}
.fs-carousel ul.slides li img {cursor: pointer; width: 100%; height: auto; opacity: 0.9;}
.fs-carousel ul.slides li img:hover {opacity: 1;}
.fs-carousel:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.fs-carousel:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.fs-carousel:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.fs-carousel:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

