<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */

html.swipebox-html.swipebox-touch {
	overflow: hidden !important;
}

#swipebox-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2000 !important;
	width: 100% !important;
	height: 100%;
	overflow: hidden;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

#swipebox-container {
	position: relative;
	width: 100%;
	height: 100%;
}

#swipebox-slider {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	white-space: nowrap;
	cursor: pointer;
	-webkit-transition: -webkit-transform .4s ease;
	        transition:         transform .4s ease;
}

#swipebox-slider .slide {
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: 1px;
	text-align: center;
}

#swipebox-slider .slide:before {
	display: inline-block;
	width: 1px;
	height: 50%;
	margin-right: -1px;
	content: "";
}

#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 65%;
	max-height: 85%;
	padding: 0;
	margin: 0;
	margin-top: -50px;
	vertical-align: middle;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .24);
	border-radius: 10px;
}

#swipebox-slider .slide .swipebox-video-container {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	max-width: 1140px;
	max-height: 100%;
	padding: 5%;
	background: none;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}

#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.swipebox-no-close-button #swipebox-close {
	display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
	opacity: .3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
	-webkit-animation: rightSpring .3s;
	        animation: rightSpring .3s;
}

.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
	-webkit-animation: leftSpring .3s;
	        animation: leftSpring .3s;
}

.swipebox-touch #swipebox-container:before,
.swipebox-touch #swipebox-container:after {
	position: absolute;
	top: 0;
	z-index: 999;
	width: 20px;
	height: 100%;
	content: " ";
	opacity: 0;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	-webkit-transition: all .3s ease;
	        transition: all .3s ease;
}

.swipebox-touch #swipebox-container:before {
	left: 0;
	-webkit-box-shadow: inset 10px 0 10px -8px #656565;
	        box-shadow: inset 10px 0 10px -8px #656565;
}

.swipebox-touch #swipebox-container:after {
	right: 0;
	-webkit-box-shadow: inset -10px 0 10px -8px #656565;
	        box-shadow: inset -10px 0 10px -8px #656565;
}

.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
	opacity: 1;
}

.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
	opacity: 1;
}

@-webkit-keyframes rightSpring {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@keyframes rightSpring {
	0% {
		left: 0;
	}

	50% {
		left: -30px;
	}

	100% {
		left: 0;
	}
}

@-webkit-keyframes leftSpring {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

@keyframes leftSpring {
	0% {
		left: 0;
	}

	50% {
		left: 30px;
	}

	100% {
		left: 0;
	}
}

/* Skin
--------------------------*/

#swipebox-overlay {
	/* background: linear-gradient( -146deg, rgb(33,42,58) 0%, rgb(2,178,176) 100%);
	background: linear-gradient( -146deg, rgb(48, 97, 107) 0%, rgb(18, 37, 41) 100%); */
	background-color: #313036;
}

#swipebox-prev {
	position: absolute;
	top: 44%;
	left: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background-color: #97a7b8;
	box-shadow: 0 6px 17px 0 rgba(0, 0, 0, .15);
	border-radius: 50%;
	cursor: pointer;
	transition: left .25s ease-in-out;
}

#swipebox-prev::after {
	padding-right: 3px;
	color: #ffffff;
	content: "\f053";
	font-family: "Font Awesome 5 Pro";
	font-size: 20px;
}

#swipebox-prev:hover {
	left: 55px;
}

#swipebox-next {
	position: absolute;
	top: 44%;
	right: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background-color: #97a7b8;
	box-shadow: 0 6px 17px 0 rgba(0, 0, 0, .15);
	border-radius: 50%;
	cursor: pointer;
	transition: right .25s ease-in-out;
}

#swipebox-next::after {
	padding-left: 3px;
	color: #ffffff;
	content: "\f054";
	font-family: "Font Awesome 5 Pro";
	font-size: 20px;
}

#swipebox-next:hover {
	right: 55px;
}

#swipebox-title {
	position: absolute;
	top: 30px;
	left: 60px;
	color: #ffffff;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	font-weight: 500;
}

#swipebox-close {
	position: absolute;
	top: 20px;
	right: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: opacity .2s ease-in-out;
}

#swipebox-close:hover {
	opacity: .7;
}

#swipebox-close::after {
	display: block;
	width: 41px;
	height: 4px;
	content: "";
	background-color: #ffffff;
	border-radius: 3px;
	transform: rotate(45deg);
}

#swipebox-close::before {
	display: block;
	width: 41px;
	height: 4px;
	margin-right: -40px;
	content: "";
	background-color: #ffffff;
	border-radius: 3px;
	transform: rotate(-45deg);
}
</pre></body></html>