.mySlides {
	display: none
}

.myslidesMobile{
	display: none;
	height: 600px;
}
img {
	vertical-align: middle;
}

.slideshow-container {
	width: auto;
	margin: 0 100px !important;
	height: fit-content;
	position: relative;
}

.splide__track{
	background:
	/* top, transparent black, faked with gradient */ 
	linear-gradient(
	  rgba(0, 0, 0, 0.8), 
	  rgba(0, 0, 0, 0.8)
	),
	/* bottom, image */
	url(../images/abons/fon_copy.png);
	background-size: 150%;
	background-position: center;
	background-repeat: no-repeat;
}

.pc_version_raspisanie{
	background:
	/* top, transparent black, faked with gradient */ 
	linear-gradient(
	  rgba(0, 0, 0, 0.8), 
	  rgba(0, 0, 0, 0.8)
	),
	/* bottom, image */
	url(../images/abons/fon.png);
	background-size: 110%;
	background-position: 50% 40%;
	background-repeat: no-repeat;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin: 0 -60px;
	color: white;
	font-weight: bold;
	font-size: 100px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.dot, .dotMobile {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #999999;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active,
.dot:hover, .dotMobile:hover {
	background-color: green;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

@keyframes fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}
@media only screen and (max-width: 600px) {
	.mobile_version_raspisanie{
		display: block;
		margin-top: 50px;
	}
	.pc_version_raspisanie{
		display: none;
	}
}
@media only screen and (min-width: 600px) {
	.mobile_version_raspisanie{
		display: none;
	}
	.pc_version_raspisanie{
		display: block;
		margin-top: 50px;
	}
}