@charset "UTF-8";
/*****************
CONFIGURATION
 ******************/
@import url("https://use.typekit.net/jxe7ilg.css");
/*********************************************
  BREAKPOINTS
**********************************************/
/*********************************************
  CONFIG
*********************************************/
/*********************************************
  BURGER MENU
*********************************************/
.burgerContainer {
  display: none !important;
}
@media (max-width: 900px) {
  .burgerContainer {
    display: block !important;
  }
}
.burgerContainer .outer-menu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.burgerContainer .checkbox-toggle:checked {
  left: 10px;
}
.burgerContainer .checkbox-toggle:checked + .hamburger {
  left: 10px;
  top: 5px;
}
.burgerContainer #_desktop_top_menu {
  display: flex;
  min-height: 0;
  background: none;
}
.burgerContainer #_desktop_top_menu:before, .burgerContainer #_desktop_top_menu:after {
  display: none;
}
.burgerContainer #_desktop_top_menu svg {
  display: none;
}
.burgerContainer #_desktop_top_menu > ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.burgerContainer #_desktop_top_menu > ul > li {
  width: 100%;
  display: block;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.burgerContainer #_desktop_top_menu > ul > li:hover {
  border-bottom: none !important;
}
.burgerContainer #_desktop_top_menu > ul > li:after {
  display: none;
}
.burgerContainer #_desktop_top_menu > ul > li > a, .burgerContainer #_desktop_top_menu > ul > li > span {
  font-size: 1.1rem !important;
  font-weight: bold;
  padding: 12px 20px !important;
  border: none !important;
}
.burgerContainer #_desktop_top_menu > ul > li > a:hover, .burgerContainer #_desktop_top_menu > ul > li > span:hover {
  color: #B25821 !important;
}

/*********************************************
  MAIN LIB
*********************************************/
.outer-menu {
  position: fixed;
  right: 1em;
  top: 1em;
  z-index: 1;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  right: 1em;
  z-index: 2;
  cursor: pointer;
  width: 48px;
  height: 48px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked {
  position: fixed;
}
.outer-menu .checkbox-toggle:checked + .hamburger {
  position: fixed;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
  background: #000000;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before, .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
  background: #000000;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
  overflow: hidden;
}
.outer-menu .checkbox-toggle:checked ~ .menu > .containerMenu {
  transform: translateX(0);
  transition-duration: 1s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > .containerMenu > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  background: transparent;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #000000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before, .outer-menu .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 8px;
}
.outer-menu .menu {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu .containerMenu {
  width: 100vw;
  height: 100vh;
  color: #000000;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0px;
  flex: none;
  transform: translateX(100%);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.outer-menu .menu .containerMenu > .containerMenuElement {
  overflow-y: auto;
  max-height: 85vh;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 1;
  transition: opacity 0.4s ease;
  overflow: visible;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}
@media all and (max-height: 600px) {
  .outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li {
    margin: 0.2em 1em;
  }
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li.current {
  background: none !important;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1rem;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a:after {
  display: none;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a:before {
  display: none;
}
.outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a:hover, .outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a:focus, .outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a.currentpage, .outer-menu .menu .containerMenu > .containerMenuElement > div > ul > li > a.activeparent {
  color: #ffffff !important;
}
.outer-menu .menu .containerMenu .sticker {
  display: block !important;
  position: relative !important;
  top: 0 !important;
}
.outer-menu .menu .containerMenu .sticker a {
  border-radius: 50px !important;
  margin: auto;
  display: inline-block !important;
  width: auto;
  vertical-align: middle;
}
.outer-menu .menu .containerMenu .sticker a span {
  display: inline !important;
}

/*********************************************
  WYSIWYG
*********************************************/
.wysiwyg {
  width: 100%;
}
.wysiwyg strong, .wysiwyg em, .wysiwyg i, .wysiwyg b {
  display: inline;
  color: inherit;
}
.wysiwyg strong, .wysiwyg b {
  font-weight: bold;
  color: inherit;
}
.wysiwyg strong *, .wysiwyg b * {
  font-weight: bold;
}
.wysiwyg em {
  color: inherit;
  font-style: italic;
}
.wysiwyg sup {
  color: inherit;
  font-size: 0.75rem;
  vertical-align: super;
}
.wysiwyg ul, .wysiwyg ol {
  margin-bottom: 1em;
  margin-left: 15px;
  color: inherit;
}
.wysiwyg ul li, .wysiwyg ol li {
  margin-bottom: 10px;
}
.wysiwyg ul strong, .wysiwyg ul em, .wysiwyg ul i, .wysiwyg ul b, .wysiwyg ol strong, .wysiwyg ol em, .wysiwyg ol i, .wysiwyg ol b {
  display: inline;
  color: inherit;
}
.wysiwyg ul {
  list-style: none;
}
.wysiwyg ul li:before {
  content: "›";
  font-weight: bold;
  display: inline-block;
  font-size: 1.272rem;
  margin-left: -0.8rem;
  color: inherit;
  position: absolute;
  left: 0;
  top: -2px;
  pointer-events: none;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg p {
  font-family: "din-2014", sans-serif;
  margin-bottom: 1em;
  color: inherit;
}
.wysiwyg p:last-child {
  margin-bottom: 0;
}
.wysiwyg a {
  color: #8F181B;
}
.wysiwyg img {
  display: inline;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  color: #0D0D0D;
  font-weight: bold;
  text-transform: none;
  font-family: "din-2014", sans-serif;
}
.wysiwyg p, .wysiwyg li, .wysiwyg td, .wysiwyg th, .wysiwyg label, .wysiwyg em {
  font-size: 1rem;
}
.wysiwyg .slick-dots li:before {
  display: none;
}
.wysiwyg table {
  width: 100% !important;
}
.wysiwyg table tr {
  background: #0D0D0D;
}
.wysiwyg table tr:nth-child(even) {
  background: #808080;
}
.wysiwyg table tr td {
  padding: 0.3em 0.6em;
}
.wysiwyg iframe {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 600px) {
  .wysiwyg iframe {
    min-height: 250px;
  }
}
.wysiwyg--white {
  color: #0D0D0D !important;
}
.wysiwyg--white * {
  color: #0D0D0D !important;
}
.wysiwyg--white i, .wysiwyg--white em, .wysiwyg--white b, .wysiwyg--white strong {
  color: #0D0D0D !important;
}
.wysiwyg--white a {
  color: #8F181B !important;
}
.wysiwyg--white ul li:before, .wysiwyg--white ol li:before {
  background: none !important;
}
.wysiwyg--white table tr {
  background: none !important;
}
.wysiwyg--white table td, .wysiwyg--white table th {
  color: #0D0D0D;
  border: 1px solid rgba(13, 13, 13, 0.3);
}

/*********************************************
  BUTTONS
*********************************************/
a {
  color: #ACACAC;
}
a:hover {
  color: #ACACAC;
}

.button, #cms #content input[type=submit], #checkout .modal-content .js-modal-content .btn.btn-secondary, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a, .cart-summary .block-promo .cart-voucher .promo-code form button {
  text-decoration: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  appearance: none;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  padding: 14px 22px;
  color: #ffffff;
  background-color: #B25821;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.button span, #cms #content input[type=submit] span, #checkout .modal-content .js-modal-content .btn.btn-secondary span, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button span, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a span, .cart-summary .block-promo .cart-voucher .promo-code form button span {
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: inherit;
}
.button:focus, #cms #content input[type=submit]:focus, #checkout .modal-content .js-modal-content .btn.btn-secondary:focus, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button:focus, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:focus, .cart-summary .block-promo .cart-voucher .promo-code form button:focus, .button:hover, #cms #content input[type=submit]:hover, #checkout .modal-content .js-modal-content .btn.btn-secondary:hover, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button:hover, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:hover, .cart-summary .block-promo .cart-voucher .promo-code form button:hover {
  outline: none;
  color: #ffffff;
  background-color: #5c2d11;
}
.button:active, #cms #content input[type=submit]:active, #checkout .modal-content .js-modal-content .btn.btn-secondary:active, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button:active, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:active, .cart-summary .block-promo .cart-voucher .promo-code form button:active {
  outline: none;
  color: #ffffff;
  background-color: #5c2d11;
}
.button.disabled, #cms #content input.disabled[type=submit], #checkout .modal-content .js-modal-content .disabled.btn.btn-secondary, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.disabled, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.disabled, .cart-summary .block-promo .cart-voucher .promo-code form button.disabled, .button:disabled, #cms #content input[type=submit]:disabled, #checkout .modal-content .js-modal-content .btn.btn-secondary:disabled, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button:disabled, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:disabled, .cart-summary .block-promo .cart-voucher .promo-code form button:disabled {
  opacity: 0.5;
}
.button.disabled:focus, #cms #content input.disabled[type=submit]:focus, #checkout .modal-content .js-modal-content .disabled.btn.btn-secondary:focus, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.disabled:focus, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.disabled:focus, .cart-summary .block-promo .cart-voucher .promo-code form button.disabled:focus, .button.disabled:hover, #cms #content input.disabled[type=submit]:hover, #checkout .modal-content .js-modal-content .disabled.btn.btn-secondary:hover, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.disabled:hover, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.disabled:hover, .cart-summary .block-promo .cart-voucher .promo-code form button.disabled:hover, .button:disabled:focus, #cms #content input[type=submit]:disabled:focus, #checkout .modal-content .js-modal-content .btn.btn-secondary:disabled:focus, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button:disabled:focus, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:disabled:focus, .cart-summary .block-promo .cart-voucher .promo-code form button:disabled:focus, .button:disabled:hover, #cms #content input[type=submit]:disabled:hover, #checkout .modal-content .js-modal-content .btn.btn-secondary:disabled:hover, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button:disabled:hover, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:disabled:hover, .cart-summary .block-promo .cart-voucher .promo-code form button:disabled:hover {
  cursor: not-allowed;
  opacity: 0.5;
  color: inherit;
  background-color: inherit;
}
.button.add-to-cart, #cms #content input.add-to-cart[type=submit], #checkout .modal-content .js-modal-content .add-to-cart.btn.btn-secondary, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.add-to-cart, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.add-to-cart, .cart-summary .block-promo .cart-voucher .promo-code form button.add-to-cart {
  padding: 17px 22px;
}
.button.add-to-cart svg, #cms #content input.add-to-cart[type=submit] svg, #checkout .modal-content .js-modal-content .add-to-cart.btn.btn-secondary svg, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.add-to-cart svg, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.add-to-cart svg, .cart-summary .block-promo .cart-voucher .promo-code form button.add-to-cart svg {
  width: 14px;
  height: 16px;
  margin-left: 10px;
  fill: #0D0D0D;
}
.button.add-to-cart:focus svg, #cms #content input.add-to-cart[type=submit]:focus svg, #checkout .modal-content .js-modal-content .add-to-cart.btn.btn-secondary:focus svg, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.add-to-cart:focus svg, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.add-to-cart:focus svg, .cart-summary .block-promo .cart-voucher .promo-code form button.add-to-cart:focus svg, .button.add-to-cart:hover svg, #cms #content input.add-to-cart[type=submit]:hover svg, #checkout .modal-content .js-modal-content .add-to-cart.btn.btn-secondary:hover svg, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.add-to-cart:hover svg, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.add-to-cart:hover svg, .cart-summary .block-promo .cart-voucher .promo-code form button.add-to-cart:hover svg {
  fill: #B25821;
}
.button i.material-icons, #cms #content input[type=submit] i.material-icons, #checkout .modal-content .js-modal-content .btn.btn-secondary i.material-icons, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button i.material-icons, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a i.material-icons, .cart-summary .block-promo .cart-voucher .promo-code form button i.material-icons {
  font-size: 1rem;
}
.button--gray {
  color: #8F181B;
  background-color: #F2F2ED;
}
.button--gray:focus, .button--gray:hover {
  color: #8F181B !important;
  background-color: #c7c7b2;
}
.button--white {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.button--white:focus, .button--white:hover {
  color: #B25821 !important;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.button--outline, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a {
  border: 1px solid #B25821;
  background-color: #F2F2ED;
  color: #0D0D0D;
}
.button--outline:focus, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:focus, .button--outline:hover, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a:hover {
  color: #ffffff !important;
  background-color: #B25821;
  border: 1px solid #B25821;
}
.button--withicon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.button--withicon svg {
  width: 0.887rem;
  height: 0.887rem;
  fill: #8F181B;
  transform: scale(1.5);
}
.button--withicon:focus svg, .button--withicon:hover svg {
  fill: #B25821;
}
.button--text {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  padding: 0;
  border-radius: 0;
  text-transform: uppercase;
  box-shadow: none;
  min-width: 0;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  color: #B25821;
  background: none;
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.button--text:after {
  content: "";
  height: 1px;
  background-color: #B25821;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  transition: left 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), right 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.button--text:hover {
  background: none !important;
  text-decoration: none !important;
}
.button--text:hover:after {
  left: 0;
  right: 0;
}
.button--text:focus, .button--text:hover {
  color: #B25821;
}
.button--green {
  font-weight: bold;
  color: #ffffff;
  background-color: #84C393;
  border: 1px solid #84C393;
  box-shadow: none;
  border-radius: 0;
}
.button--green:focus, .button--green:hover {
  color: #84C393;
  background-color: #ffffff;
  border: 1px solid #84C393;
}
.button--green:focus span, .button--green:hover span {
  color: #84C393 !important;
}
.button--light {
  font-weight: bold;
  color: #ffffff !important;
  background-color: #D9BBBB;
  border: 1px solid #D9BBBB;
  box-shadow: none;
}
.button--light:focus, .button--light:hover {
  color: #D9BBBB !important;
  background-color: #ffffff;
  border: 1px solid #D9BBBB;
}
.button--light:focus span, .button--light:hover span {
  color: #D9BBBB !important;
}
.button--small, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button, #checkout #content .cart-grid-body .checkout-step .nav .nav-item a, .cart-summary .block-promo .cart-voucher .promo-code form button {
  padding: 10px 28px;
  font-size: 0.887rem;
  text-transform: uppercase;
}
.button--smaller {
  padding: 10px 12px;
  min-width: 100px;
  font-size: 0.887rem;
  box-shadow: none;
}
@media screen and (max-width: 1000px) {
  .button--smaller {
    padding: 8px 10px;
  }
}

button {
  border: none;
  outline: none;
  appearance: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
button:focus, button:hover, button:active {
  outline: none;
  cursor: pointer;
}

a {
  cursor: pointer;
}
a:focus, a:hover {
  outline: none;
  cursor: pointer;
}

.btn.btn-primary {
  display: inline-block !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  font-size: 1rem;
  padding: 14px 22px;
  border: 1px solid #B25821;
  background-color: #F2F2ED;
  color: #0D0D0D;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.btn-primary i {
  color: #B25821;
  font-size: 1.272rem;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.btn-primary svg {
  fill: #0D0D0D;
  font-size: 1rem;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  transition: fill 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.btn-primary:focus, .btn.btn-primary:hover {
  color: #ffffff !important;
  background-color: #B25821;
  border: 1px solid #B25821;
}
.btn.btn-primary:focus i, .btn.btn-primary:hover i {
  color: #ffffff;
}
.btn.btn-primary:focus svg, .btn.btn-primary:hover svg {
  fill: #ffffff;
}

.btn.btn-secondary {
  display: inline-block !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  text-align: center;
  box-shadow: none;
  padding: 14px 22px;
  color: #8F181B;
  background-color: #F2F2ED;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.btn-secondary:focus, .btn.btn-secondary:hover {
  color: #8F181B !important;
  background-color: #c7c7b2;
}
.btn.btn-secondary:focus i, .btn.btn-secondary:hover i {
  color: #B25821 !important;
}
.btn.btn-secondary:focus svg, .btn.btn-secondary:hover svg {
  fill: #B25821;
}
.btn.btn-secondary i {
  color: #ffffff;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.btn-secondary svg {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  fill: #ffffff;
  transition: fill 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disabled, button:disabled, button[disabled] {
  cursor: not-allowed !important;
  opacity: 0.5;
}
.disabled:hover, button:disabled:hover, button[disabled]:hover {
  opacity: 0.5;
}

/******************************************************************************************
  COPY PASTE
******************************************************************************************/
/*du code, car ne fonctionne pas dans npm*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  transition: transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  transform: translateY(0);
}

.cc-revoke:hover {
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}

.cc-revoke, .cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active, .cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}

.cc-close:focus, .cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: flex;
  align-items: center;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-revoke, .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner, .cc-window.cc-floating, .cc-window.cc-left, .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

/******************************************************************************************
  COOKIE CONSENT - ME
******************************************************************************************/
.cc-window .cc-link {
  color: #B25821 !important;
  text-decoration: none !important;
}

/******************************************************************************************
  LEAFLET
******************************************************************************************/
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/******************************************************************************************
  LEAFLET CUSTOM
******************************************************************************************/
.leaflet-control-container {
  height: 100%;
}

.leaflet-popup-content {
  color: #B25821;
  max-width: 300px;
  text-align: center;
}
.leaflet-popup-content strong {
  font-size: 1rem;
  text-transform: uppercase;
}
.leaflet-popup-content img {
  max-width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

Map {
  background-color: #e0e0e0;
}

#countries {
  polygon-fill: #ffce0c;
}
#countries ::outline {
  line-color: #000000;
  line-width: 2;
  line-join: round;
}

/******************************************************************************************
  MAGNIFIC POPUP
******************************************************************************************/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/******************************************************************************************
  AOS
******************************************************************************************/
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media screen {
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  html:not(.no-js) [data-aos=fade-up] {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down] {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-right] {
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-left] {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-up-right] {
    -webkit-transform: translate3d(-100px, 100px, 0);
    transform: translate3d(-100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-up-left] {
    -webkit-transform: translate3d(100px, 100px, 0);
    transform: translate3d(100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-right] {
    -webkit-transform: translate3d(-100px, -100px, 0);
    transform: translate3d(-100px, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-left] {
    -webkit-transform: translate3d(100px, -100px, 0);
    transform: translate3d(100px, -100px, 0);
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
  }
  html:not(.no-js) [data-aos=zoom-in] {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-up] {
    -webkit-transform: translate3d(0, 100px, 0) scale(0.6);
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-down] {
    -webkit-transform: translate3d(0, -100px, 0) scale(0.6);
    transform: translate3d(0, -100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-right] {
    -webkit-transform: translate3d(-100px, 0, 0) scale(0.6);
    transform: translate3d(-100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-left] {
    -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
    transform: translate3d(100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-out] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-up] {
    -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
    transform: translate3d(0, 100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-down] {
    -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
    transform: translate3d(0, -100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-right] {
    -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
    transform: translate3d(-100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-left] {
    -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
    transform: translate3d(100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    visibility: hidden;
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  html:not(.no-js) [data-aos=slide-up] {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  html:not(.no-js) [data-aos=slide-down] {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  html:not(.no-js) [data-aos=slide-right] {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-left] {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  html:not(.no-js) [data-aos=flip-left] {
    -webkit-transform: perspective(2500px) rotateY(-100deg);
    transform: perspective(2500px) rotateY(-100deg);
  }
  html:not(.no-js) [data-aos=flip-left].aos-animate {
    -webkit-transform: perspective(2500px) rotateY(0);
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-right] {
    -webkit-transform: perspective(2500px) rotateY(100deg);
    transform: perspective(2500px) rotateY(100deg);
  }
  html:not(.no-js) [data-aos=flip-right].aos-animate {
    -webkit-transform: perspective(2500px) rotateY(0);
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-up] {
    -webkit-transform: perspective(2500px) rotateX(-100deg);
    transform: perspective(2500px) rotateX(-100deg);
  }
  html:not(.no-js) [data-aos=flip-up].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
  }
  html:not(.no-js) [data-aos=flip-down] {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
  }
  html:not(.no-js) [data-aos=flip-down].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
  }
}
/*********************************************
  GOOGLE MAP - me
*********************************************/
.gm-style .gm-style-iw.gm-style-iw-c img {
  display: block;
  width: 120px;
  margin: 20px auto;
}
@media screen and (max-width: 1000px) {
  .gm-style .gm-style-iw.gm-style-iw-c img {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.gm-style .paragraph, .gm-style .googleLinks {
  text-align: center;
  color: #0D0D0D;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.gm-style .paragraph strong, .gm-style .googleLinks strong {
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
}
.gm-style .paragraph a, .gm-style .googleLinks a {
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  color: #B25821;
}
.gm-style .paragraph {
  margin-bottom: 10px;
}
.gm-style .googleLinks:last-child {
  padding-bottom: 1em;
}

/*****************
PANIER
 ******************/
#cart .card {
  background-color: #ffffff;
  border-radius: 20px;
}
#cart .mainWrapper__content {
  position: relative;
}
#cart #wrapper .breadcrumb {
  display: none;
}
@media (max-width: 768px) {
  #cart #wrapper .breadcrumb {
    display: none !important;
  }
}
#cart #content a {
  color: #B25821;
}
#cart #main {
  padding-top: 0;
  padding-bottom: 0;
}
#cart .featured-products {
  padding-top: 20px;
  padding-bottom: 20px;
}
#cart .featured-products .products-section-title {
  display: block;
}
#cart .featured-products .buttonContainer {
  text-align: center;
}
#cart .featured-products .all-product-link {
  display: none;
}
#cart .cart-grid {
  margin-bottom: 0 !important;
  display: grid;
  align-items: flex-start;
  grid-gap: 40px;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 1200px) {
  #cart .cart-grid {
    grid-template-columns: 1fr;
  }
}
#cart .cart-grid .separator {
  border: none;
}
#cart .cart-grid .cart-grid-body {
  position: relative;
  border: none;
  padding: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  #cart .cart-grid .cart-grid-body {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body {
    gap: 0;
  }
}
#cart .cart-grid .cart-grid-body > .card {
  position: relative;
  padding: 0;
}
#cart .cart-grid .cart-grid-body > .card > .card-block {
  display: none;
}
#cart .cart-grid .cart-grid-body .card-block {
  padding: 0;
}
#cart .cart-grid .cart-grid-body .cart-overview {
  padding: 0;
  margin-bottom: 1em;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item {
  margin: 0;
  padding: 20px 0px;
  border: none;
  border-bottom: 1px solid #DDDDDD;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item:last-child {
  border-bottom: none;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item a:hover {
  color: #B25821;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .product-image img {
  border-radius: 15px;
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .col-md-10.col-xs-6 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .col-md-10.col-xs-6 .row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid .col-md-10.col-xs-6 .row .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-left {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-left img {
    margin-left: auto;
    margin-right: auto;
  }
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-body {
  margin-bottom: 0 !important;
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-body {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-body .label {
    text-align: center;
  }
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-body > a {
  color: #B25821;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-body > a:hover {
  color: #B25821;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-right {
  margin-top: 10px;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-grid-right .product-price {
  font-weight: bold;
  font-weight: 1.1rem;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info.product-price {
  display: flex;
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info.product-price {
    justify-content: center;
  }
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info.taille span {
  color: #ACACAC;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info span {
  font-weight: normal;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info a {
  font-size: 1.272rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info .current-price {
  font-size: 1rem;
  font-weight: normal;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info .current-price * {
  font-size: 1rem;
  font-weight: normal;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .product-line-info .discount {
  display: none;
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .input-group.bootstrap-touchspin {
  display: flex;
  position: relative;
  left: -20px;
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .input-group.bootstrap-touchspin {
    left: inherit;
  }
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .input-group.bootstrap-touchspin * {
  background: none;
  border-color: #DDDDDD;
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .col-md-2.col-xs-2.text-xs-right {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
#cart .cart-grid .cart-grid-body .cart-overview .cart-items .cart-item .remove-from-cart .material-icons {
  opacity: 0.8;
}
#cart .cart-grid .cart-grid-body .cart-overview .no-items {
  display: inline-block;
  padding: 1rem;
}
#cart .cart-grid .cart-grid-body > .label {
  margin-top: 1.5em;
  color: #0D0D0D;
  text-transform: none;
  font-size: 1rem;
  background: none !important;
  font-weight: bold;
}
#cart .cart-grid .cart-grid-body > .label span {
  font-size: 1rem;
  padding-right: 5px;
}
#cart .cart-grid .cart-grid-body > .label:hover {
  color: #B25821;
}
#cart .cart-grid .cart-grid-right {
  background: none;
  margin: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  #cart .cart-grid .cart-grid-right {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  #cart .cart-grid .cart-grid-right {
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
}
#cart .modal-backdrop {
  display: none !important;
}
#cart .modal.customization-modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#cart .modal.customization-modal.in {
  display: flex !important;
}
#cart .modal.customization-modal .modal-dialog {
  margin: 100px auto;
  padding: 0px 10px;
  width: 100%;
}
#cart .modal.customization-modal .modal-content .modal-body .product-customization-line .label {
  text-align: left;
}

/*****************
PANIER résumé (colonne de droite)
 ******************/
.cart-summary {
  position: relative;
  box-shadow: none;
  background: none;
  margin-bottom: 0;
  padding: 0px 20px;
  margin-top: 110px;
}
@media (max-width: 1200px) {
  .cart-summary {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .cart-summary {
    padding: 30px 20px;
  }
}
.cart-summary h2 {
  font-weight: bold;
  font-size: 1.272rem;
  margin-bottom: 16px;
}
.cart-summary > p {
  font-size: 0.887rem;
  font-weight: normal;
}
.cart-summary__title {
  font-weight: bold;
  font-size: 1.272rem;
  margin-bottom: 16px;
}
.cart-summary .cart-detailed-totals > .card-block {
  padding: 16px 0px;
}
.cart-summary .cart-detailed-totals > .card-block #cart-subtotal-shipping .value a:hover {
  color: #B25821;
}
.cart-summary .cart-detailed-totals .cart-detailed-totals-lines {
  padding: 16px 0px;
}
.cart-summary .cart-detailed-totals .cart-summary-line {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0.5em 0;
  margin-bottom: 0;
  background: none;
  /* Spécifique pour la livraison */
}
.cart-summary .cart-detailed-totals .cart-summary-line:last-child {
  border-bottom: none;
}
.cart-summary .cart-detailed-totals .cart-summary-line:after {
  display: none;
}
.cart-summary .cart-detailed-totals .cart-summary-line .label {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
}
.cart-summary .cart-detailed-totals .cart-summary-line .value {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  text-align: right;
}
.cart-summary .cart-detailed-totals .cart-summary-totals {
  padding: 16px 0px;
  border: none;
}
.cart-summary .cart-detailed-totals .cart-summary-totals .cart-summary-line {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cart-summary .cart-detailed-totals .cart-summary-totals .cart-total {
  background: none;
}
.cart-summary .block-promo .cart-voucher .promo-code-button {
  text-align: left;
}
.cart-summary .block-promo .cart-voucher .promo-code-button a {
  font-size: 1rem;
  text-transform: none;
  color: #B25821;
}
.cart-summary .block-promo .cart-voucher .promo-code-button a:hover {
  color: #B25821;
}
.cart-summary .block-promo .cart-voucher .cancel-promo {
  color: #B25821;
}
.cart-summary .block-promo .cart-voucher .cancel-promo:hover {
  color: #B25821;
}
.cart-summary .block-promo .cart-voucher .promo-code {
  margin-bottom: 1em;
}
.cart-summary .block-promo .cart-voucher .promo-code form {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.cart-summary .block-promo .cart-voucher .promo-code form input {
  width: calc(100% - 80px);
  outline: none;
  border: 1px solid #DDDDDD;
  background: none;
}
.cart-summary .block-promo .cart-voucher .promo-code form button {
  min-width: 0;
  width: 80px;
  padding: 10px;
  height: 2.5rem;
  margin-top: 0;
  margin-left: -1px;
  margin-right: 0;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  border: none;
  background-color: #B25821;
  font-family: "din-2014", sans-serif;
  text-transform: none !important;
}
.cart-summary .block-promo .cart-voucher .promo-code form button span {
  font-size: 0.887rem;
  background-color: #d86e2e;
  font-family: "din-2014", sans-serif;
}
.cart-summary .block-promo .cart-voucher .promo-code .alert-danger {
  background: #F23838;
  border: none;
}
.cart-summary .block-promo .cart-voucher .promo-highlighted {
  display: none;
}
.cart-summary .block-promo .cart-voucher .promo-discounts {
  margin-bottom: 1em;
}
.cart-summary .block-promo .cart-voucher .promo-discounts .label {
  font-weight: 200;
}
.cart-summary .block-promo .cart-voucher .promo-discounts .label .code {
  font-weight: 400;
  cursor: pointer;
}
.cart-summary .block-promo .cart-voucher .promo-name {
  padding-left: 0;
  padding-right: 0;
}
.cart-summary .block-promo .cart-voucher .promo-name .cart-summary-line .float-xs-right > span {
  font-weight: bold;
}
.cart-summary .block-promo .cart-voucher .promo-name .promoLine {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 1.2em;
}
.cart-summary .block-promo .cart-voucher .promo-name .promoLine .label {
  font-size: 0.887rem;
  font-weight: 300;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.cart-summary .block-promo .cart-voucher .promo-name .promoLine .label a {
  padding-left: 5px;
}
.cart-summary .block-promo .cart-voucher .promo-name .promoLine .label a svg {
  width: 1.2em;
  height: 1.2em;
  fill: #0D0D0D;
}
.cart-summary .block-promo .cart-voucher .promo-name .promoLine .value {
  font-size: 0.887rem;
  font-weight: 300;
  text-align: right;
}
.cart-summary .block-promo .cart-voucher .promo-name .cart-summary-line .float-xs-right span {
  color: #F23838;
}
.cart-summary .cart-detailed-actions {
  padding: 0;
  padding-bottom: 16px;
}
.cart-summary .cart-detailed-actions .text-sm-center {
  text-align: center;
}
.cart-summary .cart-detailed-actions .text-sm-center .btn.disabled {
  opacity: 0.5;
}
.cart-summary .checkout .btn.disabled {
  opacity: 0.5;
}

/*****************
POPUP AJOUT AU PANIER
 ******************/
#blockcart-modal .modal-content, #blockcart-modal .modal-header, #blockcart-modal .modal-body {
  background: #F2F2ED;
}
#blockcart-modal .modal-content {
  border: none;
  border-radius: 0;
  overflow: hidden;
}
#blockcart-modal .modal-title {
  color: #B25821;
  font-size: 1.272rem;
  font-weight: bold;
  font-family: "din-2014", sans-serif;
  max-width: 95%;
  text-align: center !important;
}
#blockcart-modal .modal-title i {
  margin-right: 8px;
}
#blockcart-modal .modal-body {
  padding: 30px 20px;
}
@media (max-width: 600px) {
  #blockcart-modal .modal-body {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#blockcart-modal .modal-body .divide-right {
  border: none;
}
@media (max-width: 600px) {
  #blockcart-modal .modal-body .divide-right .row > .col-md-6 {
    padding: 10px;
    padding-bottom: 10px;
  }
}
#blockcart-modal .modal-body .divide-right .row > .col-md-6 .product-image {
  max-width: 100%;
  border-radius: 20px;
}
@media (max-width: 768px) {
  #blockcart-modal .modal-body .divide-right .row > .col-md-6 .product-image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
#blockcart-modal .modal-body .divide-right .row .col-md-6 .product-name {
  color: #0D0D0D;
  font-size: 1rem;
}
#blockcart-modal .modal-body .divide-right .row .col-md-6 span {
  font-size: 0.887rem;
  font-weight: 300;
  color: #ACACAC;
}
#blockcart-modal .modal-body .divide-right .row .col-md-6 span strong {
  display: inline;
  font-weight: normal;
  color: #ACACAC;
}
#blockcart-modal .modal-body .cart-content {
  padding-left: 0;
}
@media (max-width: 768px) {
  #blockcart-modal .modal-body .cart-content {
    padding-left: 0;
  }
}
#blockcart-modal .modal-body .product-name {
  font-size: 1.272rem;
}
@media (max-width: 900px) {
  #blockcart-modal .modal-body .product-name {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #blockcart-modal .modal-body .product-name {
    text-align: center;
  }
}
#blockcart-modal .modal-body .product-price {
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  font-size: 1rem;
}
#blockcart-modal .modal-body .cart-content .cart-products-count {
  font-size: 0.887rem;
}
#blockcart-modal .modal-body .cart-content .value {
  font-family: "din-2014", sans-serif;
}
#blockcart-modal .modal-body .cart-content .product-total {
  background-color: transparent;
}
#blockcart-modal .modal-body .cart-content .product-total .value {
  font-family: "din-2014", sans-serif;
}
@media (max-width: 768px) {
  #blockcart-modal .modal-body .cart-content .cart-content-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#blockcart-modal .modal-body .cart-content .cart-content-btn button.disabled, #blockcart-modal .modal-body .cart-content .cart-content-btn a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal.quickview .modal-body {
  padding: 30px;
}
@media (max-width: 600px) {
  .modal.quickview .modal-body > .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .modal.quickview .modal-body > .row > div {
    display: block !important;
    float: none !important;
    width: 100% !important;
  }
}

