.swiper__navigation {
	position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1000;
  pointer-events: none;
}
i.swiper-arrow {
  background-color: var(--color-white);
  width: 64px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  border-radius: 20px;
  opacity: 1;
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  box-shadow: var(--box-shadow);
  transition: background-color .4s ease, opacity .4s ease, visibility .4s ease;
  pointer-events: all;
}
i.swiper-button-disabled {
	opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
i.swiper-arrow::before {
	color: inherit; 
}
@media (max-width: 768px) {
  i.swiper-arrow {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}
i.swiper-arrow:hover {
	background-color: var(--color-primary-hover); 
  color: var(--color-white);
  border: 1px solid var(--color-primary-hover); 
}