@charset "utf-8";
.swiper-container,
.swiper-wrapper,
.swiper-slide,
.swiper-button-next,
.swiper-button-prev {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	background-position: center;
	background-size: cover;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
	content: '';
	display: block;
    top: 50%;
    width: 50px;
    height: 50px;
	border-radius: 25px;
	background: rgba(200,220,227,0.8);
	transform: translateY(-10px);
}
.swiper-button-prev:after,
.swiper-button-next:after {
	content: '';
	display: block;
	width: 26px;
	height: 24px;
	position: absolute;

}

.swiper-button-next:after {
	background: url(../images/arrow_next.png) no-repeat 0 0;
	background-size: 26px;
	top: 13px;
	left: 12px;
}


.swiper-button-prev:after {
	background: url(../images/arrow_prev.png) no-repeat 0 0;
	background-size: 26px;
	top: 13px;
	left: 12px;
}


.swiper-pagination-bullet {
    background: #C8DCE3;
    opacity: .5;
}
.swiper-pagination-bullet-active {
	background: #18A4D8;
    opacity: 1;
}
.swiper-container-horizontal >.swiper-pagination-bullets {
	bottom: -30px;
}

.panel_contents .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 0;	
}


@media(max-width: 767px) {
.swiper-button-next,
.swiper-button-prev {
	transform: scale(0.6)!important;
}
.swiper-button-prev {
	left: 0px;	
}

.swiper-button-next {
	right: 0px;	
}
	
}

