<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
a.cancel-page-button {
  display: grid;
  place-content: center;
  margin: 30px auto 0;
  border: solid 1px #0066ff;
  border-radius: 92px;
  max-width: 330px;
  min-height: 46px;
  color: #0066ff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: .2em 1em;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}
a.cancel-page-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0066ff;
}
@media (max-width: 768px) {
  a.cancel-page-button {
    color: #fff;
    text-decoration: none;
    background-color: #0066ff;
  }
}

</pre></body></html>