/*! PhotoSwipe by Dmitry Semenov | photoswipe.com | MIT license */

/*
Contents:
1. Buttons
3. Index indicator ("1 of X" counter)
4. Caption
5. Loading indicator
6. Additional styles (root element, top bar, idle state, hidden state, etc.)
*/


/*
1. Buttons
*/


.pswp__button {
    padding: 0 !important;
    margin: 0.5rem !important;
    border: 0 !important;
    background: none;
    -webkit-appearance: none;
    float: right;
    position: relative;
    cursor: pointer;
    overflow: visible;
    display: block;
    z-index: 1;
}
.pswp__button:active {
    outline: none;
}
.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.pswp__button.tab-focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.pswp__button--fs {
    display: none;
}
.pswp--supports-fs .pswp__button--fs {
    display: block;
}
.pswp__button--zoom {
    display: none;
}
.pswp--zoom-allowed .pswp__button--zoom {
    display: block;
}
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
	text-shadow: 0 0 1px #000, 0 0 2px #000, 0 0 5px #000, 0 0 1rem #000;
}
.pswp__button--arrow--left {
    left: 0;
}
.pswp__button--arrow--right {
    right: 0;
}
.pswp__top-bar .pswp__button {
    margin-left: 0 !important;
} 
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before,
.pswp__button--close:before,
.pswp__button--fs:before,
.pswp__button--zoom:before,
.pswp--zoomed-in:before {
    padding: 0.5rem;
    margin: 0;
    display: inline-block;
    color: #fff;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
	font-size: 2rem;
	line-height: 1;
	width: 1.5em;
	text-align: center;
}
.pswp__button--arrow--left:before {
	content: '\f053';
}
.pswp__button--arrow--right:before {
	content: '\f054';
} 
.pswp__button--close:before {
	content: '\f00d';
}
.pswp__button--fs:before {
	content: '\f065';
}
.pswp__button--zoom:before {
	content: '\f00e';
}
.pswp--zoomed-in .pswp__button--zoom:before {
	content: '\f010';
}
.pswp--fs .pswp__button--fs:before {
	content: '\f066';
}


/*
3. Index indicator ("1 of X" counter)
*/


.pswp__counter {
    position: absolute;
    color: #fff;
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
	margin: 0.875rem;
}


/*
4. Caption
*/


.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px;
}
.pswp__caption__center {
	font-size: 1rem;
    text-align: center;
    margin: 0 auto;
    padding: 0.75rem;
    line-height: 1.25;
    color: #fff;
}
.pswp__caption__center .description,
.pswp__caption__center .copyright {
    display: block;
}
.pswp__caption__center .copyright {
    font-size: 0.75rem;
	padding-top: 0.5rem;
}
.pswp__caption--empty {
    display: none;
}
.pswp__caption--fake {
    visibility: hidden;
}


/*
5. Loading indicator (preloader)
*/


.pswp__preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr;
}
.pswp__preloader i {
    color: #fff;
}
.pswp__preloader--active {
    opacity: 1;
}


/*
6. Additional styles
*/


.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}
.pswp__top-bar,
.pswp__caption {
    background-color: rgba(0, 0, 0, 0.5);
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.45);
}

.pswp__ui--idle .pswp__top-bar,
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0;
}

@media (hover: none) {
    .pswp__ui--idle .pswp__top-bar,
    .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 {
    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: none;
}
.pswp__element--disabled {
    display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
    background: none;
}