#slider {
	position: relative;
	width: 100%;
	height: 30vw;
	margin: 0px auto;
	font-family: Rounded Mplus;
	perspective: 1400px;
	transform-style: preserve-3d;
}
.slider-container{
	max-width: 1800px;
	margin:0 auto;
}
#slider input[type=radio] {
	display: none;
	position: relative;
	top: 108%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin: 0 15px 0 0;
	opacity: 0.4;
	transform: translateX(-83px);
	cursor: pointer;
}

#slider input[type=radio]:nth-child(5) {
	margin-right: 0px;
}

#slider input[type=radio]:checked {
	opacity: 1;
}

#slider label {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	color: white;
	font-size: 70px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 400ms ease;
}
.owl-carousel .owl-item{
	visibility: hidden;
}
.owl-carousel .item div{
	width:100%;
	height:400px;
	box-sizing: border-box;
	border:8px solid white;
	
}


/* Slider функционал */


/* Аквтиный Slide */

[active-item='3']
{
	box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
	transform: translate3d(0%, 0%, 0px);
	z-index: 3;
	visibility:visible !important;
}


/* Следующий Slide */

[active-item='2']
{
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
	/* transform: translate3d(15%, 0, -100px); */
	transform: translate3d(30%, 0%, 0) scale(0.85) !important;
	z-index: 2;
	opacity: .35;
	visibility:visible !important;
}


/* Следующий за следующим Slide */

[active-item='5']
 {
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	/* transform: translate3d(30%, 0, -250px); */
	transform: translate3d(-60%, 0%, 0px) scale(0.6) !important;
	z-index: 1;
	opacity: .2;
	visibility:visible !important;
}


/* Предыдущий за предыдущим Slide */

[active-item='4']
{
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	/* transform: translate3d(-30%, 0, -250px); */
	transform: translate3d(-30%, 0%, 0) scale(0.85) !important;
	z-index: 2;
	opacity: .35;
	visibility:visible !important;
}


/* Предыдущий Slide */

[active-item='1']
{
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
	/* transform: translate3d(-15%, 0, -100px); */
	transform: translate3d(60%, 0%, 0px) scale(0.60) !important;
	z-index: 1;
	opacity: .2;
	visibility:visible !important;
}

.owl-carousel .owl-stage{
	padding-top: 70px;
	padding-bottom: 70px;
}
.owl-carousel .owl-nav button.owl-prev{
	width: 36px;
    height: 56px;
	background: url(/img/slider-left-arrow.svg) no-repeat !important;
}
.owl-carousel .owl-nav button.owl-next{
	width: 36px;
    height: 56px;
	background: url(/img/slider-right-arrow.svg) no-repeat !important;
}