/*****************
CHECKOUT
 ******************/
#checkout .card {
  background-color: #ffffff;
  border-radius: 20px;
}
#checkout .mainWrapper__content {
  position: relative;
  padding-bottom: 100px;
}
#checkout #wrapper .breadcrumb {
  display: none;
}
#checkout footer#footer {
  position: relative;
  padding: 0;
  box-shadow: none;
  background: #F2F2ED;
}
#checkout #content {
  margin-bottom: 0 !important;
  display: grid;
  align-items: flex-start;
  gap: 40px;
  row-gap: 0;
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 1200px) {
  #checkout #content {
    grid-template-columns: 1fr;
  }
}
#checkout #content a {
  font-weight: 400;
  color: #B25821;
}
#checkout #content .maintitle--page, #checkout #content #authentication h1, #authentication #checkout #content h1, #checkout #content #registration h1, #registration #checkout #content h1, #checkout #content #password h1, #password #checkout #content h1, #checkout #content #pagenotfound .page-header h1, #pagenotfound .page-header #checkout #content h1, #checkout #content #search h1, #search #checkout #content h1, #checkout #content #cms .page-header h1, #cms .page-header #checkout #content h1, #checkout #content .myaccount #main .page-header h1, .myaccount #main .page-header #checkout #content h1, #checkout #content #category #content-wrapper > #main #js-product-list-header .block-category h1, #category #content-wrapper > #main #js-product-list-header .block-category #checkout #content h1, #checkout #content #cart h1, #cart #checkout #content h1 {
  grid-column: 1/3;
}
@media (max-width: 1200px) {
  #checkout #content .maintitle--page, #checkout #content #authentication h1, #authentication #checkout #content h1, #checkout #content #registration h1, #registration #checkout #content h1, #checkout #content #password h1, #password #checkout #content h1, #checkout #content #pagenotfound .page-header h1, #pagenotfound .page-header #checkout #content h1, #checkout #content #search h1, #search #checkout #content h1, #checkout #content #cms .page-header h1, #cms .page-header #checkout #content h1, #checkout #content .myaccount #main .page-header h1, .myaccount #main .page-header #checkout #content h1, #checkout #content #category #content-wrapper > #main #js-product-list-header .block-category h1, #category #content-wrapper > #main #js-product-list-header .block-category #checkout #content h1, #checkout #content #cart h1, #cart #checkout #content h1 {
    grid-column: inherit;
  }
}
#checkout #content .cart-grid-body {
  position: relative;
  border: none;
  padding: 0;
  width: 100%;
}
#checkout #content .cart-grid-body .checkout-step {
  background: none;
  border: none;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background-color: #8F181B;
}
#checkout #content .cart-grid-body .checkout-step p, #checkout #content .cart-grid-body .checkout-step label {
  font-weight: 200;
  font-size: 1rem;
}
#checkout #content .cart-grid-body .checkout-step.-complete, #checkout #content .cart-grid-body .checkout-step.-reachable {
  background: none;
}
#checkout #content .cart-grid-body .checkout-step.-complete h1 .step-number, #checkout #content .cart-grid-body .checkout-step.-reachable h1 .step-number {
  display: inline-block;
}
#checkout #content .cart-grid-body .checkout-step.-complete .step-title > i, #checkout #content .cart-grid-body .checkout-step.-reachable .step-title > i {
  opacity: 1;
}
#checkout #content .cart-grid-body .checkout-step.-complete .done, #checkout #content .cart-grid-body .checkout-step.-reachable .done {
  display: inline-block;
}
#checkout #content .cart-grid-body .checkout-step.-unreachable {
  background: none;
}
#checkout #content .cart-grid-body .checkout-step.-current {
  background: none;
}
#checkout #content .cart-grid-body .checkout-step .step-number {
  color: #B25821;
  font-size: 1.272rem;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  padding-right: 2px;
  border: none !important;
  background: none !important;
  width: auto;
  height: auto;
  padding: 0;
}
#checkout #content .cart-grid-body .checkout-step .step-title {
  color: #B25821;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  margin-bottom: 14px;
}
#checkout #content .cart-grid-body .checkout-step .step-title > i {
  margin: 0;
  padding: 0;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #84C393;
  display: inline-block !important;
  opacity: 0;
}
#checkout #content .cart-grid-body .checkout-step .step-title .step-edit {
  vertical-align: middle;
  font-size: 0.887rem;
  margin-top: 15px;
}
#checkout #content .cart-grid-body .checkout-step .nav {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 1em;
  margin-bottom: 3rem !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#checkout #content .cart-grid-body .checkout-step .nav .nav-item {
  margin-left: 0;
}
#checkout #content .cart-grid-body .checkout-step .nav .nav-item:nth-child(2) {
  display: none;
}
#checkout #content .cart-grid-body .checkout-step .nav .nav-item a.active {
  color: #ffffff !important;
  background-color: #B25821 !important;
  border: 1px solid #B25821 !important;
}
#checkout #content .cart-grid-body .checkout-step form {
  padding-top: 0;
}
#checkout #content .cart-grid-body #checkout-personal-information-step .nav .nav-item a.active {
  color: #ffffff;
  font-weight: 700;
}
#checkout #content .cart-grid-body #checkout-personal-information-step .identity {
  margin-top: 1em;
  color: #ffffff;
  font-size: 1rem;
}
#checkout #content .cart-grid-body #checkout-personal-information-step .identity a {
  font-size: 1.272rem;
  color: #B25821;
}
#checkout #content .cart-grid-body #checkout-personal-information-step .identity small {
  color: #ffffff;
}
#checkout #content .cart-grid-body #checkout-personal-information-step p {
  font-size: 1rem;
}
#checkout #content .cart-grid-body #checkout-personal-information-step p a {
  color: #B25821;
}
#checkout #content .cart-grid-body #checkout-personal-information-step div.clearfix > form {
  width: 100%;
  max-width: 100%;
}
#checkout #content .cart-grid-body #checkout-personal-information-step .forgot-password {
  text-align: center;
  margin: 0;
}
#checkout #content .cart-grid-body #checkout-personal-information-step .forgot-password a {
  font-size: 0.887rem;
}
#checkout #content .cart-grid-body #checkout-addresses-step h2 {
  margin-top: 2em;
  color: #ffffff;
  font-weight: 400;
  font-size: 1rem;
}
#checkout #content .cart-grid-body #checkout-addresses-step .js-address-form > form {
  width: 100%;
  max-width: 100%;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item {
  position: relative;
  padding: 24px 22px;
  background: none;
  border-radius: 20px;
  box-shadow: none;
  border: 1px solid #ACACAC;
}
@media (max-width: 768px) {
  #checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item {
    padding: 24px 18px;
  }
}
@media (max-width: 900px) {
  #checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item {
    flex: 0 0 100%;
  }
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item.selected {
  border: 1px solid #B25821;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item input[type=radio] {
  box-shadow: none;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item input[type=radio] + span {
  border: 1px solid transparent;
  background: none !important;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item input[type=radio]:checked + span {
  background: #B25821 !important;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > header {
  padding: 16px 0px;
  min-height: 0;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > header .radio-block {
  padding: 0;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > header .radio-block .address-alias {
  color: #0D0D0D;
  font-weight: bold;
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  text-transform: uppercase;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > hr {
  display: none;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer {
  text-align: right;
  border-top: none;
  padding-bottom: 1em;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  #checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer {
    grid-template-columns: repeat(1, 1fr);
  }
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a {
  font-size: 0.887rem;
  font-weight: 300;
  border: none;
  background: none;
  color: #ACACAC !important;
  cursor: pointer;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  text-decoration: none;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a svg {
  width: 1rem;
  height: 1rem;
  fill: #ACACAC;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a i {
  font-size: 1rem;
  color: #ACACAC;
  text-decoration: none;
  display: block;
  margin-right: 0.5em;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a span {
  text-decoration: none;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a.delete-address:hover, #checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a[data-link-action=delete-address]:hover {
  color: #F23838 !important;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a.delete-address:hover svg, #checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a[data-link-action=delete-address]:hover svg {
  fill: #F23838;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a.delete-address:hover i, #checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a[data-link-action=delete-address]:hover i {
  color: #F23838;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a:hover {
  color: #B25821 !important;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a:hover svg {
  fill: #B25821;
}
#checkout #content .cart-grid-body #checkout-addresses-step .address-selector .address-item > footer a:hover i {
  color: #B25821;
}
#checkout #content .cart-grid-body #checkout-delivery-step #cbox {
  padding-left: 0;
}
#checkout #content .cart-grid-body #checkout-delivery-step .carrier-price {
  font-family: "din-2014", sans-serif;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list > #js-delivery {
  padding: 0;
  max-width: 100%;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options {
  margin-bottom: 1em;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .delivery-option {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
  min-height: 60px;
  padding: 10px 0px;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .custom-radio {
  overflow: hidden;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .custom-radio > input[type=radio] {
  box-shadow: none;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .custom-radio > input[type=radio] + span {
  border: 1px solid transparent;
  background: none !important;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .custom-radio > input[type=radio]:checked + span {
  background: #B25821 !important;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .carrier-logo {
  max-width: 50px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  margin-right: 10px;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .carrier-logo img {
  max-width: 100%;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .carriere-name-container {
  margin-left: 0;
  padding-left: 0;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .carriere-name-container .carrier-name {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.887rem;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .delivery-options .carrier-delay {
  font-size: 0.887rem;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .order-options #delivery label {
  margin-bottom: 1em;
  display: inline-block;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .order-options #delivery textarea {
  background: none;
  min-height: 80px;
  border: 1px solid #DDDDDD;
  padding: 0.8em;
  width: 100%;
}
#checkout #content .cart-grid-body #checkout-delivery-step .delivery-options-list .continue {
  margin-top: 2em;
}
#checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit], #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit], #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large {
  display: inline-block !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  color: #ffffff;
  background-color: #151515;
  border: 1px solid #B25821;
  text-transform: none;
  font-weight: normal;
  font-family: "din-2014", sans-serif;
  font-size: 1rem;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large:focus, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:focus, #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:focus, #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary:focus, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary:focus, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:focus, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large:focus, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:focus, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large:focus, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large:focus, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large:focus, #checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large:hover, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:hover, #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:hover, #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary:hover, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary:hover, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:hover, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large:hover, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:hover, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large:hover, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large:hover, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large:hover {
  color: #B25821 !important;
  background-color: #151515;
  border: 1px solid #B25821;
}
#checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large:focus i, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:focus i, #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:focus i, #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary:focus i, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary:focus i, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:focus i, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large:focus i, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:focus i, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large:focus i, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large:focus i, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large:focus i, #checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large:hover i, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:hover i, #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:hover i, #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary:hover i, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary:hover i, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:hover i, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large:hover i, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:hover i, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large:hover i, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large:hover i, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large:hover i {
  color: #B25821 !important;
}
#checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large:focus svg, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:focus svg, #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:focus svg, #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary:focus svg, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary:focus svg, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:focus svg, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large:focus svg, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:focus svg, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large:focus svg, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large:focus svg, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large:focus svg, #checkout #content .cart-grid-body #checkout-delivery-step .button.exclusive_large:hover svg, #checkout #cms #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:hover svg, #cms #checkout #content .cart-grid-body #checkout-delivery-step input.exclusive_large[type=submit]:hover svg, #checkout #content .cart-grid-body #checkout-delivery-step .modal-content .js-modal-content .exclusive_large.btn.btn-secondary:hover svg, #checkout .modal-content .js-modal-content #content .cart-grid-body #checkout-delivery-step .exclusive_large.btn.btn-secondary:hover svg, #checkout #content .cart-grid-body #checkout-delivery-step .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:hover svg, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form .cart-grid-body #checkout-delivery-step button.exclusive_large:hover svg, #checkout #content .cart-grid-body #checkout-delivery-step .cart-summary .block-promo .cart-voucher .promo-code form button.exclusive_large:hover svg, .cart-summary .block-promo .cart-voucher .promo-code form #checkout #content .cart-grid-body #checkout-delivery-step button.exclusive_large:hover svg, #checkout #content .cart-grid-body #checkout-delivery-step .checkout-step .nav .nav-item a.exclusive_large:hover svg, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #checkout-delivery-step a.exclusive_large:hover svg {
  fill: #B25821;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options {
  margin-top: 2em;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option {
  display: flex;
  align-items: center;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option .custom-radio {
  overflow: hidden;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option .custom-radio > input[type=radio] {
  box-shadow: none;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option .custom-radio > input[type=radio] + span {
  border: 1px solid transparent;
  background: none !important;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option .custom-radio > input[type=radio]:checked + span {
  background: #B25821 !important;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option form {
  display: none;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option label {
  margin: 0;
  display: flex;
  align-items: center;
}
#checkout #content .cart-grid-body #checkout-payment-step .payment-options .payment-option label img {
  padding-left: 10px;
}
#checkout #content .cart-grid-body #checkout-payment-step #conditions-to-approve {
  margin: 0;
  margin-top: 3em;
}
#checkout #content .cart-grid-body #checkout-payment-step #conditions-to-approve label.js-terms {
  padding-left: 30px;
  margin-left: -30px;
  font-size: 1rem;
}
#checkout #content .cart-grid-body #checkout-payment-step #conditions-to-approve label.js-terms a {
  font-size: 1rem;
  text-decoration: underline;
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation {
  margin-top: 2em;
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation button {
  border-radius: 0;
  display: inline-block !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  color: #ffffff;
  background-color: #B25821;
  text-transform: none;
  font-weight: normal;
  font-family: "din-2014", sans-serif;
  font-size: 1rem;
  padding: 17px 40px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation button:focus, #checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation button:hover {
  color: #ffffff;
  background-color: #d86e2e;
}
@media (max-width: 600px) {
  #checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation button {
    width: 100%;
  }
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation .btn.btn-primary.center-block.disabled {
  opacity: 0.5 !important;
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation a {
  display: inline-block !important;
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation .alert.alert-danger {
  color: #ffffff;
}
#checkout #content .cart-grid-body #checkout-payment-step #payment-confirmation .alert.alert-danger a {
  color: #ffffff;
}
#checkout #content .cart-grid-body #checkout-payment-step #order-summary-content {
  display: none !important;
}
#checkout #content .cart-grid-right #js-checkout-summary {
  background: none;
  margin: 0;
  width: 100%;
  position: relative;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0px 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  #checkout #content .cart-grid-right #js-checkout-summary {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  #checkout #content .cart-grid-right #js-checkout-summary {
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 30px 20px;
  }
}
#checkout #content .cart-grid-right #js-checkout-summary > p {
  font-size: 0.887rem;
  font-weight: normal;
}
#checkout #content .cart-grid-right #js-checkout-summary > .card-block {
  padding: 16px 0px;
}
#checkout #content .cart-grid-right #js-checkout-summary > .card-block .aeuc_scart a {
  font-size: 1.272rem;
  font-weight: bold;
  font-family: "din-2014", sans-serif;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products p {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal !important;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products p:first-of-type {
  font-weight: bold;
  font-size: 1.272rem;
  margin-bottom: 16px;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products p a {
  font-family: "din-2014", sans-serif;
  font-size: 0.887rem;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products > p:first-child {
  font-size: 1rem;
  font-weight: bold;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list {
  margin-bottom: 2em;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 50px auto;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-left {
  display: block;
  width: 50px;
  padding-right: 0;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-left img {
  border-radius: 5px;
  max-width: 100%;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body {
  display: block;
  width: auto;
  margin-bottom: -10px;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body span {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body .product-name a {
  color: #0D0D0D;
  text-transform: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body .product-line-info-secondary, #checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body .product-line-info-secondary * {
  font-size: 0.75rem;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body .product-price {
  font-family: "din-2014", sans-serif;
  color: #0D0D0D;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-products #cart-summary-product-list ul li.media .media-body a {
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.887rem;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0.5em 0;
  border-bottom: none;
  margin-bottom: 0;
  background: none;
  /* Spécifique pour la livraison */
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line:last-child {
  border-bottom: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line:last-child {
  border-bottom: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line:after {
  display: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line .label {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line .value {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  text-align: right;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line > div {
  width: 100%;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-subtotals-container {
  padding: 0;
  border: none !important;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-subtotals-container * {
  font-size: 1rem;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-totals {
  padding: 16px 0px;
  border-top: 1px solid rgba(221, 221, 221, 0.5);
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-totals .cart-summary-line {
  padding-top: 15px;
  padding-bottom: 15px;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-totals .cart-total {
  padding: 0;
  background: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-totals .cart-total span {
  font-weight: bold !important;
}
#checkout #content .cart-grid-right #js-checkout-summary > .card-block {
  padding: 16px 0px;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-detailed-totals-lines {
  padding: 16px 0px;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0.5em 0;
  border-bottom: none;
  margin-bottom: 0;
  background: none;
  /* Spécifique pour la livraison */
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line:last-child {
  border-bottom: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line:last-child {
  border-bottom: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line:after {
  display: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line .label {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line .value {
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  text-align: right;
}
#checkout #content .cart-grid-right #js-checkout-summary .cart-summary-line > div {
  width: 100%;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code-button {
  text-align: left;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code-button a {
  font-size: 1rem;
  text-transform: none;
  color: #B25821;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code-button a:hover {
  color: #B25821;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .cancel-promo {
  color: #B25821;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .cancel-promo:hover {
  color: #B25821;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code {
  margin-bottom: 1em;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form input {
  width: calc(100% - 80px);
  color: #ffffff;
  outline: none;
  border: 1px solid #DDDDDD;
  background: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button {
  min-width: 0;
  width: 80px;
  padding: 10px;
  height: 2.5rem;
  margin-top: 0;
  margin-left: -1px;
  margin-right: 0;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  border: none;
  color: #ffffff;
  background-color: #B25821;
  font-family: "din-2014", sans-serif;
  text-transform: none !important;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button span {
  font-size: 0.887rem;
  color: #ffffff;
  background-color: #d86e2e;
  font-family: "din-2014", sans-serif;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code .alert-danger {
  background: #F23838;
  border: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code .alert-danger * {
  color: #ffffff;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-highlighted {
  display: none;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-discounts {
  margin-bottom: 1em;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-discounts .label {
  color: #ffffff;
  font-weight: 200;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-discounts .label .code {
  font-weight: 400;
  cursor: pointer;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name {
  padding-left: 0;
  padding-right: 0;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .cart-summary-line .float-xs-right > span {
  font-weight: bold;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .promoLine {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 1.2em;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .promoLine .label {
  font-size: 0.887rem;
  font-weight: 300;
  color: white;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .promoLine .label a {
  padding-left: 5px;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .promoLine .label a svg {
  width: 1.2em;
  height: 1.2em;
  fill: #0D0D0D;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .promoLine .value {
  font-size: 0.887rem;
  font-weight: 300;
  color: white;
  text-align: right;
}
#checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-name .cart-summary-line .float-xs-right span {
  color: #F23838;
}
#checkout .modal-content {
  background-color: #ffffff;
}
#checkout .modal-content .close {
  position: relative;
  z-index: 5;
}
#checkout .modal-content .js-modal-content .btn.btn-secondary {
  border-radius: 0;
  margin-top: 20px;
}
#checkout .alert-danger {
  background: #F23838;
  color: #ffffff;
}
#checkout .alert-danger * {
  color: #ffffff;
}
#checkout .js-mollie-payment-error {
  width: auto;
  color: #ffffff;
}

/*****************
CONFIRMATION
 ******************/
#order-confirmation #wrapper .breadcrumb {
  display: none;
}
#order-confirmation .mainWrapper__content {
  position: relative;
}
#order-confirmation a {
  color: #B25821;
  font-weight: normal;
}
#order-confirmation #content-hook_order_confirmation {
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  background: none;
  position: relative;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
#order-confirmation #content-hook_order_confirmation h1, #order-confirmation #content-hook_order_confirmation h2, #order-confirmation #content-hook_order_confirmation h3 {
  color: #B25821;
  text-align: center;
  font-size: 1.618rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  margin-bottom: 1em;
  text-transform: none !important;
}
#order-confirmation #content-hook_order_confirmation h1 i, #order-confirmation #content-hook_order_confirmation h2 i, #order-confirmation #content-hook_order_confirmation h3 i {
  font-size: 1.272rem;
}
#order-confirmation #content-hook_order_confirmation p, #order-confirmation #content-hook_order_confirmation h4 {
  color: #0D0D0D;
  font-size: 1rem;
  text-align: center;
  font-weight: 200;
}
#order-confirmation #content-hook_order_confirmation .done {
  margin-right: 0.5em;
  display: inline-block;
  padding: 0;
}
#order-confirmation #content {
  margin-bottom: 0;
  background: none;
}
#order-confirmation #content #order-items, #order-confirmation #content #order-details {
  margin-top: 0;
  width: 100%;
  border: none;
  position: relative;
  padding: 40px 15px;
  background-color: #ffffff;
  margin-bottom: 20px;
}
@media screen and (min-width: 601px) {
  #order-confirmation #content #order-items .order-line, #order-confirmation #content #order-details .order-line {
    display: flex;
    align-items: center;
    height: auto;
    max-height: 200px;
    overflow: hidden;
  }
}
#order-confirmation #content #order-items .order-line .image img, #order-confirmation #content #order-details .order-line .image img {
  max-width: 150px;
}
#order-confirmation #content #order-items h3, #order-confirmation #content #order-details h3 {
  color: #0D0D0D;
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  margin-bottom: 1em;
  text-transform: none;
}
#order-confirmation #content #order-items *, #order-confirmation #content #order-details * {
  color: #0D0D0D;
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
}
#order-confirmation #content #order-items li, #order-confirmation #content #order-details li {
  margin-bottom: 1.2em;
}
#order-confirmation #content #order-items .col-sm-4.col-xs-9.details > span, #order-confirmation #content #order-details .col-sm-4.col-xs-9.details > span {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.887rem;
}
#order-confirmation .definition-list dl dd, #order-confirmation .definition-list dl dt {
  background-color: #ffffff;
  color: #0D0D0D;
  border: 1px solid #808080;
}
#order-confirmation #registration-form {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#order-confirmation #content-hook-order-confirmation-footer {
  display: none !important;
}

#module-mollie-return .mainWrapper__content {
  position: relative;
  padding-top: 350px;
  padding-bottom: 100px;
}
#module-mollie-return #wrapper .breadcrumb {
  display: none;
}
#module-mollie-return .page-content.card.card-block {
  position: relative;
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #0D0D0D;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
#module-mollie-return .page-content.card.card-block * {
  color: #0D0D0D;
}
#module-mollie-return .page-content.card.card-block .btn.btn-default {
  color: #B25821;
  text-transform: none;
}

/*****************
PS_CUSTOMERSIGNIN
******************/
.user-info {
  position: relative;
  display: flex;
  align-items: center;
}
.user-info__account {
  display: flex;
  align-items: center;
  padding: 0px 25px;
}
@media (max-width: 900px) {
  .user-info__account {
    padding: 0px 15px;
  }
}
.user-info__account--register svg {
  width: 22px !important;
}
.user-info__account:focus svg, .user-info__account:hover svg {
  fill: #B25821;
}
.user-info__account:focus span, .user-info__account:hover span {
  color: #B25821;
}
.user-info__account svg {
  width: 18px;
  height: 18px;
  fill: #8F181B;
  transition: fill 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.user-info__account span {
  display: inline-block;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  color: #8F181B;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 6px;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 900px) {
  .user-info__account span {
    display: none;
  }
}

/*****************
AN_MEGAMENU
******************/
#_desktop_top_menu {
  width: 100%;
  background: none;
  padding: 0;
}
#_desktop_top_menu > ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
#_desktop_top_menu > ul > li {
  flex: 1;
  position: relative;
  display: inline-block;
  line-height: 1;
  text-align: center;
  /*LEVEL 2 */
}
#_desktop_top_menu > ul > li:hover:after {
  opacity: 1;
}
#_desktop_top_menu > ul > li:hover > a, #_desktop_top_menu > ul > li:hover span {
  color: #8F181B !important;
}
#_desktop_top_menu > ul > li:hover > a:before, #_desktop_top_menu > ul > li:hover span:before {
  right: 0px;
}
#_desktop_top_menu > ul > li:hover > a:after, #_desktop_top_menu > ul > li:hover span:after {
  display: block;
}
#_desktop_top_menu > ul > li > a, #_desktop_top_menu > ul > li > span {
  position: relative;
  display: inline-block;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  color: #ACACAC;
  font-size: 0.887rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 25px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#_desktop_top_menu > ul > li > a:focus, #_desktop_top_menu > ul > li > a:hover, #_desktop_top_menu > ul > li > span:focus, #_desktop_top_menu > ul > li > span:hover {
  color: #F2F2ED;
}
@media (max-width: 1200px) {
  #_desktop_top_menu > ul > li > a, #_desktop_top_menu > ul > li > span {
    font-size: 0.887rem;
  }
}
#_desktop_top_menu > ul > li > a:after, #_desktop_top_menu > ul > li > span:after {
  content: "";
  position: absolute;
  bottom: -26px;
  height: 30px;
  left: 0;
  right: 0;
  display: none;
}
#_desktop_top_menu > ul > li > div.adropdown {
  width: auto;
  min-width: 140px;
  background-color: #ffffff;
  border-radius: 0;
  padding: 10px 10px;
  box-shadow: none;
  border: none;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: auto;
}
@media screen and (max-width: 800px) {
  #_desktop_top_menu > ul > li > div.adropdown {
    border: none;
  }
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-bgimage, #_desktop_top_menu > ul > li > div.adropdown img {
  display: none !important;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content {
  position: relative;
  padding: 0;
  margin-top: 12px;
  margin-bottom: 12px;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content:after {
  content: "-";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content:first-child {
  margin-top: 0;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content:last-child {
  margin-bottom: 0;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content:last-child:after {
  display: none;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content > .category-title {
  display: none;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content .categories-grid .category-item {
  width: 100%;
  margin: 0;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content .categories-grid .category-item .category-title a {
  color: #0D0D0D;
  font-size: 0.75rem;
  font-family: "din-2014", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  white-space: nowrap;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content .categories-grid .category-item .category-title img {
  display: none;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content div ul li {
  padding: 0;
  padding-bottom: 0.5em;
  cursor: default;
  color: #0D0D0D;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content div ul li a {
  color: #0D0D0D;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}
#_desktop_top_menu > ul > li > div.adropdown .dropdown-content div ul li img {
  display: none;
}

/*****************
PS_SHOPPINGCART
******************/
#_desktop_cart .blockcart__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 25px;
}
@media (max-width: 900px) {
  #_desktop_cart .blockcart__link {
    padding-right: 0;
  }
}
#_desktop_cart .blockcart__link:focus svg, #_desktop_cart .blockcart__link:hover svg {
  fill: #8F181B;
}
#_desktop_cart .blockcart__link:focus .blockcart__link__text, #_desktop_cart .blockcart__link:hover .blockcart__link__text {
  color: #8F181B;
}
#_desktop_cart .blockcart__link svg {
  position: relative;
  top: -2px;
  margin: 0;
  height: 18px;
  width: 18px;
  fill: #ACACAC;
  margin-right: 6px;
  transition: fill 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#_desktop_cart .blockcart__link__text {
  display: inline-block;
  font-family: "din-2014", sans-serif;
  line-height: 1;
  color: #ACACAC;
  font-size: 0.887rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1024px) {
  #_desktop_cart .blockcart__link__text {
    display: none;
  }
}
#_desktop_cart .blockcart__link__item {
  position: absolute;
  top: 0;
  left: 15px;
  background-color: #B25821;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  color: #ffffff;
  font-size: 0.75rem;
}
#_desktop_cart .blockcart__link__item--hidden {
  display: none;
}
@media (max-width: 1024px) {
  #_desktop_cart .blockcart__link__item {
    left: 10px;
  }
}
@media (max-width: 900px) {
  #_desktop_cart .blockcart__link__item {
    left: inherit;
    right: -5px;
  }
}

/*****************
PS_FEATUREDPRODUCTS
******************/
.featured-products {
  position: relative;
  z-index: 3;
  background: none !important;
}
.featured-products__buttonContainer {
  z-index: 3;
  text-align: center;
  width: 100%;
}
/*****************
PS_customeraccountlinks
******************/
#block_myaccount_infos {
  position: relative;
  min-width: 210px;
  margin-left: 0;
  margin-right: 0;
  float: none;
  width: auto;
  padding: 0;
}
@media (max-width: 900px) {
  #block_myaccount_infos {
    text-align: center;
  }
}
#block_myaccount_infos .myaccount-title {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  font-weight: lighter;
  display: flex;
}
@media (max-width: 900px) {
  #block_myaccount_infos .myaccount-title {
    margin-bottom: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #block_myaccount_infos .myaccount-title {
    display: flex !important;
  }
}
#block_myaccount_infos .myaccount-title a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
#block_myaccount_infos .myaccount-title a:hover {
  color: #ffffff;
}
#block_myaccount_infos > .title.clearfix {
  display: none !important;
}
@media screen and (max-width: 768px) {
  #block_myaccount_infos > .title.clearfix {
    display: none !important;
  }
}
#block_myaccount_infos .account-list {
  padding: 0;
  text-align: left;
}
@media (max-width: 900px) {
  #block_myaccount_infos .account-list {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #block_myaccount_infos .account-list {
    display: block;
  }
}
#block_myaccount_infos .account-list > li {
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 1;
}
#block_myaccount_infos .account-list > li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: lighter;
  line-height: 1;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
#block_myaccount_infos .account-list > li a:after {
  display: none;
}
#block_myaccount_infos .account-list > li a:hover {
  color: #ffffff;
}

/*****************
PS_CONTACTINFO
******************/
#_desktop_contact_link {
  margin-left: 25px;
}
@media (max-width: 900px) {
  #_desktop_contact_link {
    margin-left: 15px;
  }
}
.block-contactlinks {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .block-contactlinks {
    align-items: center;
    text-align: center;
  }
}
.block-contactlinks .informations {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.block-contactlinks .informations:last-child {
  margin-bottom: 0;
}
.block-contactlinks .informations__title {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  font-weight: lighter;
  line-height: 1;
  display: flex;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .block-contactlinks .informations__title {
    margin-bottom: 20px;
    justify-content: center;
  }
}
.block-contactlinks .informations__title a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.block-contactlinks .informations__title a:hover {
  color: #ffffff;
}
.block-contactlinks .informations__text {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: lighter;
  line-height: 1.4;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.block-contactlinks .informations__text > * {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: lighter;
  line-height: 1.4;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.block-contactlinks .informations a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.887rem;
  font-weight: lighter;
  line-height: 1;
  display: inline-block;
  background: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.block-contactlinks .informations a:hover {
  color: #ffffff;
}

/*****************
PS_LINKLIST
******************/
.linklists {
  position: relative;
}
.linklists .linklist ul {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  justify-content: center;
  margin: 0;
}
.linklists .linklist ul > li {
  margin: 0;
}
.linklists .linklist ul > li:last-child a:after {
  display: none;
}
.linklists .linklist ul > li a {
  font-weight: normal;
  font-size: 0.887rem;
  text-transform: uppercase;
  color: #ACACAC;
  text-decoration: none;
  padding-right: 2px;
}
.linklists .linklist ul > li a:after {
  content: "-";
}

/*****************
PS_CATEGORYTREE
******************/
.block-categories {
  z-index: 4;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  margin-top: -20px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  row-gap: 10px;
}
@media (max-width: 600px) {
  .block-categories {
    gap: 20px;
    row-gap: 10px;
  }
}
.block-categories .category-top-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 10px;
  margin: 0;
}
@media (max-width: 600px) {
  .block-categories .category-top-menu {
    gap: 20px;
    row-gap: 10px;
  }
}
.block-categories .category-top-menu > li {
  margin: 0;
}
.block-categories .category-top-menu > li > a {
  margin: 0 !important;
  padding: 0 !important;
  text-transform: uppercase;
  font-weight: 600;
  color: #ACACAC;
  font-size: 1rem;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-categories .category-top-menu > li > a:hover {
  color: #0D0D0D !important;
}
@media (max-width: 600px) {
  .block-categories .category-top-menu > li > a {
    font-size: 0.887rem;
  }
}
.block-categories .category-top-menu > li ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 10px;
  margin: 0;
}
@media (max-width: 600px) {
  .block-categories .category-top-menu > li ul {
    gap: 20px;
    row-gap: 10px;
  }
}
.block-categories .category-top-menu > li ul li {
  margin: 0;
}
.block-categories .category-top-menu > li ul li a {
  margin: 0 !important;
  padding: 0 !important;
  text-transform: uppercase;
  font-weight: 600;
  color: #ACACAC;
  font-size: 1rem;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.block-categories .category-top-menu > li ul li a:hover {
  color: #0D0D0D !important;
}
@media (max-width: 600px) {
  .block-categories .category-top-menu > li ul li a {
    font-size: 0.887rem;
  }
}

/*****************
PSGDPR
******************/
#module-psgdpr-gdpr .container {
  width: 100%;
  max-width: none !important;
  margin: 0;
  padding: 0;
}
#module-psgdpr-gdpr .container .wrapper, #module-psgdpr-gdpr .container #category .mainWrapper__content, #category #module-psgdpr-gdpr .container .mainWrapper__content, #module-psgdpr-gdpr .container #notifications .container, #notifications #module-psgdpr-gdpr .container .container, #module-psgdpr-gdpr .container .mainWrapper.withdeco .mainWrapper__content, .mainWrapper.withdeco #module-psgdpr-gdpr .container .mainWrapper__content, #module-psgdpr-gdpr .container #cart .featured-products, #cart #module-psgdpr-gdpr .container .featured-products {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#module-psgdpr-gdpr .page_content .psgdprinfo17 {
  padding: 20px;
  border: 1px solid #808080;
  background: none;
  border-radius: 20px;
}
#module-psgdpr-gdpr .page_content .psgdprinfo17 h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #0D0D0D;
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  margin-bottom: 1em;
}
#module-psgdpr-gdpr .page_content .psgdprinfo17 .btn {
  margin-top: 5px;
  margin-bottom: 5px;
}
#module-psgdpr-gdpr .page_content .psgdprinfo17 a {
  color: #8F181B;
}

