/**
 * Colorbox Core Style:
 * The following CSS is consistent between example themes and should not be altered.
 */
 #colorbox,
 #cboxOverlay,
 #cboxWrapper {
   position: absolute;
   top: 0;
   left: 0;
   z-index: 9999;
   overflow: hidden;
 }
 #cboxOverlay {
   position: fixed;
   width: 100%;
   height: 100%;
 }
 #cboxMiddleLeft,
 #cboxBottomLeft {
   clear: left;
 }
 #cboxContent {
   position: relative;
 }
 #cboxLoadedContent {
   overflow: auto;
   -webkit-overflow-scrolling: touch;
 }
 #cboxLoadingOverlay,
 #cboxLoadingGraphic {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
 }

 /**
  * Avoid outlines on :active (mouseclick),
  * but preserve outlines on :focus (tabbed navigating)
  */
 #cboxPrevious:active,
 #cboxNext:active,
 #cboxClose:active,
 #cboxSlideshow:active {
   outline: 0;
 }
 .cboxPhoto {
   float: left;
   margin: auto;
   border: 0;
   display: block;
   max-width: none;
 }
 .cboxIframe {
   width: 100%;
   height: 100%;
   display: block;
   border: 0;
 }
 /* Reset box sizing to content-box if theme is using border-box. */
 #colorbox,
 #cboxContent,
 #cboxLoadedContent {
   -moz-box-sizing: content-box;
   -webkit-box-sizing: content-box;
   box-sizing: content-box;
 }
 
 /**
  * Colorbox module default style:
  * The styles are ordered & tabbed in a way that represents
  * the nesting of the generated HTML.
  */
 #cboxOverlay {
   background: #000;
 }
 #colorbox {
   outline: 0;
 }
 #cboxWrapper {
   background: transparent;
 }
 
 #cboxContent {
   background: transparent;
   overflow: hidden;
 }
 #cboxTitle {
  position: absolute;
  background: rgba(0, 0, 0, 0);
  bottom: 0 !important;
  left: 0;
  color: rgba(255, 255, 255, 0.87);
  width: 100%;
  padding: 4px 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
  height: auto !important;
  padding-bottom: 0 !important;
}
 #cboxCurrent {
  position: absolute;
  top: 5px;
  left: 5px;
  line-height: 1rem;
  color: #fff;
  opacity: 0.6;
}
 .cboxSlideshow_on #cboxSlideshow {
   position: absolute;
   bottom: 0px;
   right: 30px;
   background: green;
   width: 25px;
   height: 25px;
   text-indent: -9999px;
 }
 .cboxSlideshow_on #cboxSlideshow:hover {
   background-position: -101px -50px;
 }
 .cboxSlideshow_off #cboxSlideshow {
   position: absolute;
   bottom: 0px;
   right: 30px;
   background: pink;
   width: 25px;
   height: 25px;
   text-indent: -9999px;
 }
 #cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  background: transparent;
  width: 30%;
  border: none;
  color: transparent;
  height: auto;
  text-indent: 5px;
 }
 #cboxPrevious:focus {
   outline: none;
 }
 #cboxPrevious:after {
  content: "\f053";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.3);
  padding: 0.5em;
  position: absolute;
  left: 0;
}
 #cboxNext {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  background: transparent;
  width: 30%;
  border: none;
  color: transparent;
  left: auto;
  text-indent: 5px;
  height: auto;
}
#cboxNext:focus {
  outline: none;
}
#cboxNext:after {
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.3);
  padding: 0.5em;
  position: absolute;
  right: 0;
}
 #cboxLoadingOverlay {
   background: transparent;
 }
 #cboxLoadingGraphic {
   background: transparent;
 }
 #cboxClose {
  position: absolute;
  top: 0;
  right: 0;
  color: transparent;
  opacity: 0.6;
  border: none;
  background: transparent;
  width: auto;
  height: auto;
  text-indent: 10px;
  bottom: auto;
}
#cboxClose:focus {
  outline: none;
}
#cboxClose:after {
  content: "\f00d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  padding: 5px 5px 1rem 1rem;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1rem;
}
 #cboxClose:hover {
   background-position: -25px -25px;
 }
 #cboxLoadedContent {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
 