/**
 * @file
 * Sliders thumbs style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
/* HEADING */
/* TEXT & CONTENT */
/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.slider-thumbs .swiper {
  width: 100%;
  height: auto;
  padding-bottom: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.slider-thumbs .swiper-slide {
  background-position: center;
  background-size: cover;
}
.slider-thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-thumbs .swiper-slide.type-ext-showin3d .showin3d-iframe,
.slider-thumbs .swiper-slide.type-ext-showin3d iframe {
  max-width: 100%;
  max-height: 450px;
}
@media (max-width: 575.98px) {
  .slider-thumbs .swiper-slide.type-ext-showin3d .showin3d-iframe,
  .slider-thumbs .swiper-slide.type-ext-showin3d iframe {
    max-height: 350px;
  }
}
@media (min-width: 768px) {
  .slider-thumbs .swiper-group-media .type-ext-image img {
    width: 80%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }
}
.slider-thumbs .swiper-group-media .type-ext-video {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 1.5rem;
  background-color: #000;
}
.slider-thumbs .swiper-group-thumbs {
  box-sizing: border-box;
  height: 20%;
  padding: 10px 0;
}
.slider-thumbs .swiper-group-thumbs .swiper-slide {
  width: 25%;
  max-width: 5rem;
  height: 100%;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0.4;
}
.slider-thumbs .swiper-group-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #008444;
}

/*# sourceMappingURL=slider-thumbs.css.map */
