
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  color: black;
}

/* hide scrollbar but allow scrolling of content */
.modal {
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.modal::-webkit-scrollbar { /* WebKit */
  width: 0;
  height: 0;
}
.modal {
  overflow: auto;	/* show the scrollbar here */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: white;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

.imagePlusControls * {
  xx-display: inline-block;
}

/* ***SLIDER***
/* slideR shows all the thumb-size imgs in this cat */
.sliderContainer {
  overflow: hidden;
  height: 15%;
}
.center {
  text-align: center;
}
.sliderContainer img {
  display: inline-block;
  height: 100px;
  border: 2px solid transparent;
}

/* ***SLIDES***
* slideS shows one/two full-size imgs */
/* Hide the slides by default */
.slidesContainer img {
  xxx-visibility: hidden;
  padding: 1em;
  max-width: 95%;
}
.slidesContainer {
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
}

/* ***CONTROLS*** */


/* Next & previous buttons */
.controls {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.controls div {
  display: inline-block;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  color: darkblue;
}

/* The Close Button */
.close {
  position: relative;
  float: right;
  right: 5%;
}

.controls div:hover {
  color: red;
}

/* buttons: prev work, next work */
.prev,
.next {
  xxx-transition: 0.6s ease;
  xxx-user-select: none;
  xxx--webkit-user-select: none;
}

/* curve borders XXX */
.prev {
  border-radius: 1em 0 0 1em;
}

/* Position the "next button" to the right */
.next {
  border-radius: 0 1em 1em 0;
  margin-left: 1em;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  padding: 2px 16px;
  height: 150px;
}

img.slider {
  opacity: 0.6;
}

.active,
.slider:hover {
  opacity: 1;
  border: 2px solid red !important;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