/*********************************************
  COMMONS
*********************************************/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #DDDDDD;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #DDDDDD;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #DDDDDD;
}

:-moz-placeholder { /* Firefox 18- */
  color: #DDDDDD;
}

* {
  outline-color: #B25821;
}

img {
  position: relative;
  max-width: 100%;
  height: auto;
}

img::selection {
  background: transparent;
}

body {
  background-color: #F2F2ED;
  color: #0D0D0D;
}
body.js-open {
  overflow: hidden;
}

main {
  background-color: #F2F2ED;
  overflow: hidden;
  min-height: 300px;
}

.hidden {
  display: none;
}

div, p, li, td, th, a {
  position: relative;
}

.clearfix {
  position: initial;
}

a {
  cursor: pointer;
  text-decoration: none;
}
a * {
  text-decoration: none;
}
a:focus, a:hover {
  cursor: pointer;
  text-decoration: none;
}
a:focus *, a:hover * {
  text-decoration: none;
}

strong, em, i, b {
  display: inline-block;
}

* {
  font-family: "din-2014", sans-serif;
  font-weight: lighter;
}

figure {
  max-width: 100%;
}
figure img, figure figcaption {
  max-width: 100%;
}

/*********************************************
 WRAPPER
*********************************************/
#wrapper {
  background-color: #F2F2ED;
  box-shadow: none;
  padding-top: 0;
}

