/* main slider */
.swiper {
	width: 100%;
	height: max-content;
	display: flex;
	align-items: center;
	z-index: 0;
}

.swiper-v{
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.swiper-v .swiper-slide{
	width: auto;
}

.swiper-slide {
	font-size: inherit;
	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: flex-start;
	text-align: left;
	font-weight: inherit;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide {
	width: max-content;
	height: fit-content;
	padding: 0px 0px;
}

.swiper-slide {
  	height: 100%;
}

.slider-btn {
	width: calc(100% + 60px);
	height: 100%;
	position: absolute;
	flex-direction: row-reverse;
	display: flex;
	justify-content: space-between;
	left: -30px;
	align-items: center;
	transition: all 0.3s ease;
}


.slider-btn div {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	background-color: var(--main-div);
	border-radius: 15px;
	font-size: 10px;
	position: relative;
	z-index: 1;
	transition: all 1s ease;
}

.slider-btn .slider-next{
	right: 0px;
    left: auto;
}

.slider-btn .slider-prev{
	left: 0px;
	right: auto;
}

.swiper:hover .slider-btn{
	display: flex;
	width: calc(100% - 10px);
	left: 5px;
}

.slider-btn div:hover{
	background-color: var(--bg-secondary);
	color: white;
	width: 40px;
}

