/*!
 * PhotoSwipe 5.4.2 - https://photoswipe.com
 * (c) 2023 Dmytro Semenov
 */
.pswp {
    --pswp-bg: #000;
    --pswp-placeholder-bg: #222;
    --pswp-root-z-index: 100000;
    --pswp-preloader-color: rgba(79, 79, 79, 0.4);
    --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
    --pswp-icon-color: #fff;
    --pswp-icon-color-secondary: #4f4f4f;
    --pswp-icon-stroke-color: #4f4f4f;
    --pswp-icon-stroke-width: 2px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--pswp-root-z-index);
    display: none;
    touch-action: none;
    outline: 0;
    contain: layout style size
}

.pswp * {
    box-sizing: border-box
}

.pswp img {
    max-width: none
}

.pswp--open {
    display: block
}

.pswp,
.pswp__bg {
    transform: translateZ(0);
    will-change: opacity
}

.pswp__bg {
    opacity: .003;
    background: var(--pswp-bg);
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.pswp--animated .pswp__bg,
.pswp--animated .pswp__zoom-wrap {
    transition: transform 333ms cubic-bezier(.4, 0, .22, 1)
}

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

.pswp__container,
.pswp__zoom-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.pswp__container {
    max-width: 100%;
    max-height: 100%
}

.pswp__zoom-wrap {
    width: 100%;
    transform-origin: left top;
    transition: transform var(--pswp-transition-duration, 333ms) cubic-bezier(.4, 0, .22, 1)
}

.pswp--animated .pswp__zoom-wrap {
    transition: transform var(--pswp-transition-duration, 333ms) cubic-bezier(.4, 0, .22, 1)
}

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

.pswp__img--placeholder {
    --pswp-placeholder-bg: var(--pswp-bg);
    background: var(--pswp-placeholder-bg)
}

.pswp__img--with-transition {
    transition: transform var(--pswp-transition-duration, 333ms) cubic-bezier(.4, 0, .22, 1) !important
}

.pswp__button {
    position: relative;
    display: block;
    width: 50px;
    height: 60px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    background: 0 0;
    border: 0;
    box-shadow: none;
    opacity: .85;
    -webkit-appearance: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
    transition: none;
    padding: 0;
    margin: 0;
    outline: 0;
    opacity: 1;
    cursor: pointer;
    box-shadow: none;
    border: 0;
    -webkit-appearance: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent
}

.pswp__button:disabled {
    opacity: .3;
    cursor: auto
}

.pswp__icn {
    fill: var(--pswp-icon-color);
    color: var(--pswp-icon-color)
}

.pswp__icn {
    position: absolute;
    top: 14px;
    left: 9px;
    width: 32px;
    height: 32px;
    overflow: hidden;
    pointer-events: none
}

.pswp__icn-shadow {
    stroke: var(--pswp-icon-stroke-color);
    stroke-width: var(--pswp-icon-stroke-width);
    fill: none
}

.pswp__button--close .pswp__icn {
    top: 12px;
    right: 12px;
    left: auto;
    width: 24px;
    height: 24px
}

.pswp__button--arrow {
    position: absolute;
    top: 0;
    width: 75px;
    height: 100px;
    top: 50%;
    margin-top: -50px
}

.pswp__button--arrow:disabled {
    display: none;
    cursor: default
}

.pswp__button--arrow .pswp__icn {
    top: 35px;
    width: 40px;
    height: 30px
}

.pswp__button--arrow--prev {
    left: 0
}

.pswp__button--arrow--prev .pswp__icn {
    left: 25px
}

.pswp__button--arrow--next {
    right: 0
}

.pswp__button--arrow--next .pswp__icn {
    right: 25px
}

.pswp__button--zoom {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px
}

.pswp__icn--preloader-active {
    animation: pswp-clockwise 1s linear infinite
}

.pswp__button--loading .pswp__icn--preloader-active {
    display: block
}

.pswp__button--loading .pswp__icn:not(.pswp__icn--preloader-active) {
    display: none
}

@keyframes pswp-clockwise {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 14px;
    line-height: 44px;
    color: var(--pswp-icon-color);
    padding: 0 10px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.pswp--one-slide .pswp__counter {
    display: none
}

.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px
}

.pswp__caption--empty {
    display: none
}

.pswp__caption--fake {
    visibility: hidden
}

.pswp__scroll-wrap--fit .pswp__caption {
    color: var(--pswp-icon-color-secondary)
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: var(--pswp-icon-color)
}

.pswp--ui-visible .pswp__caption {
    opacity: 1;
    transition: opacity .1s ease-out
}

.pswp--ui-hidden .pswp__caption {
    opacity: .003;
    transition: opacity .2s ease-out
}

.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 44px;
    display: flex;
    flex-direction: row;
    z-index: 10
}

.pswp--ui-visible .pswp__top-bar {
    opacity: 1;
    transition: opacity .1s ease-out
}

.pswp--ui-hidden .pswp__top-bar {
    opacity: .003;
    transition: opacity .2s ease-out
}

.pswp__button--close {
    margin-left: auto
}

.pswp {
    --pswp-icon-color: #fff;
    --pswp-icon-color-secondary: #fff;
    --pswp-icon-stroke-color: #000
}