#main .page-footer {
  margin: 0;
}

.wrapper, #category .mainWrapper__content, #notifications .container, .mainWrapper.withdeco .mainWrapper__content, #cart .featured-products {
  position: relative;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media screen and (max-width: 1640px) {
  .wrapper, #category .mainWrapper__content, #notifications .container, .mainWrapper.withdeco .mainWrapper__content, #cart .featured-products {
    max-width: none;
    width: 100%;
    padding: 0px 50px;
  }
}
.wrapper--medium {
  max-width: 1240px;
  padding: 0px;
}
@media screen and (max-width: 1340px) {
  .wrapper--medium {
    max-width: none;
    padding: 0px 50px;
  }
}
.wrapper--small {
  max-width: 1160px;
  padding: 0px;
}
@media screen and (max-width: 1260px) {
  .wrapper--small {
    max-width: none;
    padding: 0px 50px;
  }
}
.wrapper--smaller {
  max-width: 860px;
  padding: 0px;
}
@media screen and (max-width: 960px) {
  .wrapper--smaller {
    max-width: none;
    padding: 0px 50px;
  }
}
.wrapper--xlarge, #notifications .container {
  max-width: 1840px;
}
@media screen and (max-width: 1940px) {
  .wrapper--xlarge, #notifications .container {
    max-width: none;
    padding: 0px 50px;
  }
}
.wrapper--full {
  max-width: none;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 1940px) {
  .wrapper--full {
    max-width: none;
    padding: 0px 50px;
  }
}
@media screen and (max-width: 1000px) {
  .wrapper, #category .mainWrapper__content, #notifications .container, .mainWrapper.withdeco .mainWrapper__content, #cart .featured-products {
    padding: 0px 20px;
  }
}
.wrapper--none {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media screen and (max-width: 1940px) {
  .wrapper--nospace {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.mainWrapper {
  min-height: 600px;
}
.mainWrapper.withdeco {
  position: relative;
  padding-top: 60px !important;
}
@media (max-width: 600px) {
  .mainWrapper.withdeco {
    padding-top: 40px !important;
  }
}
.mainWrapper.withdeco:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: #E5E4DC;
  pointer-events: none;
}
@media (max-width: 600px) {
  .mainWrapper.withdeco:before {
    height: 80px;
  }
}
.mainWrapper.withdeco .mainWrapper__content #content-wrapper, .mainWrapper.withdeco .mainWrapper__content > #content {
  position: relative;
  z-index: 2;
  padding: 60px 60px 30px !important;
}
@media (max-width: 600px) {
  .mainWrapper.withdeco .mainWrapper__content #content-wrapper, .mainWrapper.withdeco .mainWrapper__content > #content {
    padding: 30px 20px !important;
  }
}
@media (max-width: 480px) {
  .mainWrapper.withdeco .mainWrapper__content #content-wrapper, .mainWrapper.withdeco .mainWrapper__content > #content {
    padding: 30px 15px !important;
  }
}
.mainWrapper.withdeco .mainWrapper__content #content-wrapper:before, .mainWrapper.withdeco .mainWrapper__content > #content:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #F2F2ED;
  pointer-events: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media (max-width: 600px) {
  .mainWrapper.withdeco .mainWrapper__content #content-wrapper:before, .mainWrapper.withdeco .mainWrapper__content > #content:before {
    height: 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
div, section {
  position: relative;
}

div, p, li, td, th, a {
  position: relative;
  color: #0D0D0D;
  font-weight: 300;
}

div, p, li, td, th, a {
  color: #0D0D0D;
}

h1, h2, h3, h4, h5, h6 {
  color: #0D0D0D;
  font-family: "din-2014", sans-serif;
}

.uptitle {
  position: relative;
  font-weight: lighter;
  font-family: "din-2014", sans-serif;
  font-size: 1.272rem;
  text-transform: none;
  color: #0D0D0D;
  margin-bottom: 0.2em;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .uptitle {
    font-size: 0.887rem;
  }
}

.maintitle, #authentication h1, #registration h1, #password h1, #pagenotfound .page-header h1, #search h1, #cms .page-header h1, .myaccount #main .page-header h1, #category #content-wrapper > #main #js-product-list-header .block-category h1, #cart h1 {
  position: relative;
  font-weight: normal;
  font-family: "din-2014", sans-serif;
  color: #0D0D0D;
  font-size: 2.618rem;
  line-height: 1.2;
  margin-bottom: 0.8em;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .maintitle, #authentication h1, #registration h1, #password h1, #pagenotfound .page-header h1, #search h1, #cms .page-header h1, .myaccount #main .page-header h1, #category #content-wrapper > #main #js-product-list-header .block-category h1, #cart h1 {
    font-size: 2.058rem;
  }
}
.maintitle--orange {
  color: #B25821;
}
.maintitle--white {
  color: #ffffff;
}
.maintitle--gray {
  color: #ACACAC;
}
.maintitle--small {
  font-size: 1.618rem;
}
@media (max-width: 1024px) {
  .maintitle--small {
    font-size: 1.272rem;
  }
}
.maintitle--xsmall {
  font-size: 1.272rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .maintitle--xsmall {
    font-size: 1.1rem;
  }
}
.maintitle--upper {
  text-transform: uppercase;
}
.maintitle--bold {
  font-weight: 600;
}
.maintitle--page, #authentication h1, #registration h1, #password h1, #pagenotfound .page-header h1, #search h1, #cms .page-header h1, .myaccount #main .page-header h1, #category #content-wrapper > #main #js-product-list-header .block-category h1, #cart h1 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1em;
}
@media (max-width: 600px) {
  .maintitle--page, #authentication h1, #registration h1, #password h1, #pagenotfound .page-header h1, #search h1, #cms .page-header h1, .myaccount #main .page-header h1, #category #content-wrapper > #main #js-product-list-header .block-category h1, #cart h1 {
    font-size: 1.618rem;
  }
}

/*********************************************
 BREADCRUMB
*********************************************/
#wrapper .breadcrumb {
  position: absolute;
  z-index: 2;
  top: 8px;
  padding-left: 20px;
}
@media (max-width: 600px) {
  #wrapper .breadcrumb {
    display: none;
  }
}

/*********************************************
 NOTIFICATIONS ET ALERTES
*********************************************/
.alert-warning, .alert-info {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  color: #ffffff;
  background-color: #8F181B;
}
.alert-warning *, .alert-info * {
  color: #ffffff;
}

.alert-danger {
  background: #F23838;
  color: #ffffff;
  border: none;
}
.alert-danger * {
  color: #ffffff;
}

.ps-alert-error {
  margin-bottom: 0;
}

.ps-alert-error, .ps-alert-success {
  padding: 18px 20px 18px 20px;
}
.ps-alert-error .item, .ps-alert-success .item {
  align-items: center;
  border: 2px #F23838 solid;
  display: flex;
  background-color: #F23838;
  margin-bottom: 1rem;
}
.ps-alert-error .item i, .ps-alert-success .item i {
  border: 15px #F23838 solid;
  display: flex;
}
.ps-alert-error .item i svg, .ps-alert-success .item i svg {
  background-color: #F23838;
  width: 24px;
  height: 24px;
}
.ps-alert-error .item p, .ps-alert-success .item p {
  background-color: #ffffff;
  color: #F23838;
  margin: 0;
  padding: 18px 20px 18px 20px;
  width: 100%;
}

.ps-alert-success {
  padding: 18px 20px 18px 20px;
}
.ps-alert-success .item {
  border-color: #84C393;
  background-color: #84C393;
}
.ps-alert-success .item i {
  border-color: #84C393;
}
.ps-alert-success .item i svg {
  background-color: #84C393;
}
.ps-alert-success .item p {
  background-color: #ffffff !important;
  color: #84C393 !important;
  margin: 0;
  padding: 18px 20px 18px 20px;
  width: 100%;
}

#notifications {
  margin: 0 !important;
}
#notifications .container article:first-child {
  margin-top: 20px;
}
#notifications .container article:last-child {
  margin-bottom: 20px;
}
#notifications .container .alert {
  text-align: center;
  font-size: 1rem;
}
#notifications .container .alert a {
  color: #F23838;
}
#notifications .container .alert-success {
  border: 1px solid #84C393;
  background-color: #84C393;
}
#notifications .container .alert-success * {
  color: #ffffff;
}
#notifications .container .alert-error {
  border: 1px solid #F23838;
  background-color: #F23838;
}
#notifications .container .alert-error * {
  color: #ffffff;
}
#notifications .container .alert-warning, #notifications .container .alert-info {
  border: 1px solid #8F181B;
  background-color: #8F181B;
}
#notifications .container .alert-warning *, #notifications .container .alert-info * {
  color: #ffffff;
}

/*********************************************
 CARD
*********************************************/
.card {
  box-shadow: none;
  border: none;
}
.card.block-category {
  min-height: 0px;
  padding: 0;
}

/*********************************************
 CUSTOM_RADIO
*********************************************/
span.custom-radio {
  border: none;
  border-radius: 2px;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.09);
  background-color: #E5E4DC;
  width: 14px;
  height: 14px;
}
span.custom-radio > input[type=radio]:checked + span {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  border-radius: 2px;
  box-shadow: none;
  background-color: #B25821;
}

.cc-revoke.cc-bottom {
  display: none !important;
}

/*********************************************
 HEADER
*********************************************/
#header {
  z-index: 10;
  width: 100%;
  background: #ffffff !important;
  box-shadow: none;
}
#header > .burgerContainer {
  top: -120px;
  display: none !important;
}
@media (max-width: 900px) {
  #header > .burgerContainer {
    display: block !important;
  }
}
#header .containerMenu .containerMenuElement {
  text-align: center;
}
#header .containerMenu .containerMenuElement .button--gray {
  margin-top: 15px;
}
#header .containerMenu .blockSocial__link {
  margin-left: 5px;
  margin-right: 5px;
  width: 26px;
  height: 26px;
}
#header .containerMenu .blockSocial__link svg {
  width: 14px;
  height: 14px;
}
#header .headerNav {
  z-index: 10;
  background: none;
  box-shadow: none;
}
#header .headerNav__infobar .infobar {
  font-size: 0.887rem;
  text-transform: uppercase;
  background-color: #B25821;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 10px 10px;
}
@media (max-width: 900px) {
  #header .headerNav__infobar .infobar {
    font-size: 0.75rem;
  }
}
#header .headerNav__top {
  position: relative;
  padding: 10px 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  #header .headerNav__top__button {
    display: none;
  }
}
#header .headerNav__top__right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
#header .headerNav__primary {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 20px 20px;
}
#header .headerNav__primary__logo {
  width: 270px;
}
@media (max-width: 900px) {
  #header .headerNav__primary__logo {
    width: 180px;
  }
}
#header .headerNav__primary__logo__link {
  display: inline-block;
}
#header .headerNav__primary__logo__link__img {
  display: block;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#header .headerNav__primary__right {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  #header .headerNav__primary__right #_desktop_top_menu {
    display: none;
  }
}
/*********************************************
 FOOTER
*********************************************/
#footer {
  position: relative;
  z-index: 5;
  padding: 0;
  background: none;
  box-shadow: none;
  padding-top: 20px;
}
#footer .footer__logo {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
#footer .footer__logo__link {
  display: inline-block;
}
#footer .footer__logo__link__img {
  display: block;
  width: 100%;
}
#footer .footer__primary {
  z-index: 3;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #B25821;
  overflow: hidden;
}
#footer .footer__primary > .wrapper, #footer #category .footer__primary > .mainWrapper__content, #category #footer .footer__primary > .mainWrapper__content, #footer #cart .footer__primary > .featured-products, #cart #footer .footer__primary > .featured-products, #footer .mainWrapper.withdeco .footer__primary > .mainWrapper__content, .mainWrapper.withdeco #footer .footer__primary > .mainWrapper__content, #footer #notifications .footer__primary > .container, #notifications #footer .footer__primary > .container {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 900px) {
  #footer .footer__primary > .wrapper, #footer #category .footer__primary > .mainWrapper__content, #category #footer .footer__primary > .mainWrapper__content, #footer #cart .footer__primary > .featured-products, #cart #footer .footer__primary > .featured-products, #footer .mainWrapper.withdeco .footer__primary > .mainWrapper__content, .mainWrapper.withdeco #footer .footer__primary > .mainWrapper__content, #footer #notifications .footer__primary > .container, #notifications #footer .footer__primary > .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
}
#footer .footer__primary > .wrapper:before, #footer #category .footer__primary > .mainWrapper__content:before, #category #footer .footer__primary > .mainWrapper__content:before, #footer #cart .footer__primary > .featured-products:before, #cart #footer .footer__primary > .featured-products:before, #footer .mainWrapper.withdeco .footer__primary > .mainWrapper__content:before, .mainWrapper.withdeco #footer .footer__primary > .mainWrapper__content:before, #footer #notifications .footer__primary > .container:before, #notifications #footer .footer__primary > .container:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ffffff;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 1640px) {
  #footer .footer__primary > .wrapper:before, #footer #category .footer__primary > .mainWrapper__content:before, #category #footer .footer__primary > .mainWrapper__content:before, #footer #cart .footer__primary > .featured-products:before, #cart #footer .footer__primary > .featured-products:before, #footer .mainWrapper.withdeco .footer__primary > .mainWrapper__content:before, .mainWrapper.withdeco #footer .footer__primary > .mainWrapper__content:before, #footer #notifications .footer__primary > .container:before, #notifications #footer .footer__primary > .container:before {
    left: 50px;
    right: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #footer .footer__primary > .wrapper:before, #footer #category .footer__primary > .mainWrapper__content:before, #category #footer .footer__primary > .mainWrapper__content:before, #footer #cart .footer__primary > .featured-products:before, #cart #footer .footer__primary > .featured-products:before, #footer .mainWrapper.withdeco .footer__primary > .mainWrapper__content:before, .mainWrapper.withdeco #footer .footer__primary > .mainWrapper__content:before, #footer #notifications .footer__primary > .container:before, #notifications #footer .footer__primary > .container:before {
    left: 20px;
    right: 20px;
  }
}
@media (max-width: 900px) {
  #footer .footer__primary > .wrapper:before, #footer #category .footer__primary > .mainWrapper__content:before, #category #footer .footer__primary > .mainWrapper__content:before, #footer #cart .footer__primary > .featured-products:before, #cart #footer .footer__primary > .featured-products:before, #footer .mainWrapper.withdeco .footer__primary > .mainWrapper__content:before, .mainWrapper.withdeco #footer .footer__primary > .mainWrapper__content:before, #footer #notifications .footer__primary > .container:before, #notifications #footer .footer__primary > .container:before {
    display: none;
  }
}
#footer .footer__primary #block_myaccount_infos {
  z-index: 2;
  order: 1;
}
#footer .footer__primary #_desktop_top_menu {
  z-index: 2;
  order: 2;
  width: auto;
  margin-left: auto;
}
@media (max-width: 900px) {
  #footer .footer__primary #_desktop_top_menu {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 900px) {
  #footer .footer__primary #_desktop_top_menu > ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
}
#footer .footer__primary #_desktop_top_menu > ul > li:hover > a, #footer .footer__primary #_desktop_top_menu > ul > li:hover span {
  color: #ffffff !important;
}
@media (max-width: 900px) {
  #footer .footer__primary #_desktop_top_menu > ul > li:last-child > a, #footer .footer__primary #_desktop_top_menu > ul > li:last-child > span {
    margin-bottom: 0;
  }
}
#footer .footer__primary #_desktop_top_menu > ul > li > a, #footer .footer__primary #_desktop_top_menu > ul > li > span {
  padding: 0;
  color: #ffffff;
  margin-right: 100px;
  display: flex;
}
#footer .footer__primary #_desktop_top_menu > ul > li > a:before, #footer .footer__primary #_desktop_top_menu > ul > li > a:after, #footer .footer__primary #_desktop_top_menu > ul > li > span:before, #footer .footer__primary #_desktop_top_menu > ul > li > span:after {
  display: none;
}
@media (max-width: 900px) {
  #footer .footer__primary #_desktop_top_menu > ul > li > a, #footer .footer__primary #_desktop_top_menu > ul > li > span {
    margin: 0;
    margin-bottom: 20px;
  }
}
#footer .footer__primary .block-contactlinks {
  z-index: 2;
  order: 3;
}
#footer .footer__primary__deco {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  color: #A0501F;
  opacity: 0.7;
  pointer-events: none;
  font-weight: bold;
  line-height: 0.7;
  font-size: 10rem;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  #footer .footer__primary__deco {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 600px) {
  #footer .footer__primary__deco {
    font-size: 8.236rem;
  }
}
#footer .footer__tertiary {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
#footer .footer__tertiary > .wrapper, #footer #category .footer__tertiary > .mainWrapper__content, #category #footer .footer__tertiary > .mainWrapper__content, #footer #cart .footer__tertiary > .featured-products, #cart #footer .footer__tertiary > .featured-products, #footer .mainWrapper.withdeco .footer__tertiary > .mainWrapper__content, .mainWrapper.withdeco #footer .footer__tertiary > .mainWrapper__content, #footer #notifications .footer__tertiary > .container, #notifications #footer .footer__tertiary > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  #footer .footer__tertiary > .wrapper, #footer #category .footer__tertiary > .mainWrapper__content, #category #footer .footer__tertiary > .mainWrapper__content, #footer #cart .footer__tertiary > .featured-products, #cart #footer .footer__tertiary > .featured-products, #footer .mainWrapper.withdeco .footer__tertiary > .mainWrapper__content, .mainWrapper.withdeco #footer .footer__tertiary > .mainWrapper__content, #footer #notifications .footer__tertiary > .container, #notifications #footer .footer__tertiary > .container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
}
#footer .footer__tertiary__payments {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  #footer .footer__tertiary__payments {
    position: relative;
    left: 0;
    transform: translateX(0);
  }
}
#footer .footer__tertiary__payments .payments__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
#footer .footer__tertiary__payments .payments__list li:first-child {
  margin-left: 0;
}
#footer .footer__tertiary__payments .payments__list__item {
  margin: 0px 6px;
}
#footer .footer__tertiary__payments .payments__list__item img {
  max-height: 25px;
  max-width: 60px;
}
#footer .footer__tertiary__oanna__img {
  width: 30px;
}

form {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
form .label, form label {
  color: #0D0D0D;
}
form .form-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
form .form-group > label {
  width: auto;
  text-align: left;
  padding: 0;
  z-index: 3;
  pointer-events: none;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #0D0D0D;
  text-transform: uppercase;
  font-family: "din-2014", sans-serif;
  font-weight: lighter;
}
form .form-group > label[for=message] {
  transform: none;
  top: 15px;
}
form .form-group > .col-md-6 {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
form .form-group > div.col-md-3 {
  position: absolute;
  right: 0;
  top: 100%;
}
form .form-group input, form .form-group select, form .form-group textarea {
  background: none;
  color: #0D0D0D;
  border: none;
  border-bottom: 1px solid #DDDDDD;
  outline: none !important;
  padding: 4px 5px;
  font-size: 1.1rem;
}
form .form-group input + .form-control-comment, form .form-group select + .form-control-comment, form .form-group textarea + .form-control-comment {
  color: #ACACAC;
  opacity: 0.8;
  font-size: 0.887rem;
}
form .form-group input.form-control:focus, form .form-group select.form-control:focus, form .form-group textarea.form-control:focus {
  color: #0D0D0D;
  background: none;
  border-color: #B25821;
}
form .form-group input::placeholder, form .form-group select::placeholder, form .form-group textarea::placeholder {
  color: #0D0D0D;
}
form .form-group select {
  height: 50px !important;
  background: none;
  max-width: 100%;
  -webkit-appearance: menulist;
  padding-right: 40px;
}
form .form-group textarea {
  min-height: 100px;
}
form .form-group .form-control-comment {
  font-size: 1rem;
  display: inline-block;
  line-height: 1.2em;
}
form .form-group .col-md-3.form-control-comment {
  line-height: 1;
  padding-top: 5px;
}
form .form-group .form-control-valign > .radio-inline {
  margin-right: 10px;
}
form .form-group .custom-radio {
  border-radius: 0;
  border: 1px solid #0D0D0D;
  background: none;
}
form .form-group .custom-radio > input[type=radio]:checked + span {
  background: #0D0D0D;
}
form .form-group .custom-checkbox {
  position: relative;
  display: inline-block;
  width: 100%;
}
form .form-group .custom-checkbox label {
  width: 100%;
  text-align: left;
  padding: 0;
  color: #0D0D0D;
}
form .form-group .custom-checkbox label br {
  display: none;
}
form .form-group .custom-checkbox label em {
  margin-left: 5px;
}
form .form-group .custom-checkbox input[type=checkbox] + span .checkbox-checked {
  color: #0D0D0D;
}
form .form-group .input-group.js-parent-focus.focus {
  outline: none;
}
form .form-group input[type=password], form .form-group .js-visible-password {
  outline: none;
}
form .form-group input[type=password]:focus, form .form-group .js-visible-password:focus {
  outline: none;
}
form .form-group input[type=password] + .input-group-btn .btn, form .form-group .js-visible-password + .input-group-btn .btn {
  padding-top: 11px;
  padding-bottom: 11px;
  border: none !important;
  outline: none !important;
}
form .form-group input[type=password] + .input-group-btn .btn:focus, form .form-group .js-visible-password + .input-group-btn .btn:focus {
  border: none !important;
  outline: none !important;
}
form button[type=submit] {
  margin-left: auto;
  margin-right: auto;
}
form .form-footer {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 0;
  text-align: center;
}
form .form-footer .btn {
  float: none !important;
}

/*********************************************
  SECTION MYBLOCS
*********************************************/
.myblocs {
  background: #E5E4DC;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .myblocs {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.myblocs__itemsContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 600px) {
  .myblocs__itemsContainer {
    gap: 20px;
  }
}
.myblocs__itemsContainer__item__link {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.myblocs__itemsContainer__item__link:hover span {
  color: #0D0D0D;
}
.myblocs__itemsContainer__item__link__text {
  text-transform: uppercase;
  font-weight: 600;
  color: #ACACAC;
  font-size: 1rem;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 600px) {
  .myblocs__itemsContainer__item__link__text {
    font-size: 0.887rem;
  }
}

/*********************************************
  SECTION HOMEBANNER
*********************************************/
.homebanner {
  position: relative;
  display: flex;
  background-color: #B25821;
  min-height: 460px;
  max-height: 700px;
}
@media (max-width: 480px) {
  .homebanner {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}
.homebanner > .wrapper, #category .homebanner > .mainWrapper__content, #cart .homebanner > .featured-products, .mainWrapper.withdeco .homebanner > .mainWrapper__content, #notifications .homebanner > .container {
  height: auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: auto 300px;
  gap: 40px;
}
@media (max-width: 900px) {
  .homebanner > .wrapper, #category .homebanner > .mainWrapper__content, #cart .homebanner > .featured-products, .mainWrapper.withdeco .homebanner > .mainWrapper__content, #notifications .homebanner > .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .homebanner > .wrapper, #category .homebanner > .mainWrapper__content, #cart .homebanner > .featured-products, .mainWrapper.withdeco .homebanner > .mainWrapper__content, #notifications .homebanner > .container {
    grid-template-columns: auto 200px;
    gap: 0px;
  }
}
@media (max-width: 600px) {
  .homebanner > .wrapper, #category .homebanner > .mainWrapper__content, #cart .homebanner > .featured-products, .mainWrapper.withdeco .homebanner > .mainWrapper__content, #notifications .homebanner > .container {
    grid-template-columns: auto 150px;
  }
}
@media (max-width: 480px) {
  .homebanner > .wrapper, #category .homebanner > .mainWrapper__content, #cart .homebanner > .featured-products, .mainWrapper.withdeco .homebanner > .mainWrapper__content, #notifications .homebanner > .container {
    grid-template-columns: 1fr;
  }
}
.homebanner__contentContainer {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .homebanner__contentContainer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.homebanner__contentContainer__title {
  z-index: 2;
  font-size: 3.756rem;
  margin-bottom: 0.3em;
  padding-bottom: 0.3em;
}
@media (max-width: 1024px) {
  .homebanner__contentContainer__title {
    font-size: 2.618rem;
  }
}
.homebanner__contentContainer__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ffffff;
  pointer-events: none;
}
.homebanner__contentContainer__text {
  z-index: 2;
  color: #ffffff;
  max-width: 460px;
  font-size: 1.272rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .homebanner__contentContainer__text {
    font-size: 1.1rem;
  }
}
.homebanner__contentContainer__button {
  z-index: 2;
}
.homebanner__contentContainer__deco {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  color: #BF6D3B;
  opacity: 0.7;
  pointer-events: none;
  font-weight: bold;
  line-height: 0.7;
  font-size: 12rem;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .homebanner__contentContainer__deco {
    font-size: 8.236rem;
    top: 20%;
    transform: translateY(-50%);
  }
}
@media (max-width: 900px) {
  .homebanner__contentContainer__deco {
    left: 40px;
  }
}
@media (max-width: 768px) {
  .homebanner__contentContainer__deco {
    font-size: 4.236rem;
    top: 5%;
    transform: translateY(0);
  }
}
.homebanner__imgContainer {
  z-index: 2;
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .homebanner__imgContainer {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .homebanner__imgContainer {
    transform: translateX(-20px);
    width: calc(100% + 40px);
  }
}
.homebanner__imgContainer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .homebanner__imgContainer__img {
    transform: translateX(20px);
  }
}
@media (max-width: 480px) {
  .homebanner__imgContainer__img {
    transform: translateX(0);
  }
}

/*********************************************
  SECTION MYREASSURANCE
*********************************************/
.myreassurance {
  padding-top: 100px;
  padding-bottom: 100px;
}
.myreassurance__itemsContainer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .myreassurance__itemsContainer {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .myreassurance__itemsContainer {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.myreassurance__itemsContainer__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border: 1px solid #DDDDDD;
  border-radius: 20px;
  background: none;
  padding: 40px 20px;
}
.myreassurance__itemsContainer__item__img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.myreassurance__itemsContainer__item__title {
  margin-bottom: 0;
}

/*********************************************
 PAGE INDEX
*********************************************/
#index .mainWrapper__content {
  position: relative;
}
#index .mainWrapper__content #content-wrapper #main #content .featured-products .products {
  padding: 60px 60px 30px;
  background: #F2F2ED;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: -60px;
}
@media (max-width: 600px) {
  #index .mainWrapper__content #content-wrapper #main #content .featured-products .products {
    padding: 40px 20px 30px;
    background: #F2F2ED;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -40px;
  }
}
@media (max-width: 480px) {
  #index .mainWrapper__content #content-wrapper #main #content .featured-products .products {
    padding: 30px 15px;
  }
}
#index .mainWrapper__content #content-wrapper #main #content .featured-products + .noproducts {
  display: none !important;
}
#index .mainWrapper__content #content-wrapper #main #content .noproducts {
  margin-top: 100px;
  margin-bottom: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#index #footer {
  z-index: 3;
}

/*********************************************
 PAGE A PROPOS
*********************************************/
#apropos .mainWrapper__content, #magasin .mainWrapper__content {
  position: relative;
}
#apropos .apropos, #magasin .apropos {
  padding-top: 60px;
}
@media (max-width: 600px) {
  #apropos .apropos, #magasin .apropos {
    padding-top: 40px;
  }
}
#apropos .apropos:before, #magasin .apropos:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: #E5E4DC;
  pointer-events: none;
}
@media (max-width: 600px) {
  #apropos .apropos:before, #magasin .apropos:before {
    height: 80px;
  }
}
#apropos .apropos > .wrapper, #apropos #category .apropos > .mainWrapper__content, #category #apropos .apropos > .mainWrapper__content, #apropos #cart .apropos > .featured-products, #cart #apropos .apropos > .featured-products, #apropos .mainWrapper.withdeco .apropos > .mainWrapper__content, .mainWrapper.withdeco #apropos .apropos > .mainWrapper__content, #apropos #notifications .apropos > .container, #notifications #apropos .apropos > .container, #magasin .apropos > .wrapper, #magasin #category .apropos > .mainWrapper__content, #category #magasin .apropos > .mainWrapper__content, #magasin #cart .apropos > .featured-products, #cart #magasin .apropos > .featured-products, #magasin .mainWrapper.withdeco .apropos > .mainWrapper__content, .mainWrapper.withdeco #magasin .apropos > .mainWrapper__content, #magasin #notifications .apropos > .container, #notifications #magasin .apropos > .container {
  position: relative;
  z-index: 2;
  padding-bottom: 300px;
}
@media (max-width: 900px) {
  #apropos .apropos > .wrapper, #apropos #category .apropos > .mainWrapper__content, #category #apropos .apropos > .mainWrapper__content, #apropos #cart .apropos > .featured-products, #cart #apropos .apropos > .featured-products, #apropos .mainWrapper.withdeco .apropos > .mainWrapper__content, .mainWrapper.withdeco #apropos .apropos > .mainWrapper__content, #apropos #notifications .apropos > .container, #notifications #apropos .apropos > .container, #magasin .apropos > .wrapper, #magasin #category .apropos > .mainWrapper__content, #category #magasin .apropos > .mainWrapper__content, #magasin #cart .apropos > .featured-products, #cart #magasin .apropos > .featured-products, #magasin .mainWrapper.withdeco .apropos > .mainWrapper__content, .mainWrapper.withdeco #magasin .apropos > .mainWrapper__content, #magasin #notifications .apropos > .container, #notifications #magasin .apropos > .container {
    padding-bottom: 200px;
  }
}
@media (max-width: 600px) {
  #apropos .apropos > .wrapper, #apropos #category .apropos > .mainWrapper__content, #category #apropos .apropos > .mainWrapper__content, #apropos #cart .apropos > .featured-products, #cart #apropos .apropos > .featured-products, #apropos .mainWrapper.withdeco .apropos > .mainWrapper__content, .mainWrapper.withdeco #apropos .apropos > .mainWrapper__content, #apropos #notifications .apropos > .container, #notifications #apropos .apropos > .container, #magasin .apropos > .wrapper, #magasin #category .apropos > .mainWrapper__content, #category #magasin .apropos > .mainWrapper__content, #magasin #cart .apropos > .featured-products, #cart #magasin .apropos > .featured-products, #magasin .mainWrapper.withdeco .apropos > .mainWrapper__content, .mainWrapper.withdeco #magasin .apropos > .mainWrapper__content, #magasin #notifications .apropos > .container, #notifications #magasin .apropos > .container {
    padding-bottom: 150px;
  }
}
#apropos .apropos__main, #magasin .apropos__main {
  position: relative;
  z-index: 2;
  padding: 60px 60px;
  background: #F2F2ED;
  border-radius: 30px;
}
@media (max-width: 600px) {
  #apropos .apropos__main, #magasin .apropos__main {
    padding: 30px 20px;
    background: #F2F2ED;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  #apropos .apropos__main, #magasin .apropos__main {
    padding: 30px 15px;
  }
}
#apropos .apropos__main__heading__title, #magasin .apropos__main__heading__title {
  margin-bottom: 0;
}
#apropos .apropos__main__heading__subtitle, #magasin .apropos__main__heading__subtitle {
  max-width: 300px;
}
#apropos .apropos__main__section, #magasin .apropos__main__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 80px;
}
@media (max-width: 900px) {
  #apropos .apropos__main__section, #magasin .apropos__main__section {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 60px;
  }
}
#apropos .apropos__main__section--2 .apropos__main__section__contentContainer, #magasin .apropos__main__section--2 .apropos__main__section__contentContainer {
  order: 2;
}
@media (max-width: 900px) {
  #apropos .apropos__main__section--2 .apropos__main__section__contentContainer, #magasin .apropos__main__section--2 .apropos__main__section__contentContainer {
    order: inherit;
  }
}
#apropos .apropos__main__section--2 .apropos__main__section__imgContainer, #magasin .apropos__main__section--2 .apropos__main__section__imgContainer {
  order: 1;
}
@media (max-width: 900px) {
  #apropos .apropos__main__section--2 .apropos__main__section__imgContainer, #magasin .apropos__main__section--2 .apropos__main__section__imgContainer {
    order: inherit;
  }
}
#apropos .apropos__main__section__contentContainer, #magasin .apropos__main__section__contentContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#apropos .apropos__main__section__contentContainer__title, #magasin .apropos__main__section__contentContainer__title {
  margin-bottom: 0;
}
#apropos .apropos__main__section__contentContainer__content, #magasin .apropos__main__section__contentContainer__content {
  border-top: 1px solid black;
  margin-top: 15px;
  padding-top: 15px;
}
#apropos .apropos__main__section__imgContainer, #magasin .apropos__main__section__imgContainer {
  position: relative;
}
#apropos .apropos__main__section__imgContainer__img, #magasin .apropos__main__section__imgContainer__img {
  width: 100%;
}
#apropos .apropos__bcg, #magasin .apropos__bcg {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

