/* Next & Previous buttons */
.prec, .succ {
  cursor: pointer;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.succ {
  border-radius: 3px 0 0 3px;
}
.prec:hover, .succ:hover {
    background-color: rgba(80,80,80,0.8);
}