:root {
  --white: $color-white
  --one: $color-one;
  --two: $$color-two;
  --three: $color-three;
  --four: $color-four;
  --five: $color-five;
  --black: $color-black;
  --themeColor: #000;
  --themeColorRgb: 0,0,0;
  --contrastColor: #FFF;
  --contrastColorRgb: 255,255,255;
  --transitionSec: 0.6s;
}
@media (prefers-color-scheme: dark) {
  :root {
    --themeColor: #000;
    --themeColorRgb: 0,0,0;
    --contrastColor: #FFF;
    --contrastColorRgb: 255,255,255;
  }
  :root[data-theme=light] {
    --themeColor: #FFF;
    --themeColorRgb: 255,255,255;
    --contrastColor: #000;
    --contrastColorRgb: 0,0,0;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --themeColor: #000;
    --themeColorRgb: 0,0,0;
    --contrastColor: #FFF;
    --contrastColorRgb: 255,255,255;
  }
  :root[data-theme=light] {
    --themeColor: #FFF;
    --themeColorRgb: 255,255,255;
    --contrastColor: #000;
    --contrastColorRgb: 0,0,0;
  }
}

#sb-title-inner,
#sb-info-inner,
#sb-loading-inner,
div.sb-message {
  font-family: "HelveticaNeue-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  color: #fff;
}

#sb-container {
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: left;
  visibility: hidden;
  display: none;
}

#sb-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

#sb-wrapper {
  position: absolute;
  visibility: hidden;
  width: 100px;
}

#sb-wrapper-inner {
  position: relative;
  border: none;
  overflow: hidden;
  height: 100px;
}

#sb-body {
  position: relative;
  height: 100%;
}

#sb-body-inner {
  position: absolute;
  height: 100%;
  width: 100%;
}

#sb-player.html {
  height: 100%;
  overflow: auto;
}

#sb-body img {
  border: none;
}

#sb-loading {
  position: relative;
  height: 100%;
}

#sb-loading-inner {
  position: absolute;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  top: 50%;
  margin-top: -12px;
  width: 100%;
  text-align: center;
}

#sb-loading-inner span {
  background: url(/resources/vendor/css/shadowbox/images/loading.gif) no-repeat;
  padding-left: 34px;
  display: inline-block;
}

#sb-body,
#sb-loading {
  background-color: #000;
}

#sb-title,
#sb-info {
  /*position:relative;*/
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#sb-title,
#sb-title-inner {
  height: 26px;
  line-height: 26px;
}

#sb-title-inner {
  font-size: 20px;
  font-weight: 700;
  text-shadow: 3px 3px 0 #000;
}

#sb-info,
#sb-info-inner {
  height: 20px;
  line-height: 20px;
}

#sb-info-inner {
  font-size: 12px;
}

#sb-nav {
  float: right;
  height: 16px;
  padding: 2px 0;
  width: 45%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#sb-nav a {
  display: block;
  cursor: pointer;
  background-repeat: no-repeat;
  position: absolute;
}

#sb-nav-close {
  top: 25px;
}

#sb-nav-next {
  /*
  	top:50%;
  	margin-top:-20px;
  */
  filter: none !important;
}

#sb-nav-previous {
  /*
  	top:50%;
  	margin-top:-20px;
  */
  filter: none !important;
}

#sb-nav-play {
  background-image: url(/resources/vendor/css/shadowbox/images/play.png);
  height: 16px;
  width: 16px;
}

#sb-nav-pause {
  background-image: url(/resources/vendor/css/shadowbox/images/pause.png);
  height: 16px;
  width: 16px;
}

#sb-counter {
  float: left;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

#sb-counter a {
  padding: 0 4px 0 0;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

#sb-counter a.sb-counter-current {
  text-decoration: underline;
}

div.sb-message {
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

div.sb-message a:link,
div.sb-message a:visited {
  color: #fff;
  text-decoration: underline;
}

.prev_img,
.next_img {
  position: absolute;
  margin: auto 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 150px;
  max-height: 15vh;
  max-width: 6vh;
}
.prev_img:hover,
.next_img:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}
.prev_img:hover svg,
.next_img:hover svg {
  opacity: 1;
}
.prev_img svg,
.next_img svg {
  width: 50%;
  height: 50%;
  position: absolute;
  left: 0;
  margin: auto 10px;
  bottom: 0;
  top: 0;
  z-index: 1;
  opacity: 0.5;
}

.prev_img {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next_img {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.close_btn {
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0;
  padding: 10px;
}
.close_btn svg path,
.close_btn svg rect,
.close_btn svg polygon {
  fill: #5c5c5c;
  stroke: #5c5c5c;
}
.close_btn:hover {
  cursor: pointer;
}
.close_btn:hover svg path,
.close_btn:hover svg rect,
.close_btn:hover svg polygon {
  fill: #fff;
  stroke: #fff;
}