/*********************************************
 PAGE NOTRE MAGASIN
*********************************************/
/*********************************************
  MINIATURE
*********************************************/
.products {
  position: relative;
  z-index: 2;
  justify-content: center;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 25px;
  row-gap: 50px;
}
@media (max-width: 1200px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .products {
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .products {
    grid-template-columns: repeat(1, 1fr);
  }
}
.products .product-miniature {
  position: relative;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
}
@media (max-width: 900px) {
  .products .product-miniature {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.products .product-miniature .thumbnail-container {
  box-shadow: none !important;
  margin-bottom: 0px !important;
  width: 100% !important;
  background: none !important;
  height: auto !important;
  height: 100% !important;
}
.products .product-miniature .thumbnail-container .thumbnail-top {
  width: 100%;
  position: relative !important;
  background: none;
  border-radius: 0;
  margin-bottom: 10px;
}
.products .product-miniature .thumbnail-container .thumbnail-top .product-thumbnail {
  background: none;
}
.products .product-miniature .thumbnail-container .thumbnail-top .product-thumbnail:hover picture img {
  transform: scale(1.1);
}
.products .product-miniature .thumbnail-container .thumbnail-top .product-thumbnail picture {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
.products .product-miniature .thumbnail-container .thumbnail-top .product-thumbnail picture img {
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products .product-miniature .thumbnail-container .thumbnail-top .highlighted-informations {
  display: none;
}
.products .product-miniature .thumbnail-container .product-description {
  z-index: 4 !important;
  position: relative !important;
  height: auto !important;
  padding: 0;
  width: 100% !important;
  margin: 0;
  box-shadow: none !important;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.products .product-miniature .thumbnail-container .product-description:after {
  display: none !important;
}
.products .product-miniature .thumbnail-container .product-description .product-title {
  margin: 0;
  padding: 0;
}
.products .product-miniature .thumbnail-container .product-description .product-title a {
  color: #0D0D0D;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.4;
  display: inline-block;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products .product-miniature .thumbnail-container .product-description .product-title a:hover {
  color: #B25821;
}
.products .product-miniature .thumbnail-container .product-description .product-price-and-shipping {
  margin-top: 8px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.products .product-miniature .thumbnail-container .product-description .product-price-and-shipping .regular-price {
  color: #ACACAC;
  font-weight: normal;
  font-size: 1.1rem;
  margin-right: 10px;
  text-decoration: line-through #ACACAC;
}
.products .product-miniature .thumbnail-container .product-description .product-price-and-shipping .discount-percentage, .products .product-miniature .thumbnail-container .product-description .product-price-and-shipping .discount-amount {
  color: #ACACAC;
  font-weight: normal;
  font-size: 1.1rem;
}
.products .product-miniature .thumbnail-container .product-description .product-price-and-shipping .price {
  color: #ACACAC;
  font-weight: 600;
  font-size: 1.1rem;
}
.products .product-miniature .thumbnail-container .product-description .product-buttons {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.products .product-miniature .thumbnail-container .product-description .product-buttons:after {
  display: none !important;
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  background: #ACACAC;
  pointer-events: none;
}
.products .product-miniature .thumbnail-container .product-description .product-buttons #add-to-cart-or-refresh {
  display: none !important;
}
.products .product-miniature .thumbnail-container .product-description .product-buttons #add-to-cart-or-refresh button {
  display: flex;
  padding: 5px;
  background: none;
}
.products .product-miniature .thumbnail-container .product-description .product-buttons #add-to-cart-or-refresh button:hover svg {
  fill: #B25821;
  transform: scale(1.1);
}
.products .product-miniature .thumbnail-container .product-description .product-buttons #add-to-cart-or-refresh button svg {
  height: 16px;
  width: 16px;
  fill: #ACACAC;
  transform: scale(1);
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products .product-miniature .thumbnail-container .product-description .product-buttons .loupe {
  display: flex;
  padding: 5px;
  background: none;
}
.products .product-miniature .thumbnail-container .product-description .product-buttons .loupe:hover svg {
  fill: #B25821;
  transform: scale(1.1);
}
.products .product-miniature .thumbnail-container .product-description .product-buttons .loupe svg {
  height: 16px;
  width: 16px;
  fill: #ACACAC;
  transform: scale(1);
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products .product-miniature .thumbnail-container .product-description .product-buttons .loupe span {
  display: none;
}
.products .product-miniature .thumbnail-container .wishlist-button-add {
  display: none !important;
}

#category #left-column {
  z-index: 2;
  background: none;
}
#category #content-wrapper > #main #js-product-list-header .block-category {
  background: none;
  margin-bottom: 0;
}
#category #content-wrapper > #main #js-product-list-header .block-category .block-category-inner {
  display: none;
}
#category #content-wrapper > #main #subcategories {
  display: none;
}
#category #content-wrapper > #main #products #js-product-list-top {
  margin: 0;
  margin-bottom: 1em;
  border: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
#category #content-wrapper > #main #products #js-product-list-top:after {
  display: none;
}
@media (max-width: 768px) {
  #category #content-wrapper > #main #products #js-product-list-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
#category #content-wrapper > #main #products #js-product-list-top > .total-products {
  margin-bottom: 0;
}
#category #content-wrapper > #main #products #js-product-list-top > .total-products p {
  color: #ACACAC;
  font-size: 0.887rem;
  font-weight: lighter;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row > span {
  color: #ACACAC;
  font-size: 0.887rem;
  font-weight: lighter;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row .products-sort-order {
  width: auto;
  padding-right: 0;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row .products-sort-order .btn-unstyle {
  width: auto;
  min-width: 200px;
  background: #F2F2ED;
  color: 1rem;
  font-size: 1rem;
  border-radius: 10px;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row .products-sort-order .dropdown-menu {
  width: auto;
  min-width: 100%;
  background: #F2F2ED;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row .products-sort-order .dropdown-menu a {
  background: #F2F2ED;
  color: #0D0D0D;
  font-size: 1rem;
  padding: 6px 10px;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row .products-sort-order .dropdown-menu a:hover {
  background: #E5E4DC;
  color: #0D0D0D;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-lg-7 .sort-by-row .filter-button {
  display: none !important;
}
#category #content-wrapper > #main #products #js-product-list-top > .col-sm-12 {
  color: #ACACAC;
  font-size: 0.887rem;
  font-weight: lighter;
  text-align: right !important;
}
#category #content-wrapper > #main #products #js-product-list .pagination {
  padding-top: 30px;
  padding-bottom: 10px;
}
#category #content-wrapper > #main #products #js-product-list .pagination > .col-md-4 {
  display: none;
}
#category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
#category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list {
  padding: 0;
  background: none;
}
#category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list li a, #category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list li span {
  color: #ACACAC;
  font-size: 1rem;
}
#category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list li.current a, #category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list li.current span {
  color: #0D0D0D;
  opacity: 1;
}
#category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list li a.previous, #category #content-wrapper > #main #products #js-product-list .pagination > .col-md-6 .page-list li a.next {
  top: -2px;
}
#category #content-wrapper > #main #products #js-product-list .hidden-md-up.text-xs-right.up {
  display: none !important;
}
#category #content-wrapper > #main #js-product-list-footer {
  display: none;
}
@media (max-width: 480px) {
  #category #content-wrapper #js-product-list > .products {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
}
#category #content-wrapper #js-product-list section.page-not-found {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem;
  position: relative;
  padding: 30px 20px;
  background-color: #ffffff;
  text-align: center;
}
@media (max-width: 900px) {
  #category #content-wrapper #js-product-list section.page-not-found {
    padding: 30px 20px;
  }
}
#category #content-wrapper #js-product-list section.page-not-found #search_widget form {
  width: 400px;
}
@media (max-width: 480px) {
  #category #content-wrapper #js-product-list section.page-not-found #search_widget form {
    width: 300px;
  }
}

/*********************************************
DETAIL PRODUIT - Normal
*********************************************/
#product .mainWrapper__content {
  padding-bottom: 0;
  min-height: 600px;
}
#product .mainWrapper__content div#content-wrapper section#main > .row.product-container {
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative;
  z-index: 2;
  justify-content: center;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  #product .mainWrapper__content div#content-wrapper section#main > .row.product-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 600px) {
  #product .mainWrapper__content div#content-wrapper section#main > .row.product-container {
    gap: 30px;
  }
}
#product .mainWrapper__content div#content-wrapper section.featured-products {
  position: relative;
  padding: 0 !important;
  padding-top: 20px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
#product .mainWrapper__content div#content-wrapper section.featured-products > h2 {
  z-index: 2;
}
#product .mainWrapper__content div#content-wrapper section.featured-products .products {
  z-index: 2;
  padding: 0;
}
#product .mainWrapper__content div#content-wrapper > #single-product-pdf {
  display: none !important;
}
#product .left-content {
  z-index: 3;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  #product .left-content {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
#product .left-content section.page-content {
  max-width: 100% !important;
  width: 100% !important;
}
#product .left-content section.page-content .images-container .product-cover {
  width: calc(100% - 100px - 10px);
  border-radius: 0;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 1200px) {
  #product .left-content section.page-content .images-container .product-cover {
    width: calc(100% - 60px - 10px);
  }
}
#product .left-content section.page-content .images-container .product-cover picture img {
  border-radius: 20px;
}
#product .left-content section.page-content .images-container .product-cover svg {
  display: none;
}
#product .left-content section.page-content .images-container .product-cover > .product-cover-label {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(15deg);
  width: 110px;
}
@media (max-width: 600px) {
  #product .left-content section.page-content .images-container .product-cover > .product-cover-label {
    width: 80px !important;
  }
}
#product .left-content section.page-content .images-container .product-cover > .product-cover-label .product-cover-label-img {
  background: none;
}
#product .left-content section.page-content .images-container .product-cover .layer {
  display: none !important;
}
#product .left-content section.page-content .images-container .js-qv-mask {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
@media (max-width: 1200px) {
  #product .left-content section.page-content .images-container .js-qv-mask {
    width: 60px;
  }
}
#product .left-content section.page-content .images-container .js-qv-mask .product-images {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
#product .left-content section.page-content .images-container .js-qv-mask .product-images > .thumb-container picture {
  display: inline-block;
}
#product .left-content section.page-content .images-container .js-qv-mask .product-images > .thumb-container picture img {
  width: 100%;
  margin: 0;
  border-radius: 8px;
  border: 2px solid transparent;
}
#product .left-content section.page-content .images-container .js-qv-mask .product-images > .thumb-container picture img:hover, #product .left-content section.page-content .images-container .js-qv-mask .product-images > .thumb-container picture img.selected {
  border: 2px solid #B25821;
}
#product .left-content section.page-content .scroll-box-arrows {
  display: none !important;
}
#product .right-content {
  z-index: 2;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1024px) {
  #product .right-content {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
#product .right-content .product-title {
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
  padding-right: 70px;
}
#product .right-content .product-illustrations {
  position: absolute;
  top: -10px;
  right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 600px) {
  #product .right-content .product-illustrations {
    position: relative;
    top: 0;
    right: inherit;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
#product .right-content .product-illustrations img {
  margin: 5px;
  width: 50px;
}
#product .right-content .product-subtitle {
  color: #B25821;
  font-style: italic;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
#product .right-content .product-description {
  margin-bottom: 40px;
}
#product .right-content > div:first-child.product-additional-info > .pv_side_video {
  display: none !important;
}
#product .right-content .product-actions > form {
  margin-left: 0;
}
@media (max-width: 900px) {
  #product .right-content .product-actions > form {
    margin-left: auto;
    margin-right: auto;
  }
}
#product .right-content .product-actions .product-discounts {
  margin-bottom: 0;
}
#product .right-content .product-add-to-cart {
  text-align: left;
}
#product .right-content .product-add-to-cart z .control-label {
  color: #ACACAC;
}
#product .right-content .product-add-to-cart .add {
  width: auto;
}
#product .right-content .product-add-to-cart .add .button.add-to-cart, #product .right-content .product-add-to-cart .add #cms #content input.add-to-cart[type=submit], #cms #content #product .right-content .product-add-to-cart .add input.add-to-cart[type=submit], #product .right-content .product-add-to-cart .add .cart-summary .block-promo .cart-voucher .promo-code form button.add-to-cart, .cart-summary .block-promo .cart-voucher .promo-code form #product .right-content .product-add-to-cart .add button.add-to-cart, #product .right-content .product-add-to-cart .add #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.add-to-cart, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #product .right-content .product-add-to-cart .add a.add-to-cart, #product .right-content .product-add-to-cart .add #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.add-to-cart, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form #product .right-content .product-add-to-cart .add button.add-to-cart, #product .right-content .product-add-to-cart .add #checkout .modal-content .js-modal-content .add-to-cart.btn.btn-secondary, #checkout .modal-content .js-modal-content #product .right-content .product-add-to-cart .add .add-to-cart.btn.btn-secondary {
  height: auto;
  min-height: 68px;
  padding: 0px 48px;
}
#product .right-content .product-add-to-cart .add .button.add-to-cart span, #product .right-content .product-add-to-cart .add #cms #content input.add-to-cart[type=submit] span, #cms #content #product .right-content .product-add-to-cart .add input.add-to-cart[type=submit] span, #product .right-content .product-add-to-cart .add .cart-summary .block-promo .cart-voucher .promo-code form button.add-to-cart span, .cart-summary .block-promo .cart-voucher .promo-code form #product .right-content .product-add-to-cart .add button.add-to-cart span, #product .right-content .product-add-to-cart .add #checkout #content .cart-grid-body .checkout-step .nav .nav-item a.add-to-cart span, #checkout #content .cart-grid-body .checkout-step .nav .nav-item #product .right-content .product-add-to-cart .add a.add-to-cart span, #product .right-content .product-add-to-cart .add #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form button.add-to-cart span, #checkout #content .cart-grid-right #js-checkout-summary .block-promo .cart-voucher .promo-code form #product .right-content .product-add-to-cart .add button.add-to-cart span, #product .right-content .product-add-to-cart .add #checkout .modal-content .js-modal-content .add-to-cart.btn.btn-secondary span, #checkout .modal-content .js-modal-content #product .right-content .product-add-to-cart .add .add-to-cart.btn.btn-secondary span {
  height: auto;
  min-height: 68px;
}
#product .right-content .product-attachments {
  margin-top: 20px;
  margin-bottom: 20px;
}
#product .right-content .product-attachments > h3 {
  color: #B25821;
  font-family: "din-2014", sans-serif;
  font-size: 1.272rem;
  font-weight: normal;
  text-transform: none;
  margin-bottom: 10px;
}
#product .right-content .product-attachments .attachment h4 {
  position: relative;
  margin-bottom: 2px;
}
#product .right-content .product-attachments .attachment h4 a {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #B25821;
  font-family: "din-2014", sans-serif;
  font-size: 1rem;
}
#product .right-content .product-attachments .attachment p {
  font-family: "din-2014", sans-serif;
  font-size: 0.887rem;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
#product .right-content #product-details {
  margin-top: 10px;
}
#product .right-content #product-details * {
  font-family: "din-2014", sans-serif;
}
#product .right-content .product-information .product-customization .card.card-block {
  background: none;
  font-size: 1rem;
  font-weight: lighter;
  padding: 0;
}
#product .right-content .product-information .product-customization .card.card-block .h4.card-title {
  font-family: "din-2014", sans-serif;
  font-size: 0.887rem;
}
#product .right-content .product-information .product-customization .card.card-block > form textarea.product-message {
  height: 120px;
  resize: vertical;
  border-radius: 10px;
  background-color: #ffffff;
  color: #0D0D0D;
  border: 1px solid #0D0D0D;
  outline: none !important;
}
#product .right-content .product-information .product-customization .card.card-block > form .clearfix .btn.btn-primary {
  padding: 10px 28px;
  font-size: 0.887rem;
  float: none;
}
#product .right-content .product-pack {
  margin-bottom: 40px;
}
#product .right-content .product-pack .h4 {
  font-family: "din-2014", sans-serif;
  font-size: 0.887rem;
}
#product .right-content .product-pack article:last-child .card {
  border-bottom: none;
}
#product .right-content .product-pack article .card {
  background: none;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0D0D0D;
}
#product .right-content .product-pack article .card .pack-product-container {
  display: flex;
  align-items: center;
}
#product .right-content .product-pack article .card .pack-product-container .thumb-mask {
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin: 0;
  border: none;
  margin: 0;
}
#product .right-content .product-pack article .card .pack-product-container .thumb-mask .mask {
  margin: 0;
  height: 40px;
  width: 40px;
}
#product .right-content .product-pack article .card .pack-product-container .thumb-mask .mask a img {
  width: 40px;
  height: 40px;
}
#product .right-content .product-pack article .card .pack-product-container .pack-product-name {
  margin-left: 5px;
  margin-right: 5px;
  text-align: left;
}
#product .right-content .product-pack article .card .pack-product-container .pack-product-name a {
  font-weight: bold;
  color: #0D0D0D;
  font-size: 0.887rem;
}
#product .right-content .product-pack article .card .pack-product-container .pack-product-name a:hover {
  color: #B25821;
}
#product .right-content .product-pack article .card .pack-product-container .pack-product-price strong {
  color: #0D0D0D;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
}
#product .right-content .product-pack article .card .pack-product-container .pack-product-quantity {
  display: none;
}
#product .right-content .orangeAndInfos__orange {
  margin-top: 40px;
}
#product .right-content .orangeAndInfos__orange a {
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
}
#product .right-content .orangeAndInfos__orange a:hover {
  text-decoration: underline;
}
#product .right-content .orangeAndInfos__orange a:before {
  content: " ";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6600;
}
#product .right-content .orangeAndInfos__firstDesc {
  margin-top: 40px;
}
#product .right-content .orangeAndInfos__firstDesc p {
  font-size: 1.1rem;
  color: #B25821;
  font-style: italic;
  line-height: 1.4;
}
#product .right-content .orangeAndInfos__firstDesc p a {
  display: inline-block;
  padding: 4px 8px;
  background: #B25821;
  margin-right: 5px;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
}
#product .right-content .orangeAndInfos__allerg {
  margin-top: 40px;
}
#product .right-content .orangeAndInfos__allerg p {
  font-size: 1.1rem;
  color: #0D0D0D;
  font-weight: bold;
  font-style: italic;
}

