:root {
  --main-font-color: #5a5d61;
  --title-font-color: #212529;
  --main-color-bg: #fff;
  --secondary-color-bg: #474747;
  --tertiary-color-bg: #f5f5f5;
  --grey-color-bg: rgb(219, 215, 215);
  --green-apple: #34cc5a;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --color-ncc: #243e31;
  --hover-grey: #bbb2b2;
  --hover-black: #212529;
  --button-color: #774395;
  /* --button-color-light: #ac55da; */
  --button-color-light: #9e3cb3;
  --pink-pastel: #eebad5;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", Helvetica, sans-serif;
  --font-broken: "Broken", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  /* YOUTUBE API */
  --video-width: 100vw;
  --video-height: 100vh;
  /* ⚠️ ------------------------------------------------------ ⚠️ */
  /* UTILE SEULEMENT POUR LE HEADER */
  --box-shadow: 0px 3px 1px 0px rgb(0 0 0 / 50%);
  /* ----- */
  --box-shadow-img: 0 4px 0.8rem 0 rgb(0 0 0 / 20%),
    0 0.6rem 2rem 0 rgb(0 0 0 / 19%);
  --box-shadow-container: 0 1px 3px rgb(0 0 0 / 50%);
  --transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out,
    transform 0.3s ease-in-out, left 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
  --min-height: calc(100vh - 6rem);
}

@media (min-aspect-ratio: 16/9) {
  :root {
    /* height = 100 * (9 / 16) = 56.25 */
    --video-height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  :root {
    /* width = 100 / (9 / 16) = 177.777777 */
    --video-width: 177.78vh;
  }
}

@font-face {
  font-family: "Ephesis";
  src: url("../police/Ephesis/Ephesis-Regular.ttf");
}

@font-face {
  font-family: "Broken";
  src: url("../police/BrokenDream/Broken.ttf") format("truetype");
}

@font-face {
  font-family: "Liana";
  src: url("../police/Liana/Liana.ttf");
  src: url("../police/Liana/Liana.otf");
}

/* ⚠️ ------------------------------------------------------ ⚠️ */

/* 
#212529 
#424242
#474747
#00754B
#00C896
#34cc5a
#bbb2b2;
#4D4351
#B3A7B8
#f7fafb; 
#ddd
#eee */

/* ⚠️ ------------------------------------------------------ ⚠️ */

*/ *,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-moz-selection {
  background: #4869ee;
  color: #fff;
}

::selection {
  background: #4869ee;
  color: #fff;
}

/* form input:focus,
button:focus,
select:focus {
	box-shadow: 0 0 0 3px rgba(158, 60, 179, 0.4);
	outline: none;
	border: none;
}
a:active {
	outline: none;
	border: none;
	box-shadow: none;
} */

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.1rem;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--main-font-color);
  display: -ms-grid;
  display: grid;
  grid: auto / 1fr;
  min-height: 100%;
  font-weight: 300;
  font-family: var(--font);
  word-break: break-word;
}

main {
  margin: 6rem auto 0;
  overflow: hidden;
  grid-column: 1/-1;
  min-height: var(--min-height);
  -webkit-transition: margin 300ms ease;
  transition: margin 300ms ease;
  max-width: 1920px;
  width: 100%;
}

img {
  vertical-align: middle;
  border-style: none;
}

ul {
  list-style-type: none;
}

*::-webkit-input-placeholder {
  font-weight: 200;
}

*::-moz-placeholder {
  font-weight: 200;
}

*:-ms-input-placeholder {
  font-weight: 200;
}

*::-ms-input-placeholder {
  font-weight: 200;
}

*::placeholder {
  font-weight: 200;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: inherit;
}

h1,
h2 {
  color: var(--title-font-color);
  font-weight: 500;
  text-align: center;
}

button,
input,
optgroup,
select,
textarea,
label {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.2rem + 2px);
  padding: 0.6rem 2.8rem 0.6rem 1.2rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("../img/svg/select.svg") right 1.2rem center/8px 10px
    no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  display: inline-block;
}

