/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
 position: fixed;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 z-index: 9990;
 outline: none !important;
 background: #000000e6;
 white-space: nowrap;
 opacity: 0;
 -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
         transition: opacity .3s ease;
}

.lity.lity-opened {
 opacity: 1;
}

.lity.lity-closed {
 opacity: 0;
}

.lity * {
 -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

.lity-wrap {
 position: fixed;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 z-index: 9990;
 outline: none !important;
 text-align: center;;
}

.lity-wrap:before {
 display: inline-block;
 margin-right: -.25em;
 height: 100%;
 content: "";
 vertical-align: middle;;
}

.lity-loader {
 position: absolute;
 top: 50%;
 z-index: 9991;
 margin-top: -.8em;
 width: 100%;
 color: #ffffff;
 text-align: center;
 font-size: 14px;
 font-family: Arial, Helvetica, sans-serif;
 opacity: 0;
 -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
         transition: opacity .3s ease;
}

.lity-loading .lity-loader {
 opacity: 1;
}

.lity-container {
 display: inline-block;
 position: relative;
 z-index: 9992;
 max-width: 100%;
 max-height: 100%;
 outline: none !important;
 vertical-align: middle;
 text-align: left;
 white-space: normal;;
}

.lity-content {
 z-index: 9993;
 width: 100%;
 -webkit-transition: -webkit-transform .3s ease;
      -o-transition:      -o-transform .3s ease;
         transition: -webkit-transform .3s ease;
         transition:         transform .3s ease;
         transition:         transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease;
 -webkit-transform: scale(1);
     -ms-transform: scale(1);
      -o-transform: scale(1);
         transform: scale(1);;
}

.lity-loading .lity-content ,
.lity-closed .lity-content {
 -webkit-transform: scale(.8);
     -ms-transform: scale(.8);
      -o-transform: scale(.8);
         transform: scale(.8);
}

.lity-content:after {
 display: block;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 z-index: -1;
 width: auto;
 height: auto;
 -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
         box-shadow: 0 0 8px rgba(0, 0, 0, .6);
 content: "";;
}

.lity-close {
 position: fixed;
 top: 0;
 right: 0;
 z-index: 9994;
 padding: 0;
 width: 35px;
 height: 35px;
 outline: none;
 border: 0;
 background: none;
 -webkit-box-shadow: none;
         box-shadow: none;
 color: #ffffff;
 text-align: center;
 text-decoration: none;
 text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
 font-style: normal;
 font-size: 35px;
 font-family: Arial, Baskerville, monospace;
 line-height: 35px;
 cursor: pointer;

 -webkit-appearance: none;;
}

.lity-close::-moz-focus-inner {
 padding: 0;
 border: 0;;
}

.lity-close:hover ,
.lity-close:focus ,
.lity-close:active ,
.lity-close:visited {
 padding: 0;
 outline: none;
 border: 0;
 background: none;
 -webkit-box-shadow: none;
         box-shadow: none;
 color: #ffffff;
 text-align: center;
 text-decoration: none;
 text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
 font-style: normal;
 font-size: 35px;
 font-family: Arial, Baskerville, monospace;
 line-height: 35px;;
}

.lity-close:active {
 top: 1px;
}

.lity-image img {
 display: block;
 max-width: 100%;
 border: 0;
 line-height: 0;;
}

.lity-iframe .lity-container ,
.lity-youtube .lity-container ,
.lity-vimeo .lity-container ,
.lity-facebookvideo .lity-container ,
.lity-googlemaps .lity-container {
 max-width: 1700px;
 width: 100%;
}

.lity-iframe-container {
 overflow: auto;
 padding-top: 80vh;
 width: 100%;
 height: 0;
 pointer-events: auto;
}

.lity-iframe-container iframe {
 display: block;
 position: absolute;
 top: 5%;
 left: 50%;
 max-width: 1320px;
 width: 90%;
 height: 90vh;
 background: rgb(255, 255, 255);
 box-shadow: 0 0 8px rgb(0 0 0 / 60%);
 transform: translateX(-50%);
}
@media (max-width:769px) {
 .lity-iframe-container iframe {
  height: 80vh;
 }
}

.lity-hide {
 display: none;
}
