<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.swipe_view_dots{
	text-align:center;
	margin:1.5em 0;
-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

.swipe_view_dot{
	position:relative;
	padding:1em;
	cursor:pointer;
-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

.swipe_view_dot:before{
	content:'';
	width:4px;
	height:4px;
	position:absolute;
	border:2px solid #bec3c7;
	border-radius:100%;
	top:10px;
	left:5px;
    transition: all 100ms linear;
}

.swipe_view_dot.swipe_view_dot_active:before{
	border-width:0px;
	background-color:#ffa851;
	width:13px;
	height:13px;
	top:7px;
	left:3px;
}

.swipe_view_item{
	display:none;
-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

.swipe_view_item.swipe_view_item_active{
	display:block;
}

.swipe_view_counter{
	text-align:center;
	margin:1em 0;
}

.swipe_view_container{
	position: relative;
}

.swipe_arrow_left,
.swipe_arrow_right{
	position: absolute;
	top: 100px;
	font-size: 2.5em;
	z-index:2;
	transition: all 100ms linear;
	cursor:pointer;
}

.swipe_arrow_left:not(.swipe_arrow_inactive):hover,
.swipe_arrow_right:not(.swipe_arrow_inactive):hover{
	transform: scale(1.15);
}

.swipe_arrow_left{
	left: -50px;
}

.swipe_arrow_right{
	right: -50px;
}

.swipe_arrow_inactive{
	opacity:.4;
	cursor:default;
}

.swipe_arrow_left.arrows_corner{
	left:auto;
	right:20px;
	font-size: 1.8em;
	top: 0;
}

.swipe_arrow_right.arrows_corner{
	right:0px;
	font-size: 1.8em;
	top: 0;
}

@media screen and (max-width: 1300px) {
	.swipe_arrow_left,
	.swipe_arrow_right{
		top:auto;
		bottom:-.6em;
		font-size: 2em;
		padding:.3em;
	}

	.swipe_arrow_left{
		left: 5px;
	}

	.swipe_arrow_right{
		right: 5px;
	}

	.swipe_arrow_left.arrows_corner{
		left:auto;
		right:20px;
		top: 0;
		bottom:auto;
	}

	.swipe_arrow_right.arrows_corner{
		right:0px;
		top: 0;
		bottom:auto;
	}
}
</pre></body></html>