.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .swiper-container {
    max-height:500px;
  }
}
.swiper-container-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
}


.swiper-button-next, .swiper-button-prev {
  color: #000;
  width: 35px;left: 0;right: 0;
  margin: auto;
}
.swiper-button-next:after, .swiper-button-prev:after{font-size: 20px;}
.swiper-button-next{bottom: 0;top: inherit;margin: auto; transform: rotate(90deg);}
.swiper-button-prev{top: 0; transform: rotate(90deg);}

.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}
.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.gallery-top {
  position: relative;
  width: 100%;
}
@media (min-width: 480px) {
  .gallery-top {
    width:100%;
    margin-right: 10px;
  }
}

.gallery-thumbs {
  width: 100%;
  padding-top: 10px;
}
@media (min-width: 480px) {
  .gallery-thumbs {
    width: 90px;
    padding: 0;
    min-width: 90px;
  }
}
.gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.gallery-thumbs .swiper-slide {
  width:110px;
  flex-flow: row nowrap;
  opacity: 0.75;
  cursor: pointer;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide img{height: auto;width: 100%;}

@media screen and (max-width:479px) {
  .swiper-container-wrapper{display:block;}
  .swiper-button-next:after, .swiper-button-prev:after{font-size: 20px;}
.swiper-button-next{bottom: 0;top: 0;margin: auto; transform: rotate(0deg);right: 0;left:inherit}
.swiper-button-prev{top: 0; transform: rotate(0deg);bottom:0;margin: auto;left: 0;right: inherit;}
}
