/* ------------------------------------
	slide
------------------------------------ */
.wideslider {
	width: 100%;
	height: 460px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	overflow: hidden;
	visibility: hidden;
	background: #F1EAF2;
}
.wideslider.small {
	height: 240px;
}
.wideslider ul,
.wideslider ul li {
	float: left;
	display: inline;
	overflow: hidden;
}
.wideslider ul li {
	position: relative;
}
.wideslider ul li a {
	display: block;
}
.wideslider ul li p {
	width: 100%;
	padding: 30px 50px 50px 50px;
	color: #FFF;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
}
.wideslider ul li img {
	width: 100%;
}
.wideslider_base {
	top: 0;
	position: absolute;
}
.wideslider_wrap {
	top: 0;
	position: absolute;
	overflow: hidden;
}
.slider_prev,
.slider_next {
	top: 0;
/*	overflow: hidden;*/
	position: absolute;
	z-index: 10;
	cursor: pointer;
	background: #e3d5e5;
}
.btn_prev,
.btn_next {
	width: 40px;
	height: 40px;
	margin: -20px 0 0 0;
	position: absolute;
	top: 50%;
	opacity: 1!important;
	z-index: 99;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.btn_prev {
	left: -20px;
	background: url(../files/btn_prev.png) no-repeat right center;
}
.btn_next {
	right: -20px;
	background: url(../files/btn_next.png) no-repeat left center;
}
.btn_prev:hover,
.btn_next:hover {
	opacity: 0.6!important;
}
.pagination {
	bottom: 23px;
	left: 0;
	width: 100%;
	height: 15px;
	text-align: center;
	position: absolute;
	z-index: 99;
}
.wideslider.small .pagination {
	bottom: 12px;
}
.pagination a {
	margin: 0 5px;
	width: 10px;
	height: 10px;
	display: inline-block;
	overflow: hidden;
	background: #b9a7bb;
	border-radius: 5px;
	opacity: 1!important;
}
.pagination a.active {
	background: #7b2482;
}

@media only screen and (max-width: 720px) {
	.wideslider.small {
		height: auto;
	}
	.wideslider ul li p {
		display: none;
	}
	.btn_prev,
	.btn_next {
		display: none;
	}
	.pagination {
		bottom: 10px;
	}
	.wideslider.small .pagination {
		bottom: 3px;
	}
}

/* ------------------------------------
	in case of only one slide
------------------------------------ */
.oneSlide .slider_prev,
.oneSlide .slider_next,
.oneSlide .btn_prev,
.oneSlide .btn_next,
.oneSlide .pagination {
	display: none;
}
.oneSlide .wideslider_wrap > ul:not(.mainList) {
	visibility: hidden;
}