.gallery-container .arrow-button {
  width: 60px;
  height: 60px;
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  */
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  border: 1px solid #c28565;
  background-color: transparent;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gallery-container .arrow-button:hover {
  background-color: #fff;
  border: 1px solid #fff;
}

.gallery-container .arrow-button i {
  font-size: 24px;
  color: #c28565;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
