@charset "utf-8";
.waves_button li {
    text-align: center;
}

.waves_button a {
  margin: 10px 0 20px;
  border: none;
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 13px;
  padding: 1.5rem 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  z-index: 1;
  border-radius: 30px;
  background: linear-gradient(90deg,#636,#fcc);
}

.waves_button a::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  border-radius: 30px;
}

.waves_button a:focus,
.waves_button a:hover {
  outline: 0;
  text-decoration: none;
  color: #fff;
}

.waves_button a:focus::after,
.waves_button a:hover::after {
  opacity: 1;
  visibility: visible;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c69;
  transition: all .4s ease-in;
}

