/* CSS Document */
.swiper-viewport {
	background: #fff;
	z-index: 1;
	width: 100%;
	position: relative;
	overflow: hidden;
}
/* OpenCart Code */
.swiper-container {
	direction: ltr !important;
}
.swiper-pager {
	width: 100%;
	position: absolute;
	top: 50%;
	line-height: 45px;
}
.swiper-button-prev, .swiper-button-next {
	color: rgba(0, 0, 0, 0.8);
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
	transition: all .3s ease;
	z-index: 2;
 	background-image: none;
	font-size:44px;
	text-align:center;
	height:55px;
	width:55px;
}
.swiper-button-prev img, .swiper-button-next img {
	height:27px;
}
.swiper-viewport .swiper-button-prev {
	padding:4px 12px;
	background: rgba(255,255,255,0.5);
	color:#fff;
	border-top-right-radius:44px;
	border-bottom-right-radius:44px;
	text-align:right;
	top:calc(50% - 30px);
}
.swiper-viewport .swiper-button-next {
	padding:4px 12px;
	background: rgba(255,255,255,0.5);
	color:#fff;
	border-top-left-radius:44px;
	border-bottom-left-radius:44px;
	text-align:left;
	top:calc(50% - 30px);
}
.swiper-button-prev .nav-active, .swiper-button-next .nav-active {
	display:none;
}
.swiper-button-prev:hover .nav-active, .swiper-button-next:hover .nav-active {
	display:unset;
}
.swiper-button-prev:hover .nav-default, .swiper-button-next:hover .nav-default {
	display:none;
}
/* Desktop */

.swiper-viewport .swiper-button-prev {
	opacity: 0.7;
	left: -27px;
}
.swiper-viewport .swiper-button-next {
	opacity: 0.7;
	right: -27px;
}
.swiper-viewport .swiper-button-prev:hover {
	color:#87C1B7;
	opacity: 1;
	background:#e6ebee;
}
.swiper-viewport .swiper-button-next:hover {
	color:#87C1B7;
	opacity: 1;
	background:#e6ebee;
}

.swiper-pagination {
	bottom: 40px;
	left: 0;
	text-align: center;
	width: 100%;
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 20px;
	margin: 0 5px;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	width: 9px;
	height: 9px;
	background: transparent;
	background-image: url('/catalog/view/theme/acp/image/active-item.png');
	background-size:100%;
	background-repeat:no-repeat;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}
.swiper-slide > div {
	min-height:calc(100vh - 88px);
	width:100%;
	display:flex;
	position:relative;
}
.swiper-slide.fullscreen > div > span  {
	height: calc(100vh - 88px);
}
.swiper-slide > div > span {
	position: absolute;
	z-index:2;
	content:'';
	display:table;
	width:100%;
	top:0;
	left:0;
	background-size:cover;
	opacity:0.45;
	background-repeat: no-repeat;
	background-position: center center;
}
.swiper-slide > div > span:first-child {
	z-index:1;
	background:rgba(26, 73, 101, 1);
}

@media (min-width: 768px) {
	.swiper-pagination {
		bottom: 40px;
	}
	.swiper-pagination-bullet {
		width: 11px;
		height: 11px;
	}
	.swiper-pagination-bullet-active {
		width: 12px;
		height: 12px;
	}
	.swiper-button-prev, .swiper-button-next {
		font-size:44px;
		height:90px;
		width:90px;
	}
	.swiper-button-prev img, .swiper-button-next img {
		height:unset;
	}
	.swiper-viewport .swiper-button-prev {
		left: -40px;
		padding:23px;
		top:calc(50% - 30px);
		background:rgba(0,0,0,0.5);
	}
	.swiper-viewport .swiper-button-next {
		right: -40px;
		padding:23px;
		top:calc(50% - 30px);
		background:rgba(0,0,0,0.5);
	}
}
@media (max-width: 991px) {
	.swiper-slide > div {
		min-height:calc(100vh - 60px);
	}
	.swiper-slide.fullscreen > div > span {
		height:calc(100vh - 60px);
	}
}