input:disabled {
  background-color: var(--tertiary-color-bg);
  cursor: not-allowed;
}

input[type="date"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  min-height: 1.92rem;
}

textarea {
  padding-top: 0.5rem;
}

details {
  -webkit-transition: 0.3s height ease-in-out;
  transition: 0.3s height ease-in-out;
}

summary {
  position: relative;
  cursor: pointer;
  display: block;
  padding-left: 2rem;
}

summary:before {
  content: "";
  border-width: 0.7rem;
  border-style: solid;
  border-color: transparent transparent transparent var(--main-font-color);
  position: absolute;
  top: 0.6rem;
  left: 0.5rem;
  /* transform: rotate(0); */
  -webkit-transform-origin: 0.32rem 50%;
  transform-origin: 0.32rem 50%;
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}

details[open] > summary::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s -webkit-transform ease-in;
  transition: 0.3s -webkit-transform ease-in;
  transition: 0.3s transform ease-in;
  transition: 0.3s transform ease-in, 0.3s -webkit-transform ease-in;
}

details summary::-webkit-details-marker {
  display: none;
}

/* ⚠️ ------------------------------------------------------ ⚠️ */

.text-muted {
  color: #6c757d;
}

.text-dark {
  color: #343a40 t;
}

.d-block {
  display: block;
}

.w-100 {
  width: 100%;
}

/*-------------------------------------------------------- */

/* BUTTON */

.bouton-rgpd {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: left;
  margin: 1rem 0;
}

.label-top {
  margin-top: 1rem;
}

.switch {
  height: 0;
  width: 0;
  visibility: hidden;
}

.rgpd-news,
.label {
  cursor: pointer;
  text-indent: -9999px;
  width: 3.2rem;
  height: 1.76rem;
  background: grey;
  display: block;
  border-radius: 10rem;
  position: relative;
  margin-right: 1rem;
  margin-top: -1.1rem;
}

.rgpd-news:after,
.label:after {
  content: "";
  position: absolute;
  top: 2.3px;
  left: 0.2rem;
  width: 1.28rem;
  height: 1.28rem;
  background: var(--main-color-bg);
  border-radius: 9rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

input:checked + .rgpd-news,
input:checked + .label {
  background: var(--button-color-light);
}

input:checked + .rgpd-news:after,
input:checked + .label:after {
  left: calc(100% - 0.32rem);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.rgpd-news:active:after,
.label:active:after {
  /*	taille du bouton pendant l'animation*/
  width: 1.28rem;
}

/*-------------------------------------------------------- */

/* //IMAGE */

.img-fluid {
  max-width: 100%;
  height: auto;
}

/*-------------------------------------------------------- */

/* VIDEO YOUTUBE */

.videoforumyt {
  height: 56.25vw;
  width: 100vw;
  max-width: 60rem;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 620px) {
  .videoforumyt {
    height: calc(62rem * 0.5625);
  }
}

.new-width {
  width: 100vw;
}

@media (max-width: 630px) {
  .new-width {
    width: unset;
  }
}

/*-------------------------------------------------------- */

#returnOnTop {
  background: url("../img/top-arrow.webp") no-repeat;
  bottom: 10%;
  cursor: pointer;
  height: 3.2rem;
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
  position: fixed;
  right: 0px;
  width: 3.2rem;
  z-index: 2;
}

/*-------------------------------------------------------- */

/* FOOTER */

.tailleLogo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
}

