@charset "UTF-8";
/* Shiney Gold Effect for text */
.gold {
  background-image: linear-gradient(to right, #ae8625 0, #d2ac47 22%, #f7ef8a 50%, #d2ac47 78%, #ae8625 100%);
  color: transparent;
  -webkit-background-clip: text;
}
.bricks-button {
  text-decoration: none;
}
/* Shiney Gold Effect for background */
.goldbg {
  background-image: linear-gradient(to right, #ae8625 0, #d2ac47 22%, #f7ef8a 50%, #d2ac47 78%, #ae8625 100%);
}
.boxed a {
  margin: auto;
  position: relative;
  padding: 4px;
  box-sizing: border-box;
  color: var(--primary);
  background: var(--action-ultra-light);
  background-clip: padding-box;
  /* !importanté */
  border: solid 1px transparent;
  /* !importanté */
}
.boxed a:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(to right, #ae8625 0, #d2ac47 22%, #f7ef8a 50%, #d2ac47 78%, #ae8625 100%);
}
