/* Layout */
/* ------ */
.arrows-bar {
  margin: 20px auto;
  height: auto;
  background: var(--primary-color);
  padding: 0px;
  line-height: 2;
  text-align: center;
}
/* General Button */
/* -------------- */

.button {
  position: relative;
  margin: 20px;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 2.8px;
  padding-bottom: 2.8px;
  background-color: var(--secondary-color);
  font-size: 1.5rem;
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}
.button:hover {
  background-color: var(--sixth-color);
  color: #000;
}
/* Arrow Buttons */
/* ------------- */
.next::after,
.prev::after {
  border-style: solid;
}
/* Next Button */
/* ----------- */
.next::after {
  right: -34px;
  border-width: 17px;
  border-color: transparent transparent transparent var(--secondary-color);
}
.next:hover::after {
  border-left-color: var(--sixth-color);
}
/* Prev Button */
/* ----------- */

a.button.prev {
  color: var(--primary-color);
  text-decoration: none;
}

a.button.next {
  color: var(--primary-color);
  text-decoration: none;
}

a.button.prev:hover  {
  color: #000;
  text-decoration: none;
}

a.button.next:hover  {
  color: #000;
  text-decoration: none;
}

.prev::after {
  left: -34px;
  border-color: transparent var(--secondary-color) transparent transparent;
  border-width: 17px;
}
.prev:hover::after {
  border-right-color: var(--sixth-color);
}

/* Arrows */
/* -------------- */
.arrow {
  position: relative;
  margin: 10px;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 2.8px;
  padding-bottom: 2.8px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 2rem;
}
.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}
