/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}

.tns-slider>.tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel>.tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel>.tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery>.tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}

.tns-gallery>.tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery>.tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix>div,
.tns-vpfix>li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: '';
  display: table;
  clear: both;
}

.tns-t-ct>div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

@keyframes pulsate {
  0%, to {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

#spotlight,
#spotlight .preloader {
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#spotlight {
  z-index: 99999;
  color: #fff;
  background-color: #000;
  visibility: hidden;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: visibility .25s ease,opacity .25s ease;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 400;
  contain: layout size paint style;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  position: fixed;
  -webkit-overflow-scrolling: touch;
}

#spotlight.show {
  opacity: 1;
  visibility: visible;
  transition: none;
}

#spotlight.show .pane,
#spotlight.show .scene {
  will-change: transform;
}

#spotlight.show .scene img {
  will-change: transform,opacity;
}

#spotlight .preloader {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 42px 42px;
}

#spotlight .preloader.show {
  transition: opacity .1s linear .25s;
  opacity: 1;
}

#spotlight .scene {
  transition: transform 1s cubic-bezier(.1,1,.1,1);
  pointer-events: none;
}

#spotlight .scene img {
  display: inline-block;
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  opacity: 1;
  margin: 0;
  padding: 0;
  border: 0;
  transform: translate(-50%,-50%) scale(1) perspective(100vw);
  transition: transform 1s cubic-bezier(.1,1,.1,1),opacity 1s cubic-bezier(.3,1,.3,1);
  transform-style: preserve-3d;
  contain: layout paint style;
  visibility: hidden;
}

#spotlight .header,
#spotlight .pane,
#spotlight .scene {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  contain: layout size style;
}

#spotlight .header {
  height: 50px;
  text-align: right;
  background-color: rgba(0,0,0,.45);
  transform: translateY(-100px);
  transition: transform .35s ease-out;
  contain: layout size paint style;
}

#spotlight .header:hover,
#spotlight.menu .header {
  transform: translateY(0);
}

#spotlight .header div {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  width: 30px;
  height: 50px;
  padding-right: 20px;
  opacity: .5;
}

#spotlight .progress {
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255,255,255,.45);
  transform: translateX(-100%);
  transition: transform 1s linear;
}

#spotlight .arrow,
#spotlight .footer {
  position: absolute;
  background-color: rgba(0,0,0,.45);
}

#spotlight .footer {
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 1.35em;
  padding: 20px 25px;
  text-align: left;
  pointer-events: none;
  contain: layout paint style;
}

#spotlight .footer .title {
  font-size: 125%;
  padding-bottom: 10px;
}

#spotlight .page {
  float: left;
  width: auto;
  padding-left: 20px;
  line-height: 50px;
}

#spotlight .icon {
  cursor: pointer;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 21px 21px;
  transition: opacity .2s ease-out;
}

#spotlight .fullscreen {
  background-image: url(../img/maximize.svg);
}

#spotlight .fullscreen.on {
  background-image: url(../img/minimize.svg);
}

#spotlight .autofit {
  background-image: url(../img/autofit.svg);
}

#spotlight .zoom-out {
  background-image: url(../img/zoom-out.svg);
}

#spotlight .zoom-in {
  background-image: url(../img/zoom-in.svg);
}

#spotlight .theme {
  background-image: url(../img/theme.svg);
}

#spotlight .player {
  background-image: url(../img/play.svg);
}

#spotlight .player.on {
  background-image: url(../img/pause.svg);
  animation: pulsate 1s ease infinite;
}

#spotlight .close {
  background-image: url(../img/close-ar.svg);
}

#spotlight .preloader.show {
  background-image: url(../img/preloader.svg);
}

#spotlight .arrow {
  top: 50%;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  cursor: pointer;
  margin-top: -25px;
  padding: 10px;
  transform: translateX(-100px);
  transition: transform .35s ease-out,opacity .2s ease-out;
  box-sizing: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  opacity: .65;
  background-image: url(../img/arrow-i.svg);
}

#spotlight .arrow-right {
  left: auto;
  right: 20px;
  transform: translateX(100px) scaleX(-1);
}

#spotlight.menu .arrow-left {
  transform: translateX(0);
}

#spotlight.menu .arrow-right {
  transform: translateX(0) scaleX(-1);
}

#spotlight .arrow:active,
#spotlight .arrow:hover,
#spotlight .icon:active,
#spotlight .icon:hover {
  opacity: 1;
  animation: none;
}

#spotlight.white {
  color: #fff;
  background-color: #fff;
}

#spotlight.white .arrow,
#spotlight.white .footer,
#spotlight.white .header,
#spotlight.white .preloader,
#spotlight.white .progress {
  filter: invert(1);
}

.hide-scrollbars {
  overflow: -moz-hidden-unscrollable;
  -ms-overflow-style: none;
}

.hide-scrollbars::-webkit-scrollbar {
  width: 0;
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

@media (max-width:800px) {
  #spotlight .header div {
    width: 20px;
  }

  #spotlight .footer {
    font-size: 12px;
  }

  #spotlight .arrow {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
    background-size: 15px 15px;
  }

  #spotlight .preloader {
    background-size: 30px 30px;
  }
}

@media (max-width:400px),(max-height:400px) {
  #spotlight .fullscreen {
    display: none!important;
  }
}