.figure-button {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  text-decoration: none;
  background-color: #ff9900;
  color: #fff;
  padding: 13px 29px;
  border: none;
  outline: none;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: opacity ease 0.3s, background-color ease 0.3s, -webkit-filter ease 0.3s;
  transition: opacity ease 0.3s, background-color ease 0.3s, -webkit-filter ease 0.3s;
  -o-transition: opacity ease 0.3s, filter ease 0.3s, background-color ease 0.3s;
  transition: opacity ease 0.3s, filter ease 0.3s, background-color ease 0.3s;
  transition: opacity ease 0.3s, filter ease 0.3s, background-color ease 0.3s, -webkit-filter ease 0.3s;
  position: relative;
  display: block;
  color: #fff !important;
}
.figure-button:hover {
  color: #fff;
  background-color: rgba(255, 153, 0, 0.8);
  -webkit-filter: drop-shadow(0px 10px 5px rgba(35, 31, 32, 0.25));
          filter: drop-shadow(0px 10px 5px rgba(35, 31, 32, 0.25));
}
.figure-button:active {
  background-color: #ff9900;
  color: rgba(255, 255, 255, 0.8);
  -webkit-filter: none;
          filter: none;
}
.figure-button svg {
  position: absolute;
  left: 100%;
  top: 0;
  width: auto;
  height: 100%;
  -webkit-transition: opacity ease 0.3s;
  -o-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}
.figure-button:hover svg {
  opacity: 0.8;
}