
.slider_mini {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.slider_mini-content {
	position: relative;
	width: 100%;
}

.prev-control {
	display: none;
}

.auto-control {
	display: none;
}

.next-control {
	display: none;
}

.slider_mini-content-wrapper {
	 	display: flex;
	height: 100px;
	transition: transform 0.5s ease-in-out;
	 flex-direction: row-reverse;

}

.slider_mini-content__item {
	flex: 1 0 100%;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	display: grid;
	align-items: center;
	justify-content: center;
	padding-left: 5%;
	padding-right: 5%;
}

.image-1 {
	background-color: #fd312e;
}

.slider_mini-controls {
	text-align: center;
}

.slider_mini-content__controls {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/*transform: translateY(-50%);*/
	/*padding:0 15px;*/
	    pointer-events: none;

}

/* Arrows */
.prev-arrow,
.next-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: rgba(0, 0, 0, 0.3);
	width: 20px;
	transition: all 0.3s;
	pointer-events: auto;
}
.prev-arrow {
	left: 20px;
}
.next-arrow {
	right: 20px;
}

.prev-arrow:hover,
.next-arrow:hover {
	cursor: pointer;
	color: rgba(0, 0, 0, 0.7);
}

/* Dots */
.dots {
	position: absolute;
	display: flex;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10%;
	pointer-events: auto;
	
}

.dot {
	cursor: pointer;
	width: 8px;
	height: 8px;
	background-color: rgba(0, 0, 0, 0.3);
	/*box-shadow: 0 0 5px 0px rgba(0,0,0,0.9);*/
	border-radius: 50%;
	transition: all 0.3s;
	pointer-events: auto;
	margin-left: 4px;
  margin-right: 0;
}

.dot:last-child {
	margin-right: 0;
}
.dot:hover {
	background-color: #fff;
}
.dot--active {
	background-color: rgba(255, 255, 255, 0.5);
}


/* Mods */
.disabled {
	background-color: #dccfcf;
	color: #b0a8a8;
	cursor: default;
	
}

.d-none {
	display: none;
}
.active {
	opacity: 1;
}
.centered {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 780px) {
	.slider_mini {
		position: relative;
		height: 100%;
		width: 100%;
		overflow: hidden;
		margin-top: -24px;
	}

	.slider_mini-content__item {
		flex: 1 0 100%;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		font-size: 14px;
		font-weight: 600;
		color: #fff;
		display: grid;
		align-items: center;
		justify-content: center;
		padding-left: 5%;
		padding-right: 5%;
		pointer-events: auto;
	}
}
#clicable_slide .slider_mini-content__item a {
    pointer-events: auto;
    z-index: 10;
}