.swiper-buttons {
	display: flex;
	align-items: center;
	gap: 10px;
}
.swiper-buttons button {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #BFBFBF;
	width: 60px;
	height: auto;
	aspect-ratio: 1;
	background-color: transparent;
	transition: opacity .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;;
}
.swiper-buttons button .arrow {
	width: 40%;
	height: 40%;
	background-color: #BFBFBF;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: opacity .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;;
}
.swiper-buttons button:nth-child(1) .arrow {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='23' height='21' viewBox='0 0 23 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6068 19.386L1.4145 10.1931L10.6068 1.00028M1.41331 10.1931L21.3445 10.1931' stroke='black' stroke-width='2.00048' stroke-linecap='round'/%3E%3C/svg%3E%0A");
	mask-image: url("data:image/svg+xml,%3Csvg width='23' height='21' viewBox='0 0 23 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6068 19.386L1.4145 10.1931L10.6068 1.00028M1.41331 10.1931L21.3445 10.1931' stroke='black' stroke-width='2.00048' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.swiper-buttons button:nth-child(2) .arrow {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='23' height='21' viewBox='0 0 23 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7379 1.00024L20.9302 10.1931L11.7379 19.386M20.9314 10.1931H1.00024' stroke='black' stroke-width='2.00048' stroke-linecap='round'/%3E%3C/svg%3E%0A");
	mask-image: url("data:image/svg+xml,%3Csvg width='23' height='21' viewBox='0 0 23 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7379 1.00024L20.9302 10.1931L11.7379 19.386M20.9314 10.1931H1.00024' stroke='black' stroke-width='2.00048' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.swiper-buttons .swiper-button-disabled {
	opacity: .5;
}

.swiper-buttons button:hover .arrow {
	background-color: var(--sc-white);
}

.swiper-buttons button:hover {
	border-color: var(--sc-white);
}

@media screen and (max-width: 992px) {
	.swiper-buttons button {
		width: 40px;
	}
}