#woo-gallery-container {
  position: relative;
}

#woo-gallery-container .woo-gallery-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 26px;
  height: 34px;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, opacity 160ms ease;
}

#woo-gallery-container .woo-gallery-control:hover,
#woo-gallery-container .woo-gallery-control:focus {
  background: rgba(0, 0, 0, 0.75);
  outline: none;
}

#woo-gallery-container .woo-gallery-control::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

#woo-gallery-container .woo-gallery-control--previous {
  left: 0;
}

#woo-gallery-container .woo-gallery-control--previous::before {
  left: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

#woo-gallery-container .woo-gallery-control--next {
  right: 0;
}

#woo-gallery-container .woo-gallery-control--next::before {
  right: 10px;
  transform: translateY(-50%) rotate(135deg);
}

#woo-gallery-container .woo-gallery-control.is-disabled {
  cursor: default;
  opacity: 0.25;
  pointer-events: none;
}
