/*!
  Flashy - jQuery Lightbox & Popup Plugin
  @name flashy.css
  @description jQuery plugin for creating responsive lightboxes & popups with focus on performance and effects
  @author Max Lavretiev
  @site http://www.avirtum.com
  @copyright (c) Max Lavretiev
*/
/* 
 * Please do NOT edit this part, you can do that only if you have both knowledge and field experience
 */
body.flashy-active {
  overflow: hidden;
}
body.flashy-active .flashy-overlay {
  opacity: 1;
  pointer-events: auto;
}
.flashy-overlay {
  -webkit-transition: all .3s;
  transition: all .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateZ(1000px);
          transform: translateZ(1000px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  overflow: hidden;
}
.flashy-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  outline: none;
  overflow-x: hidden;
  overflow-y: hidden;
  overflow-scrolling: touch;
  z-index: 1002;
}
.flashy-container .flashy-content-outer {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flashy-container .flashy-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flashy-container .flashy-content {
  display: inline-block;
  padding: 0px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.flashy-container .flashy-content * {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flashy-container .flashy-content.flashy-show {
  opacity: 1;
  pointer-events: auto;
}
.flashy-container .flashy-content.flashy-error {
  color: #a94442;
  background-color: #f2dede;
  border: 1px solid #a94442;
  -webkit-box-shadow: 0 0 40px rgba(169, 68, 66, 0.9);
          box-shadow: 0 0 40px rgba(169, 68, 66, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  width: auto !important;
}
.flashy-container .flashy-content.flashy-image img {
  max-width: 80%;
}
.flashy-container .flashy-content.flashy-inline,
.flashy-container .flashy-content.flashy-ajax {
  width: 80%;
}
.flashy-container .flashy-content.flashy-iframe iframe {
  width: 100%;
  height: 70vh;
  border: none;
}
.flashy-container .flashy-content.flashy-video {
  width: 100%;
  height: 260px;
}
.flashy-container .flashy-content.flashy-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #000;
}
@media (min-width: 768px) {
  .flashy-container .flashy-content.flashy-iframe {
    width: 90%;
    height: 70vh;
  }
  .flashy-container .flashy-content.flashy-video {
    width: 640px;
    height: 360px;
  }
}
@media (min-width: 992px) {
  .flashy-container .flashy-content.flashy-inline,
  .flashy-container .flashy-content.flashy-ajax {
    max-width: 1200px;
    width: 80%;
  }
  .flashy-container .flashy-content.flashy-iframe {
    width: 90%;
    height: 70vh;
  }
  .flashy-container .flashy-content.flashy-video {
    width: 960px;
    height: 540px;
  }
}
.flashy-overlay.flashy-fullscreen .flashy-numeration,
.flashy-overlay.flashy-fullscreen .flashy-close,
.flashy-overlay.flashy-fullscreen .flashy-prev,
.flashy-overlay.flashy-fullscreen .flashy-next,
.flashy-overlay.flashy-fullscreen .flashy-title {
  opacity: 0 !important;
  pointer-events: none !important;
}
.flashy-overlay .flashy-numeration {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 64px;
  right: 64px;
  padding: 0 10px;
  color: #000000;
  background-color: rgba(0, 0, 0, 0.0);
font-family: neue-haas-grotesk-display,sans-serif;
font-weight: 500;
font-style: normal;
font-size: 50px;

  letter-spacing: .6px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1003;
}
.flashy-overlay .flashy-numeration.flashy-show {
  opacity: 1;
  pointer-events: auto;
}
.flashy-overlay .flashy-title {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  bottom: 200px;
  right: 0;
  padding: 0 0px;
  line-height: 38px;
  color: red;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: .6px;
  text-align: center;
  opacity: 1;
  pointer-events: none;
  z-index: 1003;
}
.flashy-overlay .flashy-title.flashy-show {
  pointer-events: auto;
  opacity: 1;
}
.flashy-overlay .flashy-close {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 64px;
  top: 64px;
  width: 64px;
  height: 64px;
  padding: 0px;
  background-color: rgba(0, 0, 0, 0.0);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../icn/icn-sb-close.svg');
  cursor: pointer;
  opacity: 0.8;
  z-index: 1003;
}
.flashy-overlay .flashy-close:hover .flash-prev:hover .flash-next:hover  {
  opacity: 1;
}
.flashy-overlay .flashy-prev,
.flashy-overlay .flashy-next {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50vh;
  width: 64px;
  height: 64px;
  margin-top: -34px;
  padding: 20px 5px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 1003;
}
.flashy-overlay .flashy-prev.flashy-show,
.flashy-overlay .flashy-next.flashy-show {
  pointer-events: auto;
  opacity: 0.8;
}
.flashy-overlay .flashy-prev.flashy-show:hover,
.flashy-overlay .flashy-next.flashy-show:hover {
  opacity: 1;
}
.flashy-overlay .flashy-prev {
  right: 170px;
  background-image: url('../icn/icn-sb-bwd.svg');
}
.flashy-overlay .flashy-next {
  right: 64px;
  background-image: url('../icn/icn-sb-fwd.svg');
}
.flashy-preloader {
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-animation: flashy-spin 1200ms infinite linear;
          animation: flashy-spin 1200ms infinite linear;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.25);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTM4cHgiIGhlaWdodD0iMTM4cHgiIHZpZXdCb3g9IjgxIDgxIDEzOCAxMzgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgODEgODEgMTM4IDEzOCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTIxOSwxNTBjMC0zOC4xLTMwLjktNjktNjktNjljLTM4LjEwMSwwLTY5LDMwLjktNjksNjkgTTkyLjcsMTUwYzAtMzEuNSwyNS41LTU3LjMsNTcuMy01Ny4zczU3LjMsMjUuOCw1Ny4zLDU3LjMiLz48L3N2Zz4=');
  background-size: cover;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 2002;
}
.flashy-preloader.flashy-show {
  opacity: 1;
}
@-webkit-keyframes flashy-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes flashy-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
