.presets-container.swiper-container {
  margin-left: auto;
  margin-right: auto;
}
.presets-container .swiper-slide {
  background-size: cover;
  background-position: center;
}
.presets-container .gallery-top .swiper-slide {
  height: 0;
  padding-top: 40%;
}
.presets-container .gallery-thumbs .swiper-slide {
  width: 100%;
  height: 0;
  padding-top: 11%;
  opacity: 0.6;
}
.presets-container .gallery-thumbs {
  box-sizing: border-box;
  padding: 10px 0;
}
.presets-container .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.presets-container a .preset-info {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.5);
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
}
.presets-container a .preset-info .preset-details {
  position: relative;
  top: -29px;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all ease .25s;
  transition: all ease .25s;
  width: 100%;
}
.presets-container a .preset-info h5 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
.presets-container a:hover .preset-info , .presets-container .swiper-slide-thumb-active a .preset-info{
  filter: alpha(opacity=100);
  opacity: 1;
}
.presets-container a:hover .preset-details , .presets-container .swiper-slide-thumb-active a .preset-details{
  filter: alpha(opacity=100);
  opacity: 1;
  top: 0;
}
.presets-container a:hover .button {
  filter: alpha(opacity=100);
  opacity: 1;
  bottom: -50px;
}