/************************************
 * Grids
 */

/************************************
 * Breakpoints
 */

/************************************
 * Transitions
 */

/************************************
 * Paths
 */

/************************************
 * Forms
 */

/************************************
 * Fonts
 */

/*** LOCAL FONTS ***/

/*** FONTS ***/

/*** VARIABLES TO USE ***/

/************************************
 * Font Sizes
 */

/* Hx font-size */

/************************************
 * COLORS
 */

/**
 * Calc support webkit
 */

/**
 * Default style for pseudo elements
 */

/**
 * Font-size calcul
 */

/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/

/**
* Set an item to 100% of its parent's width and height
*/

/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/

/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/

/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/

/**
* To be called on a <a> tag
*/

/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/

/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/

/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

/*
The `retina-sprite` mixin sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

$icon-home-group: ('icon-home', $icon-home, $icon-home-2x, );

.icon-home {
  @include retina-sprite($icon-home-group);
}
*/

/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/

/*
The `retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in SCSS

@include retina-sprites($retina-groups);
*/

/**
 * SVG Sprites
 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-main: #1d1d1d;
  --c-secondary: #edf1f4;
  --c-secondary-light: #f9f5f2;
  --c-action: #1d1d1d;
  --c-special: #e53329;
  --c-default: #1d1d1d;
  --c-border: #edf1f4;
  --c-input-border: #dddcdc;
  --c-text: #1d1d1d;
  --c-link: #1d1d1d;
  --c-link-hover: #e53329;
  --c-link-visited: #1d1d1d;
  --c-button-primary__color: #ffffff;
  --c-button-primary__background: #e53329;
  --c-button-primary__border: #e53329;
  --c-button-primary__hover__color: #ffffff;
  --c-button-primary__hover__background: #1d1d1d;
  --c-button-primary__hover__border: #1d1d1d;
  --c-button-secondary__color: #1d1d1d;
  --c-button-secondary__background: #ffffff;
  --c-button-secondary__border: #1d1d1d;
  --c-button-secondary__hover__color: #ffffff;
  --c-button-secondary__hover__background: #1d1d1d;
  --c-button-secondary__hover__border: #1d1d1d;
  --c-msg-alert-bg: #fffad4;
  --c-msg-alert-border: #e2b722;
  --c-msg-success-bg: #d4ffd4;
  --c-msg-success-border: #3bb52c;
  --c-msg-notice-bg: #c6e5ff;
  --c-msg-notice-border: #125fa1;
  --c-msg-error-bg: #ffc6c6;
  --c-msg-error-border: #fa1515;
  --c-eshop: #1d1d1d;
  --f-default: Josefin Sans, Arial, Helvetica, Nimbus Sans L, sans-serif;
  --f-title: Josefin Sans, Arial, Helvetica, Nimbus Sans L, sans-serif;
  --f-button: Josefin Sans, Arial, Helvetica, Nimbus Sans L, sans-serif;
  --f-special: p22-freely, Arial, Helvetica, Nimbus Sans L, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  font-family: "Josefin Sans", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: #1d1d1d;
}

body.no-scroll {
  overflow: hidden;
}

/************************************
 * TITLES
 */

h1,
.h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Josefin Sans", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: clamp(28px, 2.42vw + 19.27px, 60px);
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.2;
  text-align: center;
}

h2,
.h2 {
  margin-top: 0;
  margin-bottom: .8em;
  font-family: "Josefin Sans", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.2;
}

h3,
.h3 {
  margin-top: 0;
  margin-bottom: .8em;
  font-family: "Josefin Sans", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.2;
  /*@include breakpoint(max-width $bp-xsmall - 1){
      font-size: 1.2em;
  }*/
}

h4,
.h4 {
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 1.5em;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.2;
}

h5,
.h5 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: 700;
  color: #1d1d1d;
}

h6,
.h6 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1em;
  font-weight: 500;
  color: #1d1d1d;
}

/************************************
 * LISTES
 */

/*
ul,
ol {
  padding-left: 25px;
  margin: 25px 0;

  li {
    margin-bottom: 10px;
  }

  &.nostyle {
    margin: 0;
    padding: 0;
    list-style-type: none;

    li {
      margin-bottom: 0;
    }
  }
}

ul {
  list-style-type: disc;

  ul {
    list-style-type: circle;
  }
}

ol {
  list-style-type: decimal;
}*/