footer {
  padding: 2rem 1rem;
  bottom: 0;
  height: auto;
  width: auto;
  background-color: var(--secondary-color-bg);
  color: var(--main-color-bg);
  grid-column: 1/-1;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.infos-legales {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  place-items: center;
  margin-top: 3rem;
}

.infos-legales > div {
  padding: 0.5rem 0;
  margin: 0 auto;
}

.infos-legales > div > a,
.mif {
  font-size: 1.3rem;
  text-transform: capitalize;
}

.mif {
  text-align: center;
  margin-top: 3rem;
  text-transform: none;
}

.logoRsxFooter {
  text-align: center;
  margin-top: 3rem;
}

.logoFacebook,
.logoInsta {
  padding: 1rem;
}

.imagefooter {
  text-align: center;
}

.deconnexion {
  display: none;
}

@media screen and (max-width: 767px) {
  .deconnexion {
    display: block;
  }
}

footer p {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 2rem;
}

/* LIENS MARQUES */

.hr__liens__marques {
  width: 200px;
  margin: 20px auto 10px auto;
  height: 2px;
  background-color: #999;
}

.content__liens__marques {
  text-align: center;
  padding-bottom: 20px;
}

.content__liens__marques > ul {
  list-style: none;
  padding: 0;
}

.content__liens__marques > ul > li > a {
  color: var(--blanc);
  text-shadow: 0px 0px 5px #383838;
  transition: 0.3s;
  font-size: 13px;
  text-decoration: none;
}

.content__liens__marques > ul > li > a:hover {
  color: white;
  text-shadow: 0px 0px 5px #999;
  transition: 0.3s;
  text-decoration: underline;
}

/* END LIENS MARQUES */

/*--------------------------- END FOOTER ----------------------------- */

#poplogin {
  height: 10rem;
  display: none;
  width: 9rem;
  margin-top: -7rem;
  margin-left: -5.5rem;
}

.popup_block {
  padding: 1rem;
  float: left;
  font-size: 1.2em;
  height: 35rem;
  position: fixed;
  top: 30%;
  left: 50%;
  z-index: 101;
}

#fadelogin {
  display: none;
  background: #808080;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 100;
}

/*-------------------------------------------------------- */

/*-------------------------------------------------------- */

/* //FORMULAIRE */

