/* Grid view */
.slideshow {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 4px; }

/* buttons */
.slideshow .buttons {
  display: block;
  width: 100%; }

.slideshow button {
  color: #FFFFFF;
  background-color: #335697;
  border: 0px transparent solid;
  margin-right: 5px;
  padding: 3px 6px;
  text-decoration: none;
  text-align: center;
  font-family: 'LetterGothicStd', 'Arial', 'Verdana', 'serif';
  font-size: 0.8em;
  outline: none;
  cursor: pointer; }

.slideshow button:hover {
  color: #FFFFFF;
  background-color: #A4A0A0; }

.slideshow img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s; }

.slideshow img:hover {
  opacity: 0.7; }

.gallerycolumn {
  -webkit-flex: 32%;
  -ms-flex: 32%;
  flex: 32%;
  max-width: 32%;
  padding: 0 4px; }

.gallerycolumn img {
  margin-top: 8px;
  vertical-align: middle; }

@media screen and (max-width: 800px) {
  .gallerycolumn {
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%; } }
@media screen and (max-width: 600px) {
  .gallerycolumn {
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%; } }
/* The Modal */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0); }
  to {
    -webkit-transform: scale(1); } }
@keyframes zoom {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }
.slideshow #modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  cursor: pointer; }

.slideshow #modal #imghd {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px; }

.slideshow #modal #imghd:hover {
  opacity: 1;
  cursor: default; }

.slideshow #modal #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px;
  max-height: 50px;
  /*background-color: red; */ }

.slideshow #modal #caption:hover {
  cursor: text; }

.slideshow #modal #imghd, .slideshow #modal #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s; }

.slideshow #modal #imghd {
  max-height: calc(100% - 200px);
  width: auto; }

.slideshow #modal #close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s; }

.slideshow #modal #close:hover,
.slideshow #modal #close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

@media only screen and (max-width: 700px) {
  .slideshow #modal #imghd, .slideshow #modal #caption {
    width: 100%; } }
/* tooltip */
.gallerytooltip {
  position: relative;
  display: block; }

.gallerytooltip .gallerytooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s; }

.gallerytooltip .gallerytooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent; }

.gallerytooltip:hover .gallerytooltiptext {
  visibility: visible;
  opacity: 1; }

/*# sourceMappingURL=gallery.css.map */
