.gallery .images .image {
  position: relative;
  width: 100%;
  padding-bottom: 540px;
  height: 0;
  overflow: hidden;
  display: none;
  border: 1px solid #ccc;
}

.gallery .images .image.active {
  display: block;
}
.gallery{
  width: 380px;
}
/* .gallery .images .image .content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: center no-repeat;
} */

.gallery .thumbs {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .gallery .thumbs {
    height: 80px;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

.gallery .thumbs .thumb {
  box-sizing: border-box;
  background: center no-repeat;
  background-size: contain;
  display: inline-block;
  position: relative;
  border: 3px solid transparent;
  width: 120px;
  height: 120px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery .thumbs .thumb {
    width: 65px;
    height: 65px;
  }
}

.gallery .thumbs .thumb.active {
  border-color: silver;
}