.alert-bs {
  position: relative;
  padding: 1.2rem 2rem;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  margin: 2rem auto;
  max-width: 50rem;
  width: 100%;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert {
  display: none;
  font-size: 1.3rem;
  color: red;
  padding-top: 3px;
}

.form {
  margin: 0 auto;
  max-width: 50rem;
  width: 96%;
}

.form-group {
  margin-bottom: 2.4rem;
  width: 100%;
}

.form .form-group:last-of-type,
.sign-in-form .form-group:nth-last-of-type(2) {
  margin-bottom: 1rem;
}

.form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-input i,
.icone-file {
  width: 2rem;
  color: var(--button-color-light);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.form-control {
  display: block;
  width: 100%;
  height: 3.8rem;
  color: var(--main-font-color);
  background-color: var(--main-color-bg);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  padding-left: 1rem;
  margin-left: 1rem;
}

.form-control:active,
.form-control:focus {
  outline: 1px solid #ced4da;
}

.form-control.is-invalid {
  outline: 1px solid #dc3545;
  border: 1px solid #dc3545;
  background-image: url("../img/svg/invalid.svg");
}

.form-control.is-valid {
  outline: 1px solid #28a745;
  border: 1px solid #28a745;
  background-image: url("../img/svg/check.svg");
}

.invalid-feedback {
  color: #dc3545;
  accent-color: #dc3545;
}

.valid-feedback::after {
  background-image: url("../img/svg/check.svg");
}

.invalid-feedback::after {
  background-image: url("../img/svg/invalid.svg");
}

.valid-feedback::after,
.invalid-feedback::after {
  content: "";
  padding-right: calc(1.5em + 1.2rem);
  background-repeat: no-repeat;
  background-position: left calc(0.375em - 0.3rem) top calc(0.375em + 0.5rem);
  background-size: calc(0.75em + 0.6rem) calc(0.75em + 0.6rem);
}

.is-invalid,
.is-valid {
  padding-right: calc(1.5em + 1.2rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.3rem) center;
  background-size: calc(0.75em + 0.6rem) calc(0.75em + 0.6rem);
}

.form-control.select-is-invalid {
  outline: 1px solid #dc3545;
  border: 1px solid #dc3545;
  padding-right: calc(0.75em + 3.7rem);
  background: url("../img/svg/select.svg") right 1.2rem center/8px 10px
      no-repeat,
    #fff url("../img/svg/invalid.svg") center right 2.8rem /
      calc(0.75em + 0.6rem) calc(0.75em + 0.6rem) no-repeat;
}

.form-control.select-is-valid {
  outline: 1px solid #28a745;
  border: 1px solid #28a745;
  padding-right: calc(0.75em + 3.7rem);
  background: url("../img/svg/select.svg") right 1.2rem center/8px 10px
      no-repeat,
    #fff url("../img/svg/check.svg") center right 2.8rem / calc(0.75em + 0.6rem)
      calc(0.75em + 0.6rem) no-repeat;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.btn {
  text-align: center;
  vertical-align: middle;
  min-width: 15rem;
  outline: none;
  border-radius: 1rem;
  color: var(--main-color-bg);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 1rem 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.8rem 1.2rem;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    -webkit-box-shadow 0.3s ease-in-out;
  min-height: 4rem;
}

.btn:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.btn-primary {
  color: var(--button-color-light);
  background-color: var(--main-color-bg);
  border: 1px solid var(--button-color-light);
}
.btn-secondary {
  color: var(--hover-grey);
  background-color: var(--main-color-bg);
  border: 1px solid var(--hover-grey);
}

/* ⚠️ ------------------------------------------------------ ⚠️ */

/* ANIMATION IMGS DATAPIC */

.datapic {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.fadeDataPic {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* SCROLL EVENT */

.texte-animation {
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out,
    -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out,
    -webkit-transform 1s ease-in-out;
}

.scrollEvent {
  /* opacity: 0; */
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.lazyTitle {
  -webkit-transition: opacity 1s, visibility 1s;
  transition: opacity 1s, visibility 1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

/* POPUP */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* ⚠️ ------------------------------------------------------ ⚠️ */

/*-------------------------------------------------------- */

/* MEDIA QUERIES */

@media screen and (min-width: 992px) {
  .mon_compte {
    all: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* ou flex end a voir */
  }
  .infos-legales {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (any-hover: hover) {
  .image-barnav:hover,
  .image-barnav:hover + .quantite-panier {
    color: var(--button-color-light);
  }
  .infos-legales > div > a:hover {
    color: var(--hover-grey);
    text-decoration: underline;
  }
  .btn-primary:hover {
    background-color: var(--button-color-light);
    color: var(--main-color-bg);
  }
  .btn-secondary:hover {
    background-color: var(--hover-grey);
    color: var(--main-color-bg);
  }
}

/* ⚠️ ------------------------------------------------------ ⚠️ */

@-webkit-keyframes blinking {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes blinking {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ⚠️ ------------------------------------------------------ ⚠️ */

@media (any-hover: hover) {
  .underlined {
    position: relative;
  }
  .underlined::before {
    content: "";
    display: block;
    height: 2px;
    background: var(--button-color-light);
    position: absolute;
    bottom: -0.7rem;
    left: 0;
    right: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 250ms ease-in-out;
    transition: -webkit-transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  }
}

/* ANIMATION LIEN */

.underlined:hover::before,
.underlined:focus::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.underlined:hover,
.underlined:focus,
.underlined a:hover,
.underlined a:focus {
  color: var(--button-color-light);
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.copied {
  position: fixed;
  color: #eee;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 1.6rem;
  width: 20rem;
  text-align: center;
  z-index: 1003;
  text-transform: uppercase;
}

.copied i {
  color: var(--green-apple);
}

/* Material */
.material-middle {
  vertical-align: middle;
}

.material-flex {
  display: flex;
  align-items: center;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1;
}

.material-font-25 {
  font-size: 2.5rem;
}

.material-font-35 {
  font-size: 3.5rem;
}

.material-fill-0 {
  font-variation-settings: "FILL" 0;
}

.material-fill-1 {
  font-variation-settings: "FILL" 1;
}

.color_firebrick {
  color: firebrick;
}

.color_black {
  color: #222;
}