/************************************
 * PARAGRAPH
 */

* + p {
  margin-top: .5em;
}

/************************************
 * LINKS
 */

a {
  color: #1d1d1d;
  text-decoration: none;
  /*&:visited {
      color: $c-link-visited;
  }*/
}

a:hover,
a:active,
a:focus {
  color: #e53329;
}

a:active,
a:focus {
  outline: 0;
}

.hentry .entry-content a:not(.button) {
  text-decoration: inherit;
}

.hentry .entry-content .wysiwyg-styled a:not(.button) {
  text-decoration: underline;
}

.hentry .entry-content .wysiwyg-styled a:not(.button):hover {
  text-decoration: none;
}

.hentry .entry-content .wysiwyg-styled .woocommerce a:not(.button) {
  text-decoration: inherit;
}

/************************************
 * TEXT STYLES
 */

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

sup {
  font-size: 60%;
  line-height: normal;
  vertical-align: top;
}

/************************************
 * IMAGE
 */

img {
  max-width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  image-rendering: optimizeQuality;
}

/************************************
 * VIDEO
 */

video {
  max-width: 100%;
  height: auto;
}

/************************************
 * AUDIO
 */

/* ============================================ *
 * Global
 * ============================================ */

html,
body {
  height: 100%;
}

body.overflow,
body.overflow-menu {
  overflow: hidden;
}

body.overflow:before,
body.overflow-menu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: calc(var(--popup-menu-z-index) - 2);
}

.wrap {
  margin: 0 auto;
  max-width: 1430px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-full {
  margin: 0 auto;
  max-width: 1430px;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --header-links-z-index: 600;
  --menu-link-size: 60px;
  --menu-link-inset-block-start: 20px;
  --menu-link-inset-inline-start: 20px;
  --search-link-size: 52px;
  --search-link-inset-block-start: 20px;
  --search-link-inset-inline-end: 20px;
}

:root .admin-bar {
  --menu-link-inset-block-start: 52px;
  --search-link-inset-block-start: 52px;
}

.site-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  padding-block: 15px;
  background-color: transparent;
  border: none;
  z-index: initial;
}

.site-header .site-branding {
  float: none;
  width: clamp(180px, 10.61vw + 141.82px, 320px) !important;
  margin: 0 !important;
}

.site-header .site-branding img {
  max-width: none !important;
}

.site-header .site-search {
  display: block;
  width: calc(100vw - var(--search-link-size) - var(--search-link-inset-inline-end) - var(--menu-link-size) - var(--menu-link-inset-inline-start) - 20px) !important;
  max-width: 1545px;
  margin: 0;
  font-size: 1em;
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  position: fixed;
  inset-block-start: var(--search-link-inset-block-start);
  inset-inline-end: calc(var(--search-link-inset-inline-end) + var(--search-link-size) - 1px);
  z-index: var(--header-links-z-index);
}

