/* SLIDESHOW*/
@keyframes rotating {
  0% {
    transform: rotate(360deg); }
  100% {
    transform: rotate(0deg); } }

.loadingIcon {
  animation: rotating 2s ease-in-out infinite alternate; }

.closeBtn::before, .closeBtn::after {
  content: '';
  display: block;
  border-radius: 5px;
  position: absolute;
  top: calc(50% - 0.1em);
  height: 10%;
  width: 100%;
  background: #000; }

.closeBtn::before {
  transform: rotate(45deg); }

.closeBtn::after {
  transform: rotate(-45deg); }

.plusBtn::before, .plusBtn::after {
  content: '';
  display: block;
  border-radius: 5px;
  position: absolute;
  top: 42.5%;
  left: 5%;
  height: 15%;
  width: 80%;
  background: #000; }

.plusBtn::after {
  transform: rotate(90deg); }

.minusBtn::before {
  content: '';
  display: block;
  border-radius: 5px;
  position: absolute;
  top: 42.5%;
  left: 15%;
  height: 15%;
  width: 70%;
  background: #000; }

.inlineNewButton {
  display: inline-block;
  padding: 0.15em 0.7em;
  border-radius: 0.4em;
  background: #ffdd00;
  text-transform: uppercase;
  font-weight: bolder;
  cursor: pointer;
  margin-left: 0.1em;
  margin-right: 0.1em;
  box-shadow: 0 0 0.5em 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: background 0.25s, box-shadow 0.25s;
  -moz-transition: background 0.25s, box-shadow 0.25s;
  -ms-transition: background 0.25s, box-shadow 0.25s;
  -o-transition: background 0.25s, box-shadow 0.25s;
  transition: background 0.25s, box-shadow 0.25s; }
  .inlineNewButton:hover {
    box-shadow: 0 0 0.2em 0 rgba(0, 0, 0, 0.25); }

.inlineNewButton {
  font-size: 0.85em; }

.inlineLink {
  color: #d1aa00;
  font-weight: bolder; }
  .inlineLink:hover {
    text-decoration: underline;
    cursor: pointer; }

.inlineButton, .inlineSwitch {
  box-sizing: border-box;
  display: inline-block;
  height: 1.25em;
  text-align: center;
  line-height: 1.2;
  padding: 0 0.375em;
  background: #ddd;
  -webkit-transition: background 0.25s, opacity 0.25s, outline 0.25s;
  -moz-transition: background 0.25s, opacity 0.25s, outline 0.25s;
  -ms-transition: background 0.25s, opacity 0.25s, outline 0.25s;
  -o-transition: background 0.25s, opacity 0.25s, outline 0.25s;
  transition: background 0.25s, opacity 0.25s, outline 0.25s; }
  .inlineButton:hover, .inlineSwitch:hover {
    background: #ffdd00;
    color: #000;
    cursor: pointer; }

.inlineSwitch {
  color: #000;
  opacity: 0.7; }
  .inlineSwitch:hover, .inlineSwitch.chosen {
    background: #ffdd00;
    opacity: 1; }

.colLayout, .colLayoutCondensed {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-column-gap: 1.5em;
  grid-row-gap: 1em; }

.w60 {
  grid-column: auto / span 6; }

.w40 {
  grid-column: auto / span 4; }

.w50 {
  grid-column: auto / span 5; }

.w100 {
  grid-column: auto / span 10; }

.w30 {
  grid-column: auto / span 3; }

.w70 {
  grid-column: auto / span 7; }

.colLayoutCondensed {
  grid-row-gap: 0.71em; }
  .colLayoutCondensed .w50 > *, .colLayoutCondensed .w100 > * {
    position: relative;
    width: 80%;
    left: 50%;
    transform: translateX(-50%); }
  .colLayoutCondensed .w100 > * {
    width: 90%; }

@media all and (max-width: 959px) {
  .w60, .w40, .w50, .w100, .w70, .w30 {
    grid-column: 1 / -1; } }

#slideshowAnchor {
  height: 0; }

.slideshowContainer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.slideshowHint {
  position: absolute;
  top: 50%;
  height: 1.5em;
  width: 1.5em;
  transform: translateY(-50%);
  right: 1%;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px 25px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s; }

#slideshowForward {
  right: unset;
  left: 1%;
  transform: translateY(-50%) rotate(180deg); }

#slideshowInfo {
  position: absolute;
  color: #000;
  margin-left: 0.25em;
  opacity: 0.75;
  font-style: italic; }

#playingIndicator {
  display: inline-block;
  box-shadow: 0 0 50px 25px rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1) url("/images/play-pause.png");
  background-size: 100% 200%;
  background-position: 100% 100%;
  width: 1em;
  height: 1em;
  vertical-align: bottom;
  margin-bottom: 0.25em;
  margin-right: 0.2em;
  -webkit-transition: background 0.25s;
  -moz-transition: background 0.25s;
  -ms-transition: background 0.25s;
  -o-transition: background 0.25s;
  transition: background 0.25s; }
  #playingIndicator.paused {
    background-position: 100% 0; }

#playPauseButton {
  cursor: pointer;
  font-style: inherit; }
  #playPauseButton:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.75); }

#slideshowPlayingType {
  font-style: inherit;
  text-transform: uppercase; }

#slideshowPlayingType.resetable:hover {
  text-decoration: line-through;
  cursor: pointer; }

.slideshow_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: opacity 2s, left 2s, background 0.25s;
  -moz-transition: opacity 2s, left 2s, background 0.25s;
  -ms-transition: opacity 2s, left 2s, background 0.25s;
  -o-transition: opacity 2s, left 2s, background 0.25s;
  transition: opacity 2s, left 2s, background 0.25s;
  background: #fff;
  box-shadow: 0 0 5em -2em rgba(0, 0, 0, 0.5); }
  .slideshow_img[src=''] {
    opacity: 0; }
  .slideshow_img.oldImg {
    pointer-events: none; }
  .slideshow_img.cover {
    object-fit: cover; }

.slideshowContainer .loadingIcon {
  position: absolute;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  width: 3em;
  opacity: 0.5;
  z-index: 10;
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  -ms-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s; }

.slideshowContainer.noTrans .slideshow_img {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }
