@charset "UTF-8";
/**
*
* Colors
*
**/
/**
*
* Variables CSS Elements
*
**/
/** FONTS **/
/**** GENERALS ****/
/* Global*/
/* Site */
/**** 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 */
/**
*
* Mixins Customs CSS Elements
*
**/
/* Transform */
/**
*
* Animations
*
**/
/** Btn More Offres - hover **/
@-webkit-keyframes reveal_more_picto {
  0% {
    -webkit-transform: rorate(0deg);
    transform: rorate(0deg);
    bottom: 0rem;
    right: 0rem;
  }
  100% {
    -webkit-transform: rorate(180deg);
    transform: rorate(180deg);
    bottom: 5rem;
    right: 5rem;
  }
}

@keyframes reveal_more_picto {
  0% {
    -webkit-transform: rorate(0deg);
    transform: rorate(0deg);
    bottom: 0rem;
    right: 0rem;
  }
  100% {
    -webkit-transform: rorate(180deg);
    transform: rorate(180deg);
    bottom: 5rem;
    right: 5rem;
  }
}

#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  visibility: visible;
  opacity: 1;
  z-index: 10000;
  -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  overflow: hidden;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#preloader .item_anim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 2em;
}

#preloader .item-1 {
  width: 20px;
  height: 20px;
  background: #EF6E7E;
  border-radius: 50%;
  background-color: #287FC2;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  78%,
  100% {
    opacity: 0;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  78%,
  100% {
    opacity: 0;
  }
}

#preloader .item-1:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #287FC2;
  opacity: 0.7;
  -webkit-animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
          animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#preloader .item-2 {
  width: 20px;
  height: 20px;
  background: #EF6E7E;
  border-radius: 50%;
  background-color: rgba(40, 127, 194, 0.5);
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  78%,
  100% {
    opacity: 0;
  }
}

#preloader .item-2:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(40, 127, 194, 0.5);
  opacity: 0.7;
  -webkit-animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
          animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#preloader .item-3 {
  width: 20px;
  height: 20px;
  background: #EF6E7E;
  border-radius: 50%;
  background-color: rgba(239, 110, 126, 0.5);
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  78%,
  100% {
    opacity: 0;
  }
}

#preloader .item-3:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(239, 110, 126, 0.5);
  opacity: 0.7;
  -webkit-animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
          animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#preloader .item-4 {
  width: 20px;
  height: 20px;
  background: #EF6E7E;
  border-radius: 50%;
  background-color: #EF6E7E;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%,
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  78%,
  100% {
    opacity: 0;
  }
}

#preloader .item-4:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #EF6E7E;
  opacity: 0.7;
  -webkit-animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
          animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transform: scale(1);
          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;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          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: #000000;
}

.hamburger-box {
  width: 28px;
  height: 18px;
  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: #000000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          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;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  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);
  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), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse:not(.collapsed) .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse:not(.collapsed) .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  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;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  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);
  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), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

p.submit {
  display: inline-block !important;
}

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

.form-control:focus,
.btn:focus {
  -o-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 {
  list-style: none;
}

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

.no-padding {
  padding: 0;
}

/***** Strong *****/
strong {
  font-weight: bold;
}

/* Custom Btn */
.btn {
  background-color: #EF6E7E;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "GothamBold", sans-serif;
  padding: 0.5rem 2rem;
  border-radius: 0;
  border: 2px solid #EF6E7E;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn.blue {
  border-color: #287FC2;
}

.btn:hover {
  background-color: #ffffff;
  color: #EF6E7E;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product_bloc {
  margin-top: 15px;
  margin-bottom: 15px;
  height: 100%;
}

.product_bloc:nth-child(odd) {
  padding-right: 15px;
}

.product_bloc:nth-child(even) {
  padding-right: 15px;
}

.product_bloc .product_bloc_single {
  position: relative;
  min-height: 300px;
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
}

.product_bloc .product_bloc_single:after {
  content: "\66";
  font-family: "ap" !important;
  position: absolute;
  color: #ffffff;
  bottom: -15rem;
  right: -15rem;
  font-size: 15rem;
  z-index: 10;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: bottom 0.75s ease, right 0.75s ease, transform 1s ease;
  -webkit-transition: bottom 0.75s ease, right 0.75s ease, -webkit-transform 1s ease;
  transition: bottom 0.75s ease, right 0.75s ease, -webkit-transform 1s ease;
  transition: bottom 0.75s ease, right 0.75s ease, transform 1s ease;
  transition: bottom 0.75s ease, right 0.75s ease, transform 1s ease, -webkit-transform 1s ease;
}

.product_bloc .product_bloc_single .background_img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: #ffffff;
  opacity: 0.1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.product_bloc .product_bloc_single .product_bloc_content {
  position: absolute;
  bottom: 15px;
  right: 30px;
  padding: 0;
  text-align: right;
  z-index: 20;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product_bloc .product_bloc_single .product_bloc_content h3 {
  font-size: calc(45rem/16);
  color: #ffffff;
}

.product_bloc .product_bloc_single .product_bloc_content span {
  font-size: calc(35rem/16);
  color: #ffffff;
  font-family: "GothamBold", sans-serif;
}

.product_bloc .product_bloc_single .product_avaibility_content {
  background-color: #EEEEEE;
  position: absolute;
  bottom: -6rem;
  width: 100%;
  z-index: 20;
  -webkit-transition: bottom 0.5s ease, opacity 0.3s ease;
  transition: bottom 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.product_bloc .product_bloc_single .product_avaibility_content p {
  text-align: center;
  font-size: calc(15rem/16);
  padding: 1rem 0.5rem;
  font-style: italic;
  font-family: "GothamMedium", sans-serif;
}

.product_bloc .product_bloc_single:hover:after {
  bottom: -2rem;
  right: -6rem;
  -webkit-transition: bottom 0.5s ease, right 0.5s ease, transform 0.5s ease;
  -webkit-transition: bottom 0.5s ease, right 0.5s ease, -webkit-transform 0.5s ease;
  transition: bottom 0.5s ease, right 0.5s ease, -webkit-transform 0.5s ease;
  transition: bottom 0.5s ease, right 0.5s ease, transform 0.5s ease;
  transition: bottom 0.5s ease, right 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.product_bloc .product_bloc_single:hover .background_img {
  opacity: 0.3;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.product_bloc .product_bloc_single:hover .product_bloc_content {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product_bloc .product_bloc_single:hover .product_avaibility_content {
  bottom: -3px;
  opacity: 1;
  -webkit-transition: bottom 0.5s ease, opacity 0.1s ease;
  transition: bottom 0.5s ease, opacity 0.1s ease;
}

html body #main-wrapper main#main-content.single-product {
  padding-bottom: 0;
}

html body #main-wrapper main#main-content.single-product .container {
  background-color: #ffffff;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product {
  padding-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product span.onsale {
  display: none;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery {
  max-width: 50%;
  min-width: 50%;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  width: 100%;
  pointer-events: none !important;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  min-width: 100%;
  max-width: 100%;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image + .woocommerce-product-gallery__image {
  padding: 0;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .slick-dots {
  text-align: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .slick-dots li {
  padding: 10px;
  display: inline-block;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .slick-dots li.slick-active button {
  background-color: #287FC2;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: #ffffff;
  border-color: transparent;
  padding: 0;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product h2 {
  font-size: calc(22em/16);
  color: #000000;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary {
  max-width: 50%;
  min-width: 50%;
  padding: 15px;
  padding-left: 2em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary h1 {
  font-size: calc(32em / 16);
  padding: 20px 0;
  border: 2px solid #EF6E7E;
  border-left: none;
  border-right: none;
  font-family: "GothamBold", sans-serif;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary h2.product_category_title {
  font-family: "GothamLight", sans-serif;
  margin-bottom: 0;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary h2.product_category_title:after {
  display: none;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 1em 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price .woocommerce-Price-amount {
  font-size: calc(34em / 16);
  color: #EF6E7E;
  font-family: "GothamBold", sans-serif;
  text-decoration: initial;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: calc(34em / 34);
  color: #EF6E7E;
  margin-left: 0.25em;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price del {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  color: #3E3E3E;
  font-size: calc(24em / 34);
  text-decoration: inherit;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price del .woocommerce-Price-amount {
  margin-left: 1em;
  color: #3E3E3E;
  font-family: "GothamMedium", sans-serif;
  position: relative;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price del .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: calc(34em / 34);
  color: #3E3E3E;
  font-family: "GothamMedium", sans-serif;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price del .woocommerce-Price-amount:after {
  content: "";
  background-color: #3E3E3E;
  width: calc(100% + 10px);
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -5px;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .price ins {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-decoration: none;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .woocommerce-product-details__short-description {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 1em;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .woocommerce-product-details__short-description p {
  text-align: center;
  color: #000000;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 1em 0;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity {
  max-width: calc(116em / 16);
  margin: 0 calc(16em / 16) 0 0;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty {
  padding-right: 2.5em;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty_btn {
  color: #EF6E7E;
  right: 15px;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty_btn.qty_down {
  right: 13px;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .btn {
  border-color: #EF6E7E;
  background-color: #EF6E7E;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .btn:hover {
  background-color: #ffffff;
  color: #EF6E7E;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart.external {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary + h2 {
  margin-top: 1em;
  padding-bottom: 0.3em;
}

html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary + h2:after {
  background-color: #EF6E7E;
  width: 100%;
}

html body #main-wrapper main#main-content.single-product .related_products .__bloc {
  background-color: #ffffff;
  padding: 60px 0;
}

html body #main-wrapper main#main-content.single-product .related_products h2 {
  text-align: center;
  font-size: calc(26em/16);
}

html body #main-wrapper main#main-content.single-product .related_products h2::after {
  margin: 0 auto;
  right: 0;
  background-color: #EF6E7E;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc:nth-child(odd) {
  padding-right: 0;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc:nth-child(even) {
  padding-right: 0;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc:nth-child(1) {
  padding-right: 10px;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc:nth-child(2) {
  padding-right: 5px;
  padding-left: 5px;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc:nth-child(3) {
  padding-left: 10px;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single:after {
  font-size: 13em;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_bloc_content {
  right: 15px;
  padding-left: 30px;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_bloc_content h3 {
  font-size: calc(35em/16);
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_bloc_content span del {
  display: none;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_bloc_content span ins {
  text-decoration: none;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_bloc_content span .woocommerce-Price-amount > * {
  font-size: 1em;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_bloc_content span .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  margin-left: 0.25em;
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single .product_avaibility_content p {
  font-size: calc(13em/16);
}

html body #main-wrapper main#main-content.single-product .related_products .products .product_bloc .product_bloc_single:hover:after {
  bottom: -10px;
  right: -60px;
}

#products_proposals {
  padding: 60px 0;
}

#products_proposals .product_proposal_section .product_proposal_content {
  padding: 30px 0;
  margin-top: 15px;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc:nth-child(odd) {
  padding-right: 0;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc:nth-child(even) {
  padding-right: 0;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc:nth-child(1) {
  padding-right: 10px;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc:nth-child(2) {
  padding-right: 5px;
  padding-left: 5px;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc:nth-child(3) {
  padding-left: 10px;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc .product_bloc_single:after {
  font-size: 12rem;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc .product_bloc_single .product_bloc_content {
  right: 15px;
  padding-left: 30px;
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc .product_bloc_single .product_bloc_content h3 {
  font-size: calc(35rem/16);
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc .product_bloc_single .product_bloc_content span {
  font-size: calc(25rem/16);
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc .product_bloc_single .product_avaibility_content p {
  font-size: calc(13rem/16);
}

#products_proposals .product_proposal_section .product_proposal_content .product_bloc .product_bloc_single:hover:after {
  bottom: 0rem;
  right: -3rem;
}

/* FORM - GENERAL */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #3E3E3E !important;
  font-family: "GothamMedium", sans-serif;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #3E3E3E !important;
  font-family: "GothamMedium", sans-serif;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #3E3E3E !important;
  font-family: "GothamMedium", sans-serif;
}
input::placeholder, textarea::placeholder {
  color: #3E3E3E !important;
  font-family: "GothamMedium", sans-serif;
}

input[type="radio"] {
  position: relative;
}

input[type="radio"]:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 1em;
  height: 1em;
  left: -2px;
  border: 1px solid #287FC2;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  cursor: pointer;
}

input[type="radio"]:hover:before {
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  background-color: #3E3E3E;
}

input[type="radio"]:checked:before {
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  background-color: #287FC2;
}

form .form-row {
  padding-top: calc(18rem/18) !important;
}

form .form-row .woocommerce-Input,
form .form-row .woocommerce-input-wrapper input {
  padding: calc(15rem/16) calc(20rem/16);
  font-size: calc(16rem/16) !important;
}

form textarea {
  font-size: calc(16rem/16);
  color: #3E3E3E;
}

form span,
form input {
  color: #3E3E3E;
}

form input,
form textarea {
  padding: calc(15rem/18) calc(20rem/18);
  border: 1px solid #287FC2;
  border-radius: 2px;
}

form .input_checkbox_custom {
  position: relative;
  cursor: pointer;
}

form .input_checkbox_custom span {
  font-size: calc(16em/18);
  padding-left: calc(8em/18);
  position: relative;
}

form .input_checkbox_custom label {
  z-index: 1;
  height: 1rem;
  width: 1rem;
  top: 5px;
  left: -14px;
  border-radius: 0;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #287FC2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

form .input_checkbox_custom label:after {
  opacity: 0;
  content: "\6a";
  font-family: "ap" !important;
  color: #ffffff;
  position: absolute;
  left: 1px;
  top: -5px;
  font-size: 0.75rem;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* WooCommerce - Fields Validated */
#main-wrapper .woocommerce form .form-row.woocommerce-validated input.input-text {
  border-color: #287FC2;
}

#main-wrapper .woocommerce form .form-row.woocommerce-invalid input.input-text {
  border: 2px solid #EF6E7E;
}

/*
*
* WooCommerce Styles
*
*/
html body {
  /***** Woo messages *****/
}

html body .select2-container .select2-results__option.select2-results__option--highlighted,
html body .select2-container .select2-results__option:hover {
  color: #3E3E3E;
}

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;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

html body #main-wrapper main#main-content .woocommerce {
  /***** Woo buttons *****/
  /***** Woo messages *****/
  /***** Size block cart récap *****/
  /***** Btn proceed to checkout - Cart *****/
  /***** Page Connexion *****/
  /***** Checkbox Custom *****/
}

html body #main-wrapper main#main-content .woocommerce .btn {
  background-color: #287FC2;
  border-color: #287FC2;
}

html body #main-wrapper main#main-content .woocommerce .btn:hover {
  background-color: #ffffff;
  color: #287FC2;
}

html body #main-wrapper main#main-content .woocommerce .woo_messages {
  padding-bottom: 1em;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-NoticeGroup {
  width: 100%;
}

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: #ffffff;
  color: #3E3E3E;
  border: none;
  padding: 1em 2em;
  margin-bottom: 30px;
  font-size: 1em;
}

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: #287FC2;
  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: #3E3E3E;
  -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: #FAF9F9;
}

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: #EF6E7E;
  color: #ffffff;
  font-family: "GothamMedium", sans-serif;
  font-size: 1em;
}

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: "GothamBold", 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 0;
  padding: calc(15em/16) calc(20em/16);
  font-size: 1em;
  width: 100%;
  text-align: left;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.short {
  background-color: #EF6E7E;
  color: #ffffff;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.bad {
  background-color: #EF6E7E;
  color: #ffffff;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.good {
  background-color: #287FC2;
  color: #ffffff;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-password-strength.strong {
  background-color: #00a942;
  color: #ffffff;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-password-hint {
  font-size: 1em;
}

html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals {
  width: 70%;
}

html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals .shop_table {
  margin-bottom: 0;
}

html body #main-wrapper main#main-content .woocommerce .wc-proceed-to-checkout .btn {
  background-color: #287FC2;
  border-color: #287FC2;
  display: initial;
  float: right;
  padding: 0.5em 1em;
}

html body #main-wrapper main#main-content .woocommerce .wc-proceed-to-checkout .btn:hover {
  color: #287FC2;
  background-color: #ffffff;
}

html body #main-wrapper main#main-content .woocommerce h1.my_account_h1 {
  color: #287FC2;
  margin-bottom: 2em;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-login h2 {
  color: #287FC2;
  text-transform: uppercase;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-login a {
  color: #287FC2;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-login a:hover {
  color: #3E3E3E;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

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: #287FC2;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-notice--error {
  color: #EF6E7E;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received {
  font-family: "GothamBold", sans-serif;
  font-size: 1em;
  display: inline-block;
  padding-bottom: 45px;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p {
  float: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p a {
  position: relative;
  -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: -20px;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-notice.woocommerce-thankyou-order-received + p a:hover {
  color: #3E3E3E;
  -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: #3E3E3E;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-ResetPassword .btn {
  width: 100%;
}

html body #main-wrapper main#main-content .woocommerce ul.order_details {
  margin: 0 0 3em;
  list-style: none;
  background: #287FC2;
  padding: 30px;
}

html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview {
  background-color: #EEEEEE;
  padding: calc(35em/16) calc(30em/16);
}

html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview li {
  color: #287FC2;
  display: block;
  width: 100%;
  font-size: 1em;
  border: none;
  color: #287FC2;
  font-family: "GothamMedium", sans-serif;
}

html body #main-wrapper main#main-content .woocommerce ul.order_details.woocommerce-order-overview li strong {
  font-size: 1em;
  display: inline-block;
  font-family: "GothamBold", 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 .woocommerce-order-details {
  padding-top: 45px;
}

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: #EF6E7E;
}

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 address {
  padding: 30px;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount a {
  font-family: "GothamBold", 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 {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 2em;
}

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;
}

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: 1px solid #287FC2;
  border-radius: 0;
  padding: 30px;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation {
  border: 1px solid #287FC2;
  border-bottom: none;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  padding-top: 4px;
}

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.woocommerce-MyAccount-navigation-link--customer-logout a {
  background: #EF6E7E;
  color: #ffffff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #ec576a;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li + li {
  margin-left: 2px;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button {
  cursor: pointer;
  background-color: #287FC2;
  color: #287FC2;
  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%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button .arrow:before {
  content: "\68";
  font-family: "ap" !important;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.-more button[aria-expanded="true"] .arrow {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li a {
  font-size: calc(18em / 16);
  background: #287FC2;
  color: #ffffff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li a:hover {
  color: #3E3E3E;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li.is-active a {
  background: #ffffff;
  color: #3E3E3E;
  border-bottom-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 1px 0;
  width: calc(100% + 2px);
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content {
  padding: 45px 30px;
  border: 1px solid #287FC2;
  border-top: none;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content h2 {
  font-family: "GothamBold", sans-serif;
  font-size: calc(34em / 16);
  color: #287FC2;
  text-transform: uppercase;
  text-align: center;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content mark {
  color: #287FC2;
  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 #287FC2;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content .icon-download {
  padding-left: 2em;
  margin-top: 1em;
  position: relative;
  color: #287FC2;
  -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: #3E3E3E;
  -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 + p {
  line-height: 1.4;
}

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 fieldset {
  padding: 30px;
  background-color: #EEEEEE;
  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 .shop_table {
  font-size: calc(16em / 16);
}

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 .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 {
  background: #EEEEEE;
  padding: 15px 30px;
}

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 {
  padding-left: calc(35em / 16);
  color: #EF6E7E;
}

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 / 16);
  color: #EF6E7E;
  top: 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: #3E3E3E;
  -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: #3E3E3E;
  -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 + .woocommerce-orders-table__row td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .woocommerce-orders-table__row + .order td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order + .woocommerce-orders-table__row td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.woocommerce-orders-table .order + .order td, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row + .woocommerce-orders-table__row td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .woocommerce-orders-table__row + .order td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order + .woocommerce-orders-table__row td,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders .order + .order td {
  border-top: 1px solid #287FC2;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead tr th {
  padding: 15px 0;
  text-align: center;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead th,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead td, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody th,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody td {
  font-size: 0.9em;
}

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: "GothamMedium", 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 {
  color: #3E3E3E !important;
  -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, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button {
  background-color: transparent;
  color: #287FC2 !important;
  padding-left: 1.5em !important;
  font-family: "GothamMedium", 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: 1em;
}

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: #3E3E3E !important;
  -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:hover:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button:hover:before {
  color: #3E3E3E !important;
  -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:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button:before {
  font-family: "ap" !important;
  color: #287FC2 !important;
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead a.woocommerce-button.view:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button.view:before {
  content: "\6c";
}

html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders thead a.woocommerce-button.invoice:before, html body #main-wrapper main#main-content .woocommerce .woo_myaccount .shop_table.my_account_orders tbody a.woocommerce-button.invoice:before {
  content: "\6b";
}

html body #main-wrapper main#main-content .woocommerce .cart-empty {
  color: #3E3E3E;
}

html body #main-wrapper main#main-content .woocommerce .return-to-shop {
  margin-top: calc(32em / 16);
}

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/16);
  margin: 0 auto;
  position: relative;
  border: 2px solid #EF6E7E;
}

html body #main-wrapper main#main-content .woocommerce .quantity .qty {
  display: inherit;
  margin: 0 auto;
  min-width: calc(100em / 16);
  max-width: calc(100em / 16);
  color: #3E3E3E;
  border: none;
  background-color: transparent;
  text-align: right;
  padding-right: 2.5em;
}

html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn {
  position: absolute;
  right: 10px;
  font-family: "ap" !important;
  font-size: 0.8em;
  color: #287FC2;
  z-index: 1;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn.qty_up {
  top: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

html body #main-wrapper main#main-content .woocommerce .quantity .qty_btn.qty_down {
  bottom: 12px;
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
}

html body #main-wrapper main#main-content .woocommerce .quantity input {
  position: relative;
  max-width: calc(75em/16);
  text-align: center;
  line-height: 1.5;
  padding: 10px;
  border: 1px solid #EF6E7E;
  color: #EF6E7E;
  font-size: calc(16em / 16);
}

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 .woo_myaccount h1 {
  color: #287FC2;
  margin-bottom: 30px;
}

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 .woo_myaccount h2 {
  font-family: "GothamBold", sans-serif;
  font-size: calc(24em / 16);
  color: #287FC2;
  text-transform: uppercase;
}

html body #main-wrapper main#main-content .woocommerce .cart_highlighted h3,
html body #main-wrapper main#main-content .woocommerce .cart_totals h3,
html body #main-wrapper main#main-content .woocommerce .checkout_highlighted h3,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount h3 {
  font-family: "GothamMedium", sans-serif;
  font-weight: 400;
  font-size: calc(20em / 16);
  text-transform: uppercase;
  color: #3E3E3E;
}

html body #main-wrapper main#main-content .woocommerce .checkout_highlighted h1,
html body #main-wrapper main#main-content .woocommerce .woo_myaccount h1 {
  margin-bottom: 2em;
}

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: #EF6E7E;
}

html body #main-wrapper main#main-content .woocommerce .woocommerce-NoticeGroup .woocommerce-error::before {
  color: #EF6E7E;
}

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: #287FC2;
  -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;
  height: 1.1em;
  width: 1.1em;
  left: 3px;
  border-radius: 0;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #287FC2;
  -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:after {
  opacity: 0;
  content: "\6a";
  font-family: "ap" !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;
  color: #ffffff;
  position: absolute;
  left: 5px;
  top: 2px;
  z-index: 10;
  font-size: 0.9em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom input:hover:before {
  background-color: #287FC2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom.woocommerce-form-login__rememberme {
  margin-bottom: 1em;
}

html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom.woocommerce-form-login__rememberme input:before {
  top: 7px;
  height: 1em;
  width: 1em;
}

html body #main-wrapper main#main-content .woocommerce .input_checkbox_custom.woocommerce-form-login__rememberme input:after {
  left: 4px;
  top: 10px;
  font-size: 0.8em;
}

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 .anr_captcha_field {
  margin: 1em 0 0.5em;
}

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: 0;
}

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 .input-checkbox {
  margin: -5px 5px 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.woocommerce-checkout h3 {
  font-family: "GothamMedium", sans-serif;
  font-weight: 400;
  font-size: calc(20em / 16);
  text-transform: uppercase;
  color: #3E3E3E;
  padding: 45px 0 0;
}

html body #main-wrapper main#main-content .woocommerce form .required {
  color: #EF6E7E;
}

html body #main-wrapper main#main-content .woocommerce form .input-text {
  padding: calc(15em/16) calc(20em/16);
  font-size: calc(16em / 16);
}

html body #main-wrapper main#main-content .woocommerce form .input-text#coupon_code {
  width: 40%;
  padding: 0.5em 1.5em;
  line-height: 1.5;
  font-size: calc(12em / 16);
}

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 {
  float: left;
}

html body #main-wrapper main#main-content .woocommerce form .form-row.form-row-last {
  float: right;
}

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;
  float: left;
  width: 50%;
}

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;
  float: right;
  width: 50%;
}

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 {
  float: left;
  width: 100%;
}

html body #main-wrapper main#main-content .woocommerce form .form-row .woocommerce-input-wrapper > strong {
  display: inline-block;
  font-family: "GothamMedium", sans-serif;
  font-size: calc(16em / 16);
  color: #3E3E3E;
  width: 100%;
  padding: calc(15em/16) calc(20em/16);
  border: 1px solid #287FC2;
  background: #287FC2;
  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-shipping-fields h3 {
  padding: 1.5em 0 0.5em;
}

html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 span {
  text-transform: initial;
}

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 ul {
  list-style: none !important;
  padding: 0;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table .woocommerce-Price-amount {
  font-family: "GothamMedium", sans-serif;
  color: #3E3E3E;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-family: "GothamMedium", sans-serif;
  color: #3E3E3E;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table tr.order-total .woocommerce-Price-currencySymbol {
  font-weight: 700;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table .includes_tax .woocommerce-Price-amount {
  font-family: "GothamMedium", sans-serif;
  font-weight: 400;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table .includes_tax .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-family: "GothamMedium", sans-serif;
  font-weight: 400;
}

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: "GothamMedium", 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: #EF6E7E;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table .pickup-location-field.pickup-location-cart-item-field .wc-lpp-help-tip {
  color: #3E3E3E;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table tr td {
  border: none;
  background-color: #EEEEEE;
}

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 {
  font-weight: 100;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table tr.order-total .amount {
  font-family: "GothamBold", sans-serif;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table thead tr th {
  text-transform: uppercase;
  font-family: "GothamBold", sans-serif;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table tbody th {
  text-transform: uppercase;
}

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: "GothamBold", 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: 30px;
}

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: 30px;
}

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: 30px;
}

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, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.woocommerce-cart-form__cart-item .quantity .qty {
  min-width: calc(85em / 16);
  max-width: calc(85em / 16);
}

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 {
  right: 5px;
  max-height: 10px;
  min-height: 10px;
  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: #287FC2;
  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: 14px;
}

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: 14px;
}

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: #ffffff !important;
  padding: calc(18em/16) 0 !important;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr td.product-remove, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr td.product-remove {
  padding-right: calc(25em / 16);
}

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: 0 auto;
  font-size: 0.75em;
  background-color: transparent;
  color: #EF6E7E;
}

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: #EF6E7E;
  font-size: calc(28em / 16);
  position: absolute;
  right: 0;
  top: -0.35em;
  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: #3E3E3E;
  -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: "GothamMedium", sans-serif;
  font-size: calc(18em / 16);
}

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 #287FC2;
  color: #3E3E3E;
}

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 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 {
  background: #EEEEEE;
}

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: "GothamMedium", sans-serif;
  font-size: 1em;
  color: #3E3E3E;
}

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: "GothamMedium", sans-serif;
  color: #3E3E3E;
  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::after, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name > a::after, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-name > a::after {
  content: "";
  position: absolute;
  bottom: -0.05rem;
  height: 1px;
  width: 0;
  left: 0;
  background-color: #287FC2;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name > a:hover:after, 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:after, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders tbody tr.cart_item td.product-name > a:hover:after {
  width: 100%;
}

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(12em / 18);
  line-height: 1.4;
  max-width: 80%;
  padding: 15px 30px;
}

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: "GothamBold", sans-serif;
  font-weight: 700;
  color: #3E3E3E;
  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: #EF6E7E;
  padding-top: 45px;
  border-bottom: 2px solid #287FC2;
}

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 #287FC2;
}

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: #287FC2;
  border-color: #287FC2;
}

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: #287FC2;
  background-color: #ffffff;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .btn:disabled, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .btn:disabled, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders .btn:disabled {
  color: #ffffff;
  background-color: #6fafe1;
  border-color: #6fafe1;
  cursor: not-allowed;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-cart-form__contents .btn:disabled:hover, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table .btn:disabled:hover, html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-MyAccount-orders .btn:disabled:hover {
  color: #ffffff;
  background-color: #6fafe1;
  cursor: not-allowed;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
  max-width: 6em;
  min-width: 6em;
}

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: "GothamBold", sans-serif;
  color: #3E3E3E;
  border: none;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tr.order_item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.subscription_details tr.order_item td, html body #main-wrapper main#main-content .woocommerce table.shop_table.order_details tr.order_item td {
  background: #EEEEEE;
}

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: #EF6E7E;
  padding-top: 45px;
  border-bottom: 2px solid #EF6E7E;
}

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: "GothamBold", sans-serif;
}

html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total {
  border: none;
  border-left: 2px solid #287FC2;
}

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.shop_table.woocommerce-checkout-review-order-table tfoot 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 {
  border-bottom: 2px solid #287FC2;
  color: #3E3E3E;
}

html body #main-wrapper main#main-content .woocommerce table.woocommerce-table--order-details tbody tr td a {
  font-family: "GothamMedium", sans-serif;
  text-decoration: underline;
  color: #3E3E3E;
  -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: #287FC2;
  -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 #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 {
  color: #3E3E3E;
  background: #EEEEEE;
  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 {
  border-bottom: none;
  padding: 1em;
  list-style: none;
}

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 {
  font-family: "GothamMedium", sans-serif;
  width: 100%;
}

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 {
  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 {
  margin-left: 1em;
}

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 {
  background: #287FC2;
  font-size: 1em;
}

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 {
  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 {
  color: #3E3E3E;
  -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 {
  color: #EEEEEE;
  -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 {
  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 {
  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 {
  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 {
  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 {
  color: #ffffff;
  font-size: 0.9em;
  min-height: 35px;
}

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 {
  color: #3E3E3E;
}

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 {
  margin-bottom: 0;
  margin-top: 1.5em;
}

html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .payment_box ul.woocommerce_error li,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .payment_box ul.woocommerce_error li,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .payment_box ul.woocommerce_error li {
  font-size: 0.9em;
}

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 {
  border-bottom-color: #287FC2;
}

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 {
  background-color: #ffffff;
  padding: 2em 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 {
  font-size: 1em;
  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 {
  color: #287FC2;
}

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 {
  color: #287FC2;
}

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 {
  color: #3E3E3E;
}

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 {
  color: #287FC2;
  padding-left: 0;
}

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 {
  position: relative;
}

html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input {
  opacity: 1;
}

html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:before {
  top: -3px;
  left: -2px;
  height: calc(15em/14.4);
  width: calc(15em/14.4);
}

html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:after,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:after,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:after {
  opacity: 0;
  content: "\6a";
  font-family: "ap" !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;
  color: #ffffff;
  position: absolute;
  left: 7px;
  top: 8px;
  z-index: 10;
  font-size: 1em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:hover:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:hover:before,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox:hover:before {
  background-color: #287FC2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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] {
  width: 100%;
  background-color: #287FC2;
  border-color: #287FC2;
}

html body #main-wrapper main#main-content .woocommerce #add_payment_method #payment button[type=submit]:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-cart #payment button[type=submit]:hover,
html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment button[type=submit]:hover {
  color: #287FC2;
  background-color: #ffffff;
}

/**
*
* Fonts
*
**/
@font-face {
  font-family: "GothamBold";
  src: url("../fonts/GothaProBol.otf") format("opentype");
}

@font-face {
  font-family: "GothamMedium";
  src: url("../fonts/GothaProReg.otf") format("opentype");
}

@font-face {
  font-family: "GothamLight";
  src: url("../fonts/GothaProLig.otf") format("opentype");
}

/*
*
Tarte au citron
*
*/
body #tarteaucitronRoot .tarteaucitronAlertBigBottom {
  background-color: #EF6E7E !important;
}

body #tarteaucitronRoot .tarteaucitronAlertBigBottom #tarteaucitronPersonalize {
  background-color: #ffffff;
  color: #EF6E7E;
}

body #tarteaucitronRoot .tarteaucitronAlertBigBottom #tarteaucitronCloseAlert {
  background-color: #EF6E7E;
  border: 1px solid #ffffff;
  font-size: 14px;
  padding: 5px 10px;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/**
*
* Fonts Custom
*
**/
@font-face {
  font-family: "ap";
  src: url("../fonts/ap.eot");
  src: url("../fonts/ap.eot?#iefix") format("embedded-opentype"), url("../fonts/ap.woff") format("woff"), url("../fonts/ap.ttf") format("truetype"), url("../fonts/ap.svg#ap") format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "ap" !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;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "ap" !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;
}

.icon-account:before {
  content: "\61";
}

.icon-amicale:before {
  content: "\62";
}

.icon-arrow-slider:before {
  content: "\63";
}

.icon-hourglass:before {
  content: "\65";
}

.icon-more:before {
  content: "\66";
}

.icon-permanent:before {
  content: "\67";
}

.icon-trash:before {
  content: "\69";
}

.icon-arrow:before {
  content: "\68";
}

.icon-check:before {
  content: "\6a";
}

.icon-download:before {
  content: "\6b";
}

.icon-watch:before {
  content: "\6c";
}

.icon-cart:before {
  content: "\6d";
}

.icon-avantages:before {
  content: "\64";
}

.icon-privilege:before {
  content: "\6f";
}

.icon-gamme:before {
  content: "\6e";
}

.icon-contact:before {
  content: "\70";
}

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

html,
body {
  width: 100%;
  scroll-behavior: smooth;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
}

html {
  font-size: 100%;
  margin-top: 0px !important;
}

html body {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  font-family: "GothamMedium", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
}

html body.admin-bar #main-header .navbar {
  top: 0 !important;
}

html body:not(.logged-in) #main-wrapper #main-content {
  margin-top: 87px;
}

h1,
h2, h3, h4 {
  font-family: "GothamBold", sans-serif;
}

h2, h3, h4 {
  color: #000000;
}

h1 {
  font-size: calc(32rem/16);
}

h2 {
  font-size: calc(26rem/16);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}

h2:after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #287FC2;
}

h4 {
  font-size: calc(18rem/16);
  text-transform: uppercase;
  color: #287FC2;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}

h4:after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #287FC2;
}

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  font-size: calc(16rem/16);
  line-height: calc(18rem/16);
  color: #3E3E3E;
  text-align: left;
}

p + p {
  padding-top: 1rem;
}

.clearfix {
  display: block;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#main-wrapper {
  margin-bottom: 155px;
  background-color: #FAF9F9;
  min-height: 62vh;
  z-index: 1;
}

#main-wrapper #main-header {
  width: 100%;
  background-color: #ffffff;
}

#main-wrapper #main-header nav {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -o-box-shadow: 0px 4px 10px -6px #000000;
  -webkit-box-shadow: 0px 4px 10px -6px #000000;
  box-shadow: 0px 4px 10px -6px #000000;
}

#main-wrapper #main-header nav.is_hidden {
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#main-wrapper #main-header nav .container-fluid {
  background-color: #ffffff;
}

#main-wrapper #main-header nav .container-fluid a {
  color: #3E3E3E;
  font-family: "GothamMedium", sans-serif;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged {
  padding: 0 15px;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged.not_logged > .container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged.not_logged > .container .row:first-child {
  border-bottom: none;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:first-child {
  border-bottom: 2px solid #EF6E7E;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li {
  padding-left: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li.current-menu-item {
  border-color: #287FC2 !important;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li.current-menu-item a {
  color: #287FC2;
  font-family: "GothamBold", sans-serif;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li.current-menu-item a::before {
  color: #287FC2;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li.contact_link {
  border-color: transparent !important;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li a {
  color: #3E3E3E;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li a.menu-cart {
  position: relative;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li a.menu-cart span {
  position: absolute;
  left: -38px;
  top: 5px;
  padding-top: 2px;
  color: #ffffff;
  font-size: 14px;
  width: 18px;
  text-align: center;
  height: 18px;
  font-family: "GothamBold", sans-serif;
  background-color: #287FC2;
  border-radius: 50%;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li a.not_empty::before {
  color: #287FC2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li a:after {
  display: none;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li a::before {
  font-size: 1.2rem;
  top: -1px;
  left: -30px;
  color: #3E3E3E;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:first-of-type {
  margin-right: 2.5rem;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:last-of-type {
  border: 2px transparent solid;
  padding-top: calc(1rem - 2px);
  padding-bottom: calc(1rem - 2px);
  border-radius: 5px;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:last-of-type:not(.current-menu-item) {
  border: 2px #3E3E3E solid;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:first-of-type a::before {
  top: -1px;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:hover:last-of-type {
  border: 2px #287FC2 solid;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:hover a {
  color: #287FC2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row:not(.navbar_offers) .navbar-menu .navbar-nav li:hover a:before {
  color: #287FC2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row.navbar_offers li a {
  font-weight: 700;
  color: #BEBEBE;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row.navbar_offers li a.current-menu-item {
  color: #EF6E7E;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged > .container .row.navbar_offers li a:hover {
  color: #EF6E7E;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-brand a img {
  width: 80px;
  max-width: 80px;
  height: 80px;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-toggle {
  display: none;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav {
  display: none;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .hamburger--collapse {
  position: absolute;
  right: 0;
  top: 15px;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu {
  width: auto;
  position: relative;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav li {
  padding: 1rem 2rem;
  padding-right: 1rem;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav li a {
  font-size: calc(16rem/16);
  position: relative;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav li a:before {
  position: absolute;
  left: -5px;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav li a.current-menu-item {
  color: #EF6E7E;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav li a.current-menu-item:after {
  width: 100%;
}

#main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu .navbar-nav li:first-of-type {
  padding-left: 0;
}

#main-wrapper #main-header nav .container-fluid .row + .row {
  width: 100%;
  background-color: #ffffff;
}

#main-wrapper #main-header nav .container-fluid .row + .row a {
  color: #BEBEBE;
  font-family: "GothamBold", sans-serif;
}

#main-wrapper #main-content {
  z-index: 1;
  margin-top: 145px;
  min-height: calc(100vh - 160px);
  -o-box-shadow: 0px 4px 10px -6px #000000;
  -webkit-box-shadow: 0px 4px 10px -6px #000000;
  box-shadow: 0px 4px 10px -6px #000000;
}

#main-wrapper #main-content > .container {
  background-color: #ffffff;
  padding-top: 35px;
}

#main-wrapper #main-content.home {
  background-color: #ffffff;
}

#main-wrapper #main-content.home.not_logged .container-fluid {
  overflow: hidden;
  max-height: calc(60vh - 90px);
}

#main-wrapper #main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slider_home_slide .container {
  top: 28%;
}

#main-wrapper #main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slick-arrow {
  top: 20.5%;
}

#main-wrapper #main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slick-arrow.slick-prev {
  top: 19%;
}

#main-wrapper #main-content.home .container-fluid {
  overflow: hidden;
  max-height: calc(100vh - 145px);
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home {
  position: relative;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide {
  position: relative;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide img {
  width: 100%;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide .img_filter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #287FC2;
  width: 100%;
  height: 100%;
  z-index: 8;
  opacity: 0.3;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide .container {
  position: absolute;
  top: 45%;
  max-width: 1140px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide .container .slide_home_content {
  text-align: center;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide .container .slide_home_content h2 {
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide .container .slide_home_content h2:after {
  background-color: #EF6E7E;
  right: 0;
  height: 3px;
  margin: 0 auto;
  width: 30%;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slider_home_slide .container .slide_home_content span {
  display: block;
  font-size: 30px;
  color: #ffffff;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slick-arrow {
  z-index: 10;
  cursor: pointer;
  font-size: 3rem;
  position: absolute;
  top: 36.5%;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slick-arrow i {
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slick-arrow i:hover {
  color: #EF6E7E;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slick-arrow.slick-next {
  right: 5%;
}

#main-wrapper #main-content.home .container-fluid .row.highlighted_slider_home .slick-arrow.slick-prev {
  left: 5%;
  top: 34.5%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#main-wrapper #main-content.home .highlighted_home .highlighted_home_content {
  text-align: center;
  padding: 0 100px;
}

#main-wrapper #main-content.home .highlighted_home .highlighted_home_content p {
  text-align: center;
  line-height: 1.4;
}

#main-wrapper #main-content.home .highlighted_home .highlighted_home_content a {
  margin-top: 50px;
}

#main-wrapper #main-content.home .home_section {
  padding: 60px 15px;
}

#main-wrapper #main-content.home .home_section h2:after {
  background-color: #EF6E7E;
}

#main-wrapper #main-content.home .home_section .list_home_content {
  position: relative;
}

#main-wrapper #main-content.home .home_section .list_home_content p {
  line-height: 1.2;
}

#main-wrapper #main-content.home .home_section .list_home_content:before {
  position: absolute;
  font-size: 10rem;
  left: -200px;
  color: #EF6E7E;
}

#main-wrapper #main-content.home .home_section .list_home_content.list_right h2, #main-wrapper #main-content.home .home_section .list_home_content.list_right p {
  text-align: right;
}

#main-wrapper #main-content.home .home_section .list_home_content.list_right h2:after, #main-wrapper #main-content.home .home_section .list_home_content.list_right p:after {
  left: inherit;
  right: 0;
}

#main-wrapper #main-content.home .home_section .list_home_content.list_right:before {
  left: inherit;
  right: -200px;
}

#main-wrapper #main-content.home .footer_bandeau {
  margin-top: 60px;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop {
  width: 100%;
  position: relative;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop {
  position: relative;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop img {
  width: 100%;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content {
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: right;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content h2 {
  font-size: calc(60rem/16);
  color: #287FC2;
  line-height: 1;
  margin-bottom: 0;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content h2:after {
  display: none;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content span {
  color: #ffffff;
  font-size: calc(30rem/16);
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slick-arrow {
  z-index: 10;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slick-arrow i {
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slick-arrow i:hover {
  color: #287FC2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slick-arrow.slick-next {
  right: 3%;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_slider_shop .slick-arrow.slick-prev {
  left: 3%;
  top: 38%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_illustration_cat {
  width: 100%;
}

#main-wrapper #main-content.shop #highlighted .container .row .highlighted_illustration_cat img {
  width: 100%;
  height: 100%;
}

#main-wrapper #main-content.shop .products_list_bloc {
  padding: 60px 0;
}

#main-wrapper #main-content.shop .products_list_bloc .container {
  padding: 0;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_title {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 45px;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h1, #main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h2 {
  padding-left: 30px;
  padding-bottom: 10px;
  margin-bottom: 0;
  position: relative;
  color: #3E3E3E;
  font-size: calc(26rem / 16);
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h1.icon-amicale:before, #main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h2.icon-amicale:before {
  font-size: 2rem;
  left: -10px;
  top: -2px;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h1:before, #main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h2:before {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 1.2rem;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h1:after, #main-wrapper #main-content.shop .products_list_bloc .container .products_list_title h2:after {
  content: "";
  background-color: #EF6E7E;
  height: 2px;
  width: 60%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_link {
  text-align: right;
  margin-top: 15px;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_link a {
  color: #ffffff;
  text-transform: inherit;
  background-color: #EF6E7E;
  text-transform: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main-wrapper #main-content.shop .products_list_bloc .container .products_list_link a:hover {
  color: #EF6E7E;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main-wrapper #main-content.shop .products_list_bloc + .products_list_bloc {
  padding-top: 0;
}

#main-wrapper #main-content.shop .products_list_description p {
  text-align: center;
  color: #9D9D9D;
  font-size: calc(16rem/16);
  padding-bottom: 35px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_title {
  color: #287FC2;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_content {
  padding: 40px 15px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form {
  padding: 30px 15px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 {
  padding: 0 60px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .wpcf7-form {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .wpcf7-form p br {
  display: none;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .wpcf7-form p:nth-of-type(1) {
  position: relative;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .wpcf7-form p:nth-of-type(1):before {
  content: "\68";
  font-family: "ap";
  position: absolute;
  top: 18px;
  right: 30px;
  font-size: 1rem;
  color: #287FC2;
  border: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p {
  width: 100%;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(2), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(3), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(4), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(5) {
  max-width: 48%;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(2) label, #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(3) label, #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(4) label, #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(5) label {
  display: none;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(2), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(3), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(4), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(5), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(6), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(7) {
  padding-top: calc(30rem/16);
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(1) label, #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(6) label {
  display: none;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(9) {
  margin-top: 15px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(11) {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(11) input {
  font-size: 18px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(11) input:disabled {
  opacity: 0.1;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 p:nth-of-type(11) input + .ajax-loader {
  width: 50px;
  height: 25px;
  margin-left: 1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .anr_captcha_field {
  padding-top: 15px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .wpcf7-not-valid-tip {
  font-size: 1rem;
  padding: calc(10rem/16) 0;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 input, #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 textarea {
  font-size: 1rem;
  border-radius: 0;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 input:not([type="submit"]), #main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 textarea:not([type="submit"]) {
  padding-top: 0;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 select {
  position: relative;
  background-color: transparent;
  border: 1px solid #287FC2;
  font-size: 1rem;
  border-radius: 0;
  color: #3E3E3E !important;
  font-family: "GothamMedium", sans-serif;
  padding: 1rem 15px;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL .wpcf7-list-item {
  margin: 0;
  position: relative;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input {
  margin-right: 10px;
  height: 1rem;
  width: 1rem;
  opacity: 0;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input + .wpcf7-list-item-label {
  font-size: calc(18rem/18);
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input + .wpcf7-list-item-label a {
  color: #287FC2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input + .wpcf7-list-item-label a:hover {
  color: #3E3E3E;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input + .wpcf7-list-item-label::after {
  z-index: 1;
  height: 1rem;
  width: 1rem;
  top: 0;
  left: 0;
  border-radius: 0;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #287FC2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input + .wpcf7-list-item-label::before {
  opacity: 0;
  content: "\6a";
  font-family: "ap" !important;
  color: #ffffff;
  position: absolute;
  left: 2px;
  top: 0;
  z-index: 10;
  font-size: 0.75rem;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input:hover + .wpcf7-list-item-label::after {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #3E3E3E;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input:checked + .wpcf7-list-item-label::after {
  background-color: #287FC2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .CNIL input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7 .wpcf7-form-control-wrap {
  padding-top: calc(50em/18);
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .contact_info_unsubscribe {
  font-size: 1rem;
  padding: 0 60px;
  margin: 30px 0;
  color: #3E3E3E;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .contact_info_unsubscribe a {
  color: #287FC2;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .contact_info_unsubscribe a:hover {
  color: #3E3E3E;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7-validation-errors,
#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7-spam-blocked {
  border-color: #287FC2;
  background-color: #287FC2;
  color: #ffffff;
  font-family: "GothamBold", sans-serif;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7-mail-sent-ok {
  background-color: #EEEEEE;
  border: none;
  color: #3E3E3E;
  font-family: "GothamMedium", sans-serif;
}

#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7-mail-sent-ok,
#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7-validation-errors,
#main-wrapper #main-content.contact .container .row .bloc_page .row .page_form .container .wpcf7-spam-blocked {
  font-size: calc(18rem/18);
  padding: calc(18rem/18);
  margin: 2em 0 1em;
  width: 100%;
}

#main-wrapper #main-content.page .page-part:first-child .container {
  min-height: calc(100vh - 250px);
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

#main-wrapper #main-content.page.default h1 {
  color: #287FC2;
  margin-bottom: 2rem;
}

#main-wrapper #main-content.page.default h2 {
  padding: 2rem 0;
  margin-bottom: 0;
  color: #287FC2;
}

#main-wrapper #main-content.page.default h2::after {
  display: none;
}

#main-wrapper #main-content.page.default h2 + h3 {
  padding-top: 0;
}

#main-wrapper #main-content.page.default h3 {
  padding: 1.5rem 0 1rem;
  color: #287FC2;
  font-size: calc(20em/16);
}

#main-wrapper #main-content.page.default ul {
  padding-bottom: 1rem;
  list-style: circle;
  padding: 1rem 0 1rem 1rem;
}

#main-wrapper #main-content.page.default p {
  line-height: 1.2;
}

#main-wrapper #main-content.contact > .container {
  min-height: calc(100vh - 250px);
  padding-top: 60px;
  padding-bottom: 60px;
}

#main-wrapper .footer_bandeau {
  background-color: #287FC2;
  padding: 30px 0;
}

#main-wrapper .footer_bandeau .container .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#main-wrapper .footer_bandeau .container .row .bandeau_content {
  text-align: center;
}

#main-wrapper .footer_bandeau .container .row .bandeau_content p {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  padding-top: 15px;
}

#main-wrapper .footer_bandeau .container .row .bandeau_content svg {
  fill: #fff;
}

#main-wrapper #main-footer {
  z-index: -1;
  padding: 30px 0;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #FAF9F9;
}

#main-wrapper #main-footer .navbar .container .row {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#main-wrapper #main-footer .navbar .container .row .footer_section {
  padding: 0;
}

#main-wrapper #main-footer .navbar .container .row .footer_section h3 {
  text-transform: uppercase;
  color: #EF6E7E;
  padding-bottom: 15px;
  font-size: calc(22rem / 18);
}

#main-wrapper #main-footer .navbar .container .row .footer_section ul li a {
  color: #3E3E3E;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

#main-wrapper #main-footer .navbar .container .row .footer_section ul li a:hover {
  color: #EF6E7E;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

#main-wrapper #main-footer .navbar .container .row .footer_section ul li + li {
  padding-top: 5px;
}

#main-wrapper #main-footer .navbar .container .row .footer_section.footer_logo {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  z-index: -1;
  text-align: center;
}

#main-wrapper #main-footer .navbar .container .row .footer_section.footer_logo img {
  display: inline-block;
  max-width: 120px;
}

.admin-bar #main-wrapper {
  margin-top: 150px;
}

/* Extra small devices (phones, less than 767px) */
@media only screen and (max-width: 320px) {
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li {
    padding: 1rem 0 !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li a {
    font-size: calc(22rem/18) !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li:first-child {
    margin-top: 1rem !important;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity {
    width: 100%;
    max-width: inherit;
    margin-right: 0;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty {
    min-width: 90%;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .btn {
    width: 100%;
    min-height: 55px;
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid {
    max-height: inherit !important;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slick-arrow {
    top: 26.5% !important;
    font-size: 2rem;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slick-arrow.slick-prev {
    top: 25% !important;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slider_home_slide .container {
    top: 28% !important;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slider_home_slide .container .slide_home_content h2 {
    font-size: calc(25em/18) !important;
    padding: 0 30px !important;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slider_home_slide .container .slide_home_content span {
    font-size: calc(22em/18) !important;
  }
}

/* Small devices (tablets, 321px and up) */
@media only screen and (min-width: 1px) and (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }
  html body.admin-bar #wpadminbar {
    display: none;
  }
  html body .admin-bar #main-wrapper {
    margin-top: 0;
  }
  html body.woocommerce-orders.woocommerce-account .woocommerce .woo_myaccount .woocommerce-message {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  html body.woocommerce-orders.woocommerce-account .woocommerce .woo_myaccount .woocommerce-message a.btn {
    float: inherit !important;
    text-align: left;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 14px !important;
  }
  html body #main-wrapper {
    margin-top: 0 !important;
    margin-bottom: 420px;
  }
  html body #main-wrapper .woocommerce-notices-wrapper .woocommerce-message,
  html body #main-wrapper .woocommerce-notices-wrapper .woocommerce-info,
  html body #main-wrapper .woocommerce-notices-wrapper .woocommerce-error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1em;
  }
  html body #main-wrapper .woocommerce-notices-wrapper .woocommerce-message a,
  html body #main-wrapper .woocommerce-notices-wrapper .woocommerce-info a,
  html body #main-wrapper .woocommerce-notices-wrapper .woocommerce-error a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    margin-top: calc(18em/18);
    float: inherit;
    display: block;
  }
  html body #main-wrapper #main-header nav .container-fluid {
    padding: 0 !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged > .container:first-child {
    border: none;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged .row:first-child {
    border: none !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-toggle {
    display: block;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-menu:not(#responsive-nav) {
    display: none !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-brand {
    margin-left: 10px;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged .navbar-brand a img {
    width: auto;
    max-height: 70px;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav {
    display: block;
    opacity: 0;
    visibility: hidden;
    background-color: #ffffff;
    height: 1px;
    width: 100%;
    -webkit-transition: opacity 0.2s linear, height 0.2s linear;
    transition: opacity 0.2s linear, height 0.2s linear;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul {
    position: absolute;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li {
    text-align: center;
    padding: 1.5rem 0;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li a {
    width: auto;
    font-size: calc(25rem/18);
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li:first-child {
    margin: 0;
    margin-top: 2rem;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li:last-child {
    border: none;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav.show {
    opacity: 1;
    visibility: visible;
    height: calc(100vh);
    -webkit-transition: opacity 0.3s linear, height 0.2s linear;
    transition: opacity 0.3s linear, height 0.2s linear;
  }
  html body #main-wrapper main#main-content {
    margin-top: 87px;
  }
  html body #main-wrapper main#main-content.home .slider_home {
    overflow: hidden;
  }
  html body #main-wrapper main#main-content.home .slider_home img {
    min-height: 500px;
    height: 500px;
    max-width: inherit;
    min-width: inherit;
    width: auto !important;
  }
  html body #main-wrapper main#main-content.home .slider_home .slide_home_content h2 {
    font-size: calc(30em/16) !important;
    padding: 0 60px;
  }
  html body #main-wrapper main#main-content.home .slider_home .slide_home_content h2::after {
    bottom: -15px;
  }
  html body #main-wrapper main#main-content.home .slider_home .slide_home_content h2 + span {
    font-size: calc(25em/16) !important;
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content.home .home_section .highlighted_home_content {
    padding: 0;
  }
  html body #main-wrapper main#main-content.home .home_section .list_home_content {
    text-align: center;
  }
  html body #main-wrapper main#main-content.home .home_section .list_home_content::before {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }
  html body #main-wrapper main#main-content.home .home_section .list_home_content.list_right::before {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }
  html body #main-wrapper main#main-content.home .home_section .list_home_content h2 {
    margin-top: 2em;
    text-align: center !important;
  }
  html body #main-wrapper main#main-content.home .home_section .list_home_content h2::after {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }
  html body #main-wrapper main#main-content.home .home_section .list_home_content p {
    text-align: center !important;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slick-arrow {
    top: 37.5%;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slick-arrow.slick-prev {
    top: 35%;
  }
  html body #main-wrapper main#main-content.home.not_logged .container-fluid .row.highlighted_slider_home .slider_home_slide .container {
    top: 38%;
  }
  html body #main-wrapper main#main-content.page .page-part:first-child .container {
    padding-top: 30px;
  }
  html body #main-wrapper main#main-content.page .page-part_content {
    padding: 0;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_illustration_cat {
    overflow: hidden;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_illustration_cat img {
    min-height: 100%;
    height: 100%;
    max-width: inherit;
    min-width: inherit;
    width: auto;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop {
    min-height: 200px;
    max-height: 250px;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop img {
    min-height: 100%;
    height: 100%;
    max-width: inherit;
    min-width: inherit;
    width: auto;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content {
    text-align: center;
    right: 0;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    height: 100%;
    max-height: 250px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content h2 {
    font-size: calc(24em/16);
    color: #ffffff;
    padding: 0 30px 1rem;
    -webkit-transform: translateY(85px);
    transform: translateY(85px);
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content span {
    font-size: calc(18em/16);
    display: block;
    -webkit-transform: translateY(95px);
    transform: translateY(95px);
  }
  html body #main-wrapper main#main-content.shop .products_list_bloc .container {
    padding: 0 15px;
  }
  html body #main-wrapper main#main-content.shop .products_list_bloc .container .products_list_title h2 {
    font-size: calc(24rem / 16);
  }
  html body #main-wrapper main#main-content.single-product .woocommerce {
    margin: 0;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce {
    padding-top: 0;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product {
    padding-top: 0;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-product-gallery {
    max-width: 100%;
    min-width: 100%;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary {
    padding-left: 15px;
    margin-top: 1em;
    max-width: 100%;
    min-width: 100%;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary h3 {
    margin: 1.5em 0;
    margin-bottom: 1.5em !important;
    font-size: 1em;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .woocommerce-product-details__short-description p {
    line-height: calc(25em/16);
    font-size: calc(14em/16);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity {
    max-height: 55px;
    min-height: 55px;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty {
    padding: calc(12em/18) calc(20em/18);
    padding-right: 3em;
    min-height: 55px;
    font-size: calc(14em/18);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty_btn {
    font-size: 0.6em;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .btn {
    font-size: calc(14em/18);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .category_products {
    font-size: calc(14em/18);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-description {
    padding: 30px 15px;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-tabs .wc-tabs {
    border-bottom: none;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-tabs .wc-tabs > li {
    width: 100%;
    text-align: center;
    float: inherit;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-tabs .wc-tabs > li a {
    border: 1px solid #BEBEBE;
    font-size: calc(16em/18);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-tabs .wc-tabs > li + li {
    margin-top: 1em;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-tabs .wc-tabs > li.active {
    border-bottom: 1px solid #BEBEBE;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .woocommerce-tabs .woocommerce-Tabs-panel {
    font-size: calc(14em/18);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product ul.products {
    padding: 0 15px;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product ul.products .swiper-container {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content.single-product .related_products h2 {
    font-size: calc(32em/18);
  }
  html body #main-wrapper main#main-content.single-product .related_products .related {
    padding: 0 15px;
  }
  html body #main-wrapper main#main-content.single-product .related_products .related .swiper-container {
    padding-bottom: 0;
  }
  html body #main-wrapper main#main-content .product_bloc {
    padding: 0 !important;
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_avaibility_content {
    position: relative;
    opacity: 1;
    bottom: 0;
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_avaibility_content p {
    font-size: calc(14em/16);
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_bloc_content {
    right: 15px;
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_bloc_content h3 {
    font-size: calc(30em/16);
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_bloc_content span {
    font-size: calc(25em/16);
  }
  html body #main-wrapper main#main-content .woo_messages {
    padding: 0;
    padding-bottom: calc(25em/18);
  }
  html body #main-wrapper main#main-content .woocommerce {
    padding: calc(30em/18) 0;
    border-bottom: 10px solid #287FC2;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_messages a {
    padding-left: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .checkout_highlighted h1 {
    font-size: calc(35em/18);
  }
  html body #main-wrapper main#main-content .woocommerce form .form-row {
    width: 100% !important;
  }
  html body #main-wrapper main#main-content .woocommerce form .form-row.form-row-first, html body #main-wrapper main#main-content .woocommerce form .form-row.form-row-last {
    width: 100%;
  }
  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: 3px;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-shipping-fields h3 input:after,
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part .woocommerce-additional-fields h3 input:after {
    left: 6px;
    top: 6px;
    font-size: 0.8em;
  }
  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: 1em;
    line-height: 1.6;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part {
    padding: 45px 0 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .checkout-form-part + .checkout-form-part .woocommerce-checkout-review-order {
    padding: calc(25em/18) 0;
  }
  html body #main-wrapper main#main-content .woocommerce form .input-text {
    font-size: calc(14em / 16) !important;
  }
  html body #main-wrapper main#main-content .woocommerce table.woocommerce-checkout-review-order-table tfoot tr th {
    padding-left: 1em;
    max-width: 50%;
    width: 50%;
  }
  html body #main-wrapper main#main-content .woocommerce table.shop_table_responsive tr td:before {
    color: #3E3E3E;
    text-transform: uppercase;
    margin-top: 1em;
    font-family: "GothamBold", sans-serif;
  }
  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 td.product-quantity:before, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr.woocommerce-cart-form__cart-item td.product-quantity:before {
    margin-top: 1.8em;
  }
  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: calc(10em/16) 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;
    left: 60px;
  }
  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: 20px;
  }
  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: 20px;
  }
  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.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 #EF6E7E;
  }
  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: #EEEEEE;
  }
  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: #287FC2;
    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(10em /18);
    color: #ffffff;
    right: 7px;
    top: 8px;
  }
  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: #EEEEEE;
  }
  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 1em;
  }
  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:not(.cart_item) td.actions .btn, html body #main-wrapper main#main-content .woocommerce table.shop_table.shop_table_cart_total tbody tr:not(.cart_item) td.actions .btn {
    width: 100%;
    font-size: calc(14em/16);
  }
  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: 40% !important;
    width: 40% !important;
    padding: 0.5em;
    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;
    padding: 0.5em;
    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 {
    font-size: 1em;
    margin-top: 1em;
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cart_totals {
    width: 100%;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .wc_payment_method #payment_method_stripe {
    -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 li {
    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: 3px;
  }
  html body #main-wrapper main#main-content .woocommerce .woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input:after {
    top: 7px;
    left: 6px;
    font-size: 0.8em;
  }
  html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_img {
    padding: calc(32em/18) calc(15em/18) 0;
  }
  html body #main-wrapper main#main-content .woocommerce .cart-collaterals .cross-sells .products .article_product .bloc_article_content h4 {
    font-size: 1em;
  }
  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: calc(25em/18);
  }
  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%;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation {
    border-left: none;
    border-right: none;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-navigation li a {
    font-size: 1em;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content {
    border: none;
    padding: 30px 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders {
    margin-bottom: 0;
    border-radius: 0;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-MyAccount-content table.shop_table.woocommerce-MyAccount-orders .order + .order td {
    border-top: none !important;
  }
  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 #EF6E7E;
  }
  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: 55%;
    max-width: 55%;
    padding: 1em;
    background-color: #EEEEEE;
  }
  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: -75%;
    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: 15px;
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details table tbody tr td {
    font-size: calc(14em/16);
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-order-details .order-again a {
    font-size: calc(14em/16);
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount form .woocommerce-address-fields .btn {
    width: 100%;
  }
  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/16);
  }
  html body #main-wrapper main#main-content .woocommerce .woo_myaccount .woocommerce-EditAccountForm fieldset {
    padding: calc(30em/16) calc(15em/16);
  }
  html body #main-wrapper main#main-content .woocommerce .my_account_h1 {
    font-size: calc(40em / 18);
  }
  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 .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 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: 10px;
  }
  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_bandeau .container .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  html body #main-wrapper .footer_bandeau .container .row .bandeau_content {
    padding: 1em 15px;
  }
  html body #main-wrapper .footer_bandeau .container .row .bandeau_content svg {
    max-height: 50px;
  }
  html body #main-wrapper .footer_bandeau .container .row .bandeau_content + .bandeau_content {
    padding-top: 2em;
  }
  html body #main-wrapper #main-footer .navbar .container .row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  html body #main-wrapper #main-footer .navbar .container .row .footer_section {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  html body #main-wrapper #main-footer .navbar .container .row .footer_section.footer_amicale {
    padding: 1em 0 2.5em;
  }
  html body #main-wrapper #main-footer .navbar .container .row .footer_section.footer_logo {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* IPHONE 5 paysage */
@media only screen and (min-width: 550px) and (max-height: 340px) {
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li {
    padding: 0.5rem 0 !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li a {
    font-size: 1rem !important;
  }
  html body #main-wrapper #main-header nav .container-fluid.navbar_logged #responsive-nav ul li:first-child {
    margin-top: 0rem !important;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  html body #main-wrapper main#main-content.home.not_logged .slider_home .container-fluid {
    max-height: inherit !important;
  }
}

/* IPHONE Autres paysage */
/* IPHONE X paysage */
@media only screen and (min-width: 751px) and (max-width: 850px) and (max-height: 836px) {
  html {
    margin-top: 0 !important;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop {
    min-height: 200px;
    max-height: 250px;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop img {
    min-height: 100%;
    height: 100%;
    max-width: inherit;
    min-width: inherit;
    width: auto;
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content {
    text-align: center;
    right: 0;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    height: 100%;
    max-height: 250px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content h2 {
    font-size: calc(25em/16);
    color: #ffffff;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }
  html body #main-wrapper main#main-content.shop #highlighted .container .row .highlighted_slider_shop .slide_shop .slide_shop_content span {
    font-size: calc(20em/16);
    display: block;
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_avaibility_content {
    position: relative;
    opacity: 1;
    bottom: 0;
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_avaibility_content p {
    font-size: calc(14em/16);
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_bloc_content {
    right: 15px;
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_bloc_content h3 {
    font-size: calc(30em/16);
  }
  html body #main-wrapper main#main-content .product_bloc .product_bloc_single .product_bloc_content span {
    font-size: calc(25em/16);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty {
    min-width: calc(80em/16);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .btn {
    padding: 0.5rem 1rem;
  }
  html body #main-wrapper main#main-content.single-product .related_products .products h3 {
    font-size: calc(25em/16) !important;
  }
  html body #main-wrapper main#main-content.single-product .related_products .products del .woocommerce-Price-amount, html body #main-wrapper main#main-content.single-product .related_products .products ins .woocommerce-Price-amount {
    font-size: 1em !important;
  }
}

/* Medium devices (desktops, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  html {
    margin-top: 0 !important;
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .quantity .qty {
    min-width: calc(80em/16);
  }
  html body #main-wrapper main#main-content.single-product .page-part__content.woocommerce .product .entry-summary .cart .btn {
    padding: 0.5rem 1rem;
  }
  html body #main-wrapper main#main-content.single-product .related_products .products h3 {
    font-size: calc(25em/16) !important;
  }
  html body #main-wrapper main#main-content.single-product .related_products .products del .woocommerce-Price-amount, html body #main-wrapper main#main-content.single-product .related_products .products ins .woocommerce-Price-amount {
    font-size: 1em !important;
  }
}

/* IPAD Paysage  */
/* IPAD Pro Portrait  */
/* 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-content #highlighted .img_background img {
    width: 100%;
    height: auto;
  }
}

/* Large devices (desktops, 993px and up) */
/* Very Large devices (desktops, 2000px and up) */
/*# sourceMappingURL=styles.css.map */