@charset "utf-8";
.block-button {
  display: block;
  position: relative;
  margin: 5rem auto;
  padding: 1.5rem;
  width: 30rem;
  overflow: hidden;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: inherit;
  border-style: solid;
  border-width: 0.1rem;
}
.block-button .text {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.block-button .text::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  width: 1rem;
  height: 1rem;
  top: 0rem;
  bottom: 0rem;
  right: -2rem;
  border-top-style: solid;
  border-right-style: solid;
  border-top-width: 0.2rem;
  border-right-width: 0.2rem;
  -webkit-transition: transform 0.5s, color 0.1s;
  transition: transform 0.5s, color 0.1s;
  transform: -webkit- rotateZ(45deg);
  transform: rotateZ(45deg);
}
.block-button:hover .text::after {
  transform: -webkit- rotateX(180deg) translateX(1rem) rotateZ(45deg);
  transform: rotateX(180deg) translateX(1rem) rotateZ(45deg);
}
.block-button:not(.filled) {
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.block-button:not(.filled):hover {
  color: #fff;
  background-color: #870000;
}
.block-button.filled {
  background-color: #870000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0.5rem;
}
.block-button.filled:hover {
  background-color: #931a1a;
}
/*# sourceMappingURL=./style.css.map */