/*!
  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: #000000;
  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: scroll;
  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: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flashy-container .flashy-content {
  display: inline-block;
  padding: 0px;
  background: #fff;
  opacity: 1!important;
  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: 100%;
}
.flashy-container .flashy-content.flashy-inline,
.flashy-container .flashy-content.flashy-ajax {
  width: 100%;
}
.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;
  }
}

/* At small screens make flashy content/images use full width with small padding to match leather_belts behavior */
@media (max-width: 767px) {
  .flashy-container .flashy-content-inner {
    padding: 12px !important;
  }
  .flashy-container .flashy-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    pointer-events: auto;
  }
  .flashy-container .flashy-content.flashy-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
}
.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;
  top: 0;
  left: 0;
  padding: 0 10px;
  line-height: 38px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  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: 0;
  right: 0;
  padding: 0 10px;
  line-height: 38px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: .6px;
  text-align: center;
  opacity: 0;
  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: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  padding: 7px;
  background-color: rgba(0, 0, 0, 0.8);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9Ii01IC01IDI0IDI0IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IC01IC01IDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTMuNywwLjNjLTAuNC0wLjQtMS0wLjQtMS40LDBMNyw1LjZMMS43LDAuM2MtMC40LTAuNC0xLTAuNC0xLjQsMGMtMC40LDAuNC0wLjQsMSwwLDEuNEw1LjYsN2wtNS4zLDUuM2MtMC40LDAuNC0wLjQsMSwwLDEuNEMwLjUsMTMuOSwwLjcsMTQsMSwxNHMwLjUtMC4xLDAuNy0wLjNMNyw4LjRsNS4zLDUuM2MwLjIsMC4yLDAuNSwwLjMsMC43LDAuM3MwLjUtMC4xLDAuNy0wLjNjMC4zOTktMC40LDAuMzk5LTEsMC0xLjRMOC40LDdsNS4zLTUuM0MxNC4xLDEuMywxNC4xLDAuNywxMy43LDAuM3oiLz48L3N2Zz4=');
  cursor: pointer;
  opacity: 0.8;
  z-index: 1003;
}
.flashy-overlay .flashy-close: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: 28px;
  height: 28px;
  margin-top: -34px;
  padding: 20px 5px;
  background-color: rgba(0, 0, 0, 0.8);
  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 {
  left: 0px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyOHB4IiBoZWlnaHQ9IjI4cHgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjggMjgiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0zLjI5MywxNC43MDdMMTEsMjIuNDE0TDEyLjQxNCwyMWwtNi02SDI0YzAuNTUzLDAsMS0wLjQ0OCwxLTFzLTAuNDQ3LTEtMS0xSDYuNDE0bDYtNkwxMSw1LjU4NmwtNy43MDcsNy43MDdDMi45MDIsMTMuNjg0LDIuOTAyLDE0LjMxNlgzLjI5MywxNC43MDd6Ii8+PC9zdmc+');
}
.flashy-overlay .flashy-next {
  right: 0px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1zbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyOHB4IiBoZWlnaHQ9IjI4cHgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjggMjgiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0yNC43MDcsMTMuMjkzTDE3LDUuNTg2TDE1LjU4Niw3bDYsNkg0Yy0wLjU1MywwLTEsMC40NDgtMSwxczAuNDQ3LDEsMSwxaDE3LjU4NmwtNiw2TDE3LDIyLjQxNGw3LjcwNy03LjcwN0MyNS4wOTgsMTQuMzE2LDI1LjA5OCwxMy42ODQsMjQuNzA3LDEzLjI5M3oiLz48L3N2Zz4=');
}
.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: 0;
}
@-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);
  }
}

/* When flashy is open hide all other page content to prevent underlying clicks
   (keeps flashy overlay and container visible and interactive) */
body.flashy-active > *:not(.flashy-overlay):not(.flashy-container):not(style):not(script) {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  user-select: none !important;
}

/* Ensure flashy sits above everything */
.flashy-overlay, .flashy-container {
  z-index: 99999 !important;
}

/* On small screens ensure close button remains on top */
@media screen and (max-width: 992px) {
  .flashy-overlay .flashy-close {
    z-index: 100000 !important;
  }
}

/* Fixes: ensure navigation controls remain visible and clickable, and keep image size consistent above 766px */

/* If plugin sets fullscreen and hides controls, force them visible and interactive */
.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: 1 !important;
  pointer-events: auto !important;
}

/* Make prev/next clearly visible, centered vertically and on top so they are clickable */
.flashy-overlay .flashy-prev,
.flashy-overlay .flashy-next {
  top: 50% !important;
  margin-top: -22px !important; /* half of height to center */
  padding: 10px !important;
  width: 44px !important;
  height: 44px !important;
  z-index: 100005 !important;
  pointer-events: auto !important;
  opacity: 0.9 !important;
}

