/*

   Title: Slider
   Author: QBIT Ltd
   Date: 19/02/2024

   File path: ../../../../uploads/

*/

#slider {}

.slider {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.slides {
	display: flex;
	overflow-x: hidden;
}

.slide {
	flex: 1 0 calc(100% / 4);
	overflow: hidden;
}

.left,
.right {
	width: 50px;
	height: 50px;
	position: absolute;
	border-radius: 100px;
	transition: background-position 0.3s ease;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	text-indent: -9999px;
	background-color: rgba(255, 255, 255, 0.7);
	background-size: 10px;
	background-repeat: no-repeat;
}

.left {
	left: 5px;
	background-image: url('../../../../uploads/svg/left.svg');
	background-position: center center;
}

.right {
	right: 5px;
	background-image: url('../../../../uploads/svg/right.svg');
	background-position: center center;
}

/* Media queries */
@media (max-width: 64em) {

	.slide {
		flex: 1 0 100%;
	}

}