@charset "UTF-8";
/**
*
* Colors
*
**/
/* GREY */
/* BLUE */
/**
*
* Variables CSS Elements
*
**/
/*****  FONTS  *****/
/**** GENERALS ****/
/* Font Size */
/* Fonts */
/* Colors association */
/**** HEADER ****/
/**** FOOTER ****/
/**** CONTENT ****/
/******** TABLETTE **********/
/* Global*/
/******** MOBILE **********/
/* Global*/
/******** MOBILE XS **********/
/* Global*/
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,
font,
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,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
svg,
hr {
  margin: 0;
  padding: 0;
  border: 0 none;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  font-weight: normal;
}

/**
*
* Mixins CSS Elements
*
**/
/* Transform */
/* Box Shadow */
/* Text Shadow */
/* Border Radius */
/* Box Sizing */
/* Transition */
/* Transform Origin */
/* Translate */
/* Rotate */
/* Content-Columns */
/* Filters */
/* Hyphens (traits d'union) */
/* 
* 
* Animation 
*
*/
/* Animation */
/* Placeholder */
/* 
*
* Fonts 
* 
*/
/* Button animation */
/**
*
* Animations
*
**/
#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  visibility: visible;
  opacity: 1;
  z-index: 2000;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s linear, visibility 0s linear 1s;
  transition: opacity 0.3s linear, visibility 0s linear 1s;
}
#preloader .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  animation-delay: 1s;
}
#preloader .loader_img {
  height: 200px;
  width: 200px;
}
#preloader .loader_img img {
  width: 100%;
}
#preloader .item_anim {
  display: flex;
  flex-direction: row;
  margin-top: 2em;
}
#preloader .item-1 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f5eede;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2);
  }
  78%, 100% {
    opacity: 0;
  }
}
#preloader .item-1:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f5eede;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 200ms;
  transition: 0.5s all ease;
  transform: scale(1);
}
#preloader .item-2 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ead9b6;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2);
  }
  78%, 100% {
    opacity: 0;
  }
}
#preloader .item-2:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ead9b6;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 400ms;
  transition: 0.5s all ease;
  transform: scale(1);
}
#preloader .item-3 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #DEC58F;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2);
  }
  78%, 100% {
    opacity: 0;
  }
}
#preloader .item-3:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #DEC58F;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 600ms;
  transition: 0.5s all ease;
  transform: scale(1);
}
#preloader .item-4 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d2b168;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2);
  }
  78%, 100% {
    opacity: 0;
  }
}
#preloader .item-4:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d2b168;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 800ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.9;
}
.hamburger:not(.collapsed):hover {
  opacity: 0.9;
}
.hamburger:not(.collapsed) .hamburger-inner,
.hamburger:not(.collapsed) .hamburger-inner::before,
.hamburger:not(.collapsed) .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse:not(.collapsed) .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse:not(.collapsed) .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse:not(.collapsed) .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/**
*
* Reinssurance
*
**/
/**
*
* Commons CSS Elements
*
**/
/* Admin */
#wpadminbar {
  top: inherit;
  bottom: 0;
}

/***** Suprression CSS de base *****/
a:focus,
a:hover,
a:active,
button:focus,
button:hover,
button:active,
:focus {
  outline: 0 !important;
}

a,
button,
.btn {
  -webkit-transition: 0.2s 0.2s, linear 0.2s;
  transition: 0.2s 0.2s, linear 0.2s;
}
a:focus, a:active, a:not(:disabled):not(.disabled):active, a:not(:disabled):not(.disabled):active:focus,
button:focus,
button:active,
button:not(:disabled):not(.disabled):active,
button:not(:disabled):not(.disabled):active:focus,
.btn:focus,
.btn:active,
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled):active:focus {
  outline: 0;
}

.form-control:focus,
.btn:focus {
  -o-box-shadow: 0 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
}

button::-moz-focus-inner {
  border: 0 !important;
}

