.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 100%;
  height: 18px;
  display: inline-block;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../../assets/img/icon-arrow.svg);
}

.cta-button:before {
  position: absolute;
  top: 5px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 10px);
  content: "";
  transition: all 0.3s;
  border: 2px dotted #fff;
}
.cta-button:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-icon-check:before, .cta-icon-line:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  display: inline-block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-icon-check:before {
  width: 50px;
  height: 100%;
  background-image: url(../../assets/img/icon-check.svg);
}

.cta-icon-line:before {
  width: 100px;
  height: 72px;
  background-position: -40% 50%;
  background-image: url(../../assets/img/icon-line.svg);
}

.hover-reverse-blue, .hover-reverse-red {
  transition: all 0.3s ease 0s;
}

.hover-reverse-blue:hover {
  color: #fff !important;
  background-color: #083296 !important;
}

.hover-reverse-red:hover {
  color: #fff !important;
  background-color: #E70011 !important;
}/*# sourceMappingURL=button.css.map */