.gallery {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  background-color: white;
  padding-bottom: 5px;
}

.gallery .thumbs img {
  padding: 5px 5px 0;
}

.gallery .images .image {
  overflow: hidden;
  display: none;
  border-radius: 3px;
}

.gallery .images .image.active {
  display: block;
}

.gallery .images .image .content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
}

.gallery .thumbs {
  display: inline-block;
  text-align: center;
  height: 460px;
  /*overflow-y: scroll;*/ /*Doug told to remove the scroll bar*/
}

.gallery .thumbs .thumb {
  box-sizing: border-box;
  background: center no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
  cursor: pointer;
}