/* Next & previous buttons */
.pm-prev, .pm-next {
  cursor: pointer;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  box-sizing: border-box
}

.pm-prev {
  position: relative;
  left: 0;
  border-radius: 3px 0 0 3px;
  box-sizing: border-box
}

.pm-next {
  position: relative;
  float:right;
  border-radius: 3px 0 0 3px;
  box-sizing: border-box
}



/* On hover, add a black background color with a little bit see-through */
.pm-prev:hover, .pm-next:hover {
  background-color: rgba(0,0,0,0.8);
}