.flickity-prev-next-button {
  top: 50%;
  width: 44px; /* keep the width */
  height: 44px; /* keep the height */
  border-radius: 0; /* remove the roundness to make it square */
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { 
  left: 10px; 
}
.flickity-prev-next-button.next { 
  right: 10px; 
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border-radius: 10px;
  color: #e25e5e;
  opacity: 1; /* remove the opacity effect */
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  /* box-shadow: 0 0 0 5px #19F; */
}

.flickity-button:active {
  opacity: 1; /* remove opacity on active as well */
}

.flickity-button:disabled {
  opacity: 1; /* remove opacity on disabled */
  cursor: pointer;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* Make sure the previous and next icons are centered properly */
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%; /* adjust icon size */
  height: 70%; /* adjust icon size */
  transform: translate(-50%, -50%); /* center the icon */
}
