.swiper-container {
	position: relative;

	&.swiper-has-navigation {
		padding: 0 75px;

		@media (max-width: 576px) {
			padding: 0;
		}
	}

	.swiper-prev,
	.swiper-next {
		position: absolute;
		background-color: #e6e7eb;
		background-repeat: no-repeat;
		width: 58px;
		height: 58px;
		color: #000;
		border-radius: 50%;
		z-index: 100;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;

		@media (max-width: 576px) {
			display: none;
		}

		&.swiper-button-disabled {
			opacity: 0.3;
		}
	}

	.swiper-next {
		background-image: url('/assets/images/arrow-right.png');
		right: 0;
	}

	.swiper-prev {
		background-image: url('/assets/images/arrow-left.png');
		left: 0;
	}
}