.site-header .site-search.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.site-header .site-search #ajaxsearchlite1,
.site-header .site-search div.asl_w {
  border: none;
  border-radius: 5px 0 0 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.site-header .site-search #ajaxsearchlite1 .probox,
.site-header .site-search div.asl_w .probox {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: var(--search-link-size);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.site-header .site-search #ajaxsearchlite1 .probox .proinput,
.site-header .site-search div.asl_w .probox .proinput {
  font-size: 1em;
}

.site-header .site-search #ajaxsearchlite1 .probox .proinput input,
.site-header .site-search div.asl_w .probox .proinput input {
  height: var(--search-link-size);
  font-size: 1em;
}

.site-header .site-search #ajaxsearchlite1 .probox .proinput [type="text"],
.site-header .site-search div.asl_w .probox .proinput [type="text"] {
  display: none;
}

.site-header .site-search #ajaxsearchlite1 .probox .promagnifier,
.site-header .site-search div.asl_w .probox .promagnifier {
  display: none;
}

.site-header .site-search .balexert-search__field {
  height: var(--search-link-size);
  border-radius: 5px 0 0 5px !important;
  border: none !important;
  font-size: 1.1em;
}

.site-header .site-search .balexert-search__submit {
  display: none;
}

.balexert-search {
  position: relative;
  width: 100%;
}

.balexert-search__field-wrapper {
  position: relative;
}

.balexert-search__field {
  border-radius: 100px !important;
  padding-right: 45px !important;
}

.balexert-search__submit {
  width: 28px;
  height: 28px !important;
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  position: absolute !important;
  right: 15px;
  top: 11px;
}

.balexert-search__submit .icon svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.balexert-search__submit .label {
  display: none;
}

.balexert-search__suggestions {
  position: absolute;
  z-index: 10;
  top: 100%;
  min-width: 100%;
  max-height: 320px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.balexert-search__suggestions:not(.active) {
  display: none;
}

.balexert-search__suggestions__group:not(.active) {
  display: none;
}

.balexert-search__suggestions__group-title {
  padding: 0.4em 1em 0.2em;
  background-color: #eee;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.balexert-search__suggestions__group-list {
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--c-border);
}

.balexert-search__suggestions__group-list li {
  border-top: 1px solid var(--c-border);
}

.balexert-search__suggestion {
  display: block;
  padding: 0.4em 1.5em 0.2em;
  background-color: #fff;
}

.balexert-search__suggestion em {
  font-style: normal;
  font-weight: 700;
}

.balexert-search__suggestion:hover {
  background-color: var(--c-secondary);
}

div.asl_w {
  margin-top: 0;
}

#mobile-menu-link {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: var(--menu-link-size);
  aspect-ratio: 1;
  padding: 0;
  background-color: var(--c-special);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: fixed;
  inset-block-start: var(--menu-link-inset-block-start);
  inset-inline-start: var(--menu-link-inset-inline-start);
  z-index: var(--header-links-z-index);
}

#mobile-menu-link:focus {
  outline: none;
}

#mobile-menu-link span {
  pointer-events: none;
}

#mobile-menu-link .label {
  display: none;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

#mobile-menu-link .icon {
  position: relative;
  display: block;
  width: 26px;
  height: 18px;
  background-color: transparent;
  border-block: 3px solid #ffffff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

#mobile-menu-link .icon::before,
#mobile-menu-link .icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  position: absolute;
  top: calc(50% - 1px);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

#mobile-menu-link .icon::before {
  opacity: 0;
}

#mobile-menu-link.active .icon {
  border-block-color: transparent;
}

#mobile-menu-link.active .icon::before {
  opacity: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#mobile-menu-link.active .icon::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#mobile-search-link {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: var(--search-link-size);
  aspect-ratio: 1;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  position: fixed;
  inset-block-start: var(--search-link-inset-block-start);
  inset-inline-end: var(--search-link-inset-inline-end);
  z-index: calc(var(--popup-menu-z-index) - 1);
}

#mobile-search-link .icon svg {
  display: block;
}

#mobile-search-link .label {
  display: none;
}

#mobile-search-link:focus {
  outline: none;
}

#mobile-search-link.active {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #fff;
}

#mobile-search-link.active .icon path {
  fill: var(--c-special);
}

@media (min-width: 768px) {
  :root {
    --menu-link-size: clamp(60px, 3.84vw + 30.53px, 95px);
    --menu-link-inset-block-start: clamp(20px, 0.55vw + 15.79px, 25px);
    --menu-link-inset-inline-start: clamp(20px, 3.29vw + -5.26px, 50px);
    --search-link-size: clamp(52px, 1.1vw + 43.58px, 62px);
    --search-link-inset-block-start: clamp(20px, 1.54vw + 8.21px, 34px);
    --search-link-inset-inline-end: clamp(20px, 3.29vw + -5.26px, 50px);
  }

  :root .admin-bar {
    --menu-link-inset-block-start: clamp(52px, 0.55vw + 47.79px, 57px);
    --search-link-inset-block-start: clamp(52px, 1.54vw + 40.21px, 66px);
  }

  .site-header {
    height: clamp(90px, 7.68vw + 31.05px, 160px);
  }
}

@media (min-width: 1240px) {
  #mobile-menu-link .icon {
    width: 36px;
    height: 22px;
    -webkit-margin-before: 15%;
    margin-block-start: 15%;
  }

  #mobile-menu-link .label {
    display: block;
  }
}

@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 1.8em;
  }

  h3,
  .h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 479px) {
  h2,
  .h2 {
    font-size: 1.6em;
  }
}
/*# sourceMappingURL=header.css.map */
