.btn {
  display: inline-block;
  border: 2px solid;
  position: relative;
  background: #fff;
  color: #c4ba91;
  font-weight: bold;
  overflow: hidden;
  border: 2px solid #c4ba91;
  padding: 1.5rem 1.5rem 1.5rem 5rem;
  transition: all 0.3s;
  border-radius: 4px;
}
.btn:before, .btn:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.btn:before {
  width: 7px;
  height: 7px;
  left: 1.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.btn:after {
  left: -2rem;
  background: #c4ba91;
  z-index: 1;
  width: 6rem;
  height: 130%;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.btn span {
  transition: all 0.3s;
  z-index: 3;
}
.btn:hover span {
  position: relative;
  color: #fff;
}
.btn:hover:after {
  right: 0;
  width: 120%;
  border-radius: 0;
}/*# sourceMappingURL=style.css.map */