#fullscreenSlideshowContainer .ui {
  position: absolute;
  font-family: sans-serif;
  z-index: 10; 
  font-size: 2em;
}

#fs-loader,
#fs-prev,
#fs-next,
#fs-close {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: bold;
  cursor: pointer;
  line-height: 1em;
}

#fs-close {
  top: 1em;
  right: 10px; 
}

#fs-prev,
#fs-next {
  height: 20px;
  top: 50%;
  margin-top: -10px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/arrow-right.svg);
}

#fs-prev {
  left: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#fs-next {
  right: 10px;
}

#fs-loader {
  top: 50%;
  left: 50%;
  height: 1em;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  background: url('../images/default-loader.gif') 0 0 no-repeat;
  background-size: contain;
  display: none;
}

#fs-caption {
  bottom: 0;
  top: 0;
  right: 0;
  text-align: center;
  width: 100%;
  left: 0;
  line-height: 1em;
  display: none;
  /*background: -moz-linear-gradient(top,transparent 60%,rgba(0,0,0,.8) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(60%,transparent),color-stop(100%,rgba(0,0,0,.8)));
    background: -webkit-linear-gradient(top,transparent 60%,rgba(0,0,0,.8) 100%);
    background: -o-linear-gradient(top,transparent 60%,rgba(0,0,0,.8) 100%);
    background: -ms-linear-gradient(top,transparent 60%,rgba(0,0,0,.8) 100%);
    background: linear-gradient(to bottom,transparent 60%,rgba(0,0,0,.8) 100%);*/
}

#fs-caption span {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 32px;
  color: #FFF;
  font-family: 'PT Sans';
  font-size: 18px;
  font-style: italic;
  box-sizing: border-box;
}

#fs-loader,
#fs-prev,
#fs-next,
#fs-close,
#fs-caption span {
  padding: 5px 15px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px; 
}

