/*
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: 984px !important;*/
	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%;
	height: auto;
	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: 3;
	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: 80px;
	height: 80px;
	position: absolute;
	top: calc((100% - 40px) / 2);
	left: -20px;
	z-index: 3;
	cursor: pointer;
	border-radius: 40px;
	/*background: #e91e63;*/
	transition: all .5s ease-in-out;
}

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

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

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

/*.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;
}*/

/*.JSlider_img img{
  margin-top: -150px !important;
}*/

@media screen and (max-width: 999px) {
	
	.JSlider {
	height: 500px !important;
    }
	
	.JSlider .JSlider_arrow_left,
	.JSlider .JSlider_arrow_right {
		/*display: none*/
	}
	
	.JSlider_arrow_right {
	right: -25px;
	}
	.JSlider_arrow_left {
	left: -25px;
	}

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

	.JSlider_button_map {
		bottom: 0px;
	}
	
	/*.JSlider_img img{
       margin-top: 0px !important;
    }*/
}