.gallery .images .image {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
    display: none;
}

.gallery .images .image.active {
  display: block;
}

    .gallery .images .image .content {
        position: absolute;
        width: 100%;
        height: 100%;
        display: block !important;
    }

        .gallery .images .image .content img {
            border: 5px solid #f5f5f5;
            width: auto;
            height: auto;
            max-height: 100%;
            max-width: 100%;
        }

.gallery .thumbs {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .gallery .thumbs {
    height: 70px;
    overflow-x: auto;
    overflow-y: hidden;
  }
    
}

@media (max-width: 540px) {

    .gallery .images .image {
        position: relative;
        width: 100%;
        padding-bottom: 105%;
        height: 0;
        overflow: hidden;
        display: none;
    }
}

@media (min-width: 540px) {

    .gallery .images .image {
        position: relative;
        width: 100%;
        padding-bottom: 80%;
        height: 0;
        overflow: hidden;
        display: none;
    }
}

@media (min-width: 720px) {

    .gallery .images .image {
        position: relative;
        width: 100%;
        padding-bottom: 50%;
        height: 0;
        overflow: hidden;
        display: none;
    }
}

@media (min-width: 960px) {

    .gallery .images .image {
        position: relative;
        width: 100%;
        padding-bottom: 320px;
        height: 0;
        overflow: hidden;
        display: none;
    }
}


.gallery .thumbs .thumb {
  box-sizing: border-box;
  background: center no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  margin: 4px;
  border: 2px solid transparent;
  width: 80px;
  height: 80px;

  cursor: pointer;
}

.gallery .thumbs .thumb:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: absolute;
  left: 35px;
  top: -5px;
}

@media (max-width: 768px) {
  .gallery .thumbs .thumb {
    width: 55px;
    height: 55px;
  }

  .gallery .thumbs .thumb:before {
    left: 25px;
  }
}

.gallery .thumbs .thumb.active {
    border-color: #ec0088;
}

    .gallery .thumbs .thumb.active:before {
        border-bottom-color: #ec0088;
    }
