/* Swiper Slider Edit */

/* New */
html, body {
  //position: relative;
  //height: 100%;
}
/* New */

body {
	margin: 0;
	padding: 0;
}
.swiper-container {
	width: 100%;
	height: 100%;
	margin-left: auto; /*Not in default */
	margin-right: auto;	/*Not in default */
}
.swiper-slide {
	/* min-height can be set for horizontal if body and html not 100% and relative */
	text-align: center;
	font-size: 18px;
	//background: #fff;
	
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

/*Not in default */
.swiper-button-next, .swiper-button-prev {
	background-image: none;
	margin-top: -10px;
	color: #00a1df;	
}
.swiper-button-next {
	right: 2%;
	width: 42px;
}
.swiper-button-prev {
	left: 2%;
	width: 42px;
}
.swiper-pagination-bullet {
	opacity: 1;
	background: #fff;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #00a1df;
}

.swiper-container-vertical > .swiper-pagination {
	left: 2%;
	top: 60%;
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	.swiper-container-vertical > .swiper-pagination {
		left: 5%;
		top: 50%;
	}
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 10px 0;
}