/*
Version: 1.0
Author: Julian Vizcaino
Web: https://integral-web.com
*/

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

.JSlider {
	position: relative;
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	background: #eeeeee;
}

.JSlider * {
	transition: all .5s ease-in-out;
}

.JSlider,
.JSlider * {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

.JSlider .JSlider_img {
	width: 100%;
	position: absolute;
	white-space: nowrap;
	opacity: 0;
}

.JSlider .JSlider_img img,
.JSlider .JSlider_img video {
	width: 100%;
	display: block;
	margin: 0px auto;
}

.JSlider .JSlider_text {
	position: absolute;
	opacity: 0;
	z-index: 1;
	font-family: sans-serif;
	white-space: nowrap;
}

.JSlider_loading {
	width: 50px;
	position: absolute;
	top: calc((100% - 50px) / 2);
	left: calc((100% - 50px) / 2);
	z-index: 0;
}

.JSlider_button_map {
	width: 100%;
	position: absolute;
	bottom: 20px;
	left: 0px;
	text-align: center;
	z-index: 2;
	cursor: pointer;
}

.JSlider_button_map div {
	display: inline-block;
	vertical-align: middle;
	background: #ffffff;
	border: 1px solid #cccccc;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	margin: 10px;
	transition: 0.5s background ease-in-out;
}

.JSlider_button_map div.active {
	background: #666666;
}

.JSlider_arrow_left {
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc((100% - 40px) / 2);
	left: -40px;
	z-index: 2;
	cursor: pointer;
	border-radius: 40px;
	/*background: #e91e63;*/
	transition: all .5s ease-in-out;

	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23666666'%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position-x: 7px;
}

.JSlider_arrow_right {
	width: 40px;
	height: 40px;
	position: absolute;
	top: calc((100% - 40px) / 2);
	right: -40px;
	z-index: 2;
	cursor: pointer;
	border-radius: 40px;
	/*background: #e91e63;*/
	transition: all .5s ease-in-out;

	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23666666'%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position-x: 7px;
}

.JSlider_arrow_left img,
.JSlider_arrow_right img {
	display: none;
	width: 100%;
}

.JSlider .JSlider_arrow_left,
.JSlider .JSlider_arrow_right {
	opacity: 0;
}

.JSlider:hover .JSlider_arrow_left,
.JSlider:hover .JSlider_arrow_right {
	opacity: 1;
}

.JSlider:hover .JSlider_arrow_left {
	left: 20px;
}

.JSlider:hover .JSlider_arrow_right {
	right: 20px;
}

/*.JSlider_arrow_left img {
	margin_left: -3px;
}

.JSlider_arrow_right img {
	margin_left: 3px;
}

.JSlider_arrow_left:hover,
.JSlider_arrow_right:hover {
	background: #f5f5dc;
}*/

@media screen and (max-width: 999px) {
	.JSlider .JSlider_arrow_left,
	.JSlider .JSlider_arrow_right {
		display: none
	}

	.JSlider_button_map div {
		width: 10px;
		height: 10px;
	}

	.JSlider_button_map {
		bottom: 0px;
	}
}