/* Keep the close button slightly under the arrows in stacking order on small screens */
@media screen and (max-width: 992px) {
  .flashy-overlay .flashy-close {
    z-index: 100004 !important;
    right: 12px !important;
    top: 12px !important;
  }
}

/* Ensure flashy images preserve the 766px (mobile) visual size on larger screens */
@media (min-width: 768px) {
  .flashy-container .flashy-content.flashy-image {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .flashy-container .flashy-content.flashy-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
}

/* General safeguard to prevent content from being constrained by other width rules */
.flashy-container .flashy-content {
  max-width: 100% !important;
}

/* Improve prev/next visibility (ensure icon shows and button looks tappable) */
.flashy-overlay .flashy-prev,
.flashy-overlay .flashy-next {
  background-size: 18px 18px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  background-color: rgba(0,0,0,0.6) !important;
  display: block !important;
  opacity: 1 !important;
}

/* Ensure prev/next are always clickable when visible */
.flashy-overlay .flashy-prev.flashy-show,
.flashy-overlay .flashy-next.flashy-show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Make flashy-content sit below overlay controls so close/prev/next receive clicks */
.flashy-container .flashy-content {
  z-index: 100003 !important;
}

/* Close button: make clickable on large screens (keep existing small-screen rule to lower it under arrows) */
@media screen and (min-width: 993px) {
  .flashy-overlay .flashy-close {
    z-index: 100010 !important;
    pointer-events: auto !important;
    right: 20px !important;
    top: 20px !important;
  }
}

/* Force prev/next icons to render when visible */
.flashy-overlay .flashy-prev.flashy-show {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMy4yOTMsMTQuNzA3TDExLDIyLjQxNEwxMi40MTQsMjFsLTYtNkgyNGMuNTUzLDAsMS0wLjQ0OCwxLTFzLTAuNDQ3LTEtMS0xSDYuNDE0bDYtNkwxMSw1LjU4NmwtNy43MDcsNy43MDdDMi45MDIsMTMuNjg0LDIuOTAyLDE0LjMxNlgzLjI5MywxNC43MDd6Ii8+PC9zdmc+');
  background-size: 18px 18px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.flashy-overlay .flashy-next.flashy-show {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTI0LjcxIDE0LjcxTDE3IDIyLjQxTDE1LjU5IDIxbDYtNkg0Yy0uNTUgMC0xLS40NS0xLTFzLjQ1LTEgMS0xaDE3LjU5bC02LTZMMTcgNS41OWw3LjcxIDcuNzFjLjM5LjM5LjM5IDEuMDIgMCAxLjQxeiIvPjwvc3ZnPg==');
  background-size: 18px 18px !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 1000000000 !important; /* ensure prev/next are above content */
}

/* Add guaranteed visible SVG icons via pseudo-elements (prevents background-image conflicts) */
.flashy-overlay .flashy-prev,
.flashy-overlay .flashy-next {
  position: absolute; /* ensure pseudo-element positioning */
  overflow: visible !important;
}

.flashy-overlay .flashy-prev.flashy-show::before,
.flashy-overlay .flashy-next.flashy-show::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 1 !important;
}

.flashy-overlay .flashy-prev.flashy-show::before,
.flashy-overlay .flashy-next.flashy-show::before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMy4yOTMsMTQuNzA3TDExLDIyLjQxNEwxMi40MTQsMjFsLTYtNkgyNGMuNTUzLDAsMS0wLjQ0OCwxLTFzLTAuNDQ3LTEtMS0xSDYuNDE0bDYtNkwxMSw1LjU4NmwtNy43MDcsNy43MDdDMi45MDIsMTMuNjg0LDIuOTAyLDE0LjMxNlgzLjI5MywxNC43MDd6Ii8+PC9zdmc+');
}

.flashy-overlay .flashy-next.flashy-show::before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1zbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMjQuNzA3LDEzLjI5M0wxNyw1LjU4NkwxNS41ODYsN2w2LDZINGMtMC41NTMsMC0xLDAuNDQ4LTEsMXMwLjQ0NywxLDEsMWgxNy41ODZsLTYsN0wxNywyMi40MTRsNy43MDctNy43MDdD25LjA5OCwxNC4zMTYsMjUuMDk4LDEzLjY4NCwyNC43MDcsMTMuMjl6Ii8+PC9zdmc+');
}

/* ensure pseudo-elements are visible above content */
.flashy-overlay .flashy-prev.flashy-show::before,
.flashy-overlay .flashy-next.flashy-show::before {
  z-index: 100006 !important;
}
