/*!
 * Lightbox v2.x
 * by Lokesh Dhakar
 * https://lokeshdhakar.com/projects/lightbox2/
 * MIT License
 */

/* Allgemein */
/*  richtet Inhalte zentriert aus
    line-height: 0 verhindert Abstand unter Bildern */
.lb-loader,
.lightbox {
  text-align: center;
  line-height: 0;
}

/* Preload Bilder */
/* Damit werden Icons unsichtbar vorgeladen, damit sie später sofort angezeigt werden. */
body {
  background-image:
    url(https://www.tcris.at/css2026/images/close_tc05.png),
    url(https://www.tcris.at/css2026/images/loading_tc01.gif),
    url(https://www.tcris.at/css2026/images/prev_tc07.png),
    url(https://www.tcris.at/css2026/images/next_tc07.png);

  background-size: 0 0;
}

.lb-dataContainer,
.lb-outerContainer {
  display: flow-root;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

/* Overlay */
/* Das erzeugt den abgedunkelten Hintergrund hinter dem Bild. */
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;

  opacity: 0.8;
  display: none;
}

/* Lightbox Hauptcontainer */
/* liegt über allen anderen Elementen
   zeigt das große Bild */
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  font-weight: 400;
}

/* Bild passt sich automatisch an
   leicht abgerundete Ecken */
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  border-radius: 5px;
}

.lightbox a img {
  border: none;
}

/*gestaltet den äußeren Container der Lightbox, also den Rahmen um das große Bild. */
.lb-outerContainer {
  position: relative;
  background-color: #000;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-container {
  padding: 4px;
}

/* Loader */
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
}

/* Wird angezeigt während das Bild lädt. */
.lb-cancel {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: url(https://www.tcris.at/css2026/images/loading_tc01.gif) no-repeat;
  background-size: 64px 64px;

  filter: invert(1) sepia(1) saturate(8) hue-rotate(50deg) brightness(2);
}

/* Navigation */
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
}

.lb-next,
.lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}

/* Navigation Pfeil links */
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(https://www.tcris.at/css2026/images/prev_tc07.png) left 48% no-repeat;

  opacity: 0.1;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}
/* Navigation Pfeil rechts */
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(https://www.tcris.at/css2026/images/next_tc07.png) right 48% no-repeat;

  opacity: 0.1;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}
/* Pfeile einfärben */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    filter: contrast(120%) brightness(110%) hue-rotate(170deg);
}

/* Datenbereich */
/* gestaltet den Bereich unter dem Bild, in dem Bildbeschreibung,
   Bildnummer und der Schließen-Button stehen. */
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-data {
  padding: 0 4px;
  color: #fff;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

/* Bildbeschreibung z.b. Bild 2 von 10 */
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #ccc;
}

/* Schließen-Button */
.lb-data .lb-close {
  display: block;
  float: right;
  width: 44px;
  height: 22px;
  background: url(https://www.tcris.at/css2026/images/close_tc05.png) top right no-repeat;
  background-size: 44px auto;
  text-align: right;
  outline: 0;
  opacity: 0.7;
  transition: opacity 0.2s;

  filter: invert(0) brightness(2.5);
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}