@charset "utf-8";
html,body{ margin:0; padding:0; height:100%; width:100%;}

.swiperContainer .swiper-slide div.infoBlock div.title h3 a {text-decoration: none; color:#fff;}
.swiperContainer .swiper-slide div.infoBlock div.title h3 a:hover {text-decoration: none; color:#fff;}

.swiperContainer {
	background-color:rgba(0,0,0,0.7); 
	backdrop-filter: blur(4px);
	width:100vw;
	height:100vh;
	overflow:hidden;
	z-index: 9999;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
}

.swiper-slide {
	position: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;
	*/
}

.swiper-pagination-bullet {
	border-radius: 1px;
	width: 18px;
	height: 2px;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: #000;
	opacity: 1;
	background: rgba(255, 255, 255, 0.2);
}

.swiper-pagination-bullet-active {
	color: #fff;
	background: #fff;
}

.swiper-pagination {
	position: absolute;
	top: 60px !important;
	height: 2px;
	margin: 0;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
  
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,2px);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
	right: calc(50% - 350px);
	left: auto;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
	left: calc(50% - 350px);
	right: auto;
}

.swiper-button-prev::after, .swiper-button-next::after {font-size: 1.4rem;}

.slideTimer {position:absolute; bottom:20px; right:20px; z-index:2; color:#fff; font-size:0.9rem;}
.swiper-slide .timeBlock {position:absolute; padding: 40px 35px; top:0; width:100%;}
.swiper-slide .timeBlock::after {
	content: '';
	position: absolute;
	z-index: 0;
	bottom: 0;
	top: -2px;
	left: 0;
	width: 100%;
	transform: matrix(-1,0,0,1,0,0);
	background: linear-gradient(180deg,rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.35) 20%,rgba(0,0,0,0) 100%);
	height: 100px;
}
.swiper-slide .timeBlock .time {position:relative; z-index:1; color:#fff; font-weight:bold; font-size:0.9rem;}
.swiper-slide .infoBlock {position:absolute; color:#fff; font-size: 2.2rem; padding: 20px 35px; line-height: 2.4rem; bottom:0; width:100%;}
.swiper-slide .infoBlock::before {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: -2px;
	left: 0;
	width: 100%;
	transform: matrix(1,0,0,-1,0,0);
	background: linear-gradient(180deg,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.55) 77.6%,rgba(0,0,0,0) 100%);
}
.swiper-slide .infoBlock .title {padding-bottom:20px; z-index: 2; position: relative;}
.swiper-slide .infoBlock .author {font-size:0.9rem; position:relative; z-index:2;}
	
.swiper-button-next, .swiper-button-prev {
	background-color: rgba(0,0,0,0.5);
	color: white;
	padding: 2px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	z-index:2;
	font-size:2rem;
	width:60px;
	height:60px;
}
.closeSwiper i {display: block;}

@media (max-width: 576px) { 
	.swiperWrapper {width: 100%}
	.swiper {
		width: 100%;
		height: 100%;
		margin-top:0;
	}
	.closeSwiper {
		color: white;
		padding: 2px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		margin: 10px;
		position:absolute;
		top:2px;
		right:2px;
		z-index:2;
		font-size:1.5rem;
		background:none;
		border:none;
	}
}
@media (min-width: 577px){ 
	.swiperWrapper {max-width:460px;}
	.swiper {
		width: 100%;
		height: calc(100% - 100px);
		margin-top:50px;
		border-radius: 4px;
	}
	.closeSwiper {
		background-color: rgba(0,0,0,0.5);
		border: none;
		color: white;
		padding: 2px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		margin: 10px;
		border-radius: 50%;
		position:absolute;
		top:20px;
		right:20px;
		z-index:2;
		font-size:1.5rem;
		width:60px;
		height:60px;
	}
}
@media (max-width: 768px) { 
	.swiper-button-next, .swiper-button-prev {display:none;}
}