ul.product-flags {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  margin: 0;
  top: 50px;
  left: 0;
  width: 100%;
  transform: translateX(-100%) rotateZ(-90deg);
  transform-origin: top right;
  display: flex;
  gap: 10px;
  flex-direction: row !important;
  justify-content: flex-end;
}
ul.product-flags li.product-flag {
  margin: 0 !important;
  min-height: 30px !important;
  min-width: 0 !important;
  display: inline-block;
  padding: 5px 10px;
  background-color: #B25821;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold !important;
  font-size: 0.887rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  pointer-events: none;
}
ul.product-flags li.product-flag.discount, ul.product-flags li.product-flag.discount-amount, ul.product-flags li.product-flag.discount-percentage {
  background-color: #D1BDA5;
}
@media (max-width: 768px) {
  ul.product-flags li.product-flag {
    font-size: 0.75rem;
  }
}

.product-variants {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.product-variants .product-variants-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .product-variants .product-variants-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.product-variants .product-variants-item .control-label {
  display: block;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  width: auto;
  margin-right: 15px;
}
.product-variants .product-variants-item select {
  box-shadow: none;
  font-size: 0.887rem;
  width: 100%;
  border-radius: 0;
  font-weight: normal;
  text-transform: none;
  border: none;
  background: none;
  border: 1px solid #0D0D0D;
  box-shadow: none;
  border-radius: 10px;
  outline: none;
  height: 40px;
  padding-left: 12px;
  padding-right: 40px;
  width: auto;
  min-width: 70px;
  -webkit-appearance: menulist;
}
.product-variants .product-variants-item ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: auto;
  margin-top: 7px;
  width: auto;
}
.product-variants .product-variants-item ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.product-variants .product-variants-item ul li label {
  margin-bottom: 0;
}
.product-variants .product-variants-item ul li label input.input-radio {
  display: none;
}
.product-variants .product-variants-item ul li label input:focus + span, .product-variants .product-variants-item ul li label input:hover .product-variants .product-variants-item ul li label input:active + span, .product-variants .product-variants-item ul li label input:checked + span {
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #0D0D0D;
}
.product-variants .product-variants-item ul li label span.color {
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 6px;
  box-shadow: none;
  border: 1px solid #0D0D0D;
}
.product-variants .product-variants-item ul li label span.radio-label {
  border: 1px solid #0D0D0D;
  box-shadow: none;
  background: none;
  font-size: 1rem;
  font-weight: normal;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-prices {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin: 10px 0px 40px;
}
.product-prices .product-discount {
  margin: 0;
  margin-right: 15px;
}
.product-prices .product-discount .regular-price {
  vertical-align: middle;
  text-decoration: none;
  margin: 0;
  color: #ACACAC;
  font-family: "din-2014", sans-serif;
  position: relative;
}
.product-prices .product-discount .regular-price .price {
  color: #ACACAC;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  font-size: 1.272rem;
}
.product-prices .product-discount .regular-price .discount-price {
  font-size: 0.887rem;
}
.product-prices .product-discount .regular-price .discount-price * {
  color: #ACACAC !important;
}
.product-prices .product-discount .regular-price .regular-price {
  color: #ACACAC;
  font-family: "din-2014", sans-serif;
}
.product-prices .product-discount .regular-price .final-price {
  color: #ACACAC;
  font-family: "din-2014", sans-serif;
  font-size: 1rem;
}
.product-prices .product-price {
  margin: 0;
}
.product-prices .product-price.has-discount {
  color: #ACACAC;
}
.product-prices .product-price .current-price {
  margin: 0;
}
.product-prices .product-price .current-price .current-price-value {
  color: #0D0D0D;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  font-size: 1.272rem;
  vertical-align: middle;
}
.product-prices .product-price .current-price .discount {
  display: none !important;
}
.product-prices .product-pack-price {
  margin: 0px 10px;
}
.product-prices .tax-shipping-delivery-label {
  display: none;
}
.product-prices .discount {
  margin: 0;
  margin-left: 15px;
  text-transform: none;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  display: inline-block !important;
  color: #ACACAC;
  background: none;
  padding: 5px;
  font-size: 0.887rem;
}
.product-add-to-cart {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .product-add-to-cart {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.product-add-to-cart .control-label {
  display: block;
  font-family: "din-2014", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  margin-right: 15px;
  width: auto;
  margin-bottom: 0;
}
.product-add-to-cart .product-quantity {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 50px;
}
@media (max-width: 480px) {
  .product-add-to-cart .product-quantity {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.product-add-to-cart .product-quantity .qty {
  margin-right: 10px;
  margin-bottom: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.product-add-to-cart .product-quantity .qty .control-label {
  width: auto;
  margin: 0;
  margin-right: 14px;
}
@media (max-width: 900px) {
  .product-add-to-cart .product-quantity .qty .control-label {
    text-align: left;
  }
}
.product-add-to-cart .product-quantity .qty > div {
  box-shadow: none;
  background: none;
}
.product-add-to-cart .product-quantity .qty > div input#quantity_wanted {
  background: none;
  border-color: #0D0D0D;
  text-align: center;
  width: 60px;
  font-weight: bold;
  font-family: "din-2014", sans-serif;
}
.product-add-to-cart .product-quantity .qty > div .input-group-btn-vertical {
  background: none;
}
.product-add-to-cart .product-quantity .qty > div .input-group-btn-vertical .bootstrap-touchspin-up {
  background: none;
  border-color: #0D0D0D;
}
.product-add-to-cart .product-quantity .qty > div .input-group-btn-vertical .bootstrap-touchspin-down {
  background: none;
  border-color: #0D0D0D;
}
.product-add-to-cart .product-quantity .add {
  margin-bottom: 0;
  min-height: 50px;
}
@media (max-width: 480px) {
  .product-add-to-cart .product-quantity .add {
    margin: 20px auto;
    padding: 0;
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .product-add-to-cart .product-quantity .add .button--ribbon.add-to-cart {
    width: 100%;
  }
}
.product-add-to-cart #product-availability {
  display: none;
}

/*********************************************
 pagination
*********************************************/
div.hidden-md-up.text-xs-right.up .btn {
  display: none !important;
}

/*********************************************
 modal quickview on home + single detail
*********************************************/
.modal {
  background: rgba(255, 255, 255, 0.9);
}

.modal.quickview .modal-dialog {
  justify-content: center;
}
.modal.quickview i.material-icons {
  font-family: "Material Icons" !important;
}
.modal.quickview .modal-content {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  border: none;
}
.modal.quickview .modal-header {
  padding: 0;
  height: 0;
}
.modal.quickview .modal-header > button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.modal.quickview .modal-body {
  padding: 0;
}
.modal.quickview .modal-body > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .modal.quickview .modal-body > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.modal.quickview .modal-body .quickview__image {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.modal.quickview .modal-body .images-container {
  padding-left: 0;
  padding-right: 0;
}
.modal.quickview .modal-body .images-container .product-cover {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .modal.quickview .modal-body .images-container .product-cover {
    margin-left: auto;
    margin-right: auto;
  }
}
.modal.quickview .modal-body .images-container .js-qv-mask {
  display: none !important;
}
.modal.quickview .modal-body .images-container img {
  box-shadow: none;
}
@media (max-width: 768px) {
  .modal.quickview .modal-body .images-container img {
    font-size: 1rem;
    max-width: 300px;
  }
}
.modal.quickview .modal-body .images-container .thumb-container img {
  margin-right: 0;
  box-shadow: none !important;
}
.modal.quickview .modal-body .images-container .thumb-container img:hover {
  border: 1px solid #B25821;
}
.modal.quickview .modal-body .images-container .thumb-container .thumb.selected {
  border: 1px solid #B25821;
}
.modal.quickview .modal-body .quickview__content {
  padding: 40px 20px !important;
}
@media (max-width: 768px) {
  .modal.quickview .modal-body .quickview__content {
    padding: 10px 20px !important;
  }
}
.modal.quickview .modal-body .col-md-6 h1 {
  color: #0D0D0D;
  font-family: "din-2014", sans-serif;
  font-size: 1.272rem;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .modal.quickview .modal-body .col-md-6 h1 {
    font-size: 1rem;
  }
}
.modal.quickview .modal-body .col-md-6 h1 a {
  color: #0D0D0D;
  font-family: "din-2014", sans-serif;
  font-size: 1.272rem;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .modal.quickview .modal-body .col-md-6 h1 a {
    font-size: 1rem;
  }
}
.modal.quickview .modal-body .col-md-6 h1 a:hover {
  color: #B25821;
}
.modal.quickview .modal-body #product-description-short {
  color: #0D0D0D;
}
.modal.quickview .modal-body #product-description-short p, .modal.quickview .modal-body #product-description-short span {
  background: none;
}
.modal.quickview .modal-body #product-description-short iframe {
  margin-top: 10px;
  height: 250px;
  max-width: 100%;
}
.modal.quickview .modal-body .product-actions .product-variants select {
  box-shadow: none;
}
@media screen and (min-width: 601px) and (max-width: 700px) {
  .modal.quickview .modal-body .product-actions .product-quantity {
    display: flex;
    flex-direction: column;
  }
}
.modal.quickview .modal-body .product-actions #product-availability {
  font-size: 0.887rem;
  color: #0D0D0D;
  font-weight: normal;
}
.modal.quickview .modal-body .product-actions #product-availability i {
  display: none;
}
@media (max-width: 768px) {
  .modal.quickview .modal-body .product-actions .add {
    width: 100%;
  }
}
.modal.quickview .modal-body .product-actions .btn.btn-primary.add-to-cart {
  width: 100% !important;
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .modal.quickview .modal-body .product-actions .btn.btn-primary.add-to-cart {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1rem;
  }
}
.modal.quickview .modal-body .quickview-link {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1001px) {
  .modal.quickview .modal-body .product-variants .product-variants-item ul#group_6 {
    display: inline-block;
  }
}
.modal.quickview .modal-footer {
  display: none !important;
  border: none;
}
.modal.quickview .modal-footer .share {
  display: none;
}

#product-modal .modal-dialog {
  background-color: #ffffff;
  max-width: 700px;
  transform: translateX(-60px);
}
@media screen and (max-width: 992px) {
  #product-modal .modal-dialog {
    transform: translateX(0px);
  }
}
#product-modal .modal-content .modal-body {
  padding: 0;
  margin: 0;
}
#product-modal .modal-content .modal-body .mask {
  max-height: none;
}
#product-modal .modal-content .modal-body figure img {
  width: 100%;
  height: auto;
}
#product-modal .modal-content .modal-body figure .image-caption {
  border: none;
  margin-top: 10px;
  text-align: center;
}
#product-modal .modal-content .modal-body .product-images {
  margin-left: 10px;
}
#product-modal .modal-content .modal-body .product-images img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
  border: 1px solid #B25821;
}
#product-modal .modal-content .modal-body .product-images img.selected {
  border: 1px solid #B25821;
}
#product-modal .modal-content .modal-body .product-images img:hover {
  box-shadow: none;
  border: 1px solid #B25821;
}
#product-modal .modal-footer .product-additional-info .share {
  display: none;
}

.fancybox-overlay {
  background: none !important;
  background-color: rgba(255, 255, 255, 0.8) !important;
}

/*****************
COMMONS
******************/
.myaccount .card {
  background: none;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 20px !important;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .myaccount .card {
    width: calc(100% - 40px);
  }
}
.myaccount .page-footer {
  display: none !important;
}
.myaccount .mainWrapper__content {
  position: relative;
  padding-bottom: 60px !important;
}
.myaccount h6, .myaccount p {
  font-weight: 300;
  font-size: 1rem;
}
.myaccount h6 {
  position: relative;
  font-weight: normal;
  font-family: "din-2014", sans-serif;
  color: #B25821;
  font-size: 1.618rem;
  line-height: 1;
  padding-bottom: 0em;
  margin-bottom: 0.6em;
  text-align: left;
  max-width: 480px;
  margin-top: -20px;
}
@media (max-width: 1024px) {
  .myaccount h6 {
    font-size: 1.272rem;
  }
}
@media (max-width: 480px) {
  .myaccount h6 {
    font-size: 1.272rem;
  }
}
.myaccount h6:after {
  display: none;
}
.myaccount a:hover {
  color: #B25821;
}
.myaccount #content {
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}
@media screen and (max-width: 1340px) {
  .myaccount #content > .row.wrapper, .myaccount #cart #content > .row.featured-products, #cart .myaccount #content > .row.featured-products, .myaccount .mainWrapper.withdeco #content > .row.mainWrapper__content, .mainWrapper.withdeco .myaccount #content > .row.mainWrapper__content, .myaccount #notifications #content > .row.container, #notifications .myaccount #content > .row.container, .myaccount #category #content > .row.mainWrapper__content, #category .myaccount #content > .row.mainWrapper__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.myaccount #content .mainContainer {
  display: grid;
  gap: 30px;
  grid-template-columns: 250px 1fr;
}
@media (max-width: 900px) {
  .myaccount #content .mainContainer {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.myaccount #content .mainContainer__left {
  width: 100%;
}
@media (max-width: 900px) {
  .myaccount #content .mainContainer__left {
    order: 2;
  }
}
.myaccount #content .mainContainer__right {
  width: 100%;
}
@media (max-width: 900px) {
  .myaccount #content .mainContainer__right {
    order: 1;
  }
}
.myaccount #content .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.myaccount #content .links__item {
  display: grid !important;
  grid-template-columns: 30px auto;
  gap: 15px;
  align-items: center;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}
.myaccount #content .links__item:hover svg {
  fill: #B25821;
}
.myaccount #content .links__item:hover span {
  color: #B25821;
}
.myaccount #content .links__item svg {
  fill: #ACACAC;
  width: 30px;
  height: 30px;
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.myaccount #content .links__item span {
  color: #ACACAC;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}
.myaccount #content table {
  border-collapse: collapse;
  border: none;
}
.myaccount #content table a {
  color: #B25821;
  display: inline-block;
}
.myaccount #content table a + a {
  margin-left: 10px;
}
.myaccount #content table th {
  border: none;
  background: none;
  vertical-align: middle;
  padding: 22px 8px;
}
.myaccount #content table td {
  border: none;
  background: none;
  vertical-align: middle;
  padding: 12px 8px;
}
.myaccount #content table thead tr th, .myaccount #content table thead tr td {
  background: none;
  padding: 22px 8px;
  font-weight: bold;
  font-size: 0.887rem;
  text-transform: none;
}
.myaccount #content table tbody tr {
  border-top: 1px solid #DDDDDD;
}
.myaccount #content table tbody tr th, .myaccount #content table tbody tr td {
  background: none;
  vertical-align: middle;
  padding: 12px 8px;
  font-weight: normal;
  font-size: 0.887rem;
}
.myaccount #content table tbody tr td.order-actions a {
  color: #B25821;
}
.myaccount #content .box {
  box-shadow: none;
  padding: 0;
  background: none;
}
.myaccount #content .form-footer {
  margin-top: 15px;
  margin-bottom: 0;
}
.myaccount #main .page-footer {
  border-top: 1px solid transparent;
  margin-top: 4em;
  text-align: center;
  padding-top: 1em;
}
.myaccount #main .page-footer a {
  display: inline-block;
  color: #B25821;
  padding: 0.5em 1em;
  margin-right: 10px;
  margin-bottom: 1em;
  justify-content: center;
  display: inline-block;
  width: auto;
}
.myaccount #main .page-footer a:hover {
  text-decoration: none;
}
.myaccount #main .page-footer a:hover i {
  text-decoration: none;
}
.myaccount #main .page-footer a i {
  display: inline-block;
  margin-right: 5px;
  font-size: 1rem;
  color: #B25821;
  text-decoration: none;
}
.myaccount #main .page-footer a span {
  color: #B25821 !important;
  font-weight: 200;
  font-size: 1rem;
}
.myaccount .btn:focus, .myaccount .btn:hover {
  text-decoration: none;
}

.backlinkContainer {
  margin-top: 40px;
  text-align: center;
}
/*****************
MY ACCOUNT
 ******************/
.page-my-account #header .headerNav__bottom {
  border-bottom: none;
}
.page-my-account #content .row.wrapper, .page-my-account #content #cart .row.featured-products, #cart .page-my-account #content .row.featured-products, .page-my-account #content .mainWrapper.withdeco .row.mainWrapper__content, .mainWrapper.withdeco .page-my-account #content .row.mainWrapper__content, .page-my-account #content #notifications .row.container, #notifications .page-my-account #content .row.container, .page-my-account #content #category .row.mainWrapper__content, #category .page-my-account #content .row.mainWrapper__content {
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 480px) {
  .page-my-account #content .row.wrapper, .page-my-account #content #cart .row.featured-products, #cart .page-my-account #content .row.featured-products, .page-my-account #content .mainWrapper.withdeco .row.mainWrapper__content, .mainWrapper.withdeco .page-my-account #content .row.mainWrapper__content, .page-my-account #content #notifications .row.container, #notifications .page-my-account #content .row.container, .page-my-account #content #category .row.mainWrapper__content, #category .page-my-account #content .row.mainWrapper__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-my-account #content .row.wrapper .account-round, .page-my-account #content #cart .row.featured-products .account-round, #cart .page-my-account #content .row.featured-products .account-round, .page-my-account #content .mainWrapper.withdeco .row.mainWrapper__content .account-round, .mainWrapper.withdeco .page-my-account #content .row.mainWrapper__content .account-round, .page-my-account #content #notifications .row.container .account-round, #notifications .page-my-account #content .row.container .account-round, .page-my-account #content #category .row.mainWrapper__content .account-round, #category .page-my-account #content .row.mainWrapper__content .account-round {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-color: #8F181B;
  pointer-events: none;
}
@media (max-width: 600px) {
  .page-my-account #content .row.wrapper .account-round, .page-my-account #content #cart .row.featured-products .account-round, #cart .page-my-account #content .row.featured-products .account-round, .page-my-account #content .mainWrapper.withdeco .row.mainWrapper__content .account-round, .mainWrapper.withdeco .page-my-account #content .row.mainWrapper__content .account-round, .page-my-account #content #notifications .row.container .account-round, #notifications .page-my-account #content .row.container .account-round, .page-my-account #content #category .row.mainWrapper__content .account-round, #category .page-my-account #content .row.mainWrapper__content .account-round {
    width: 350px;
    height: 350px;
  }
}
.page-my-account #content .logoutContainer {
  text-align: center;
  margin-top: 40px;
}
.page-my-account #content .logoutContainer .logout {
  position: relative;
  z-index: 2;
}
.page-my-account #main .page-footer {
  display: none;
}

/*****************
INFOS PERSONNELLES
 ******************/
.page-identity .mainWrapper__content {
  border: none;
}
.page-identity #content {
  max-width: none;
  width: 100%;
}
.page-identity #content .head__contentContainer {
  max-width: 100%;
}
.page-identity #content > form {
  background: none;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 20px !important;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-identity .form-footer {
  text-align: center !important;
}
@media (max-width: 600px) {
  .page-identity .form-footer {
    margin-bottom: 0;
  }
}
.page-identity .form-footer button {
  float: none !important;
}

