.slider-arrow-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #97d53a;
  color: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  border: none;
  box-shadow: 0 4px 24px rgba(26,26,46,0.12);
  font-size: 2.2rem;
  transition: all 0.25s cubic-bezier(.4,1.3,.6,1);
  outline: none;
}
.slider-arrow-custom.slider-arrow-left {
  left: 32px;
}
.slider-arrow-custom.slider-arrow-right {
  right: 32px;
}
.slider-arrow-custom .arrow-label {
  display: none;
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 10px;
  letter-spacing: 0.5px;
}
.slider-arrow-custom:hover {
  width: 120px;
  border-radius: 32px;
  background: rgba(20,20,40,0.85);
  color: #fff;
  justify-content: flex-start;
}
.slider-arrow-custom:hover .arrow-label {
  display: block;
}
.slider-arrow-custom i {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin-left: 0;
}
.slider-arrow-custom.slider-arrow-left:hover {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.slider-arrow-custom.slider-arrow-left .arrow-label {
  margin-left: 10px;
  margin-right: 0;
}
