@charset "UTF-8";
/*
sass/
|
|– abstracts/
|   |– _variables.scss             # Sass Variables
|   |– _mixins.scss                # Sass Mixins
|   |– _keyframes.scss             # Sass Keyframes animations
|
|– vendor/
|   |– _tinyMce.scss               # Tiny MCE override styles
|
|– base/
|   |– _reset.scss                 # Reset/normalize
|   |– _typography.scss            # Typography rules
|   |– _global.scss                # Global rules
|
|– layout/
|   |– _wrapper.scss               # Wrapper styles
|   |– _grid.scss                  # Grid styles
|   |– _row.scss                   # Row styles
|
|– components/
|   |– _menu.scss                  # Menu styles
|   |– _footer.scss                # Footer styles
|   |– _header.scss                # Header styles
|   |– _banner.scss                # Banner styles
|   |- _loading-screen.scss        # Loading screen styles
|
|– page/
|   |- _commandes.scss             # Page specific styles
|   |- _pageTexte.scss             # Page specific styles
|   |– _error-404.scss             # 404 error page styles
|
|– template/
|   |– _uikit.scss                 # Uikit specific styles
|   |- _creationMdp.scss           # Page specific styles
|   |- _connexion.scss             # Page specific styles
|   |- _oubliMdp.scss              # Page specific styles
|   |- _historiqueDesCommandes.scss# Page specific styles
|
|– themes/
|   |– _theme.scss                 # Default theme
    |- buttons/
        |- _buttons.scss           # Buttons styles
    |- fields/
        |- _forms.scss             # Form styles
    |- links/
        |- _icons.scss             # Icons styles
        |- _links.scss             # Links styles
|   |– _print.scss                 # Media print rules
|
| – site.scss                      # Main Sass input file
*/
/* 02- IMPORTATION DES MIXINS */
/*********************
BREAKPOINTS
*********************/
/*
* HoverMobile
* Hover option with media query for mobile device
* Prevent hover from showing on no pointer devide
*/
/*
* Only browser css
*
*/
/*
Usage:
@include target-metro {
  color: cyan;
}
*/
@-webkit-keyframes loading-orbit1 {
  0% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(495deg);
    transform: rotate(495deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(710deg);
    transform: rotate(710deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(855deg);
    transform: rotate(855deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit1 {
  0% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(350deg);
    transform: rotate(350deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(495deg);
    transform: rotate(495deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(710deg);
    transform: rotate(710deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(855deg);
    transform: rotate(855deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit2 {
  0% {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(340deg);
    transform: rotate(340deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(485deg);
    transform: rotate(485deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(700deg);
    transform: rotate(700deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(845deg);
    transform: rotate(845deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(935deg);
    transform: rotate(935deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit2 {
  0% {
    -webkit-transform: rotate(215deg);
    transform: rotate(215deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(340deg);
    transform: rotate(340deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(485deg);
    transform: rotate(485deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(700deg);
    transform: rotate(700deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(845deg);
    transform: rotate(845deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(935deg);
    transform: rotate(935deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit3 {
  0% {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(475deg);
    transform: rotate(475deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(690deg);
    transform: rotate(690deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(835deg);
    transform: rotate(835deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(925deg);
    transform: rotate(925deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit3 {
  0% {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(475deg);
    transform: rotate(475deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(690deg);
    transform: rotate(690deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(835deg);
    transform: rotate(835deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(925deg);
    transform: rotate(925deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit4 {
  0% {
    -webkit-transform: rotate(195deg);
    transform: rotate(195deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(320deg);
    transform: rotate(320deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(465deg);
    transform: rotate(465deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(680deg);
    transform: rotate(680deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(825deg);
    transform: rotate(825deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(915deg);
    transform: rotate(915deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit4 {
  0% {
    -webkit-transform: rotate(195deg);
    transform: rotate(195deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(320deg);
    transform: rotate(320deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(465deg);
    transform: rotate(465deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(680deg);
    transform: rotate(680deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(825deg);
    transform: rotate(825deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(915deg);
    transform: rotate(915deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-orbit5 {
  0% {
    -webkit-transform: rotate(185deg);
    transform: rotate(185deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(310deg);
    transform: rotate(310deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(455deg);
    transform: rotate(455deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(670deg);
    transform: rotate(670deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(815deg);
    transform: rotate(815deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(905deg);
    transform: rotate(905deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-orbit5 {
  0% {
    -webkit-transform: rotate(185deg);
    transform: rotate(185deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
  6% {
    -webkit-transform: rotate(310deg);
    transform: rotate(310deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  29% {
    -webkit-transform: rotate(455deg);
    transform: rotate(455deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  39% {
    -webkit-transform: rotate(670deg);
    transform: rotate(670deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  62% {
    -webkit-transform: rotate(815deg);
    transform: rotate(815deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  66% {
    -webkit-transform: rotate(905deg);
    transform: rotate(905deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes ani-success-circle {
  to {
    stroke-dashoffset: 782.2565707439px;
  }
}
@keyframes ani-success-circle {
  to {
    stroke-dashoffset: 782.2565707439px;
  }
}
@-webkit-keyframes ani-success-path {
  0% {
    stroke-dashoffset: 62px;
  }
  65% {
    stroke-dashoffset: -5px;
  }
  84% {
    stroke-dashoffset: 4px;
  }
  100% {
    stroke-dashoffset: -2px;
  }
}
@keyframes ani-success-path {
  0% {
    stroke-dashoffset: 62px;
  }
  65% {
    stroke-dashoffset: -5px;
  }
  84% {
    stroke-dashoffset: 4px;
  }
  100% {
    stroke-dashoffset: -2px;
  }
}
@-webkit-keyframes ani-error-line {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ani-error-line {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes ani-error-circle {
  0% {
    stroke-dasharray: 0, 260.752190248px;
    stroke-dashoffset: 0;
  }
  35% {
    stroke-dasharray: 120px, 120px;
    stroke-dashoffset: -120px;
  }
  70% {
    stroke-dasharray: 0, 260.752190248px;
    stroke-dashoffset: -260.752190248px;
  }
  100% {
    stroke-dasharray: 260.752190248px, 0;
    stroke-dashoffset: -260.752190248px;
  }
}
@keyframes ani-error-circle {
  0% {
    stroke-dasharray: 0, 260.752190248px;
    stroke-dashoffset: 0;
  }
  35% {
    stroke-dasharray: 120px, 120px;
    stroke-dashoffset: -120px;
  }
  70% {
    stroke-dasharray: 0, 260.752190248px;
    stroke-dashoffset: -260.752190248px;
  }
  100% {
    stroke-dasharray: 260.752190248px, 0;
    stroke-dashoffset: -260.752190248px;
  }
}
/* TinyMC Plugin override styles */
body .tox-tinymce {
  border-radius: 0;
  border-color: #707070;
  border-width: 1px;
}
body .tox:not(.tox-tinymce-inline) .tox-editor-header {
  border-bottom: 1px solid #707070;
}
body .tox .tox-statusbar {
  border-color: #707070;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
* Typography file
* 01. Import all necessary font
* 02. All text styles
*/
/*@font-face {
    font-family: 'Minnerva-Bold';
    src: url('./fonts/minnerva/minnerva-bold/minnerva-bold.eot'); //IE9+ Compat Modes
    src: url('./fonts/minnerva/minnerva-bold/minnerva-bold.eot#iefix') format('embedded-opentype'), //IE6-IE8 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.woff2') format('woff2'), //Super modern browsers 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.woff') format('woff'), //Modern browsers 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.ttf')  format('truetype'), //Safari, Android, iOS 
        url('./fonts/minnerva/minnerva-bold/minnerva-bold.svg#Minnerva-Bold') format('svg'); //Legacy iOS 
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}*/
h1, h2, h3, h4, h5, p, ol, ul, li, a, button, * {
  font-weight: inherit;
  margin: 0;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.bold, strong {
  font-weight: 700 !important;
}

.semibold {
  font-weight: 500 !important;
}

.light {
  font-weight: 100 !important;
}

.underline {
  text-decoration: underline;
}

.titleFont {
  font-family: var(--title), sans-serif;
}

h1, .h1 {
  font-family: var(--title), sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  font-size: 1.75rem;
}
@media (min-width: 600px) {
  h1, .h1 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 1.375rem;
}
@media (min-width: 600px) {
  h2, .h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

h3, .h3 {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 600px) {
  h3, .h3 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h4, .h4 {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 600px) {
  h4, .h4 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.exergue {
  font-family: var(--title), sans-serif;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
}
@media (min-width: 600px) {
  .exergue {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .exergue {
    font-size: 48px;
    font-size: 3rem;
  }
}

.subtitle {
  font-family: var(--title), sans-serif;
  font-weight: 400;
  font-size: 22px;
  font-size: 1.375rem;
}
.subtitle:first-letter {
  text-transform: capitalize;
}

.btn, button {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.125rem;
}
.btn *, button * {
  font-family: var(--title), sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

.filtre {
  font-family: var(--title), sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
.filtre * {
  font-family: var(--title), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

p, .p {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  p, .p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

small, .small {
  font-family: var(--text), sans-serif;
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
}

.btn > a, .link {
  text-decoration: none;
}

.lm {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}

.lu {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
}

.lf {
  font-family: var(--title), sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
}

.ls {
  text-decoration: underline;
}
@-moz-document url-prefix() {
  .ls {
    text-decoration-thickness: 1.5px;
  }
}
@media (min-width: 768px) {
  @-moz-document url-prefix() {
    .ls {
      text-decoration-thickness: 2px;
    }
  }
}

.l-fo {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.lm-fo {
  font-family: var(--text), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

label, .label {
  font-family: var(--title), sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

input, textarea, select {
  font-family: var(--title), sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  input, textarea, select {
    font-size: 16px;
    font-size: 1rem;
  }
}

select option {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  font-family: var(--title), sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  select option {
    font-size: 16px;
    font-size: 1rem;
  }
}

::-webkit-input-placeholder { /* Most modern browsers support this now. */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

::-moz-placeholder { /* Most modern browsers support this now. */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

:-ms-input-placeholder { /* Most modern browsers support this now. */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

::-ms-input-placeholder { /* Most modern browsers support this now. */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

::placeholder { /* Most modern browsers support this now. */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

::-ms-input-placeholder { /* Microsoft Edge */
  text-transform: uppercase;
  font-family: var(--text), sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

/*
* Prevent site from scrolling left and right if there is some overflow items.
*/
html {
  overflow-x: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  background-color: #FFFFFF;
}
html::first-letter {
  text-transform: capitalize;
}
html.hidden {
  overflow: hidden;
}
html body {
  overflow-x: hidden;
}

/*
* Fixed header rules.
*/
header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

/*
* By default align all image ay bottom. Prevent some weird bottom line in some browser.
*/
img {
  vertical-align: bottom;
  width: 100%;
}

/*
* Most component and dom elment will include padding
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
* Sync with a js fonction, this will prevent animation when page resizing. Better user expert less laggy
*/
.resize-animation-stopper * {
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

/*
* Removing default padding indentation to list.
*/
ul, ol, li {
  padding: 0;
  list-style: none;
}

/*
* Changing color of selected element
*/
::-moz-selection {
  background: #d3a332;
}

::selection {
  background: #d3a332;
}

/*
* Changing color of focus element
*/
/* Remove outline for non-keyboard :focus */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Optional: Customize .focus-visible */
:focus-visible {
  outline: 3px solid #d3a332;
  outline-offset: 3px;
}

/*
* Changing color of scrollbar
*/
/* For MacOS default scrollbar style */
/*body {
    scrollbar-width: thin;
    scrollbar-color: $black $white;
}
// Width
body::-webkit-scrollbar {
    width: 10px;
}

// Track
body::-webkit-scrollbar {
    background-color: $white;
}

// Handle
body::-webkit-scrollbar-thumb {
    background: $black; 
    border-radius: 0;
}

// Handle on hover
body::-webkit-scrollbar-thumb:hover {
    background: $secondary;
}

// Set button(top and bottom of the scrollbar)
body::-webkit-scrollbar-button {
    display:none;
}*/
.push-top {
  margin-top: 80px;
}
@media (max-width: 950px) {
  .push-top {
    margin-top: 80px;
  }
}
@media (max-width: 950px) and (max-width: 600px) {
  .push-top {
    margin-top: 80px;
  }
}

.xs-wrapper {
  padding: 0 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .xs-wrapper {
    padding: 0 20px;
  }
}

.sm-wrapper {
  padding: 0 40px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .sm-wrapper {
    padding: 0 20px;
  }
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .wrapper {
    padding: 0 20px;
  }
}

.lg-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .lg-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .lg-wrapper {
    padding: 0 20px;
  }
}

.grid {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid--2 {
  grid-template-columns: 1fr 1fr;
}
.grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid--2, .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid--4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) and (max-width: 768px) and (max-width: 600px) {
  .grid {
    display: block;
  }
  .grid .grid-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .grid--2, .grid--3, .grid--4 {
    display: block;
  }
  .grid--2 .grid-item:not(:last-child), .grid--3 .grid-item:not(:last-child), .grid--4 .grid-item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.row--direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.row--justify-left {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.row--justify-right {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.row--justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.row--equale .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.row .col-lg-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
}
.row .col-lg-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
}
.row .col-lg-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.row .col-lg-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.row .col-lg-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
}
.row .col-lg-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.row .col-lg-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
}
.row .col-lg-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
}
.row .col-lg-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
}
.row .col-lg-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
}
.row .col-lg-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
}
.row .col-lg-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.commandes {
  padding: 0 0 100px;
  /********* FORM COMMANDE ************/
}
.commandes--intro {
  margin-bottom: 40px;
}
.commandes--intro .legende .row {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  margin-top: 20px;
}
.commandes--intro .legende p {
  margin-left: 10px;
}
.commandes--intro .legende--commande {
  width: 60px;
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
}
.commandes--intro .legende--inventaire {
  width: 60px;
  background-color: #d3a332;
  border: 1px solid #EEEEEE;
}
.commandes--intro .legende--inactif {
  width: 60px;
  background-color: #CCCCCC;
  border: 1px solid #EEEEEE;
}
.commandes--dates {
  background-color: #EEEEEE;
  padding: 20px 0;
  margin-bottom: 80px;
}
.commandes--dates .filters {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.commandes--dates .filters--week {
  margin-right: 80px;
}
.commandes--dates .filters--week, .commandes--dates .filters--store {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.commandes--dates .filters--week p, .commandes--dates .filters--store p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
}
.commandes--dates .filters--week select, .commandes--dates .filters--store select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.commandes--modifications {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 10px;
}
.commandes--modifications .row p:first-child {
  margin-right: 10px;
}
.commandes--categories {
  border-top: 1px solid #383838;
  padding: 20px 0;
  margin: 0 auto;
}
.commandes--categories .filtre {
  display: inline-block;
  margin-bottom: 10px;
}
.commandes--categories .filtre:not(:last-child) {
  margin-right: 5px;
}
.commandes--offline {
  margin-top: 80px;
}
.commandes .orders {
  margin-top: 60px;
}
.commandes .orders--success, .commandes .orders--error {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
}
.commandes .orders--success.hidden, .commandes .orders--error.hidden {
  display: none;
}
.commandes .orders--success svg, .commandes .orders--error svg {
  width: 60px;
  height: 60px;
  margin: 0;
}
.commandes .orders--success .ui-success--circle, .commandes .orders--error .ui-success--circle {
  stroke-dasharray: 260.752190248px, 260.752190248px;
  stroke-dashoffset: 260.752190248px;
  -webkit-transform: rotate(220deg);
  transform: rotate(220deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  stroke-linecap: round;
  -webkit-animation: ani-success-circle 1s ease-in both;
  animation: ani-success-circle 1s ease-in both;
}
.commandes .orders--success .ui-success--path, .commandes .orders--error .ui-success--path {
  stroke-dasharray: 60px 64px;
  stroke-dashoffset: 62px;
  stroke-linecap: round;
  -webkit-animation: ani-success-path 0.4s 1s ease-in both;
  animation: ani-success-path 0.4s 1s ease-in both;
}
.commandes .orders--success .ui-error--circle, .commandes .orders--error .ui-error--circle {
  stroke-dasharray: 260.752190248px, 260.752190248px;
  stroke-dashoffset: 260.752190248px;
  -webkit-animation: ani-error-circle 1.2s linear;
  animation: ani-error-circle 1.2s linear;
}
.commandes .orders--success .ui-error--line1, .commandes .orders--error .ui-error--line1 {
  stroke-dasharray: 54px 55px;
  stroke-dashoffset: 55px;
  stroke-linecap: round;
  -webkit-animation: ani-error-line 0.15s 1.2s linear both;
  animation: ani-error-line 0.15s 1.2s linear both;
}
.commandes .orders--success .ui-error--line2, .commandes .orders--error .ui-error--line2 {
  stroke-dasharray: 54px 55px;
  stroke-dashoffset: 55px;
  stroke-linecap: round;
  -webkit-animation: ani-error-line 0.2s 0.9s linear both;
  animation: ani-error-line 0.2s 0.9s linear both;
}
.commandes .orders--success .text-block, .commandes .orders--error .text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 900px;
  padding: 40px;
  background-color: #FFFFFF;
  text-align: center;
  margin: auto;
}
.commandes .orders--success .text-block .btn, .commandes .orders--error .text-block .btn {
  margin: 0 auto;
}
.commandes .orders .semaine h2 {
  text-align: center;
  margin-bottom: 60px;
}
.commandes .orders .semaine--categories .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.commandes .orders .semaine--categories .row .products {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  min-width: 150px;
}
.commandes .orders .semaine--categories .categorie {
  margin: 0 0 100px;
}
.commandes .orders .semaine--categories .categorie h3 {
  margin-bottom: 40px;
  text-align: center;
}
.commandes .orders .semaine--categories .categorie--head {
  border-bottom: 2px solid #d3a332;
}
.commandes .orders .semaine--categories .categorie--head .products {
  padding: 10px 5px 5px;
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
}
.commandes .orders .semaine--categories .categorie--head .day {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 5px 5px;
  color: #272727;
  -ms-flex-preferred-size: 12.1428571429%;
  flex-basis: 12.1428571429%;
}
.commandes .orders .semaine--categories .categorie--head .day--division p:first-child {
  margin-right: 5px;
}
.commandes .orders .semaine--categories .categorie--head .day.active {
  background-color: #EEEEEE;
}
.commandes .orders .semaine--categories .categorie--products:nth-child(even) {
  background-color: #F8F8F8;
}
.commandes .orders .semaine--categories .categorie--products:last-child {
  border-bottom: 2px solid #d3a332;
}
.commandes .orders .semaine--categories .categorie--products .products {
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
  padding: 10px 5px 5px;
}
.commandes .orders .semaine--categories .categorie--products .products::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 5px;
  vertical-align: text-bottom;
}
.commandes .orders .semaine--categories .categorie--products .products--regulier::after {
  background-image: url(/media/icons/regulier.svg);
}
.commandes .orders .semaine--categories .categorie--products .products--special::after {
  background-image: url(/media/icons/special.svg);
}
.commandes .orders .semaine--categories .categorie--products .products--noel::after {
  background-image: url(/media/icons/noel.svg);
}
.commandes .orders .semaine--categories .categorie--products .products--paques::after {
  background-image: url(/media/icons/paques.svg);
}
.commandes .orders .semaine--categories .categorie--products .products--st-valentin::after {
  background-image: url(/media/icons/st-valentin.svg);
}
.commandes .orders .semaine--categories .categorie--products .day {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  padding: 10px 5px;
  -ms-flex-preferred-size: 12.1428571429%;
  flex-basis: 12.1428571429%;
}
.commandes .orders .semaine--categories .categorie--products .day.active {
  background-color: #EEEEEE;
}
.commandes .orders .semaine--categories .categorie--products .day.active input {
  border-color: #CCCCCC;
  color: #383838;
}
.commandes .orders .semaine--categories .categorie--products .day.active input.inventory {
  background-color: #d3a332;
  color: #FFFFFF;
}
.commandes .orders .semaine--categories .categorie--products .day.futur input {
  border-color: #CCCCCC;
  color: #383838;
}
.commandes .orders .semaine--categories .categorie--products .day.futur input.inventory {
  background-color: #d3a332;
  color: #FFFFFF;
}
.commandes .orders .semaine--categories .categorie--products .day.disabled input {
  border-color: #F8F8F8;
  color: #707070;
}
.commandes .orders .semaine--categories .categorie--products .day.disabled input.inventory {
  background-color: #CCCCCC;
  color: #FFFFFF;
}
.commandes .orders .semaine--categories .categorie--products .day input.inventory {
  border: none;
}
.commandes .orders .callToAction button {
  margin-left: auto;
}

/*******************************/
/***** Lazy Load Animation *****/
/*******************************/
.lazy-img {
  opacity: 0;
  -webkit-transition: opacity 1s 0.25s ease-out, -webkit-transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1);
  transition: opacity 1s 0.25s ease-out, -webkit-transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1);
  transition: transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1), opacity 1s 0.25s ease-out;
  transition: transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1), opacity 1s 0.25s ease-out, -webkit-transform 0.5s 0.25s cubic-bezier(0.58, 0, 0.32, 1);
  will-change: transform, opacity;
}

.from-bottom {
  -webkit-transform: translateY(50px) rotate(-5deg);
  transform: translateY(50px) rotate(-5deg);
}

.from-right {
  -webkit-transform: translateX(50px) rotate(-5deg);
  transform: translateX(50px) rotate(-5deg);
}

.lazy-load {
  opacity: 1;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.pageTexte .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1920px;
}
.pageTexte--image {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.pageTexte--texte {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding: 80px 40px;
}
.pageTexte--texte .form {
  max-width: 600px;
  margin-top: 80px;
}

.uikit-section {
  margin: 40px;
}
.uikit-section__title {
  padding: 40px;
  background-color: #f2f2f2;
}
.uikit-section__content {
  background-color: #FFFFFF;
  padding: 40px;
}

.boilerplate {
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.login form .mdpOublie {
  display: block;
  margin-top: 5px;
}
.login form .callToAction {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.login form .callToAction p {
  margin-top: 5px;
}

.password-creation form {
  margin-right: 40px;
}
.password-creation form .section {
  padding: 0 0 40px;
}
.password-creation form button {
  margin: 0 auto;
}
.password-creation .callToAction {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.password-creation .callToAction p {
  margin-top: 5px;
}

.reset-password form .callToAction {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reset-password form .callToAction p {
  margin-top: 5px;
}

.historiqueDeCommandes {
  padding: 0 0 100px;
}
.historiqueDeCommandes--pointDeVente {
  background-color: #EEEEEE;
  padding: 20px;
  margin-bottom: 80px;
}
.historiqueDeCommandes--pointDeVente .row {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.historiqueDeCommandes--pointDeVente .filters {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.historiqueDeCommandes--pointDeVente .filters--week, .historiqueDeCommandes--pointDeVente .filters--store {
  margin-right: 40px;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.historiqueDeCommandes--pointDeVente .filters--week p, .historiqueDeCommandes--pointDeVente .filters--store p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
}
.historiqueDeCommandes--pointDeVente .filters--week select, .historiqueDeCommandes--pointDeVente .filters--store select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.historiqueDeCommandes--commandes {
  margin-top: 60px;
}
.historiqueDeCommandes--commandes .categories {
  padding: 20px;
}
.historiqueDeCommandes--commandes .categories h3 {
  text-transform: inherit;
  text-align: center;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.historiqueDeCommandes--commandes .commande {
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px #CCCCCC;
  box-shadow: 0 2px 10px #CCCCCC;
}
.historiqueDeCommandes--commandes .commande:not(:last-child) {
  margin-bottom: 20px;
}
.historiqueDeCommandes--commandes .commande p {
  text-transform: inherit;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  text-align: center;
}
.historiqueDeCommandes--commandes .commande p:not(:last-child) {
  border-right: 1px solid #CCCCCC;
}

/**************** HEADER MENU *******************/
header .header-utilitaries--menu ul li {
  margin-left: 40px;
}
header .header-content--menu ul li {
  margin-left: 40px;
}

/********* FOOTER ************/
footer {
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
  padding: 40px 0;
}
footer .row {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .row div {
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}
footer .contact {
  margin: 0 80px;
}
footer .contact .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .contact--adresse .email {
  margin: 20px 0;
}

/********* HEADER ************/
header {
  padding: 20px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
header .header-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .header-content--logo {
  max-width: 300px;
  margin-right: 40px;
}
header .header-content--btn {
  display: none;
}
header .header-utilitaries {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  padding-bottom: 40px;
}
header .header-utilitaries--menu li.row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header-utilitaries--menu .login-status p {
  color: #FFFFFF;
  margin-right: 20px;
}
header.hidden .header-content--menu, header.hidden .header-content--btn {
  visibility: hidden;
}
header.hidden .header-utilitaries {
  visibility: hidden;
}

.banner {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
  position: relative;
}
.banner.gauche {
  background-position: left;
}
.banner.centre {
  background-position: center;
}
.banner.droite {
  background-position: right;
}
.banner.haut {
  background-position: top;
}
.banner.bas {
  background-position: bottom;
}
.banner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner--bloc {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banner--bloc .titre {
  margin-bottom: 40px;
  text-align: center;
}
.banner--bloc .sous-titre {
  text-align: center;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.loading-screen.hidden {
  display: none;
}
.loading-screen .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.loading-screen h2 {
  color: #d3a332;
  margin-bottom: 20px;
  letter-spacing: 5px;
  font-size: 48px;
  font-size: 3rem;
}
.loading-screen .loading {
  width: 38px;
  height: 38px;
  position: relative;
}
.loading-screen .loading--dot {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.loading-screen .loading--dot::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.loading-screen .loading--dot1 {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-animation: loading-orbit1 5s infinite;
  animation: loading-orbit1 5s infinite;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}
.loading-screen .loading--dot1::after {
  background: #fac03a;
}
.loading-screen .loading--dot2 {
  -webkit-transform: rotate(215deg);
  transform: rotate(215deg);
  -webkit-animation: loading-orbit2 5s infinite;
  animation: loading-orbit2 5s infinite;
  -webkit-animation-delay: 125ms;
  animation-delay: 125ms;
}
.loading-screen .loading--dot2::after {
  background: #fac03a;
}
.loading-screen .loading--dot3 {
  -webkit-transform: rotate(205deg);
  transform: rotate(205deg);
  -webkit-animation: loading-orbit3 5s infinite;
  animation: loading-orbit3 5s infinite;
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}
.loading-screen .loading--dot3::after {
  background: #d3a332;
}
.loading-screen .loading--dot4 {
  -webkit-transform: rotate(195deg);
  transform: rotate(195deg);
  -webkit-animation: loading-orbit4 5s infinite;
  animation: loading-orbit4 5s infinite;
  -webkit-animation-delay: 375ms;
  animation-delay: 375ms;
}
.loading-screen .loading--dot4::after {
  background: #d3a332;
}
.loading-screen .loading--dot5 {
  -webkit-transform: rotate(185deg);
  transform: rotate(185deg);
  -webkit-animation: loading-orbit5 5s infinite;
  animation: loading-orbit5 5s infinite;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
.loading-screen .loading--dot5::after {
  background: #af872a;
}

form .row {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
form .row .field {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
form .row .field:first-child {
  margin-right: 20px;
}
form .row.telephone .field:first-child {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
form .row.telephone .field:last-child {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
form .field {
  position: relative;
}
form .field:not(:last-child) {
  margin: 0 0 20px;
}
form .field .input-validation-error {
  border-color: #E23E3E;
}
form .field span.field-validation-error {
  color: #E23E3E;
  display: block;
  margin: 5px 0 0;
}
form .field .checkbox--block, form .field .radio--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
form .field.small {
  max-width: 215px;
}
form .field.medium {
  max-width: 350px;
}
form .validation-summary-errors {
  background-color: #FEF3F3;
  padding: 20px;
  margin: 0 0 20px;
}
form .validation-summary-errors ul li {
  color: #E23E3E;
}

label, .label {
  color: #707070;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: solid 1px #CCCCCC;
  outline: none;
  -webkit-transition: all 300ms cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 300ms cubic-bezier(0.58, 0, 0.32, 1);
  padding: 15px 10px;
  background-color: #FFFFFF;
  position: relative;
  color: #272727;
  width: 100%;
}

select {
  background-image: url("/media/icons/down-arrow.svg");
  background-position: right 20px top 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  padding: 15px 45px 15px 10px;
}
select.date {
  max-width: 350px;
}

input[type=checkbox] {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
input[type=checkbox]:checked::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #d3a332;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

input[type=radio] {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
input[type=radio]:checked::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #d3a332;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

input[type=file] {
  border: none;
  padding: 0;
}

input[type=number].order {
  padding: 10px 15px 10px 10px;
  max-width: 70px;
}
input[type=number].inventory {
  padding: 5px 15px 5px 10px;
  max-width: 70px;
}

textarea {
  z-index: 0;
  background-color: #FFFFFF;
  min-height: 200px;
  max-width: 100%;
  padding: 20px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

::-webkit-input-placeholder { /* Most modern browsers support this now. */
  color: #707070;
}

::-moz-placeholder { /* Most modern browsers support this now. */
  color: #707070;
}

:-ms-input-placeholder { /* Most modern browsers support this now. */
  color: #707070;
}

::-ms-input-placeholder { /* Most modern browsers support this now. */
  color: #707070;
}

::placeholder { /* Most modern browsers support this now. */
  color: #707070;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #707070;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #707070;
  opacity: 1;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #707070;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #707070;
  opacity: 1;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #707070;
  opacity: 1;
}

.btn, button {
  padding: 12px 50px;
  border: none;
  text-decoration: none;
  text-align: center;
  background-color: #d3a332;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  /* smartphones, touchscreens */
}
.btn--secondary, button--secondary {
  background-color: #FFFFFF;
  color: #272727;
  border: 2px solid #FFFFFF;
  -webkit-box-shadow: 0 2px 10px #CCCCCC;
  box-shadow: 0 2px 10px #CCCCCC;
}
.btn a, button a {
  text-decoration: none;
}
@media (pointer: fine) {
  .btn:hover, button:hover {
    background-color: #af872a;
  }
  .btn:hover.btn--secondary, button:hover.btn--secondary {
    background-color: #FFFFFF;
    border-color: #272727;
  }
}
.btn:active, button:active {
  background-color: #af872a;
  color: #FFFFFF;
}
.btn:active.btn--secondary, button:active.btn--secondary {
  background-color: #272727;
}
.btn--export, .btn--print, button--export, button--print {
  background-position: right 20px top 45%;
  background-repeat: no-repeat;
  background-size: 20px;
  padding: 12px 50px 8px 20px;
  text-transform: capitalize;
}
.btn--export, button--export {
  background-image: url(/media/icons/download.svg);
}
.btn--print, button--print {
  background-image: url(/media/icons/print.svg);
}

.filtre {
  padding: 12px 50px;
  border: none;
  text-decoration: none;
  text-align: center;
  background-color: #F8F8F8;
  color: #383838;
  border: 0.5px solid #CCCCCC;
  cursor: pointer;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.1s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.1s cubic-bezier(0.58, 0, 0.32, 1);
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  /* smartphones, touchscreens */
}
.filtre--active {
  background-color: #d3a332;
  color: #FFFFFF;
}
@media (pointer: fine) {
  .filtre:hover {
    background-color: #d3a332;
    color: #FFFFFF;
  }
}

.link {
  -webkit-transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  display: block;
  cursor: pointer;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .link:hover {
    color: #d3a332;
  }
}

.lm {
  color: #FFFFFF;
  display: block;
  position: relative;
  /* smartphones, touchscreens */
}
.lm::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #d3a332;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.lm.actif::after {
  width: 100%;
}
@media (pointer: fine) {
  .lm:hover::after {
    width: 100%;
  }
}

.lu {
  color: #FFFFFF;
}

.lf {
  display: block;
  position: relative;
  color: #63B72B;
  /* smartphones, touchscreens */
}
.lf::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #63B72B;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
@media (pointer: fine) {
  .lf:hover {
    color: #63B72B;
  }
  .lf:hover::after {
    width: 100%;
  }
}

.ls {
  -webkit-transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  text-decoration: underline;
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .ls:hover {
    color: #d3a332;
  }
}
.ls:active {
  color: #d3a332;
}

.lm-fo {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* smartphones, touchscreens */
}
.lm-fo::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #d3a332;
  -webkit-transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: 0.3s cubic-bezier(0.58, 0, 0.32, 1);
}
.lm-fo.actif::after {
  width: 100%;
}
@media (pointer: fine) {
  .lm-fo:hover {
    color: #272727;
  }
  .lm-fo:hover::after {
    width: 100%;
  }
}

.l-fo {
  -webkit-transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.35, 0, 0, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .l-fo:hover {
    color: #d3a332;
  }
}
.l-fo:active {
  color: #d3a332;
}

html {
  color: #272727;
}
html.is-animating {
  cursor: progress;
}

/*
* Text block format
*/
.text-block > * {
  margin: 20px 0;
}
@media (max-width: 768px) {
  .text-block > * {
    margin: 15px 0;
  }
}
.text-block--left {
  text-align: left;
}
.text-block--right {
  text-align: right;
}
.text-block--center {
  text-align: center;
}
.text-block > :first-child {
  margin-top: 0;
}
.text-block h2, .text-block h3, .text-block h4, .text-block h5, .text-block p {
  margin: 20px 0;
}
.text-block ol {
  list-style: decimal;
  padding-left: 20px;
}
.text-block ol li {
  list-style: decimal;
}
.text-block ul {
  margin-left: 20px;
}
.text-block ul li {
  padding-left: 20px;
  margin: 15px 0;
  position: relative;
}
.text-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 14px;
  background-image: url("/images/icons/list-arrow.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}
@media (max-width: 768px) {
  .text-block ul {
    margin-left: 10px;
  }
  .text-block ul li {
    padding-left: 20px;
  }
}
.text-block a:not(.btn) {
  -webkit-transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.58, 0, 0.32, 1);
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .text-block a:not(.btn):hover {
    color: #d3a332;
  }
}
.text-block .btn > a {
  /* smartphones, touchscreens */
}
@media (pointer: fine) {
  .text-block .btn > a:hover {
    color: inherit;
  }
}
.text-block table {
  width: 100%;
  border-collapse: collapse;
}
.text-block table tr {
  border-collapse: collapse;
}
.text-block table tr:nth-child(odd) td {
  background-color: #FFFFFF;
}
.text-block table tr td {
  border-collapse: collapse;
  border-bottom: solid 1px #707070;
  padding: 10px;
}
.text-block blockquote {
  background-color: #FFFFFF;
  padding: 40px 20px;
  border-left: solid 3px #d3a332;
}

@media print {
  .no-print, header, footer {
    display: none;
  }
  h1 {
    font-size: 30px;
  }
  h4, h5, p, label, .subtitle {
    font-size: 90%;
  }
  .banner {
    min-height: 0;
    padding: 0;
    margin: 100px 0 0;
  }
  .commandes--dates {
    margin: 0;
  }
  .commandes--dates .filters {
    display: block;
    margin-top: 30px;
  }
  .commandes--dates .filters--week {
    margin-bottom: 20px;
  }
  .commandes--dates .filters--week p, .commandes--dates .filters--store p {
    margin-right: 5px;
  }
  .commandes--dates .filters--week p::after, .commandes--dates .filters--store p::after {
    content: ":";
    display: inline-block;
  }
  .commandes--dates .filters--week select, .commandes--dates .filters--store select {
    border: none;
    font-weight: bold;
    padding: 0;
  }
  .commandes--modifications {
    border-bottom: 1px solid #383838;
    padding-bottom: 10px;
  }
  .commandes .orders {
    margin-top: 20px;
  }
  .commandes .orders .semaine h2 {
    margin-bottom: 20px;
  }
  .commandes .orders .semaine--categories .categorie {
    margin-bottom: 40px;
  }
  .commandes .orders .semaine--categories .categorie h3 {
    margin-bottom: 10px;
  }
  .semaine {
    display: block !important;
    margin-bottom: 40px;
  }
}