/*****************
ADRESSES
 ******************/
.page-addresses .addresses-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .page-addresses .addresses-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-addresses .address {
  background: none;
  border-radius: 20px;
  border: 1px solid #B25821;
  padding: 30px 20px;
  width: 100%;
  max-width: 600px;
  float: none;
  box-shadow: none;
  margin: 0;
}
@media (max-width: 600px) {
  .page-addresses .address {
    padding: 40px 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-addresses .address .address-body {
  padding: 0;
  margin-left: 45px;
}
@media (max-width: 1200px) {
  .page-addresses .address .address-body {
    margin-left: 0;
  }
}
.page-addresses .address .address-body h4 {
  position: relative;
  color: #0D0D0D;
  font-size: 1rem;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-addresses .address .address-body address {
  min-height: auto;
  line-height: 2;
  font-family: "din-2014", sans-serif;
  font-weight: lighter;
  font-size: 1rem;
  color: #0D0D0D;
  margin-bottom: 20px;
}
.page-addresses .address .address-footer {
  padding: 0;
  margin: 0;
  margin-left: 45px;
  text-align: left;
  border-top: none;
  display: flex;
  flex-wrap: wrap;
}
.page-addresses .address .address-footer a {
  margin-right: 15px;
  font-size: 1rem;
  font-weight: lighter;
  color: #ACACAC;
  cursor: pointer;
  height: auto;
}
@media (max-width: 600px) {
  .page-addresses .address .address-footer a {
    margin-top: 10px;
  }
}
.page-addresses .address .address-footer a .svg {
  fill: #ACACAC;
  max-height: 16px;
  max-width: 16px;
  vertical-align: middle;
  margin-right: 10px;
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-addresses .address .address-footer a i {
  font-size: 1rem;
  color: #ACACAC;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-addresses .address .address-footer a span {
  color: #ACACAC;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-addresses .address .address-footer a.delete-address:hover .svg, .page-addresses .address .address-footer a[data-link-action=delete-address]:hover .svg {
  fill: #F23838;
}
.page-addresses .address .address-footer a.delete-address:hover i, .page-addresses .address .address-footer a[data-link-action=delete-address]:hover i {
  color: #F23838;
}
.page-addresses .address .address-footer a.delete-address:hover span, .page-addresses .address .address-footer a[data-link-action=delete-address]:hover span {
  color: #F23838;
}
.page-addresses .address .address-footer a:hover {
  text-decoration: none;
  color: #B25821;
}
.page-addresses .address .address-footer a:hover .svg {
  fill: #B25821;
}
.page-addresses .address .address-footer a:hover i {
  color: #B25821;
}
.page-addresses .address .address-footer a:hover span {
  color: #B25821;
}
.page-addresses .addresses-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.page-addresses .addresses-footer a {
  text-decoration: none;
  display: flex;
  display: inline-flex;
  align-items: center;
}
.page-addresses .addresses-footer a .svg {
  fill: #0D0D0D;
  margin-right: 10px;
  width: 16px;
  height: 16px;
}
.page-addresses .addresses-footer a span, .page-addresses .addresses-footer a i {
  margin: 0;
  color: #0D0D0D !important;
  font-size: 0.887rem;
  font-family: "din-2014", sans-serif;
  text-transform: uppercase;
}

/*****************
AJOUTER UNE ADRESSE
 ******************/
.page-address .mainWrapper__content {
  border: none;
}
.page-address #content {
  max-width: none;
  width: 100%;
}
.page-address #content .head__contentContainer {
  max-width: 100%;
}
.page-address #content .address-form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.page-address #content .address-form form {
  max-width: 100%;
}
.page-address #content .address-form form > section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .page-address #content .address-form form > section {
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}
.page-address .form-footer {
  text-align: center !important;
}
.page-address .form-footer button {
  float: none !important;
}

/*****************
ORDER SLIPS
 ******************/
#order-slip #content #notifications .alert {
  margin-bottom: 2em !important;
}
#order-slip .credit-slips .credit-slip > ul > li > a {
  color: #B25821;
}

/*****************
HISTORIQUE DES COMMANDES
 ******************/
.page-history .mainWrapper__content {
  min-height: 500px;
}
.page-history .head__contentContainer {
  margin-bottom: 10px;
}
.page-history .subhead {
  color: #ffffff;
  margin-bottom: 60px;
}
.page-history .order-container {
  box-shadow: none;
}
@media (max-width: 768px) {
  .page-history .order-container {
    padding: 40px 20px;
  }
}
.page-history tbody a {
  display: inline-block;
}
.page-history tbody a + a {
  margin-left: 10px;
}
.page-history .orders {
  background: none;
  padding: 40px;
  box-shadow: none;
  width: 100% !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .page-history .orders {
    padding: 40px 20px;
  }
}
@media (max-width: 480px) {
  .page-history .orders {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .page-history .orders .order {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-history .orders .order .row a h3 {
  color: #0D0D0D !important;
}
.page-history .orders .order .row .actions a {
  color: #B25821;
}

/*****************
HISTORIQUE DES COMMANDES - Detail
 ******************/
#order-detail .head {
  display: none !important;
}
#order-detail .order-detail-container {
  background: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  #order-detail .order-detail-container {
    padding: 40px 0;
  }
}
#order-detail .table {
  background: none !important;
}
#order-detail #wrapper ul li {
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 0.5em;
  text-transform: none;
}
#order-detail #wrapper ul li strong {
  font-weight: bold;
}
#order-detail #wrapper ul li a {
  font-size: 1.1rem;
  color: #B25821;
  margin-top: 20px;
  display: inline-block;
}
#order-detail #wrapper h3, #order-detail #wrapper h4 {
  font-weight: bold;
  font-size: 1rem;
  text-transform: none;
}
#order-detail #order-infos {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #order-detail #order-infos > .box:first-child > .row:first-child > div {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  #order-detail #order-infos > .box:first-child > .row:first-child > div.order__maintitle {
    margin-bottom: 20px;
  }
}
#order-detail #order-infos > .box:first-child > .row:first-child > div strong {
  color: #0D0D0D;
  font-weight: bold;
  font-size: 1.272rem;
}
#order-detail #order-infos .order__maintitle {
  position: relative;
  text-transform: none;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  font-size: 1.272rem;
}
#order-detail #order-infos .order__maintitle strong {
  font-size: 1.272rem;
  text-transform: uppercase;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
}
#order-detail #order-infos .order__maintitle strong:last-of-type {
  font-size: 0.887rem;
}
#order-detail #order-infos .order__maintitle strong:last-of-type span {
  font-size: 0.887rem;
}
#order-detail #order-infos .order__maintitle span {
  color: #B25821;
  font-weight: bold;
}
@media (max-width: 600px) {
  #order-detail #order-infos .orderTitleContainer {
    margin-bottom: 10px;
  }
  #order-detail #order-infos .orderTitleContainer > div {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
  }
  #order-detail #order-infos .orderTitleContainer > div:first-child {
    order: 2;
  }
}
#order-detail #order-infos .orderTitle {
  font-weight: 300;
  color: #B25821;
  font-size: 1.272rem;
  text-transform: none;
  margin-bottom: 2em;
  display: inline-block;
}
@media (max-width: 600px) {
  #order-detail #order-infos .orderTitle {
    margin-bottom: 0.5em;
  }
}
#order-detail #order-infos a {
  font-weight: normal;
  color: #B25821;
  font-size: 1rem;
}
#order-detail #order-history {
  margin-bottom: 10px;
}
#order-detail #delivery-address, #order-detail #invoice-address {
  margin-bottom: 10px;
}
#order-detail #delivery-address h4, #order-detail #invoice-address h4 {
  text-transform: uppercase;
  color: #0D0D0D;
  font-weight: 600;
}
#order-detail #delivery-address address, #order-detail #invoice-address address {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}
#order-detail .orderAttachments {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #order-detail .orderAttachments table {
    border: none;
  }
}
@media (max-width: 768px) {
  #order-detail .orderAttachments table thead th {
    display: none;
  }
}
@media (max-width: 768px) {
  #order-detail .orderAttachments table tbody tr {
    display: block;
    border-bottom: 1px solid #DDDDDD;
    padding: 1em 0;
  }
}
@media (max-width: 768px) {
  #order-detail .orderAttachments table tbody tr td {
    display: block;
    width: 100%;
    border: none;
  }
}
#order-detail .orderAttachments table tbody tr td p, #order-detail .orderAttachments table tbody tr td li {
  font-size: 0.887rem;
}
#order-detail .orderAttachments table tbody tr td ul {
  margin-bottom: 1em;
}
#order-detail .orderAttachments table tbody tr td ul li {
  list-style: disc;
  margin-left: 20px;
}
#order-detail .orderAttachments table tbody tr td p {
  margin-bottom: 1em;
}
#order-detail #order-products {
  margin-bottom: 10px;
}
#order-detail #order-products tbody tr td:first-child a {
  text-transform: uppercase;
  font-weight: bold;
  color: #0D0D0D;
}
#order-detail #order-return-form {
  max-width: 100% !important;
}
#order-detail #order-return-form > .box:first-child #order-products.return tbody .qty .current {
  width: auto;
}
#order-detail #order-return-form > .box:first-child #order-products.return tbody .qty .select {
  max-width: 80px;
}
#order-detail #order-return-form > .box:last-child {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#order-detail #order-return-form > .box:last-child header h3 {
  text-transform: uppercase;
}
#order-detail .order-items {
  padding: 20px !important;
}
#order-detail .order-items .order-item {
  padding: 1em 0;
}
#order-detail .order-items .order-item * {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.4em;
}
#order-detail .order-items .order-item .name {
  font-weight: 400;
}
#order-detail .order-totals {
  margin-bottom: 10px;
  padding: 1em 0;
}
#order-detail .order-totals * {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.4em;
}
#order-detail .order-totals strong {
  font-weight: 400;
}
#order-detail .orderCarriers {
  margin-bottom: 10px;
}
#order-detail .messages {
  margin-bottom: 10px;
}
#order-detail .messages .message {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}
#order-detail .messages .message .col {
  padding: 1em 0;
}
#order-detail .order-message-form form .form-group > label {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#order-detail .order-message-form form .form-group > div {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#order-detail .order-message-form .form-footer {
  text-align: right !important;
}
#order-detail .order-message-form .form-footer button {
  background-color: #B25821;
  color: #ffffff;
}

/*****************
PAGE DISCOUNT
 ******************/
@media (max-width: 768px) {
  .page-discount#discount table {
    border: none;
  }
}
@media (max-width: 768px) {
  .page-discount#discount table thead th {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-discount#discount table tbody tr {
    display: block;
    border-bottom: 1px solid #808080;
    padding: 1em 0;
  }
}
@media (max-width: 768px) {
  .page-discount#discount table tbody tr td, .page-discount#discount table tbody tr th {
    display: block;
    width: 100%;
    border: none;
  }
}
.page-discount#discount .cart-rules .cart-rule {
  border-bottom: 1px solid #808080;
  margin-bottom: 1em;
}
.page-discount#discount .cart-rules .cart-rule:last-child {
  border-bottom: none;
}
.page-discount#discount .cart-rules li {
  font-weight: 200;
  margin-bottom: 1em;
}
.page-discount#discount .cart-rules li strong {
  font-weight: 700;
  display: inline-block;
  padding-right: 20px;
}

table .label-pill.bright {
  color: #0D0D0D !important;
}
table .label-pill.dark {
  color: #ffffff !important;
}

/*****************
ORDER FOLLOW - retours produit
 ******************/
#order-follow #content #notifications .alert {
  margin-bottom: 2em !important;
}
#order-follow .order-return ul li strong {
  font-weight: bold;
}
#order-follow .order-return ul li a {
  color: #B25821;
  font-weight: bold;
}

/*****************
ORDER RETURN - retours produit - Detail
 ******************/
#order-return .card-block p strong {
  font-weight: bold;
}
#order-return .card-block a {
  color: #B25821;
}

/*****************
GDPR
 ******************/
/*********************************************
 CMS
*********************************************/
#cms .breadcrumb {
  display: none;
}
#cms .mainWrapper__content {
  position: relative;
}
#cms #main {
  padding-bottom: 100px;
}
#cms .page-content.page-cms {
  padding: 0;
}
#cms .page-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#cms #content {
  background: none;
}
#cms #content .maincontent {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
#cms #content .maincontent h1, #cms #content .maincontent h2, #cms #content .maincontent h3, #cms #content .maincontent h4, #cms #content .maincontent h5, #cms #content .maincontent h6 {
  margin-top: 30px;
}
#cms #content input[type=submit] {
  position: relative;
  z-index: 2;
}

/*********************************************
SEARCH
*********************************************/
#search h1 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-transform: uppercase !important;
}
#search .page-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#search .mainWrapper__content {
  position: relative;
}
#search #main #js-product-list-header {
  text-transform: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
#search #content {
  box-shadow: none;
  border: none;
  color: #B25821;
  font-size: 1rem;
  max-width: 800px;
  padding-top: 120px;
  padding-bottom: 120px;
  background: none;
}
#search #content.page-not-found {
  text-align: center;
}
#search #content #search_widget {
  margin-left: 0;
}
#search #content #search_widget form {
  position: relative;
  top: inherit;
  display: block !important;
  width: 100%;
  max-width: 450px;
}
#search #js-product-list-top, #search #js-product-list-bottom {
  display: none !important;
}
#search #js-product-list > .products {
  padding: 0 !important;
  margin-top: 0 !important;
}
#search #js-product-list .pagination, #search #js-product-list .hidden-md-up.text-xs-right.up {
  display: none !important;
}
#search #js-product-list section.page-not-found {
  position: relative;
  padding: 24px 22px;
  background: none;
  background-color: rgba(0, 0, 0, 0.3);
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#search #js-product-list section.page-not-found h4, #search #js-product-list section.page-not-found p {
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  #search #js-product-list section.page-not-found {
    padding: 30px 20px;
  }
}

/*********************************************
404
*********************************************/
#pagenotfound .page-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#pagenotfound .mainWrapper__content {
  position: relative;
}
#pagenotfound #content {
  width: 100%;
  max-width: 560px;
  text-align: center;
}
#pagenotfound #content #search_widget {
  margin-left: 0;
}
#pagenotfound #content form {
  max-width: 100%;
  width: 100%;
}
#pagenotfound section.page-not-found {
  position: relative;
  padding: 24px 22px;
  background-color: #ffffff;
  border-radius: 20px;
  width: 560px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #pagenotfound section.page-not-found {
    padding: 30px 20px;
  }
}

/*********************************************
 LOGIN, REGISTER, MOT DE PASSE OUBLIE
*********************************************/
#authentication .card, #registration .card, #password .card {
  background: none;
  background-color: #ffffff;
  padding: 30px 40px !important;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}
@media (max-width: 600px) {
  #authentication .card, #registration .card, #password .card {
    padding: 30px 20px !important;
  }
}
@media (max-width: 480px) {
  #authentication .card, #registration .card, #password .card {
    padding: 30px 15px !important;
  }
}
#authentication .account-link, #registration .account-link, #password .account-link {
  font-weight: bold;
}
#authentication .account-link i, #authentication .account-link span, #registration .account-link i, #registration .account-link span, #password .account-link i, #password .account-link span {
  font-weight: bold;
}
#authentication #wrapper, #registration #wrapper, #password #wrapper {
  padding-bottom: 150px;
  background: none !important;
  background-image: url("../img/login/login-bcg.jpg") !important;
  background-size: 570px !important;
  background-position: bottom right !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 768px) {
  #authentication #wrapper, #registration #wrapper, #password #wrapper {
    background-size: 360px !important;
  }
}
#authentication #wrapper .othersection, #registration #wrapper .othersection, #password #wrapper .othersection {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
#authentication #wrapper .othersection__title, #registration #wrapper .othersection__title, #password #wrapper .othersection__title {
  font-weight: bold;
  font-size: 0.887rem;
  color: #0D0D0D;
  margin-bottom: 0.6em;
}
#authentication #content hr, #registration #content hr, #password #content hr {
  display: none;
}
#authentication #content .forgotten-password, #authentication #content .login-form, #authentication #content .register-form, #authentication #content .renew-password, #authentication #content .no-account, #registration #content .forgotten-password, #registration #content .login-form, #registration #content .register-form, #registration #content .renew-password, #registration #content .no-account, #password #content .forgotten-password, #password #content .login-form, #password #content .register-form, #password #content .renew-password, #password #content .no-account {
  position: relative;
  z-index: 2;
}
#authentication #content p, #registration #content p, #password #content p {
  text-align: center;
  color: #0D0D0D;
  font-size: 1rem;
  font-weight: normal;
}
#authentication #content form, #registration #content form, #password #content form {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  width: 100%;
}
#authentication #content .forgot-password, #registration #content .forgot-password, #password #content .forgot-password {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 10px;
}
#authentication #content .forgot-password a, #registration #content .forgot-password a, #password #content .forgot-password a {
  color: #B25821;
}
#authentication #content .register-form > p, #registration #content .register-form > p, #password #content .register-form > p {
  margin-bottom: 30px;
}
#authentication #content .login-form + hr + .sociallogin, #registration #content .login-form + hr + .sociallogin, #password #content .login-form + hr + .sociallogin {
  margin-top: 60px;
}
#authentication #content .login-form__title, #registration #content .login-form__title, #password #content .login-form__title {
  color: #0D0D0D;
  font-size: 1.272rem;
  font-weight: bold;
  margin-bottom: 0.2em;
}
#authentication #content .login-form__text, #registration #content .login-form__text, #password #content .login-form__text {
  color: #0D0D0D;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
}
#authentication #content .forgotten-password .form-fields .col-md-5.email, #registration #content .forgotten-password .form-fields .col-md-5.email, #password #content .forgotten-password .form-fields .col-md-5.email {
  width: 100% !important;
  padding-bottom: 20px;
}
#authentication #content .forgotten-password .btn, #registration #content .forgotten-password .btn, #password #content .forgotten-password .btn {
  height: auto;
}
#authentication #content .renew-password .email, #registration #content .renew-password .email, #password #content .renew-password .email {
  text-align: center;
  font-size: 1.1rem;
}
#authentication #content .renew-password .email, #registration #content .renew-password .email, #password #content .renew-password .email {
  color: #B25821;
  font-size: 1rem;
}
#authentication #content .renew-password .form-group.row, #registration #content .renew-password .form-group.row, #password #content .renew-password .form-group.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
#authentication #content .renew-password .form-group.row label, #registration #content .renew-password .form-group.row label, #password #content .renew-password .form-group.row label {
  margin: 0;
}
#authentication #content .renew-password .form-group.row .btn.btn-primary, #registration #content .renew-password .form-group.row .btn.btn-primary, #password #content .renew-password .form-group.row .btn.btn-primary {
  margin-left: auto;
  margin-right: auto;
}
#authentication #content .no-account, #registration #content .no-account, #password #content .no-account {
  margin-top: 20px;
}
#authentication #footer, #registration #footer, #password #footer {
  z-index: 2;
  margin-top: -100px;
}
@media (max-width: 768px) {
  #authentication #footer .footer__logo, #registration #footer .footer__logo, #password #footer .footer__logo {
    visibility: hidden;
  }
}

#registration .register-form__title {
  color: #0D0D0D;
  font-size: 1.272rem;
  font-weight: bold;
  margin-bottom: 0.2em;
}
#registration .register-form__text {
  color: #0D0D0D;
  font-size: 1rem;
  font-weight: bold !important;
  margin-bottom: 40px !important;
  text-align: left !important;
}
#registration .register-form form .form-group:nth-child(2) .form-control-comment, #registration .register-form form .form-group:nth-child(3) .form-control-comment {
  display: none;
}

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