.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: var(--pk-color-secondary);
	-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(2) .arrow {
	background-color: var(--pk-color-tertiary);
}

.swiper-buttons button:nth-child(1) .arrow {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6548 6.37169L0.750024 6.37168M0.750024 6.37168L6.37172 11.9934M0.750024 6.37168L6.37172 0.749992' stroke='%230B2255' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='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='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6548 6.37169L0.750024 6.37168M0.750024 6.37168L6.37172 11.9934M0.750024 6.37168L6.37172 0.749992' stroke='%230B2255' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	mask-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6548 6.37169L0.750024 6.37168M0.750024 6.37168L6.37172 11.9934M0.750024 6.37168L6.37172 0.749992' stroke='%230B2255' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	transform: rotate(180deg);
}
.swiper-buttons .swiper-button-disabled {
	opacity: .5;
}

.swiper-buttons button:hover .arrow {
	background-color: #D4D4D4;
}

.swiper-buttons button:hover {
	border-color: #D4D4D4;
}

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