@charset "UTF-8";
/*
  Primary => bleu
  Secondary => jaune
 */
:root {
  --hbc-primary: 64,64,176;
  --hbc-secondary: 229,229,40;
  --hbc-rgb-bleu: rgb(var(--hbc-primary));
  --hbc-rgb-jaune: rgb(var(--hbc-secondary));
}

/* ===== CSS Reset simple ===== */
/* Supprime les marges et paddings par défaut */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Supprime les styles par défaut des listes */
ul,
ol {
  list-style: none;
}

/* Supprime les styles par défaut des liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Images et médias fluides */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Formulaires : héritent de la police */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Boutons : curseur pointer */
button {
  cursor: pointer;
}

/* Corps du document */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ligne-degrade,
.before-degrade:before,
.after-degrade:after {
  height: 5px;
  background-image: linear-gradient(to right, var(--hbc-rgb-bleu) 0, var(--hbc-rgb-bleu) 15%, var(--hbc-rgb-jaune) 20%, var(--hbc-rgb-jaune) 80%, var(--hbc-rgb-bleu) 85%, var(--hbc-rgb-bleu));
}

.before-degrade, .after-degrade:after {
  position: relative;
}

.before-degrade:before,
.after-degrade:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
}

.before-degrade:before {
  top: 0;
}

.after-degrade:after {
  bottom: 0;
}

body.body-with-background {
  --_body-background: var(--body-background, url("/assets/images/bannieres/wallpaper-default.jpg"));
  background-image: var(--_body-background);
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: color;
  background-position: center;
  background-size: cover;
}
body dialog#dialog-login[open] {
  display: grid;
  padding: 3rem;
  margin: auto;
  inset: 0;
  backdrop-filter: blur(10px);
}

/*# sourceMappingURL=/var/www/vhosts/fab.net-com.fr/fab-real/public/assets/front/css/scss_86dfc0653fad7719b48d3db47a28e919.map */