/*Button*/

.button-slideshow {
  display: inline-block;
  padding: 13px 20px;
  color: #a9c82c;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 3px solid #e1e1e1;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}

.button-slideshow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.button-slideshow::after {
  transition: border 0.1s linear 0.05s;
}

.button-slideshow .button-slideshow-inner {
  position: relative;
  z-index: 2;
}

.button-slideshow:hover {
  color: #004380;
  transition: color 0.1s linear 0s;
}

.button-slideshow:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.button-slideshow:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}