
/*!
 * jQuery simple gallery Plugin 1.1.0
 *
 * http://fernandomoreiraweb.com/
 *
 * Copyright 2013 Fernando Moreira
 * Released under the MIT license:
 *   http://mit.fernandomoreiraweb.com/
 */


.simplegallery {
  margin: 0 auto;
  /*width: 417px;*/
  width: 100%;
  height: auto;
  /*overflow: hidden;*/
}

.simplegallery .content-gall {
  background: #fff;
  position: relative;
  width: calc(100% - 100px);
  height: 400px;
  overflow: hidden;
  float: right;
  border: 1px solid rgba(0,0,0,0.12);
}

.simplegallery .content-gall > a > img {
  max-width: 80%;
  max-height: 80%;
  object-fit: cover;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.simplegallery .content-gall img {
  /*width: 100%;*/
  /*border: 1px solid #9c9c9c;*/
}

.simplegallery .thumbnail { 
  margin: 15px 0 0 -10px;
  border: none;
  padding: 0;
  width: 100px;
  float: left;
}

.simplegallery .thumbnail .thumb {
  float: left;
  width: 80px;
  height: 80px;
  padding: 0 10px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.12);
  border-bottom: none;
}

.simplegallery .thumbnail .thumb:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.simplegallery .thumbnail .thumb a {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
}

.simplegallery .thumbnail .thumb img {
  width: 100%;
}

/*.simplegallery .thumbnail .last { padding: 0; }*/