ul, ol {
  list-style: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.no-padding {
  padding: 0;
}

/***** ELEMENTS *****/
/* Images */
figure {
  line-height: 0;
}

img.img-fluid.full {
  min-width: 100%;
  width: 100%;
}

/* Background Opacité */
.page-part-illustration {
  position: relative;
  background-size: cover;
}
.page-part-illustration .__bloc_opacity {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

._background_decoration {
  position: relative;
}
._background_decoration:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #FCF9F4;
}

/* Container Custom */
.custom-container {
  max-width: 1440px;
  width: 1440px;
  margin: 0 auto;
}

/* Shadow */
.custom_shadow {
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

/* Contents Align */
.page-part-right .__bloc,
.page-part-right .__bloc_title,
.page-part-right .page-part_content {
  text-align: right;
}

.page-part-left .__bloc,
.page-part-left .__bloc_title,
.page-part-left .page-part_content {
  text-align: left;
}

/* Section */
.page-part {
  padding: 6em 0;
}
.page-part + .page-part:not(.page-part-gamme) {
  padding-top: 0;
}

/* Section Bloc Adress / Socials */
.__bloc_address li a {
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.__bloc_address li a:hover {
  color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.__bloc_address li a:hover:before {
  color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.__bloc_address li + li {
  margin-top: 1.5em;
}

.__bloc_socials h3 {
  margin-bottom: 0.75em;
  font-size: calc(45em/25);
}
.__bloc_socials li {
  display: inline-block;
}
.__bloc_socials li + li {
  margin-left: 0.75em;
}

.__bloc_content {
  padding-top: 2em;
  padding-bottom: 2em;
}

/* Section Background */
.__bloc_background {
  position: absolute;
  top: 0;
  background-color: #FCF9F4;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  margin-left: auto;
  z-index: -1;
}
.__bloc_background + .__bloc_illustration {
  /**/
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  background-attachment: fixed;
  /**/
  background-image: url("../img/vigne_blanc.svg");
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  z-index: 0;
}

/* Buttons */
.btn,
.button {
  overflow: hidden;
  position: relative;
  font-family: "AbadiBold", sans-serif;
  cursor: pointer;
  font-size: calc(35em / 25);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  padding: 0.5em 1em 0.25em;
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: auto;
  -o-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.btn.btn_blanc,
.button.btn_blanc {
  border: 1px solid #DEC58F;
  color: #DEC58F;
  background-color: #ffffff;
}
.btn.btn_blanc:hover,
.button.btn_blanc:hover {
  background-color: #DEC58F;
  color: #ffffff;
}
.btn.btn_gold,
.button.btn_gold {
  border: 1px solid #DEC58F;
  color: #ffffff;
  background-color: #DEC58F;
}
.btn.btn_gold:hover,
.button.btn_gold:hover {
  background-color: #ffffff;
  color: #DEC58F;
}
.btn.btn_noir,
.button.btn_noir {
  border: 1px solid #000000;
  color: #ffffff;
  background-color: #000000;
}
.btn.btn_noir:hover,
.button.btn_noir:hover {
  background-color: #ffffff;
  color: #000000;
}
.btn:focus, .btn:visited, .btn:active,
.button:focus,
.button:visited,
.button:active {
  outline: none;
  box-shadow: none;
}
.btn:hover,
.button:hover {
  background-color: #ffffff;
  color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/***** DEBUG *****/
pre {
  margin: 30px 0 10px;
  white-space: pre-wrap;
  counter-reset: line-numbering;
  background: #2c3e50;
  padding: 30px;
  width: 100%;
  color: #ecf0f1;
  line-height: 140%;
}
pre p {
  word-wrap: break-word;
}
pre .line {
  display: inline-block;
}
pre .line::before {
  content: counter(line-numbering);
  counter-increment: line-numbering;
  padding-right: 2em;
  /* space after numbers */
  padding-left: 1em;
  width: 1.5em;
  text-align: right;
  opacity: 0.5;
  color: white;
}

/**
*
* Post
*
**/
/**
*
* Form
*
**/
/**** CONTACT FORM ****/
.woocommerce form .form-row input[type=text],
.woocommerce form .form-row input[type=tel],
.woocommerce form .form-row input[type=email],
.woocommerce form .form-row input[type=password],
.woocommerce form .form-row textarea {
  min-height: 48px;
  -o-border-radius: 19px;
  -moz-border-radius: 19px;
  -webkit-border-radius: 19px;
  border-radius: 19px;
  border: 2px solid #DEC58F;
  background-color: #ffffff;
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 0.5em 1em 0.25em;
  line-height: 1;
}
.woocommerce form .form-row textarea {
  padding-top: 1em;
}
.woocommerce form .form-row.woocommerce-validated input[type=text],
.woocommerce form .form-row.woocommerce-validated input[type=tel],
.woocommerce form .form-row.woocommerce-validated input[type=email],
.woocommerce form .form-row.woocommerce-validated textarea {
  border-color: #DEC58F;
}
.woocommerce form .form-row input[type=password] + .show-password-input,
.woocommerce form .form-row .woocommerce-password-hint + .show-password-input {
  top: 1em;
  right: 1em;
  color: #DEC58F;
}
.woocommerce form .form-row .woocommerce-password-strength + .show-password-input,
.woocommerce form .form-row .woocommerce-password-hint + .show-password-input {
  top: 14px;
  right: 1em;
  color: #DEC58F;
}

.wpcf7-form br {
  display: none;
}
.wpcf7-form label {
  display: none;
}
.wpcf7-form select {
  -o-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-top: 0;
}
.wpcf7-form .form-row {
  -o-border-radius: 19px;
  -moz-border-radius: 19px;
  -webkit-border-radius: 19px;
  border-radius: 19px;
  border: 2px solid #DEC58F;
  background-color: #ffffff;
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  padding-top: 1.25em;
  line-height: 1;
}
.wpcf7-form .form-row.wpcf7-textarea {
  width: 100%;
  padding: 1em;
  padding-top: 1.25em;
  height: 70%;
}
.wpcf7-form .btn {
  margin-top: 0.25em;
  padding: 1rem;
  width: 100%;
}

.form-row {
  min-width: 100%;
  padding: 1em;
  margin: 0.5em 0;
}
.form-row.btn {
  font-size: calc(20em /25);
  margin-top: 1.5em;
  border-width: 2px;
  text-align: center;
  padding: 1em calc(48em /25);
}

form .wpcf7-response-output {
  background-color: #ffffff;
  border: 1px solid #DEC58F;
  font-family: "AbadiLight", sans-serif;
  color: #DEC58F;
  padding-top: 0.5em;
  padding-bottom: 0.25em;
  border: none;
  margin-left: 0;
  margin-right: 0;
}
form.invalid .wpcf7-response-output {
  background-color: #DEC58F;
  font-family: "AbadiLight", sans-serif;
  color: #ffffff;
  padding-top: 0.5em;
  padding-bottom: 0.25em;
  border: none;
  margin-left: 0;
  margin-right: 0;
}

.wpcf7-form-control-wrap {
  margin: 2em 0;
}

.wpcf7-not-valid {
  border: 1px solid #f00 !important;
  color: #f00;
}

span.wpcf7-not-valid-tip {
  font-family: "AbadiBold", sans-serif;
  text-align: left;
}

div.wpcf7 p:last-of-type {
  position: relative;
}
div.wpcf7 p:last-of-type .ajax-loader {
  position: absolute;
  top: 70%;
  margin-left: 2em;
}

span.wpcf7-not-valid-tip {
  margin-top: 0.5em;
}

/**
*
* Collapses
*
**/
/**
*
* Fonts
*
**/
/** Abadi **/
@font-face {
  font-family: "AbadiBold";
  src: url("../fonts/abadi-mt-std-bold.otf") format("opentype");
}
@font-face {
  font-family: "Abadi";
  src: url("../fonts/abadi-mt.ttf") format("truetype");
}
@font-face {
  font-family: "AbadiLight";
  src: url("../fonts/abadi-mt-std-light.otf") format("opentype");
}
/*
*
Swipper
*
*/
/* Dots Slider - Swiper */
.page-part_slider .__bloc_opacity {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000000;
}

.swiper-container {
  margin-left: inherit;
  margin-right: inherit;
}

.page-part_slider .slick-dots {
  position: absolute;
  bottom: 8%;
  left: 7%;
  width: auto;
  z-index: 10;
  display: flex;
  flex-direction: row;
}
.page-part_slider .slick-dots li button {
  border: none;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: transparent;
  margin: 0 7px !important;
  background-color: #ffffff;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.page-part_slider .slick-dots li button:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.page-part_slider .slick-dots li.slick-active button {
  background-color: #ffffff;
  opacity: 1;
}
.page-part_slider .swiper-pagination_classic.swiper-pagination-bullets {
  position: absolute;
  bottom: 8%;
  left: 7%;
  width: auto;
  z-index: 10;
}
.page-part_slider .swiper-pagination_classic .swiper-pagination-bullet {
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 7px !important;
  background-color: #ffffff;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.page-part_slider .swiper-pagination_classic .swiper-pagination-bullet:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.page-part_slider .swiper-pagination_classic .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}

.swiper-pagination_gamme {
  position: absolute;
  left: 15px;
  top: 0;
  display: flex;
  flex-direction: column;
}
.swiper-pagination_gamme span {
  display: block;
  background-color: transparent;
  width: 100%;
  height: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  font-family: "AbadiBold", sans-serif;
  font-size: calc(35em/25);
  opacity: 1;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.swiper-pagination_gamme span:hover {
  color: #DEC58F;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.swiper-pagination_gamme span + span {
  margin-top: 1.5em;
}
.swiper-pagination_gamme span.swiper-pagination-bullet {
  position: relative;
}
.swiper-pagination_gamme span.swiper-pagination-bullet-active {
  background-color: transparent;
  color: #DEC58F;
}
.swiper-pagination_gamme span.swiper-pagination-bullet-active:before {
  color: #DEC58F;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

@font-face {
  font-family: "delli";
  src: url("../fonts/delli.eot");
  src: url("../fonts/delli.eot?#iefix") format("embedded-opentype"), url("../fonts/delli.woff") format("woff"), url("../fonts/delli.ttf") format("truetype"), url("../fonts/delli.svg#delli") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon-styles, html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-cart:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-my-account:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-cart:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-cart:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-cart:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-my-account:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-my-account:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-my-account:before, [class^=icon-]:before,
[class*=" icon-"]:before, [data-icon]:before {
  font-family: "delli" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-account:before {
  content: "a";
}

.icon-arrow:before {
  content: "b";
}

.icon-cadeau:before {
  content: "e";
}

.icon-cart:before {
  content: "f";
}

.icon-envoi:before {
  content: "g";
}

.icon-facebook:before {
  content: "h";
}

.icon-instagram:before {
  content: "i";
}

.icon-linkedin:before {
  content: "j";
}

.icon-mail:before {
  content: "k";
}

.icon-messsenger:before {
  content: "l";
}

.icon-paiement:before {
  content: "m";
}

.icon-personnalisation:before {
  content: "n";
}

.icon-phone:before {
  content: "o";
}

.icon-pin:before {
  content: "p";
}

.icon-pinterest:before {
  content: "q";
}

.icon-trash:before {
  content: "r";
}

.icon-whatsapp:before {
  content: "s";
}

/**
*
* Thème Default
*
**/
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
}

html {
  scroll-behavior: smooth;
}
html body {
  z-index: 1;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-size: 18px;
  line-height: 1.2;
  width: 100%;
  background: #ffffff;
  color: #000000;
}
html body#error-page {
  margin-top: 0;
  padding: 0;
}
html body#error-page p {
  margin: 0;
}
html body h1,
html body h2,
html body h3 {
  color: #000000;
  font-family: "AbadiBold", sans-serif;
  text-transform: uppercase;
}
html body h1 {
  font-size: calc(35em / 25);
  font-family: "AbadiLight", sans-serif;
}
html body h1 strong {
  font-family: "AbadiBold", sans-serif;
}
html body h2 {
  font-size: calc(65em / 25);
  line-height: calc(75em / 65);
  padding-bottom: 6rem;
  font-family: "AbadiBold", sans-serif;
  color: #DEC58F;
}
html body h3 {
  font-size: calc(20em / 25);
  text-transform: uppercase;
}
html body h4 {
  color: #DEC58F;
  margin-bottom: 1em;
  font-family: "AbadiBold", sans-serif;
}
html body a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
html body a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
html body p,
html body a,
html body span, html body div {
  font-size: 1em;
  font-family: "AbadiLight", sans-serif;
}
html body p {
  font-size: 1em;
  line-height: calc(30em / 25);
}
html body p + p {
  padding-top: 1em;
}
html body em {
  font-style: italic;
}
html body #main-wrapper {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  overflow-x: hidden;
  min-height: 75vh;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
html body #main-wrapper #main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.96);
}
html body #main-wrapper #main-header .__bloc_illustration {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url("../img/vigne_header.svg");
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  height: 100%;
  width: 30%;
  z-index: 0;
}
html body #main-wrapper #main-header nav {
  padding: 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
html body #main-wrapper #main-header nav.is_hidden {
  -o-transform: translateY(-120%);
  -moz-transform: translateY(-120%);
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
html body #main-wrapper #main-header nav .container-fluid {
  min-height: 18px;
  background-color: rgba(0, 0, 0, 0.6);
}
html body #main-wrapper #main-header nav .container-fluid.navbar-top {
  background-color: #DEC58F;
  padding: 0.25em 0;
  display: block;
}
html body #main-wrapper #main-header nav .container-fluid.navbar-top ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
html body #main-wrapper #main-header nav .container-fluid.navbar-top li a {
  font-size: 1em;
}
html body #main-wrapper #main-header nav .container-fluid.navbar-top li a img {
  max-height: 50px;
  max-width: 60px;
}
html body #main-wrapper #main-header nav .container-fluid.navbar-top li + li {
  margin-left: 2.5em;
}
html body #main-wrapper #main-header nav .navbar-header {
  padding: 0.5em 15px;
}
html body #main-wrapper #main-header nav .navbar-header .row {
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
}
html body #main-wrapper #main-header nav .navbar-header.navbar-responsive {
  display: none;
  padding-top: 0;
  padding-bottom: 0;
}
html body #main-wrapper #main-header nav .navbar-header.navbar-responsive .navbar-menu {
  padding-top: 0;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-brand {
  max-width: 125px;
  padding: 0;
  margin: 0.25em 1.5em;
  margin-left: 0;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-brand a img {
  width: 100%;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-toggle {
  display: none;
}
html body #main-wrapper #main-header nav .navbar-header .hamburger--collapse {
  padding-top: 10px;
  padding-bottom: 10px;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu {
  width: auto;
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-top: 0.25em;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive {
  flex-direction: row;
  position: relative;
  z-index: 1;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li {
  display: flex;
  align-content: center;
  align-items: center;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a {
  font-size: calc(20em/25);
  color: #000000;
  font-family: "AbadiLight", sans-serif;
  text-transform: uppercase;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a:hover, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a:hover, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a:hover {
  color: #DEC58F;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.current-menu-item, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.current-menu-item, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.current-menu-item {
  color: #DEC58F;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-my-account, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-my-account, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-my-account {
  margin-right: 2rem;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-my-account:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-my-account:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-my-account:before {
  content: "a";
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-cart, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-cart, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-cart {
  position: relative;
  margin-left: 0;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-cart:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-cart:before, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-cart:before {
  color: #DEC58F;
  content: "f";
  font-size: 4rem;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li a.menu-item-cart span, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li a.menu-item-cart span, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li a.menu-item-cart span {
  z-index: 11;
  color: #ffffff;
  position: absolute;
  right: 0px;
  top: 5px;
  height: 25px;
  width: 25px;
  padding: 4px 7px;
  font-size: 1.2em;
  background-color: #000000;
  border-radius: 50%;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li + li a, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li + li a, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li + li a {
  margin-left: 2em;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-nav li.responsive_menu, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar-account li.responsive_menu, html body #main-wrapper #main-header nav .navbar-header .navbar-menu .navbar_responsive li.responsive_menu {
  display: none;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  -o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.25s ease, visibility 0s ease-in-out 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease-in-out 0.25s;
  padding: 1.5em 3em;
  padding-bottom: 2em;
  top: 52px;
  min-width: 550px;
  background-color: #ffffff;
  color: #000000;
  z-index: 0;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0s ease-in-out;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu .row {
  justify-content: center;
  overflow: hidden;
  flex-wrap: wrap;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu .__bloc_grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu h4 {
  text-transform: uppercase;
  font-family: "AbadiLight", sans-serif;
  color: #000000;
  font-size: calc(25em / 25);
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu ul {
  padding-left: 0;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu li {
  border-bottom: none !important;
  padding: 5px !important;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu li a {
  font-size: calc(25em / 25);
  font-family: "AbadiLight", sans-serif;
  color: #000000;
  text-transform: initial;
  margin-left: 0 !important;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu li a:hover {
  color: #DEC58F;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu .sub-menu li span {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-toggle,
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive {
  background-color: #DEC58F;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive {
  width: auto;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive {
  justify-content: flex-end;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a {
  color: #000000;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a:hover {
  color: #DEC58F;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-my-account {
  font-size: 1.5em;
  position: absolute;
  right: 40%;
  top: 60%;
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-my-account:before {
  content: "a";
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-cart {
  position: absolute;
  right: 2rem;
  top: 15%;
  z-index: 9;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-cart:before {
  color: #ffffff;
  content: "f";
  font-size: 4rem;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-cart span {
  z-index: 11;
  color: #ffffff;
  position: absolute;
  right: 0px;
  top: 5px;
  height: 20px;
  width: 20px;
  padding: 4px 7px;
  font-size: 1em;
  background-color: #000000;
  border-radius: 50%;
}
html body #main-wrapper #main-header nav .navbar-header .navbar-menu_responsive .navbar-menu {
  padding-top: 0;
}
html body #main-wrapper #main-header nav #responsive-nav {
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
html body #main-wrapper #main-header .card_mini {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -15px;
  top: 70px;
  max-width: 250px;
  max-height: 500px;
  overflow: scroll;
  height: auto;
  background-color: #ffffff;
  padding-top: 0;
  -o-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 0;
}
html body #main-wrapper #main-header .card_mini ul li {
  background-color: #efefef;
  padding: 1em;
  font-family: "AbadiLight", sans-serif;
  font-size: 1em;
  position: relative;
}
html body #main-wrapper #main-header .card_mini ul li a {
  color: #DEC58F;
  font-family: "AbadiBold", sans-serif;
  font-weight: 100;
  line-height: 1.4;
}
html body #main-wrapper #main-header .card_mini ul li a:hover {
  color: #000000;
}
html body #main-wrapper #main-header .card_mini ul li img {
  display: none;
}
html body #main-wrapper #main-header .card_mini ul li .remove {
  display: none;
}
html body #main-wrapper #main-header .card_mini ul li .quantity {
  display: block;
  color: #DEC58F;
  font-size: calc(22em/25);
}
html body #main-wrapper #main-header .card_mini ul li .quantity > * {
  color: #DEC58F;
}
html body #main-wrapper #main-header .card_mini ul li + li {
  margin-top: 2px;
}
html body #main-wrapper #main-header .card_mini ul li .variation {
  margin: 1em 0;
  padding-top: 0.25rem;
  padding-left: 1em;
  border-left: 2px solid #DEC58F;
  padding-bottom: 0.25rem;
}
html body #main-wrapper #main-header .card_mini ul li .variation dd, html body #main-wrapper #main-header .card_mini ul li .variation dt {
  font-family: "AbadiLight", sans-serif;
  display: none;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
}
html body #main-wrapper #main-header .card_mini ul li .variation dd p, html body #main-wrapper #main-header .card_mini ul li .variation dt p {
  line-height: 1;
}
html body #main-wrapper #main-header .card_mini ul li .variation dd.variation-Nom, html body #main-wrapper #main-header .card_mini ul li .variation dd.variation-Prnom {
  display: inline-block;
}
html body #main-wrapper #main-header .card_mini ul li .variation dd.variation-Prnom {
  padding-left: 0.25rem;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__total {
  padding: 1em;
  text-align: center;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__total > * {
  color: #DEC58F;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__buttons {
  padding: 0 1em 0.5em;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__buttons .button {
  font-size: calc(22em/25);
  padding: 0.75em 1em 0.5em;
  -o-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  line-height: 1.2;
  width: 100%;
  background-color: #ffffff;
  color: #DEC58F;
  border: 1px solid #DEC58F;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__buttons .button:hover {
  color: #ffffff;
  background-color: #DEC58F;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__buttons .button:not(.checkout) {
  background-color: #DEC58F;
  border-color: #DEC58F;
  color: #ffffff;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  color: #DEC58F;
  background-color: #ffffff;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__buttons .button + .button {
  margin-top: 0.5rem;
}
html body #main-wrapper #main-header .card_mini .woocommerce-mini-cart__empty-message {
  padding: 1em;
  padding-bottom: 0.75em;
  font-family: "AbadiLight", sans-serif;
  font-size: calc(22em/25);
}
html body #main-wrapper #main-header .card_mini.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
html body #main-wrapper main#main-content {
  margin-top: 160px;
  padding-top: 0;
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-highlighted {
  padding-top: 0;
  padding-bottom: 0;
}
html body #main-wrapper main#main-content.home .page-part-highlighted,
html body #main-wrapper main#main-content.home .page-part-others {
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content {
  margin-left: auto;
  max-width: calc((1140px/12)*3);
}
html body #main-wrapper main#main-content.home .page-part-highlighted .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-others .__bloc_title {
  font-size: calc(35em/25);
}
html body #main-wrapper main#main-content.home .page-part-highlighted .__bloc_title h1,
html body #main-wrapper main#main-content.home .page-part-highlighted .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-others .__bloc_title h1,
html body #main-wrapper main#main-content.home .page-part-others .__bloc_title h3 {
  font-size: 1em;
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-highlighted .__bloc_title h1 strong,
html body #main-wrapper main#main-content.home .page-part-highlighted .__bloc_title h3 strong,
html body #main-wrapper main#main-content.home .page-part-others .__bloc_title h1 strong,
html body #main-wrapper main#main-content.home .page-part-others .__bloc_title h3 strong {
  display: block;
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-others .page-part_slider {
  margin-left: auto;
}
html body #main-wrapper main#main-content.home .page-part-highlighted {
  position: relative;
  padding-top: 6em;
  padding-bottom: 6em;
  overflow: hidden;
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
  max-width: inherit;
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title {
  font-size: calc(85em/25);
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title h1 {
  text-transform: uppercase;
  font-family: "AbadiBold", sans-serif;
  line-height: calc(100/85);
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: calc(65em/25);
  text-transform: uppercase;
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_link .btn {
  font-size: calc(35em/25);
}
html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_background {
  position: absolute;
  top: 0;
  z-index: -1;
  padding-left: 0;
  padding-right: 0;
}
html body #main-wrapper main#main-content.home .page-part-avantages {
  background-color: #FCF9F4;
  padding-top: 3em;
  padding-bottom: 3em;
}
html body #main-wrapper main#main-content.home .page-part-avantages .__bloc_advantage {
  padding-top: 5rem;
  position: relative;
  text-align: center;
}
html body #main-wrapper main#main-content.home .page-part-avantages .__bloc_advantage:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #000000;
  font-size: 4rem;
}
html body #main-wrapper main#main-content.home .page-part-avantages .__bloc_advantage p {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-gamme .page-part_slider {
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container {
  position: inherit;
  max-width: 66%;
  flex: 0 0 66%;
  margin-left: auto;
}
html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend {
  padding: 30px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}
html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend > * {
  z-index: 1;
}
html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend .logo {
  max-width: 80%;
  width: 80%;
  margin-left: auto;
}
html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend ._content {
  margin-top: 2em;
}
html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend .btn {
  margin-left: auto;
  font-size: calc(24em/25);
  line-height: calc(28em/24);
  margin-top: 2em;
}
html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend footer {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
html body #main-wrapper main#main-content.home .page-part-gamme .swiper-slide {
  overflow: hidden;
}
html body #main-wrapper main#main-content.home .page-part-gamme .swiper-slide img {
  max-width: 60%;
  min-width: 60%;
  width: 60%;
}
html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic {
  display: none;
}
html body #main-wrapper main#main-content.home .page-part-gamme footer {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 1em;
  text-align: right;
}
html body #main-wrapper main#main-content.home .page-part-gamme footer .btn {
  font-size: calc(24em/25);
  line-height: calc(28em/24);
  margin-top: 2em;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration {
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_img {
  display: flex;
  align-items: center;
  max-height: 100px;
  min-height: 100px;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 0;
  width: calc(100% - 30px);
  height: calc(100% - 15px);
  z-index: 1;
  color: #ffffff;
  padding: 1.5em;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend h4 {
  font-size: calc(35em/25);
  font-family: "AbadiBold", sans-serif;
  color: #ffffff;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend ._content {
  margin-top: 2em;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend .btn {
  margin-top: 2em;
  font-size: 1em;
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend footer {
  position: absolute;
  bottom: 1.5em;
  left: 1.5em;
  right: 1.5em;
  width: calc(100% - 3em);
}
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
  z-index: 0;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
html body #main-wrapper main#main-content.home .page-part-others .container .__bloc_title {
  font-size: 1em;
}
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .slick-slide {
  padding-right: 5px;
  padding-bottom: 15px;
  background-color: #ffffff;
  text-align: right;
}
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .slick-slide .__bloc_title {
  text-align: right;
}
html body #main-wrapper main#main-content.home .page-part-others .page-part_illustrations {
  padding-right: 0;
}
html body #main-wrapper main#main-content.home .page-part-selection {
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-selection .container .__bloc_title {
  font-size: 1em;
}
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content {
  margin-right: auto;
  text-align: left;
  max-width: calc((1140px/12)*3);
  padding-left: 0;
}
html body #main-wrapper main#main-content.home .page-part-selection .__bloc_title {
  font-size: calc(35em/25);
}
html body #main-wrapper main#main-content.home .page-part-selection .__bloc_title h3 {
  text-align: left;
  font-size: 1em;
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-selection .__bloc_title h3 strong {
  display: block;
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-selection .page-part_illustrations {
  line-height: 0;
  margin-right: auto;
  padding-left: 0;
}
html body #main-wrapper main#main-content.home .page-part-offrir {
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-offrir .container .__bloc_title {
  font-size: 1em;
}
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content {
  margin-left: auto;
  text-align: right;
  max-width: calc((1140px/12)*3);
  padding-right: 0;
}
html body #main-wrapper main#main-content.home .page-part-offrir .__bloc_title {
  font-size: calc(35em/25);
}
html body #main-wrapper main#main-content.home .page-part-offrir .__bloc_title h3 {
  text-align: right;
  font-size: 1em;
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-offrir .__bloc_title h3 strong {
  display: block;
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_illustrations {
  line-height: 0;
  margin-left: auto;
  padding-right: 0;
}
html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-slide {
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-slide .__blog_legend {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  width: 25%;
  z-index: 1;
  padding: 30px;
  align-items: center;
}
html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-pagination_classic {
  right: 0;
  left: 0;
  text-align: center;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider {
  max-height: 600px;
  padding-bottom: 0;
  position: relative;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider > .container-fluid,
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .row,
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .container,
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .swiper-slide {
  max-height: 600px;
  overflow: hidden;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider {
  padding-left: 0;
  padding-right: 0;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend {
  margin-right: 12vw;
  justify-content: flex-end;
  left: inherit;
  right: 0;
  top: 50%;
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: inherit;
  background-color: transparent;
  width: 40%;
  color: #ffffff;
  text-align: right;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend img {
  max-width: 150px;
  width: auto;
  min-width: inherit;
  margin-left: auto;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend h3 {
  text-transform: uppercase;
  font-size: calc(65em/25);
  font-family: "AbadiBold", sans-serif;
  line-height: calc(78/65);
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #ffffff;
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend .__bloc_content {
  font-size: calc(25em/25);
}
html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-pagination_classic {
  right: inherit;
  left: 12vw;
  text-align: left;
}
html body #main-wrapper main#main-content.home .page-part-domaine {
  padding-bottom: 0;
}
html body #main-wrapper main#main-content.home .page-part-domaine .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration {
  position: relative;
  overflow: hidden;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_illustration {
  width: 100%;
  height: 500px;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration img,
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_opacity {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_opacity {
  background: linear-gradient(to right, rgba(164, 140, 88, 0.5), rgba(63, 105, 121, 0));
  z-index: 2;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content {
  font-size: calc(35em/25);
  color: #000000;
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content h3 {
  font-size: calc(60em/25);
}
html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content > * {
  font-size: 1em;
  font-family: "AbadiBold", sans-serif;
  line-height: calc(42/35);
}
html body #main-wrapper main#main-content .page-part-revendeur {
  padding-top: calc(6em + 126px);
}
html body #main-wrapper main#main-content .page-part-revendeur .page-part_illustration {
  z-index: 10;
}
html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content {
  margin-top: -10px;
  background-color: #ffffff;
  padding: 3em 5em;
}
html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content h2 {
  padding-bottom: 0.5rem;
}
html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content form {
  padding-top: 2em;
}
html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content form p {
  text-align: center;
}
html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content form .btn {
  margin: 0 auto;
  width: auto;
  padding-left: 2em;
  padding-right: 2em;
}
html body #main-wrapper main#main-content .page-part-woocommerce {
  padding-top: calc(6em + 125px);
}
html body #main-wrapper main#main-content .page-part-form {
  padding-top: calc(6em + 126px);
}
html body #main-wrapper main#main-content .page-part-form .page-part_header {
  margin-bottom: 6rem;
}
html body #main-wrapper main#main-content .page-part-form .page-part_header h1 {
  font-size: calc(65em / 25);
  line-height: calc(75em / 65);
  font-family: "AbadiBold", sans-serif;
  border-bottom: 3px solid #000000;
}
html body #main-wrapper main#main-content .page-part-form .page-part_form {
  padding: 2em 3em;
  background-color: #ffffff;
}
html body #main-wrapper main#main-content .page-part-form .page-part_form h2 {
  font-size: calc(35em / 25);
  line-height: calc(40em / 35);
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted {
  position: relative;
  padding-top: calc(6em + 126px);
  padding-bottom: calc(12em + 126px);
  overflow: hidden;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted .page-part_illustration {
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted .page-part_header {
  color: #ffffff;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted .page-part_header h1 {
  font-size: calc(65em / 25);
  line-height: calc(75em / 65);
  font-family: "AbadiBold", sans-serif;
  color: #ffffff;
  max-width: 60%;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content {
  padding-bottom: 0;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content {
  background-color: #ffffff;
  -o-transform: translateY(-5em);
  -moz-transform: translateY(-5em);
  -webkit-transform: translateY(-5em);
  transform: translateY(-5em);
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content .__bloc_content {
  padding: 6em 15px;
  margin: 0 auto;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content h2 {
  padding-bottom: 1rem;
  text-align: center;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form {
  padding-top: 0;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form {
  background-color: transparent;
  padding: 0 15px;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form .__bloc_content {
  padding: 2em 3em;
  background-color: #ffffff;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form .__bloc_content h2 {
  font-size: calc(35em / 25);
  line-height: calc(40em / 35);
  font-family: "AbadiLight", sans-serif;
  padding-bottom: 0.5rem;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form .__bloc_content form {
  padding-top: 2em;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form .__bloc_content form p {
  text-align: center;
}
html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form .__bloc_content form .btn {
  margin: 0 auto;
  width: auto;
  padding-left: 2em;
  padding-right: 2em;
}
html body #main-wrapper main#main-content .page-part_contact .__bloc_map iframe {
  width: 100% !important;
}
html body #main-wrapper main#main-content .page-part_contact .__bloc_contact .row {
  flex-direction: column;
  height: 100%;
}
html body #main-wrapper footer#main-footer {
  position: relative;
  padding-top: 3em;
  padding-bottom: 3em;
  border-top: 1px solid #000000;
  background-color: #ffffff;
}
html body #main-wrapper footer#main-footer .footer-column h3 {
  color: #DEC58F;
  font-family: "AbadiBold", sans-serif;
  font-size: calc(35em / 25);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0;
}
html body #main-wrapper footer#main-footer .footer-column ul {
  display: flex;
  flex-direction: column;
  padding-top: 1em;
}
html body #main-wrapper footer#main-footer .footer-column ul li {
  display: block;
  padding: 0.5em 0;
}
html body #main-wrapper footer#main-footer .footer-column ul li a {
  color: #000000;
  text-transform: uppercase;
  font-size: calc(35em / 25);
}
html body #main-wrapper footer#main-footer .footer-column ul li a:hover {
  color: #DEC58F;
}
html body #main-wrapper footer#main-footer .footer-column .__bloc_address li a {
  text-transform: initial;
  font-size: calc(25em / 25);
}
html body #main-wrapper footer#main-footer .footer-column .__bloc_address li + li {
  margin-top: 0.5em;
}
html body #main-wrapper footer#main-footer .footer_brand {
  padding: 2.5em 0;
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
html body #main-wrapper footer#main-footer .footer-socials ul {
  display: flex;
  flex-direction: row;
}
html body #main-wrapper footer#main-footer .footer-socials ul li a {
  font-size: 1em;
}
html body.admin-bar {
  max-width: 100vw;
}
html body.admin-bar .debug {
  bottom: 32px;
}

/* Product  */
/**
*
* Icons Custom
*
**/
.__bloc_address [class^=icon-],
.__bloc_address .social_link,
.__bloc_socials [class^=icon-],
.__bloc_socials .social_link {
  position: relative;
  color: #000000;
  font-size: calc(25em/25);
}
.__bloc_address [class^=icon-],
.__bloc_socials [class^=icon-] {
  padding-left: 2.5em;
}
.__bloc_address [class^=icon-]:before,
.__bloc_socials [class^=icon-]:before {
  position: absolute;
  top: 50%;
  left: 0;
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  line-height: 0;
  font-size: 1.5em;
}
.__bloc_address .social_link:before,
.__bloc_socials .social_link:before {
  font-size: 2em;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.__bloc_address .social_link:hover:before,
.__bloc_socials .social_link:hover:before {
  color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
*
* WooCommerce Styles
*
*/
/* Select choice country - Cart */
.select2-container--default {
  /* Custom Arrow */
  /* Custom Arrow - End */
}
.select2-container--default .select2-selection--single {
  position: relative;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 25%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  content: "b";
  font-family: "delli" !important;
  position: absolute;
  top: 25%;
  right: 10px;
  font-size: calc(14rem/25);
  color: #DEC58F;
  -o-transform: rotate(0);
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.select2-container--default span.select2-dropdown {
  border-radius: 19px;
  padding: 1em 0.5em;
  border: 2px solid #A48C58;
  border-top: none;
}
.select2-container--default span.select2-dropdown .select2-search--dropdown .select2-search__field {
  border-color: #DEC58F;
  font-size: 13px !important;
}
.select2-container--default span .select2-selection--single {
  -o-border-radius: 19px !important;
  -moz-border-radius: 19px !important;
  -webkit-border-radius: 19px !important;
  border-radius: 19px !important;
  border: 2px solid #DEC58F;
  background-color: #ffffff;
  -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  line-height: 1;
  overflow: hidden;
}
.select2-container--default span ul li.select2-results__option {
  font-size: 13px !important;
  color: #000000;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.select2-container--default span ul li.select2-results__option[data-selected=true] {
  background-color: #DEC58F;
}
.select2-container--default span ul li.select2-results__option.select2-results__option--highlighted, .select2-container--default span ul li.select2-results__option:hover {
  background-color: #DEC58F;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.woocommerce ul#shipping_method li {
  color: #000000;
  line-height: 1.4;
}
.woocommerce ul#shipping_method li .shipping_method {
  display: inline-block;
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  position: relative;
  cursor: pointer;
}
.woocommerce ul#shipping_method li .shipping_method:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  left: -1px;
  height: 16px;
  width: 16px;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.woocommerce ul#shipping_method li .shipping_method:hover:before {
  background-color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.woocommerce ul#shipping_method li .shipping_method:checked:before {
  background-color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.woocommerce ul#shipping_method li .shipping_method:checked:after {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.woocommerce ul#shipping_method li > label {
  cursor: pointer;
  font-family: "AbadiBold", sans-serif;
  font-size: 1em;
  margin-left: 0.25em;
}
.woocommerce ul#shipping_method li > label span {
  font-family: "AbadiLight", sans-serif;
}

#woocommerce {
  width: 100%;
}
#woocommerce .__bloc_title {
  text-align: left;
  margin-bottom: 3rem;
}
#woocommerce .__bloc_title h1 {
  font-size: calc(65em / 25);
  line-height: calc(75em / 65);
  font-family: "AbadiBold", sans-serif;
  border-bottom: 3px solid #000000;
}

/* Custom field - Company Number */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-address-fields__field-wrapper,
.woocommerce-address-fields__field-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce-address-fields__field-wrapper {
  padding-top: 30px;
}
.woocommerce-address-fields__field-wrapper #billing_last_name_field,
.woocommerce-address-fields__field-wrapper #billing_first_name_field,
.woocommerce-address-fields__field-wrapper #billing_company_field,
.woocommerce-address-fields__field-wrapper #billing_country_field,
.woocommerce-address-fields__field-wrapper #shipping_last_name_field,
.woocommerce-address-fields__field-wrapper #shipping_first_name_field,
.woocommerce-address-fields__field-wrapper #shipping_company_field,
.woocommerce-address-fields__field-wrapper #shipping_country_field {
  order: inherit;
}

#billing_last_name_field,
#billing_first_name_field,
#billing_company_field,
#billing_country_field,
#shipping_last_name_field,
#shipping_first_name_field,
#shipping_company_field,
#shipping_country_field {
  order: 1;
}

#billing_state_field,
#shipping_state_field {
  order: 2;
}

#billing_company_number_field {
  order: 3;
}

#billing_address_1_field,
#billing_address_2_field,
#shipping_address_1_field,
#shipping_address_2_field {
  order: 4;
}

#billing_city_field,
#billing_postcode_field,
#billing_phone_field,
#billing_email_field,
#shipping_city_field,
#shipping_postcode_field,
#shipping_phone_field,
#shipping_email_field {
  order: 5;
  float: inherit;
}

/* Border around terms checkbox - checkout */
.woocommerce-invalid #terms {
  outline: none;
}

html body {
  /***** Woo messages *****/
}
html body .select2-container .select2-results__option.select2-results__option--highlighted,
html body .select2-container .select2-results__option:hover {
  color: #000000;
}
html body .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1;
}
html body .woocommerce-orders.woocommerce-account .woocommerce .woo_myaccount .woocommerce-message a.btn {
  padding: 0 !important;
  min-width: auto;
  text-transform: inherit;
  border: none;
  line-height: 28px !important;
  -o-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
html body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message {
  margin-top: 1em !important;
}
html body.woocommerce-checkout .woocommerce-login {
  margin-top: 2em;
}
html body.woocommerce-checkout .woocommerce-login-register a, html body.woocommerce-checkout .woocommerce-login-register p {
  margin-left: calc(30em / 18) !important;
}
html body #main-wrapper main#main-content .woocommerce {
  /***** Woo buttons *****/
  /***** Woo messages *****/
  /***** Size block cart récap *****/
  /***** Calculator cart récap *****/
  /***** Btn proceed to checkout - Cart *****/
  /***** Page Connexion *****/
  /***** Checkbox Custom *****/
}
html body #main-wrapper main#main-content .woocommerce .btn {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .btn-reset-password {
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce .woo_messages {
  padding-bottom: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  margin-top: 2em;
  margin-bottom: 0;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-notices-wrapper .woocommerce-message {
  margin-top: 0;
  margin-bottom: 2em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-NoticeGroup {
  width: 100%;
  margin: 0;
  margin-bottom: 2em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info,
html body #main-wrapper main#main-content .woocommerce .woocommerce-error {
  background-color: #DEC58F;
  color: #ffffff;
  font-family: "AbadiBold", sans-serif;
  border: 1px solid #DEC58F;
  padding: 0.75em 1em 0.5em;
  font-size: calc(22em/25);
  margin-top: 2em;
  margin-bottom: 0;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message::before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info::before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-error::before {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-error a {
  color: #DEC58F;
  float: right;
  padding: 0;
  padding-left: 1em;
  font-size: 1em;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background-color: transparent;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message a:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info a:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-error a:hover {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message a.btn,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info a.btn,
html body #main-wrapper main#main-content .woocommerce .woocommerce-error a.btn {
  padding: 10px 30px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info {
  background-color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-message + p,
html body #main-wrapper main#main-content .woocommerce .woocommerce-info + p {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-error {
  background-color: #DEC58F;
  color: #ffffff;
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-error .registration_error a {
  float: inherit;
  padding-left: 0;
  text-decoration: underline;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-error a {
  color: #ffffff;
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-error li + li {
  padding-top: 5px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength {
  margin: 1em 15px;
  padding: calc(15em/25) calc(20em/25);
  font-size: calc(22em/25);
  text-align: left;
  font-weight: 100;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.short {
  background-color: #D44D28;
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.bad {
  background-color: #D44D28;
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.good {
  background-color: #DEC58F;
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.strong {
  background-color: #3ba060;
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-password-hint {
  font-size: calc(22em/25);
  margin: 0.5em 15px 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-ResetPassword {
  margin-top: calc(50em/25);
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-ResetPassword > p:first-child {
  font-size: calc(22em/25);
  padding-bottom: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-ResetPassword .woocommerce-form-row {
  margin-top: 0.5em;
  max-width: 50%;
  min-width: 50%;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-ResetPassword .woocommerce-form-row.woocommerce-form-row--first {
  margin-top: 2em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-form-login,
html body #main-wrapper main#main-content .woocommerce .woocommerce-form-register {
  justify-content: space-between;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product {
  margin-top: 1.5em;
  -webkit-animation: none 0.2s;
  animation: none 0.2s;
  opacity: 1;
  flex: 0 0 50%;
  max-width: 50%;
  min-height: inherit;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_img {
  padding: 0;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_img img {
  max-width: 100%;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_content {
  font-size: calc(16em/25);
  padding: calc(32em/25) calc(15em/25);
  text-align: center;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_content h4 {
  line-height: 1.4;
  padding-bottom: 15px;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_content h4:after {
  margin: 0 auto;
  right: 0;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_content p {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_content .btn {
  font-size: 1em;
  margin-top: 1em;
  padding: 0.5em 1em;
  min-width: inherit;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals .shop_table {
  margin-top: calc(40em/25);
  margin-bottom: 0;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals .shop_table tbody tr td {
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals .shop_table .woocommerce-shipping-destination {
  padding: 0.5em 0;
  line-height: 1.4;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals .shop_table .shipping-calculator-form {
  margin-top: 0;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals .shop_table .shipping-calculator-form #calc_shipping_postcode_field + p .btn {
  width: 100%;
  margin-top: 1em;
  font-size: 1rem;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .wc-proceed-to-checkout {
  padding-top: 2em;
}
html body #main-wrapper main#main-content .woocommerce .cart-collaterals .wc-proceed-to-checkout .btn {
  float: left;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-shipping-calculator .form-row {
  padding: 0;
  margin: 0;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-shipping-calculator .form-row input {
  font-size: calc(22em/25);
  min-height: 42px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-shipping-calculator .form-row span.select2-container--default {
  min-width: 182px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-shipping-calculator .form-row span.select2-container--default .selection span {
  min-height: 42px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-shipping-calculator .form-row span.select2-container--default .selection .select2-selection__rendered {
  font-size: calc(22em/25);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-shipping-calculator .form-row span.select2-container--default .selection .select2-selection--single .select2-selection__arrow {
  top: 10%;
}
html body #main-wrapper main#main-content .woocommerce .wc-proceed-to-checkout {
  padding-bottom: 0;
}
html body #main-wrapper main#main-content .woocommerce .wc-proceed-to-checkout .btn {
  display: initial;
  float: right;
  padding: 0.5em 1em 0.25em;
  border: 1px solid #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .my_account_h1 {
  font-size: calc(45em / 18);
  line-height: calc(45/45);
  padding: 0.25em 0;
  padding-top: 0;
  position: relative;
  color: #DEC58F;
  text-transform: inherit;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login h2 {
  font-family: "AbadiBold", sans-serif;
  font-size: calc(35em/25);
  padding-bottom: 0.5em;
  position: relative;
  text-align: left !important;
  color: #000000 !important;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login input[type=password] + .show-password-input {
  top: 0.8em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login .woocommerce-login-connexion {
  padding-right: calc(15em/25);
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login .woocommerce-login-connexion .woocommerce-form__input-checkbox {
  margin-left: 0.5em;
  margin-right: 0.5em;
  position: relative;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login .woocommerce-login-connexion .woocommerce-form__input-checkbox:before {
  left: -1px;
  top: -1px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login .woocommerce-login-connexion .woocommerce-form__input-checkbox + span {
  cursor: pointer;
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login .woocommerce-login-register {
  padding-left: calc(15em/25);
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-login .woocommerce-login-register p {
  margin: 2em 0;
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce p {
  font-size: 1em;
  line-height: 1.2;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-notice--success {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-notice--error {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received {
  font-family: "AbadiLight", sans-serif;
  font-size: calc(22em/25);
  display: inline-block;
  padding-bottom: 45px;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p {
  float: right;
  width: fit-content;
  padding-top: 0;
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p a {
  position: relative;
  color: #DEC58F;
  font-family: "AbadiBold", sans-serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p a:before {
  position: absolute;
  left: -25px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p a:hover {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p a:hover:before {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce ul.order_details {
  margin: 0;
  list-style: none;
  background: #DEC58F;
  padding: 30px;
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview {
  background-color: rgba(255, 255, 255, 0.7);
  padding: calc(35em/25) calc(30em/25);
}
html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview li {
  color: #DEC58F;
  display: block;
  width: 100%;
  font-size: 1em;
  padding-right: 0;
  border: none;
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview li strong,
html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview li strong span {
  font-size: 1em;
  display: inline-block;
  font-family: "AbadiBold", sans-serif;
  float: right;
}
html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview li + li {
  margin-top: 1em;
}
html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview + p, html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview + p + p {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details {
  padding-top: 45px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-order-details__title {
  font-family: "AbadiBold", sans-serif !important;
  font-size: calc(35em /25);
  padding-bottom: 0;
  position: relative;
  text-align: left !important;
  color: #000000 !important;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .order-again {
  padding-bottom: 45px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .order-again a {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details {
  margin-top: 30px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details thead th {
  border-bottom: 2px solid #DEC58F !important;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details th,
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details td {
  text-align: left;
  background-color: transparent;
  font-size: calc(22em/25);
  color: #000000;
  font-weight: 100;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details th a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details td a {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details th[scope=row],
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details td[scope=row] {
  padding-left: calc(20em/25);
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td span {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details thead th.woocommerce-table__product-name {
  width: 70%;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name {
  padding-left: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name a {
  padding-bottom: 0.25em;
  font-size: 1em;
  text-decoration: none;
  line-height: 1;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name a:hover {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name .quantity {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta {
  padding-left: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta p, html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta strong {
  float: left;
  font-size: calc(23rem/25);
  font-style: normal;
  line-height: 1;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta p p, html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta strong p {
  line-height: 1;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta a {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta a:hover {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta p, html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta strong {
  padding-top: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta strong {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody .product-name ul.wc-item-meta p {
  color: #000000;
  padding-left: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tfoot td, html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tfoot small {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .pickup-location-field.pickup-location-cart-item-field small {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .pickup-location-address,
html body #main-wrapper main#main-content .woocommerce .pickup-location-schedule {
  font-size: 1em;
  font-weight: 700;
  color: #D44D28;
}
html body #main-wrapper main#main-content .woocommerce .pickup-location-schedule * {
  font-weight: 700;
}
html body #main-wrapper main#main-content .woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
  white-space: normal;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart-form {
  padding: 40px 0;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details h2 {
  font-family: "AbadiBold", sans-serif;
  font-size: calc(35em/25);
  padding-bottom: 1em;
  position: relative;
  text-align: left !important;
  color: #000000 !important;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details address {
  font-size: calc(23em/25);
  line-height: 1.4;
  color: #000000;
  border: 2px solid #DEC58F;
  border-radius: 0;
  padding: 30px;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone,
html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 1em;
  margin-bottom: 0;
  padding: 0;
  font-size: 1em !important;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:before {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .btn {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount a {
  font-family: "AbadiBold", sans-serif;
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount a.woocommerce-Button--next {
  float: right;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount a.woocommerce-Button--previous {
  float: left;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details tbody .woocommerce-table__line-item:last-child span {
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details {
  margin-top: 30px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address address,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details address {
  margin: 30px 0;
  font-size: calc(23em/25);
  line-height: 1.4;
  color: #000000;
  border: 2px solid #DEC58F;
  border-radius: 0;
  padding: 30px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address .woocommerce-customer-details--phone,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address .woocommerce-customer-details--email,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details .woocommerce-customer-details--phone,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 1em;
  margin-bottom: 0;
  padding: 0;
  font-size: 1em !important;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address .woocommerce-customer-details--phone:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address .woocommerce-customer-details--email:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details .woocommerce-customer-details--phone:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details .woocommerce-customer-details--email:before {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address .woocommerce-customer-details--email,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 0;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-Address {
  margin-top: 45px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details address {
  border: 2px solid #DEC58F;
  border-radius: 0;
  padding: 30px;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation {
  border: 2px solid #DEC58F;
  margin-top: calc(45em/25);
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li {
  margin: 0;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li:first-child {
  border-left: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
  background: #D44D28;
  color: #ffffff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #bf4524;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li + li {
  margin-left: 1px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button {
  cursor: pointer;
  background-color: #DEC58F;
  color: #DEC58F;
  position: relative;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button .arrow {
  border: none;
  width: inherit;
  height: inherit;
  display: block;
  position: absolute;
  color: #ffffff;
  left: 50%;
  top: 50%;
  -o-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button .arrow:before {
  content: "b";
  font-family: "delli" !important;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button[aria-expanded=true] .arrow {
  -o-transform: translate(-50%, -50%) rotate(180deg);
  -moz-transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li a {
  font-size: calc(25rem/25);
  background: #DEC58F;
  border-bottom: none !important;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li a:hover {
  color: #000000;
  border-bottom: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.is-active {
  border: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.is-active a {
  background: transparent;
  color: #DEC58F;
  box-shadow: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content {
  padding: 45px 30px;
  border: 2px solid #DEC58F;
  border-top: none;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab legend {
  font-size: calc(25em/25);
  font-family: "AbadiBold", sans-serif;
  text-transform: uppercase;
  color: #000000;
  padding-left: 1em;
  -o-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p {
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p a:not(.btn) {
  color: #DEC58F;
  font-family: "AbadiLight", sans-serif;
  font-weight: 100;
  font-size: 1em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p a:not(.btn):hover {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p a + p a {
  color: #DEC58F;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab .wc-item-meta p {
  float: left;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab .wc-item-meta li {
  padding-top: 0.25em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content h2 {
  font-family: "AbadiBold", sans-serif;
  font-size: calc(35em /25);
  color: #000000;
  text-transform: uppercase;
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content mark {
  color: #DEC58F;
  background-color: transparent;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .shop_table.shop_table_left {
  border-left: 2px solid #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .icon-download {
  margin-top: 1em;
  font-family: "AbadiBold", sans-serif !important;
  position: relative;
  color: #DEC58F;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .icon-download:before {
  position: absolute;
  left: 0;
  top: 0.2em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .icon-download:hover {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p {
  line-height: 1.4;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p a .icon-download {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p + p {
  line-height: 1.4;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm .form-row {
  padding: 3px 0;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm .form-row.form-row-first {
  padding-right: 5px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm .form-row.form-row-last {
  padding-left: 5px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm p {
  font-size: 1em !important;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm .__bloc_submit {
  text-align: center;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm fieldset {
  padding: 15px 30px;
  border: 2px solid #DEC58F;
  margin: 30px 0;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
  margin-bottom: 2em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-address-fields .woocommerce-address-fields__field-wrapper + p {
  text-align: center;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-address-fields p {
  font-size: 1em !important;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table th, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders th {
  padding: 15px 30px;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table th.woocommerce-orders-table__header-order-number, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders th.woocommerce-orders-table__header-order-number {
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td {
  padding: 1em 12px 0.75rem;
  color: #000000;
  text-align: center;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-number,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-number, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-number,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-number {
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-number a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-number a, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-number a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-number a {
  text-decoration: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.order-actions a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-actions a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.order-actions a, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.order-actions a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-actions a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.order-actions a {
  display: block;
  position: relative;
  text-decoration: none;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a.woocommerce-button, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.order-actions a.woocommerce-button,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-actions a.woocommerce-button,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.order-actions a.woocommerce-button, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a.woocommerce-button, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.order-actions a.woocommerce-button,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-actions a.woocommerce-button,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.order-actions a.woocommerce-button {
  color: #D44D28;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a.woocommerce-button:focus, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.order-actions a.woocommerce-button:focus,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-actions a.woocommerce-button:focus,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.order-actions a.woocommerce-button:focus, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a.woocommerce-button:focus, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.order-actions a.woocommerce-button:focus,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-actions a.woocommerce-button:focus,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.order-actions a.woocommerce-button:focus {
  border: none;
  -o-box-shadow: 0 0 0 0 transparent;
  -moz-box-shadow: 0 0 0 0 transparent;
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.order-actions a:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-actions a:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.order-actions a:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.order-actions a:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-actions a:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.order-actions a:before {
  position: absolute;
  left: 0;
  font-size: calc(18em /25);
  color: #D44D28;
  top: 50%;
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a:hover, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.order-actions a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-actions a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.order-actions a:hover, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a:hover, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.order-actions a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-actions a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.order-actions a:hover {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a:hover:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row td.order-actions a:hover:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.woocommerce-orders-table__cell-order-actions a:hover:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order td.order-actions a:hover:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-actions a:hover:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row td.order-actions a:hover:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.woocommerce-orders-table__cell-order-actions a:hover:before,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order td.order-actions a:hover:before {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders {
  margin-bottom: 0;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead th a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead td a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody th a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody td a {
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead th.woocommerce-orders-table__cell-order-number a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead td.woocommerce-orders-table__cell-order-number a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody th.woocommerce-orders-table__cell-order-number a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody td.woocommerce-orders-table__cell-order-number a {
  font-family: "AbadiBold", sans-serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead th.woocommerce-orders-table__cell-order-number a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead td.woocommerce-orders-table__cell-order-number a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody th.woocommerce-orders-table__cell-order-number a:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody td.woocommerce-orders-table__cell-order-number a:hover {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead tr th,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody tr th {
  font-size: 1em;
  padding: 9px 12px;
  text-align: center;
  line-height: 1;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead tr th span,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody tr th span {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead a.woocommerce-button,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button {
  background-color: transparent;
  color: #DEC58F !important;
  font-family: "AbadiBold", sans-serif;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead a.woocommerce-button + a,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button + a {
  margin-top: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead a.woocommerce-button:hover,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button:hover {
  color: #000000 !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .cart-empty {
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce .return-to-shop {
  margin-top: calc(32em /25);
}
html body #main-wrapper main#main-content .woocommerce .return-to-shop a.btn {
  border-radius: 0;
  text-transform: uppercase;
}
html body #main-wrapper main#main-content .woocommerce .quantity {
  max-width: calc(85em/25);
  margin: 0 auto;
  position: relative;
  border: 1px solid #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .quantity .qty {
  display: inherit;
  margin: 0 auto;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-right: 1em;
  color: #DEC58F;
  border: none;
  background-color: transparent;
  text-align: right;
}
html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn {
  position: absolute;
  right: 10px;
  font-size: 0.8em;
  color: #DEC58F;
  z-index: 1;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn:hover:before {
  color: #000000 !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn:before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn.qty_up {
  top: 9px;
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn.qty_down {
  bottom: 9px;
  -o-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
}
html body #main-wrapper main#main-content .woocommerce .quantity input {
  position: relative;
  max-width: calc(75em/25);
  text-align: center;
  line-height: 1.5;
  padding: 10px;
  border: 1px solid #D44D28;
  color: #D44D28;
  font-size: calc(22em /25);
}
html body #main-wrapper main#main-content .woocommerce .quantity input::-webkit-inner-spin-button, html body #main-wrapper main#main-content .woocommerce .quantity input::-webkit-outer-spin-button {
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: inner-spin-button !important;
  width: 25px;
  position: absolute;
  top: 0;
  right: -2px;
  height: 100%;
}
html body #main-wrapper main#main-content .woocommerce .quantity input[type=number] {
  -moz-appearance: textfield;
  margin: 0;
}
html body #main-wrapper main#main-content .woocommerce .cart_highlighted h1,
html body #main-wrapper main#main-content .woocommerce .cart_totals h1,
html body #main-wrapper main#main-content .woocommerce .checkout_highlighted h1,
html body #main-wrapper main#main-content .woocommerce .cross-sells h1,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount h1 {
  color: #DEC58F;
  font-size: calc(45em / 18);
  line-height: calc(45/45);
  padding: 0.25em 0;
  padding-top: 0;
  text-transform: inherit;
}
html body #main-wrapper main#main-content .woocommerce .cart_highlighted h2,
html body #main-wrapper main#main-content .woocommerce .cart_totals h2,
html body #main-wrapper main#main-content .woocommerce .checkout_highlighted h2,
html body #main-wrapper main#main-content .woocommerce .cross-sells h2,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount h2 {
  font-family: "AbadiBold", sans-serif;
  font-size: calc(35em /25);
  padding-bottom: 0;
  text-transform: uppercase;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody td a {
  color: #000000;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody td a:hover {
  color: #DEC58F;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-NoticeGroup {
  display: inline-block;
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-NoticeGroup .woocommerce-error {
  border-top-color: #D44D28;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-NoticeGroup .woocommerce-error::before {
  color: #D44D28;
}
html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom {
  position: relative;
  display: block !important;
}
html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom input:checked:before {
  background-color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom input:checked:after {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom input:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 4px;
  height: 1.1rem;
  width: 1.1rem;
  -o-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom input:hover:before {
  background-color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-form-login .input_checkbox_custom {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1;
}
html body #main-wrapper main#main-content .woocommerce .woocommerce-privacy-policy-text,
html body #main-wrapper main#main-content .woocommerce .register_infos {
  font-size: 0.9em;
}
html body #main-wrapper main#main-content .woocommerce .register_infos {
  margin-top: 1em;
}
html body #main-wrapper main#main-content .woocommerce .register_infos a {
  color: #DEC58F;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .register_infos a:hover {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce .anr_captcha_field {
  margin: 1em 0 0.5em;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register #billing_country_field span.select2-container--default .selection span {
  min-height: 48px;
}
html body #main-wrapper main#main-content .woocommerce form fieldset {
  display: inline-block;
  width: 100%;
  padding: 60px 0;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-login, html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register {
  border: none;
  padding: 0;
  margin: 1em 0;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-login #billing_country_field, html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register #billing_country_field {
  order: inherit;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-login .woocommerce-privacy-policy-text, html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register .woocommerce-privacy-policy-text {
  padding: 15px 5px;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-login .lost_password a, html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register .lost_password a {
  font-size: calc(22em/25);
  padding: 0;
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-login .__bloc_validate, html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register .__bloc_validate {
  text-align: center;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-login .__bloc_validate .woocommerce-form-login__rememberme, html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register .__bloc_validate .woocommerce-form-login__rememberme {
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce form .input-checkbox {
  margin: 0 5px;
}
html body #main-wrapper main#main-content .woocommerce form.woocommerce-checkout {
  margin: 0;
  padding: 0;
}
html body #main-wrapper main#main-content .woocommerce form .required {
  color: #D44D28;
}
html body #main-wrapper main#main-content .woocommerce form .input-text {
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce form .input-text#coupon_code {
  width: 35%;
  padding: 0.5em 1em 0.25em;
  line-height: 1.2;
  margin-right: 1em;
}
html body #main-wrapper main#main-content .woocommerce form .form-row {
  display: inline-block;
  width: 50%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row label {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce form .form-row.form-row-first {
  min-width: 49%;
  max-width: 49%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row.form-row-last {
  min-width: 49%;
  max-width: 49%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row.form-row-wide, html body #main-wrapper main#main-content .woocommerce form .form-row.notes, html body #main-wrapper main#main-content .woocommerce form .form-row.place-order {
  float: left;
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row#billing_postcode_field, html body #main-wrapper main#main-content .woocommerce form .form-row#billing_company_field, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_postcode_field, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_company_field {
  clear: none;
  width: 49%;
  min-width: 49%;
  max-width: 49%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row#billing_city_field, html body #main-wrapper main#main-content .woocommerce form .form-row#billing_country_field, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_city_field, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_country_field {
  clear: none;
  width: 49%;
  min-width: 49%;
  max-width: 49%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row#billing_country_field, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_country_field {
  margin-left: auto;
}
html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_email_field, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_phone_field {
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce form .form-row .woocommerce-input-wrapper input,
html body #main-wrapper main#main-content .woocommerce form .form-row .woocommerce-input-wrapper .select2-selection--single {
  min-height: 48px;
}
html body #main-wrapper main#main-content .woocommerce form .form-row .woocommerce-input-wrapper .select2-selection__rendered {
  line-height: 2.6;
  text-transform: uppercase;
  font-size: calc(22em/25);
  min-height: 48px;
  padding-top: 3px;
}
html body #main-wrapper main#main-content .woocommerce form .form-row .woocommerce-input-wrapper > strong {
  display: inline-block;
  font-family: "AbadiLight", sans-serif;
  font-size: calc(22em /25);
  color: #000000;
  width: 100%;
  padding: calc(15em/25) calc(20em/25);
  border: 1px solid #DEC58F;
  background: #DEC58F;
  border-radius: 2px;
}
html body #main-wrapper main#main-content .woocommerce form .form-row#billing_country_field .woocommerce-input-wrapper > strong, html body #main-wrapper main#main-content .woocommerce form .form-row#shipping_country_field .woocommerce-input-wrapper > strong {
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.15;
}
html body #main-wrapper main#main-content .woocommerce form .form-row textarea {
  min-height: 8em;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part {
  padding: 0 15px 0 0;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part {
  padding: 0 0 0 15px;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .checkout-form-subpart {
  padding: 0;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
  padding: 1em 0;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields {
  padding: calc(10em/25) 0 calc(25em/25) 0;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 {
  padding-left: 0;
  padding-bottom: 0;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 label {
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 span {
  text-transform: initial;
  font-family: "AbadiBold", sans-serif;
  font-size: calc(28rem/25);
}
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields .shipping_address {
  margin-top: 1em;
}
html body #main-wrapper main#main-content .woocommerce form .woocommerce-checkout-review-order {
  padding: calc(25em/25) 0;
  padding-right: 0;
}
html body #main-wrapper main#main-content .woocommerce form .woocommerce-checkout-review-order .form-row {
  float: none;
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce form .woocommerce-checkout-review-order .form-row label {
  display: inline-block;
  line-height: 1.2;
}
html body #main-wrapper main#main-content .woocommerce form .woocommerce-checkout-review-order .pickup-location-address {
  font-size: 0.9em;
  font-weight: 700;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table {
  border: none;
  border-spacing: 0 4px;
  margin-bottom: 2.5em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .woocommerce-Price-amount {
  font-family: "AbadiLight", sans-serif;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-family: "AbadiLight", sans-serif;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .includes_tax .woocommerce-Price-amount {
  font-family: "AbadiLight", sans-serif;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .includes_tax .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-family: "AbadiLight", sans-serif;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .select2-selection__rendered {
  max-width: 88%;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .pickup-location-field {
  max-width: 100%;
  font-family: "AbadiLight", sans-serif;
  font-weight: 400;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .pickup-location-field.pickup-location-cart-item-field {
  color: #D44D28;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table .pickup-location-field.pickup-location-cart-item-field .wc-lpp-help-tip {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tr td {
  font-size: calc(22em/25);
  border: none;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tr td.table_spacing {
  padding: 1em;
  background-color: transparent;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tr td .amount {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tr.order-total .amount {
  font-family: "AbadiBold", sans-serif;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tr.order-total .amount .woocommerce-Price-currencySymbol {
  font-family: "AbadiBold", sans-serif;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table thead tr th {
  text-transform: uppercase;
  font-family: "AbadiBold", sans-serif;
  font-size: calc(25em/25);
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tbody th {
  text-transform: uppercase;
  font-family: "AbadiBold", sans-serif;
  font-size: calc(22em/25);
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tbody tr td {
  text-align: right;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tbody tr.shipping .woocommerce-shipping-calculator a {
  color: #DEC58F;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table tbody tr.shipping .woocommerce-shipping-calculator a:hover {
  color: #DEC58F;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders thead tr th {
  text-transform: uppercase;
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th.product-name, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders thead tr th.product-name {
  padding-left: 0;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td:first-of-type, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item td:first-of-type {
  padding-left: 1rem;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td:last-of-type, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item td:last-of-type {
  padding-right: 0;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item .quantity {
  position: relative;
  border: none;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn {
  min-width: 10px;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn:before, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn:before {
  position: absolute;
  color: #DEC58F;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_up, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_up {
  top: 10px;
  right: -16px;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_down, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_down {
  bottom: 10px;
  right: -5px;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.actions, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.actions {
  background-color: transparent !important;
  padding: 1em 0 !important;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.actions .coupon, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.actions .coupon {
  display: flex;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.actions .coupon #coupon_code, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.actions .coupon #coupon_code {
  font-size: inherit;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.actions .coupon input, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.actions .coupon input {
  border: 1px solid #DEC58F;
  width: auto;
  font-size: 1em;
  padding: 1em;
  text-transform: uppercase;
  line-height: 1.1;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.product-remove a, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.product-remove a {
  position: relative;
  margin-left: auto;
  font-size: 1em;
  background-color: transparent;
  color: transparent !important;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.product-remove a:before, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.product-remove a:before {
  color: #DEC58F;
  font-size: calc(35em /25);
  position: absolute;
  right: 0;
  top: -0.15em;
  opacity: 1;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.product-remove a:hover::before, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.product-remove a:hover::before {
  color: #000000;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.product-quantity input, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.product-quantity input {
  font-family: "AbadiLight", sans-serif;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table thead tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders thead tr th {
  border-bottom: 2px solid #DEC58F;
  color: #DEC58F;
  font-size: 1em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th.product-name, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table thead tr th.product-name, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders thead tr th.product-name {
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th.product-total, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table thead tr th.product-total, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders thead tr th.product-total {
  text-align: right;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th.product-remove, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table thead tr th.product-remove, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders thead tr th.product-remove {
  border: none;
  padding: 0;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td {
  text-align: center;
  background: transparent;
  padding: 2em 0 1.75rem;
  font-size: calc(22em / 25);
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-thumbnail, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-thumbnail, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-thumbnail {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-name {
  font-family: "AbadiLight", sans-serif;
  color: #000000;
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name > a, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name > a, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-name > a {
  font-family: "AbadiBold", sans-serif;
  color: #000000;
  position: relative;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name > a:hover, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name > a:hover, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-name > a:hover {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .product-quantity, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product-quantity, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-name .product-quantity {
  float: right;
  font-weight: 100;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td .product-disponibility, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td .product-disponibility, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td .product-disponibility {
  font-size: calc(22em / 25);
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tfoot tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tfoot tr th {
  font-family: "AbadiBold", sans-serif;
  color: #000000;
  border: none;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tfoot tr.recurring-totals th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.recurring-totals th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tfoot tr.recurring-totals th {
  text-transform: uppercase;
  color: #D44D28;
  padding-top: 45px;
  border-bottom: 2px solid #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tfoot tr.shipping .amount, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping .amount, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tfoot tr.shipping .amount {
  font-weight: inherit;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tfoot tr.shipping .woocommerce-shipping-methods li, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping .woocommerce-shipping-methods li, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tfoot tr.shipping .woocommerce-shipping-methods li {
  margin-bottom: 0;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tfoot tr.shipping .woocommerce-shipping-methods li + li, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping .woocommerce-shipping-methods li + li, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tfoot tr.shipping .woocommerce-shipping-methods li + li {
  margin-top: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tfoot tr.order-total > th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total > th, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tfoot tr.order-total > th {
  border-left: 2px solid #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders .btn {
  background-color: #DEC58F;
  border-color: #DEC58F;
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .btn:hover, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .btn:hover, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders .btn:hover {
  color: #DEC58F;
  background-color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th {
  text-align: center;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents thead tr th.product-thumbnail {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-name a {
  padding-bottom: 0.25em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-name dl.variation {
  padding-left: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-name dl.variation dt, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-name dl.variation dd {
  float: left;
  font-size: calc(13em/14);
  font-style: italic;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-name dl.variation dd {
  padding-top: 0.25em;
  padding-left: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item td {
  border-top: 1px solid #000000;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item td.product-remove {
  border-top: none;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
  padding: 0.5em 0 0.25em;
  font-size: calc(23em/25);
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td td {
  background-color: transparent;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product-quantity {
  float: inherit;
  font-family: "AbadiLight", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-total {
  font-size: calc(23em/25);
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr th {
  text-transform: uppercase;
  padding-left: 1em;
  color: #DEC58F;
  font-size: calc(22em/25);
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr td {
  max-width: 60%;
  width: 60%;
  font-weight: 100;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name a {
  padding-bottom: 0.25em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name dl.variation {
  padding-left: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name dl.variation dt, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name dl.variation dd {
  float: left;
  font-size: calc(20em/25);
  font-style: italic;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name dl.variation dd {
  padding-top: 0.25em;
  padding-left: 0.5em;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total, html body #main-wrapper main#main-content .woocommerce table.shop_table.subscription_details, html body #main-wrapper main#main-content .woocommerce table.shop_table.order_details {
  padding: 0;
  border-radius: 0;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.subscription_details tr th, html body #main-wrapper main#main-content .woocommerce table.shop_table.order_details tr th {
  font-family: "AbadiBold", sans-serif;
  color: #DEC58F;
  border: none;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tr.recurring-totals th, html body #main-wrapper main#main-content .woocommerce table.shop_table.subscription_details tr.recurring-totals th, html body #main-wrapper main#main-content .woocommerce table.shop_table.order_details tr.recurring-totals th {
  text-transform: uppercase;
  color: #D44D28;
  padding-top: 45px;
  border-bottom: 2px solid #D44D28;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tr.order-total > td strong span, html body #main-wrapper main#main-content .woocommerce table.shop_table.subscription_details tr.order-total > td strong span, html body #main-wrapper main#main-content .woocommerce table.shop_table.order_details tr.order-total > td strong span {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tr.order-total > td strong span .woocommerce-Price-currencySymbol, html body #main-wrapper main#main-content .woocommerce table.shop_table.subscription_details tr.order-total > td strong span .woocommerce-Price-currencySymbol, html body #main-wrapper main#main-content .woocommerce table.shop_table.order_details tr.order-total > td strong span .woocommerce-Price-currencySymbol {
  font-family: "AbadiBold", sans-serif;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total {
  border: none;
  border-left: 2px solid #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tr th {
  text-transform: uppercase;
  padding-left: 1.5em;
}
html body #main-wrapper main#main-content .woocommerce table.woocommerce-table--order-details thead tr th {
  line-height: 1;
  border-bottom: 2px solid #DEC58F;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce table.woocommerce-table--order-details tbody tr td a {
  font-family: "AbadiLight", sans-serif;
  text-decoration: underline;
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce table.woocommerce-table--order-details tbody tr td a:hover {
  color: #DEC58F;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce table.woocommerce-table--order-details tbody tr td strong {
  font-weight: 100;
  padding-left: 1em;
}
html body #main-wrapper main#main-content .woocommerce #order_review.__bloc_pay_order .product-subtotal {
  text-align: right;
  color: #000000;
  font-size: calc(14em/25);
}
html body #main-wrapper main#main-content .woocommerce #order_review.__bloc_pay_order td.product-quantity {
  text-align: left;
  color: #000000;
  font-size: calc(14em/25);
}
html body #main-wrapper main#main-content .woocommerce #order_review.__bloc_pay_order td.product-quantity strong {
  font-weight: inherit;
}
html body #main-wrapper main#main-content .woocommerce #order_review.__bloc_pay_order .cart-subtotal {
  text-align: right;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment {
  color: #000000;
  background: transparent;
  border-radius: 0;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment ul.payment_methods,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment ul.payment_methods,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment ul.payment_methods,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment ul.payment_methods {
  border-bottom: none;
  background-color: rgba(255, 255, 255, 0.7);
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .input-radio,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .input-radio,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .input-radio,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .input-radio {
  display: inline-block;
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  position: relative;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .input-radio:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .input-radio:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .input-radio:before,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .input-radio:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  left: -1px;
  height: 16px;
  width: 16px;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .input-radio:hover:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .input-radio:hover:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .input-radio:hover:before,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .input-radio:hover:before {
  background-color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .input-radio:checked:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .input-radio:checked:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .input-radio:checked:before,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .input-radio:checked:before {
  background-color: #DEC58F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .input-radio:checked:after,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .input-radio:checked:after,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .input-radio:checked:after,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .input-radio:checked:after {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method > label,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method > label,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method > label,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method > label {
  cursor: pointer;
  font-family: "AbadiLight", sans-serif;
  font-size: calc(22em/25);
  min-width: 80%;
  max-width: 80%;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method > label img,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method > label img,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method > label img,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method > label img {
  margin-left: 0.25em;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method > label img:first-of-type,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method > label img:first-of-type,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method > label img:first-of-type,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method > label img:first-of-type {
  margin-left: 1em;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .about_paypal,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .about_paypal,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .about_paypal,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .about_paypal {
  line-height: 24px;
  color: #DEC58F;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .wc_payment_method .about_paypal:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .wc_payment_method .about_paypal:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method .about_paypal:hover,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_method .about_paypal:hover {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box {
  background: #DEC58F;
  font-size: calc(20em/25);
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box:before,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box:before {
  border-bottom-color: #DEC58F !important;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box p,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box p,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box p,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box p {
  color: #ffffff;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box p a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box p a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box p a,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box p a {
  color: #000000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box p a:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box p a:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box p a:hover,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box p a:hover {
  color: #efefef;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box fieldset,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box fieldset,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box fieldset {
  padding: 0;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box fieldset .form-row,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box fieldset .form-row,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box fieldset .form-row {
  margin-bottom: 0;
  padding: 0.5em 0;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box fieldset .form-row.form-row-first,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box fieldset .form-row.form-row-first,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row.form-row-first,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box fieldset .form-row.form-row-first {
  max-width: 48%;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box fieldset .form-row.form-row-last,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box fieldset .form-row.form-row-last,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row.form-row-last,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box fieldset .form-row.form-row-last {
  max-width: 48%;
  float: right;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box fieldset .form-row label,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box fieldset .form-row label,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row label,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box fieldset .form-row label {
  color: #ffffff;
  font-size: 0.9em;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box fieldset .form-row label .required,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box fieldset .form-row label .required,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row label .required,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box fieldset .form-row label .required {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box ul.woocommerce_error,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box ul.woocommerce_error,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box ul.woocommerce_error,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box ul.woocommerce_error {
  margin-bottom: 0;
  margin-top: 1.5em;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box::before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box::before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box::before,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .payment_box::before {
  border-bottom-color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order {
  text-align: center;
  padding: 1.5em 0 0;
  margin: 0;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order p,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order p,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order p,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order p {
  font-size: calc(22em/25);
  margin-bottom: 1em;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order p a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order p a,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order p a,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order p a {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order p a .required,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order p a .required,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order p a .required,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order p a .required {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order p a:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order p a:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order p a:hover,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order p a:hover {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order .woocommerce-terms-and-conditions-checkbox-text,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order .woocommerce-terms-and-conditions-checkbox-text,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order .woocommerce-terms-and-conditions-checkbox-text,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order .woocommerce-terms-and-conditions-checkbox-text {
  font-size: calc(25em/25) !important;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .place-order .woocommerce-terms-and-conditions-checkbox-text + .required,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .place-order .woocommerce-terms-and-conditions-checkbox-text + .required,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order .woocommerce-terms-and-conditions-checkbox-text + .required,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .place-order .woocommerce-terms-and-conditions-checkbox-text + .required {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions {
  margin-bottom: 0;
  background: transparent;
  border-color: #DEC58F;
  max-height: 400px !important;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions h2,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions h2,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions h2,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions h2 {
  font-size: calc(22em /25);
  padding-bottom: 20px;
  line-height: 1.2;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions h2 + h3,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions h2 + h3,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions h2 + h3,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions h2 + h3 {
  padding-top: 0;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions h3,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions h3,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions h3,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions h3 {
  font-size: 1em;
  padding: 15px 0;
  line-height: 1.4;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions h3:after,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions h3:after,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions h3:after,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions h3:after {
  display: none;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions h3 + h2,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions h3 + h2,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions h3 + h2,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions h3 + h2 {
  padding-top: 20px;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions p + h2,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions p + h2,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions p + h2,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions p + h2 {
  padding-top: 20px;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions p + h3,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions p + h3,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions p + h3,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions p + h3 {
  padding-top: 20px;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions-wrapper,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions-wrapper,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions-wrapper {
  text-align: left;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  position: relative;
}
html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment button[type=submit],
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment button[type=submit],
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment button[type=submit],
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment button[type=submit] {
  display: inline-block;
  float: inherit;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 0.75em;
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row {
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .form-row {
  width: 100%;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  position: relative;
  padding: 1em 0;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input {
  margin: 0;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input:before {
  height: 1.2em;
  width: 1.2em;
  left: -4px;
  top: 22px;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input:after {
  top: 26px;
  left: 0;
  font-size: 0.8em;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text {
  font-size: calc(14em/16);
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper a {
  color: #DEC58F;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper a:hover {
  color: #000000;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row .woocommerce-terms-and-conditions-wrapper .required {
  color: #DEC58F;
  padding-left: 0;
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row button[type=submit] {
  width: 100%;
  background-color: #DEC58F;
  border-color: #DEC58F;
  color: #ffffff;
  font-size: calc(25em/25);
}
html body #main-wrapper main#main-content .woocommerce .__bloc_pay_order #payment .wc_payment_methods + .form-row button[type=submit]:hover {
  color: #DEC58F;
  background-color: #ffffff;
}
html body.tax-product_cat h1 {
  line-height: 1.2;
}
html body.tax-product_cat #main-wrapper #main-content #highlighted:not(.homepage) .container {
  top: 65%;
}

/* Extra small devices (phones, less than 767px) */
@media only screen and (max-width: 320px) {
  html body {
    font-size: 14px !important;
  }
}
/* Small devices (tablets, 321px and up) */
@media only screen and (min-width: 1px) and (max-width: 767px) {
  html body #main-wrapper #main-header nav .container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .row {
    flex-wrap: wrap;
  }
  html body #main-wrapper #main-header nav .container.navbar-header.navbar-desktop {
    display: none;
  }
  html body #main-wrapper #main-header nav .container.navbar-header.navbar-responsive {
    display: block;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-brand {
    margin-left: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-brand a img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-toggle {
    display: block;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-toggle:hover {
    opacity: 1;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu_responsive .navbar_responsive li a.menu-item-cart span {
    font-size: 0.8em;
    padding: 2px 4px;
    text-align: center;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 55px;
    max-width: 95%;
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
    transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
    align-items: flex-start;
    justify-content: center;
    -webkit-transition: height 0s ease-in-out 0.4s, opacity 0.3s ease-in-out, visibility 0s ease-in-out 0.5s;
    transition: height 0s ease-in-out 0.4s, opacity 0.3s ease-in-out, visibility 0s ease-in-out 0.5s;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav {
    min-height: calc(100vh - 150px);
    max-height: calc(100vh - 150px);
    overflow: scroll;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 30px 15px 30px 30px;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li {
    position: relative;
    flex-wrap: wrap;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials {
    display: list-item;
    margin-top: 2em;
    padding-top: 2em;
    border-top: 3px solid #000000;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials {
    flex-direction: row;
    display: flex;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials li {
    display: inline-block;
    margin-top: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials li a {
    font-size: 0.9em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials li + li {
    margin-top: 0;
    margin-left: 1em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li a {
    font-size: 1.3em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .icon-childs {
    color: #000000;
    margin-left: 1.5em;
    font-size: 0.8em;
    -o-transform: rotate(360deg) translateY(0);
    -moz-transform: rotate(360deg) translateY(0);
    -webkit-transform: rotate(360deg) translateY(0);
    transform: rotate(360deg) translateY(0);
    -webkit-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .icon-childs:before {
    font-size: 0.8em;
    content: "m";
    font-family: "vaudois" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .icon-childs.is-active {
    color: #DEC58F;
    -o-transform: rotate(180deg) translateY(5px);
    -moz-transform: rotate(180deg) translateY(5px);
    -webkit-transform: rotate(180deg) translateY(5px);
    transform: rotate(180deg) translateY(5px);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li + li {
    margin-top: 2em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li + li a {
    margin-left: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: relative;
    -o-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.25s ease, opacity 0s ease-in-out, visibility 0s ease-in-out 0.25s;
    transition: all 0.25s ease, opacity 0s ease-in-out, visibility 0s ease-in-out 0.25s;
    padding: 0;
    top: 0;
    min-width: 100%;
    height: 1px;
    background-color: #ffffff;
    color: #000000;
    z-index: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu.is-active {
    visibility: visible;
    padding: 2em 0 1em;
    opacity: 1;
    height: auto;
    -webkit-transition: all 0.25s ease-in-out, visibility 0s ease-in-out;
    transition: all 0.25s ease-in-out, visibility 0s ease-in-out;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu .row {
    justify-content: center;
    overflow: hidden;
    flex-wrap: wrap;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu .__bloc_grid {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu h4 {
    text-transform: uppercase;
    font-family: "AbadiLight", sans-serif;
    color: #000000;
    font-size: calc(25em / 25);
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu ul {
    padding-left: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu li {
    border-bottom: none !important;
    padding: 5px !important;
    align-items: flex-start;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu li + li {
    margin-top: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu li a {
    font-size: calc(20em / 25);
    font-family: "AbadiLight", sans-serif;
    color: #000000;
    text-transform: initial;
    margin-left: 0 !important;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu li a:hover {
    color: #DEC58F;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .sub-menu li span {
    font-family: "AbadiLight", sans-serif;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .line_socials .navbar-nav {
    min-height: inherit;
    max-height: inherit;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 3em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .line_socials .navbar-nav li a {
    font-family: "AbadiLight", sans-serif;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .line_socials .navbar-nav li + li {
    margin-top: 1em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu.show {
    visibility: visible;
    opacity: 1;
    min-height: calc(100vh - 55px);
    height: calc(100vh - 55px);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.2s, visibility 0s ease-in-out;
    transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.2s, visibility 0s ease-in-out;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar-top {
    display: none;
  }
  html body #main-wrapper main#main-content {
    margin-top: 55px;
  }
  html body #main-wrapper main#main-content .page-part-right .__bloc_title {
    text-align: left;
  }
  html body #main-wrapper main#main-content .swiper-container .swiper-pagination_classic.swiper-pagination-bullets {
    left: inherit;
    right: inherit;
    width: 95%;
    text-align: center;
  }
  html body #main-wrapper main#main-content .page-part_slider .swiper-pagination_classic .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  html body #main-wrapper main#main-content .page-part {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  html body #main-wrapper main#main-content .page-part + .page-part:not(.page-part-gamme) {
    padding-top: 0;
  }
  html body #main-wrapper main#main-content.home {
    margin-top: 0;
  }
  html body #main-wrapper main#main-content.home .__bloc_title {
    padding-left: 30px;
  }
  html body #main-wrapper main#main-content.home .page-part_content .__bloc_title {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted {
    position: relative;
    padding-top: 6em;
    padding-bottom: 6em;
    overflow: hidden;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
    -o-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    max-width: inherit;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title {
    font-size: calc(40em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_content {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_link .btn {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .container-fluid,
html body #main-wrapper main#main-content.home .page-part-others .container-fluid,
html body #main-wrapper main#main-content.home .page-part-selection .container-fluid,
html body #main-wrapper main#main-content.home .page-part-offrir .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content {
    order: 2 !important;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 85%;
    padding: 1.5em;
    z-index: 10;
    text-align: center;
    background-color: #ffffff;
    -o-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content > *,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content > *,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content > *,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content > * {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .swiper-slide,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .swiper-slide,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .swiper-slide,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content .swiper-slide {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .swiper-slide .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .swiper-slide .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .swiper-slide .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content .swiper-slide .__bloc_title {
    text-align: center;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content .__bloc_title h3 {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-others .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_slider {
    order: 1;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
    background-color: transparent;
    -o-box-shadow: 0 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
    -o-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title {
    font-size: calc(40em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_content {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_link .btn {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-avantages {
    padding-top: 2em !important;
  }
  html body #main-wrapper main#main-content.home .page-part-avantages .__bloc_advantage p {
    max-width: 60%;
    margin: 0 auto;
  }
  html body #main-wrapper main#main-content.home .page-part-avantages .__bloc_advantage + .__bloc_advantage {
    margin-top: 2em;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    left: 0;
    top: 45%;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend h3 {
    font-size: calc(40em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend img {
    margin: 0 auto;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-pagination_classic {
    top: inherit;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-others .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-selection .__bloc_title {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-slide {
    text-align: center !important;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-slide .__bloc_title {
    text-align: center;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-dots {
    left: inherit;
    right: inherit;
    text-align: center;
    width: 95%;
    justify-content: center;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-dots li {
    display: inline-block;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-dots li button {
    width: 15px;
    height: 15px;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme {
    padding-bottom: 6rem;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic {
    display: block;
    width: 100%;
    bottom: -8%;
    right: 0;
    left: 0;
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic .swiper-pagination-bullet {
    background-color: #DEC58F;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #DEC58F;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend .logo {
    max-width: 40%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container {
    background-color: #ffffff;
    max-width: 100%;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container img {
    max-width: 100%;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container .__blog_legend {
    position: inherit;
    max-width: 100%;
    padding: 1.5em;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container .__blog_legend:after {
    display: none;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .page-part_slider + footer {
    margin-top: 3.5em;
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites {
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_title {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
    padding: 2em 1em;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend h4,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity h4 {
    max-width: 90%;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_img {
    max-height: 80px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_img img {
    max-height: 100px;
    width: auto;
    min-width: inherit;
    max-width: inherit;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider {
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-slide {
    position: relative;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-slide .__blog_legend {
    top: inherit;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    align-items: left;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-pagination_classic {
    top: 30px;
    bottom: inherit;
    right: inherit;
    left: inherit;
    text-align: right;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .__bloc_title {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content {
    padding: 2em;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content h3 {
    font-size: calc(45em / 25);
  }
  html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content {
    margin-top: -10px;
    background-color: #ffffff;
    padding: 3em 15px;
  }
  html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content h2 {
    padding-bottom: 0.5rem;
  }
  html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content form {
    padding-top: 2em;
  }
  html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content form p {
    text-align: center;
  }
  html body #main-wrapper main#main-content .page-part-revendeur .page-part_form .__bloc_content form .btn {
    margin: 0 auto;
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted {
    padding-bottom: 15px;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted .page-part_header {
    padding-bottom: 4em;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content {
    padding-top: 15px !important;
    padding-bottom: 15px;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content {
    -o-transform: translateY(-2em);
    -moz-transform: translateY(-2em);
    -webkit-transform: translateY(-2em);
    transform: translateY(-2em);
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content .__bloc_content {
    padding: 4em 15px;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_illustrations {
    order: 2;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form {
    order: 1;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form .btn {
    width: 100% !important;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .__bloc_content {
    padding: 2em !important;
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_header {
    margin-bottom: 2rem;
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_header h1 {
    font-size: calc(40em / 25);
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_form {
    padding: 1em;
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_form .wpcf7-form .col-12 + .col-12 {
    margin-top: 1em;
    padding-bottom: 3em;
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_form .wpcf7-form .col-12 + .col-12 .btn {
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .page-part-contact {
    margin-top: 2em;
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact h3 {
    font-size: calc(30em / 25);
    color: #DEC58F;
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact .__bloc_socials .social_link {
    font-size: calc(20em / 25);
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_socials,
html body #main-wrapper main#main-content .page-part_contact .__bloc_address {
    padding: 0 30px;
    margin: 2em 0;
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_socials {
    margin-top: 15px;
  }
  html body #main-wrapper #woocommerce .__bloc_title h1 {
    font-size: calc(40em/25);
  }
  html body #main-wrapper h1 {
    font-size: 1em;
  }
  html body #main-wrapper h2 {
    font-size: calc(40em/25);
    padding-bottom: 2rem;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_messages a {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
    margin-top: 0;
    padding: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce .checkout_highlighted h1 {
    font-size: calc(32em/25);
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part {
    padding-right: 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 {
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 input:before,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 input:before {
    top: 2px;
    left: 4px;
    height: 1.1rem;
    width: 1.1rem;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 span,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 span {
    font-size: calc(22em/25) !important;
    line-height: 1.6;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part {
    padding: 30px 0 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part .woocommerce-checkout-review-order {
    padding: calc(25em/25) 0;
  }
  html body #main-wrapper main#main-content .woocommerce table.woocommerce-checkout-review-order-table tfoot tr th {
    padding-left: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table_responsive tr td:before {
    color: #DEC58F;
    text-transform: uppercase;
    margin-top: 1em;
    font-family: "AbadiBold", sans-serif;
    content: attr(data-title);
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total {
    margin-bottom: 0;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item {
    position: relative;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item td {
    padding: 2px 0 0 12px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td:first-of-type, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item td:first-of-type {
    padding-left: 12px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item .quantity .qty {
    text-align: left;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn {
    right: inherit !important;
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_up, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_up {
    top: 25px;
    left: 84px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_down, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item .quantity .qty_btn.qty_down {
    bottom: 25px;
    left: 80px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item {
    margin-top: 1.5em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item + .woocommerce-cart-form__cart-item td {
    border-top: none;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item {
    border-left: 2px solid #DEC58F;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td {
    background-color: transparent;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td > *:not(.remove), html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td > *:not(.remove) {
    display: inline-block;
    text-align: left;
    width: 60%;
    max-width: 60%;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.7);
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td.product-remove {
    position: absolute;
    padding-right: 0;
    top: -8px;
    right: -8px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove a, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td.product-remove a {
    background-color: #DEC58F;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 2em;
    height: 1em;
    width: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove a:before, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td.product-remove a:before {
    font-size: calc(12em /25);
    color: #ffffff;
    right: 8px;
    top: 8px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal span, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td.product-subtotal span {
    font-family: "AbadiBold", sans-serif;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity:before, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.cart_item td.product-quantity:before {
    margin-top: 1.3em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr:not(.cart_item) td:not(.actions), html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td:not(.actions) {
    background-color: transparent;
    padding: 2px 0 0 12px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr:not(.cart_item) td:not(.actions) > *, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td:not(.actions) > * {
    display: inline-block;
    text-align: left;
    width: 60%;
    max-width: 60%;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.7);
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr:not(.cart_item) td:not(.actions) > *.woocommerce-shipping-destination, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td:not(.actions) > *.woocommerce-shipping-destination {
    padding: 0 1em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr:not(.cart_item) td:not(.actions) > *.woocommerce-shipping-calculator, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td:not(.actions) > *.woocommerce-shipping-calculator {
    margin-top: -1px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr:not(.cart_item) td:not(.actions) .select2-container--default .selection span, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td:not(.actions) .select2-container--default .selection span {
    max-width: 140px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr:not(.cart_item) td:not(.actions) .select2-container--default .select2-selection--single .select2-selection__arrow:after, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td:not(.actions) .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    top: -2px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr .actions, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr .actions {
    margin: 2em 0;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr .actions .coupon, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr .actions .coupon {
    display: inline-block !important;
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr .actions .coupon #coupon_code, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr .actions .coupon #coupon_code {
    max-width: 45% !important;
    width: 45% !important;
    min-height: 58px;
    margin-right: 0;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr .actions .coupon .btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr .actions .coupon .btn {
    font-size: 1em;
    line-height: 1.2;
    max-width: 50%;
    min-height: 58px;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr .actions .coupon + .btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr .actions .coupon + .btn {
    width: 100%;
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table .shipping-calculator-form #calc_shipping_postcode_field + p .btn {
    font-size: 1em;
    padding: 10px 0;
  }
  html body #main-wrapper main#main-content .woocommerce .wc-proceed-to-checkout .btn {
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method #payment_method_stripe {
    -o-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row.form-row-first, html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row.form-row-last {
    max-width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box ul.woocommerce_error {
    line-height: 1.4;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .place-order {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions {
    padding: 1em 0.75em;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    line-height: 1.6;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input::before {
    top: 2px;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order .woocommerce-thankyou-order-received {
    padding-bottom: 30px;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order .woocommerce-thankyou-order-received + p {
    float: left;
    margin-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order .woocommerce-thankyou-order-details {
    margin-top: 30px;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order .woocommerce-thankyou-order-details li strong {
    display: block;
    width: 100%;
    text-align: right;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details thead th.woocommerce-table__product-name {
    width: 60%;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody td {
    padding-left: 0 !important;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tbody td .product-quantity {
    padding-left: 0.25em;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tfoot th,
html body #main-wrapper main#main-content .woocommerce .woocommerce-order-details tfoot td {
    padding-left: 0 !important;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-customer-details .woocommerce-column + .woocommerce-column {
    margin-top: 2em;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button {
    border: none;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation .-secondary {
    top: calc(100% + 2px);
    right: -2px;
    padding: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation .-secondary li + li {
    margin-top: 1px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content {
    border: none;
    padding: 30px 15px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .weavers-tab p a {
    display: inline;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders {
    margin-bottom: 0;
    -o-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders tbody tr {
    display: inline-block;
    width: 100%;
    border-left: 2px solid #DEC58F;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-orders-table__row td {
    margin: 1px 0;
    clear: both;
    float: right;
    position: relative;
    display: inline-block;
    text-align: left !important;
    width: 60%;
    max-width: 60%;
    padding: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-orders-table__row td:before {
    position: absolute;
    left: -60%;
    top: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders tbody tr + tr {
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm .form-row {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm fieldset {
    padding-left: 15px;
    padding-right: 15px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount legend {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details thead th {
    width: 60%;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details tbody td {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details tbody td .product-quantity {
    padding-left: 0.25em;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details tfoot th,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details tfoot td {
    padding-left: 0 !important;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount a.woocommerce-Button--next, html body #main-wrapper main#main-content .woocommerce .woo_myaccount a.woocommerce-Button--previous {
    margin-top: 1em;
    font-size: calc(14em/25);
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-customer-details {
    padding-left: 15px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-column--billing-address,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-column--shipping-address {
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .my_account_h1 {
    font-size: calc(32em / 18);
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-form-login .btn {
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-login-inscription,
html body #main-wrapper main#main-content .woocommerce .woocommerce-login-register {
    margin-top: 2em;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-login-inscription .form-row,
html body #main-wrapper main#main-content .woocommerce .woocommerce-login-register .form-row {
    width: 100%;
    min-width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-login-inscription .woocommerce-privacy-policy-text + .form-row,
html body #main-wrapper main#main-content .woocommerce .woocommerce-login-register .woocommerce-privacy-policy-text + .form-row {
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-login-inscription .woocommerce-privacy-policy-text + .form-row .btn,
html body #main-wrapper main#main-content .woocommerce .woocommerce-login-register .woocommerce-privacy-policy-text + .form-row .btn {
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-ResetPassword .woocommerce-form-row {
    width: 100%;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register #billing_country_field span.select2-container--default .selection span {
    min-height: 48px;
    line-height: 2.4;
  }
  html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register #billing_country_field span.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    top: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .lost_reset_password {
    padding: 0 15px;
  }
  html body #main-wrapper main#main-content .woocommerce .lost_reset_password .btn {
    font-size: 1em;
  }
  html body #main-wrapper footer#main-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  html body #main-wrapper footer#main-footer .footer-column h3 {
    margin-top: 1em;
  }
  html body #main-wrapper footer#main-footer .footer-column .nav {
    align-items: center;
  }
  html body #main-wrapper footer#main-footer .footer-column .__bloc_address li + li {
    margin-top: 0.25em;
  }
  html body #main-wrapper footer#main-footer .footer-column .__bloc_address [class^=icon-] {
    padding-left: 1.5em;
  }
  html body #main-wrapper footer#main-footer .footer-column .__bloc_address [class^=icon-]:before {
    font-size: 1.1em;
  }
  html body #main-wrapper footer#main-footer .footer-column:not(.footer-socials) {
    margin-top: 1em;
  }
  html body #main-wrapper footer#main-footer .footer_brand {
    max-width: 80%;
  }
}
/* IPHONE 5 paysage */
/* IPHONE X paysage */
/* Medium devices (desktops, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  html body #main-wrapper #main-header nav .container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .row {
    flex-wrap: wrap;
  }
  html body #main-wrapper #main-header nav .container.navbar-header.navbar-desktop {
    display: none;
  }
  html body #main-wrapper #main-header nav .container.navbar-header.navbar-responsive {
    display: block;
    max-width: 100%;
    width: 100%;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu_responsive a.menu-item-my-account {
    right: 22% !important;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-brand {
    margin-left: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-brand a {
    width: 100%;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-brand a img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-toggle {
    display: block;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-toggle:hover {
    opacity: 1;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 55px;
    max-width: 95%;
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
    transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
    align-items: flex-start;
    justify-content: center;
    -webkit-transition: height 0s ease-in-out 0.4s, opacity 0.3s ease-in-out, visibility 0s ease-in-out 0.5s;
    transition: height 0s ease-in-out 0.4s, opacity 0.3s ease-in-out, visibility 0s ease-in-out 0.5s;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav {
    min-height: calc(100vh - 150px);
    max-height: calc(100vh - 150px);
    min-width: 50vw;
    overflow: scroll;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 30px 15px 30px 30px;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li {
    position: relative;
    flex-wrap: wrap;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials {
    display: list-item;
    margin-top: 2em;
    padding-top: 2em;
    border-top: 3px solid #000000;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials {
    flex-direction: row;
    display: flex;
    justify-content: flex-start;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials li {
    display: inline-block;
    margin-top: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials li a {
    font-size: 0.9em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li.line_socials .__bloc_socials li + li {
    margin-top: 0;
    margin-left: 1em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li a {
    font-size: 1.3em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .icon-childs {
    color: #000000;
    margin-left: 1.5em;
    font-size: 0.8em;
    -o-transform: rotate(360deg) translateY(0);
    -moz-transform: rotate(360deg) translateY(0);
    -webkit-transform: rotate(360deg) translateY(0);
    transform: rotate(360deg) translateY(0);
    -webkit-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .icon-childs:before {
    font-size: 0.8em;
    content: "m";
    font-family: "vaudois" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li .icon-childs.is-active {
    color: #DEC58F;
    -o-transform: rotate(180deg) translateY(5px);
    -moz-transform: rotate(180deg) translateY(5px);
    -webkit-transform: rotate(180deg) translateY(5px);
    transform: rotate(180deg) translateY(5px);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li + li {
    margin-top: 2em;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu .navbar-nav li + li a {
    margin-left: 0;
  }
  html body #main-wrapper #main-header nav .container.navbar-header .navbar-menu.show {
    visibility: visible;
    opacity: 1;
    min-height: calc(100vh - 55px);
    height: calc(100vh - 55px);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.2s, visibility 0s ease-in-out;
    transition: transform 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.2s, visibility 0s ease-in-out;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar-top {
    display: none;
  }
  html body #main-wrapper h2 {
    font-size: calc(50em/25);
    padding-bottom: 3rem;
  }
  html body #main-wrapper main#main-content {
    margin-top: 55px;
  }
  html body #main-wrapper main#main-content .page-part-right .__bloc_title {
    text-align: left;
  }
  html body #main-wrapper main#main-content .swiper-container .swiper-pagination_classic.swiper-pagination-bullets {
    left: inherit;
    right: inherit;
    width: 95%;
    text-align: center;
  }
  html body #main-wrapper main#main-content .page-part_slider .swiper-pagination_classic .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
  html body #main-wrapper main#main-content .page-part {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  html body #main-wrapper main#main-content.home .__bloc_title {
    padding-left: 30px;
  }
  html body #main-wrapper main#main-content.home .page-part_content .__bloc_title {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .container-fluid,
html body #main-wrapper main#main-content.home .page-part-others .container-fluid,
html body #main-wrapper main#main-content.home .page-part-selection .container-fluid,
html body #main-wrapper main#main-content.home .page-part-offrir .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content {
    order: 2 !important;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 85%;
    padding: 1.5em;
    z-index: 10;
    text-align: center;
    background-color: #ffffff;
    -o-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content > *,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content > *,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content > *,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content > * {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .swiper-slide,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .swiper-slide,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .swiper-slide,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content .swiper-slide {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .swiper-slide .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .swiper-slide .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .swiper-slide .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content .swiper-slide .__bloc_title {
    text-align: center;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-others .page-part_content .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .__bloc_title h3,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_content .__bloc_title h3 {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-others .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-selection .page-part_slider,
html body #main-wrapper main#main-content.home .page-part-offrir .page-part_slider {
    order: 1;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
    background-color: transparent;
    -o-box-shadow: 0 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
    -o-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_title {
    font-size: calc(40em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_content {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content .__bloc_link .btn {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-others .__bloc_title,
html body #main-wrapper main#main-content.home .page-part-selection .__bloc_title {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    left: 0;
    top: 45%;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend h3 {
    font-size: calc(40em/25);
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-slide .__blog_legend img {
    margin: 0 auto;
  }
  html body #main-wrapper main#main-content.home .page-part-instants.page-part-fullslider .page-part_slider .swiper-pagination_classic {
    top: inherit;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-slide {
    text-align: center !important;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-slide .__bloc_title {
    text-align: center;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-dots {
    left: inherit;
    right: inherit;
    text-align: center;
    width: 95%;
    justify-content: center;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-dots li {
    display: inline-block;
  }
  html body #main-wrapper main#main-content.home .page-part-others .slick-dots li button {
    width: 15px;
    height: 15px;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme {
    padding-bottom: 6rem;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic {
    display: block;
    width: 100%;
    bottom: -8%;
    right: 0;
    left: 0;
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic .swiper-pagination-bullet {
    background-color: #DEC58F;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-pagination_classic .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #DEC58F;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend .logo {
    min-width: 20%;
    max-width: 20%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .__blog_legend .logo img {
    min-width: 20%;
    max-width: 20%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container {
    background-color: #ffffff;
    max-width: 100%;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container img {
    max-width: 100%;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container .__blog_legend {
    position: inherit;
    max-width: 100%;
    padding: 1.5em;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .swiper-container .__blog_legend:after {
    display: none;
  }
  html body #main-wrapper main#main-content.home .page-part-gamme .page-part_slider + footer {
    margin-top: 3.5em;
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .page-part-selection .page-part_content .__bloc_title {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites {
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container {
    max-width: inherit;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .page-part_illustrations {
    padding-right: 0;
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .swiper-container {
    padding-right: 30px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_title {
    padding-left: 75px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend footer,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity footer {
    position: initial;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_img {
    max-height: 80px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_img img {
    max-height: 100px;
    width: auto;
    min-width: inherit;
    max-width: inherit;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider {
    padding-left: 0;
    padding-right: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-slide {
    position: relative;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-slide .__blog_legend {
    top: inherit;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    align-items: left;
  }
  html body #main-wrapper main#main-content.home .page-part-instants .page-part_slider .swiper-pagination_classic {
    top: 30px;
    bottom: inherit;
    right: inherit;
    left: inherit;
    text-align: right;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .__bloc_title {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content {
    padding: 2em;
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_content h3 {
    font-size: calc(45em / 25);
  }
  html body #main-wrapper main#main-content.home .page-part-domaine .page-part_illustration .__bloc_illustration {
    min-height: 350px;
    height: inherit;
  }
  html body #main-wrapper main#main-content .page-part-form {
    padding-top: calc(6em + 55px);
    padding-bottom: 6em;
  }
  html body #main-wrapper main#main-content .page-part-form {
    padding-top: calc(6em + 55px);
    padding-bottom: 6em;
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_header h1 {
    font-size: calc(55em / 25);
    line-height: calc(75em / 55);
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_form {
    padding: 2em 1em;
    padding: 1em;
  }
  html body #main-wrapper main#main-content .page-part-form .page-part_form .wpcf7-form .col-12 + .col-12 .btn {
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact h3 {
    font-size: calc(30em / 25);
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact .__bloc_socials .social_link {
    font-size: calc(20em / 25);
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-highlighted .page-part_illustration img {
    height: 100%;
    width: auto;
    max-width: inherit;
    min-width: inherit;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content {
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-content .page-part_content .__bloc_content {
    padding: 4em 15px;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_illustrations {
    order: 2;
  }
  html body #main-wrapper main#main-content.tpl-ambassadeur .page-part-form .page-part_form {
    order: 1;
  }
  html body #main-wrapper main#main-content #woocommerce .__bloc_title h1 {
    font-size: calc(55em/25);
  }
  html body #main-wrapper main#main-content h1 {
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .page-part-woocommerce {
    padding-top: calc(6em + 65px);
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part {
    padding-right: 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 {
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 input:before,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 input:before {
    top: 2px;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 span,
html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 span {
    font-size: calc(26rem/25) !important;
    line-height: 1.6;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part {
    padding: 0 0 0 30px;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part .woocommerce-checkout-review-order {
    padding: calc(25em/25) 0;
  }
  html body #main-wrapper main#main-content .woocommerce form.woocommerce-cart-form {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .cart-collaterals .calculated_shipping tbody th {
    padding-left: 1em !important;
  }
  html body #main-wrapper main#main-content .woocommerce table.woocommerce-checkout-review-order-table tfoot tr th {
    padding-left: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .btn {
    margin-top: 1.5em;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents div.coupon .btn {
    margin-top: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method #payment_method_stripe {
    -o-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row.form-row-first, html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box fieldset .form-row.form-row-last {
    max-width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box ul.woocommerce_error {
    line-height: 1.4;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    line-height: 1.6;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input::before {
    top: 2px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content {
    padding: 30px 20px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content h2 {
    font-size: calc(30em/25);
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders .order td {
    line-height: 1.2;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details thead th.woocommerce-table__product-name {
    width: 60%;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button {
    border: none;
  }
  html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register #billing_country_field span.select2-container--default .selection span {
    min-height: 48px;
    line-height: 2.4;
  }
  html body #main-wrapper main#main-content .woocommerce form.woocommerce-form-register #billing_country_field span.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    top: 2px;
  }
  html body #main-wrapper main#main-content .woocommerce .lost_reset_password {
    padding: 0 15px;
  }
  html body #main-wrapper footer#main-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  html body #main-wrapper footer#main-footer .footer-column {
    margin: 0 auto;
  }
  html body #main-wrapper footer#main-footer .footer-column h3 {
    margin-top: 1em;
  }
  html body #main-wrapper footer#main-footer .footer-column .nav {
    align-items: center;
  }
  html body #main-wrapper footer#main-footer .footer-column .__bloc_address li + li {
    margin-top: 0.25em;
  }
  html body #main-wrapper footer#main-footer .footer-column .__bloc_address [class^=icon-] {
    padding-left: 1.5em;
  }
  html body #main-wrapper footer#main-footer .footer-column .__bloc_address [class^=icon-]:before {
    font-size: 1.1em;
  }
  html body #main-wrapper footer#main-footer .footer-column:not(.footer-socials) {
    margin-top: 1em;
  }
  html body #main-wrapper footer#main-footer .footer_brand {
    max-width: 80%;
  }
}
/* IPAD Paysage  */
@media only screen and (min-width: 992px) and (max-width: 1100px) and (max-height: 992px) and (orientation: landscape) {
  html body #main-wrapper main#main-content.home .page-part-highlighted {
    padding-top: 125px;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
    margin-top: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container {
    max-width: inherit;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .page-part_illustrations {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .swiper-container {
    padding-right: 30px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_title {
    padding-right: 75px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact h3 {
    font-size: calc(35em / 25);
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact .__bloc_socials .social_link {
    font-size: calc(20em / 25);
  }
  html body #main-wrapper footer#main-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  html body #main-wrapper footer#main-footer .footer-socials {
    padding-left: 0;
    padding-right: 30px;
  }
  html body #main-wrapper footer#main-footer .footer-socials .__bloc_socials {
    justify-content: space-between;
  }
  html body #main-wrapper footer#main-footer .footer-socials .__bloc_socials .social_link:before {
    font-size: 1.6em;
  }
}
/* IPAD Pro Portrait  */
@media only screen and (min-width: 1000px) and (max-width: 1100px) and (max-height: 1400px) {
  html body #main-wrapper main#main-content.home .page-part-highlighted {
    padding-top: 125px;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
    margin-top: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .container {
    max-width: inherit;
    width: 100%;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .page-part_illustrations {
    padding-left: 45px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .swiper-container {
    padding-right: 30px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_title {
    padding-right: 75px;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  html body #main-wrapper main#main-content .page-part_form .wpcf7-form .col-12 + .col-12 .btn {
    font-size: 1.1em;
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact h3 {
    font-size: calc(35em / 25);
  }
  html body #main-wrapper main#main-content .page-part_contact .__bloc_contact .__bloc_socials .social_link {
    font-size: calc(20em / 25);
  }
}
/* IPAD Pro Paysage */
@media only screen and (min-width: 1350px) and (max-width: 1370px) and (min-height: 950px) and (max-height: 1050px) and (orientation: landscape) {
  html body #main-wrapper main#main-content.home .page-part-highlighted {
    padding-top: 125px;
  }
  html body #main-wrapper main#main-content.home .page-part-highlighted .page-part_content {
    margin-top: 0;
  }
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__blog_legend,
html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration .__bloc_opacity {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
/* Large devices (desktops, 993px and up) */
/* Very Large devices (desktops, 2000px and up) */
@media only screen and (min-width: 1300px) {
  html body #main-wrapper main#main-content.home .page-part-illimites .__bloc_illustration {
    max-width: 20%;
    flex: 0 0 20%;
  }
}

/*# sourceMappingURL=styles.css.map */
