/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
    Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
    Background is added as a separate element.
    As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
    stretched thumbnail or div placeholder element (see below)
    style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
    div element that matches size of large image
    large image loads on top of it
*/
/* .pswp__img--placeholder--blank {
  background: #222; }
 */
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
    Error message appears when image is not loaded
    (JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    outline: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
    opacity: 1;
    background: none;
}

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



.pswp--zoom-allowed .pswp__button--zoom {
    display: block;
}


.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: visible;
}


.pswp__button--arrow--left,
.pswp__button--arrow--right {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 200px;
    height: 50%;
    opacity: .65;
    transition: all .2s ease-in-out;
}

.pswp__button--arrow--left {
    padding-left: 45px;
    left: 0;
    text-align: left;
}

.pswp__button--arrow--right {
    padding-right: 45px;
    right: 0;
    text-align: right;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    font-family: "FontAwesome";
    font-size: 24px;
    line-height: 44px;
}

.pswp__button--arrow--left:before {
    left: 6px;
    content: "\f104";
}

.pswp__button--arrow--right:before {
    right: 6px;
    content: "\f105";
}

.pswp__button--arrow--left:hover,
.pswp__button--arrow--right:hover{
  opacity: 1;
}

.pswp__button--arrow--right:active {
    right: -3px;
}

.pswp__button--arrow--left:active {
    left: -3px;
}

.pswp-bottom-wrap-open .pswp__ui > .pswp__button  {
    margin-top: -50px;
}

.pswp__counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    opacity: 0.75;
    padding: 0 10px;
}

.pswp__caption--fake {
    visibility: hidden;
}

.pswp__bg,
.pswp__item{
      cursor: default;
}
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}


.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}

.pswp__ui--idle .pswp__top-bar {
    opacity: 1;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 1;
}

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    /* Force paint & create composition layer for controls. */
    opacity: 0.001;
}


.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: block;
}

.pswp__element--disabled {
    display: none !important;
}

.pswp-arrow{
    opacity: .65;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.pswp-arrow:hover{
    opacity: 1;
}

.pswp-bottom-container{
    height: 100px;
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    cursor: auto;
    z-index: 99999;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.pswp-bottom-container .pswp-carousel {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    height: 70px;
}

.pswp-bottom-container .pswp-carousel.owl-loaded {
    opacity: 1;
}

.pswp-bottom-container img{
    height: 70px;
    width: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    padding: 0;
    opacity: .5!important;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.pswp-bottom-container .owl-item.center img, .pswp-bottom-container .owl-item:hover img {
    opacity: 1!important;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.pswp-bottom-container .pswp-nav {
    max-width: 680px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9000;
    overflow: hidden;
}

.pswp-caption {
    left: 30px;
}

.pswp-meta {
    right: 30px;
}

.pswp-caption, .pswp-meta {
    position: absolute;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    max-width: 28%;
}

.pswp-meta-items .meta-item {
    display: block;
    font-size: 85%;
    line-height: 1.5;
}

.pswp-meta-items{
    text-align: right;
}

.pswp-meta-items .meta-item:after, .pswp-meta-items .meta-item:first-child:before {
    display: none;
}

.pswp-arrow-left:before {
    content: "\f104";
}

.pswp-arrow-left:before, .pswp-arrow-right:before {
    font-family: "FontAwesome";
    font-size: 18px;
}

.pswp-arrow-right:before {
    content: "\f105";
}

.pswp-bottom-open .pswp-bottom-container-action:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.pswp-bottom-container-action:after {
    content: "\f106";
    font-family: "FontAwesome";
    font-size: 18px;
    display: block;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.pswp-bottom-container.pswp-bottom-open {
    bottom: 0;
}

.pswp-bottom-container-action {
    height: 50px;
    width: 50px;
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -25px;
    border-radius: 50%;
    z-index: 8999;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}
.pswp__caption, .pswp__top-bar{
    background: transparent;
}
.pswp .pswp__item img{
    object-fit: contain;
    transition: padding .2s ease-in-out;
}
.pswp-bottom-wrap-open .pswp__item img{
    padding: 0 0 90px;
}
.pswp__counter{
    top: 22px;
    left: 22px;
    font-size: 1.2rem;
    opacity: .7;    
    width: auto;
}
.pswp__button--close{
    width: 44px;
    height: 44px;
    min-width: 44px;
    line-height: 44px;
    position: absolute;
    right: 22px;
    top: 22px;
    text-decoration: none;
    text-align: center;
    opacity: .5;
    background: transparent;
    z-index: 900;
    background: 0 0;
    font-style: normal;
    font-size: 24px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.pswp__button--close:hover{
    background: transparent;
}