/*

  This file contains some very basic but very necessary custom CSS for the plugin.
  You will want to overwrite what you need to customize inside of your Wordpress theme CSS.

*/
.swipers {
  height: 700px;
}

.swiper-container .background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-container .background-mobile {
  display: none;
}

@media (min-width: 991px ) {
  .swipers.hide-thumbs-mobile .swiper-button-prev,
  .swipers.hide-thumbs-mobile .swiper-button-next {
    display: none;
  }
}

@media (max-width: 991px) {

  .swipers.hide-thumbs-mobile {
    height: 500px;
  }

  .swipers.hide-thumbs-mobile .gallery-top {
    height: 100%;
  }

  .swipers.hide-thumbs-mobile .gallery-thumbs {
    display: none;
  }

  .swiper-container .background-mobile {
    display: block;
  }

  .swiper-container .background-desktop {
    display: none;
  }

}

.swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.gallery-top {
  height: 80%;
  width: 100%;
}

.gallery-top .swiper-slide {
  width: 100%;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 0;
}

.gallery-thumbs .slide-contents p {
  margin-bottom: 0;
  text-align: center;
}

.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.slide-contents {
  position: absolute;
}

.slide-contents.default{
  left: 15px;
  top: 15px;
}