/*** GLOBAL ELEMENTS ***/

html {
  scroll-behavior: smooth;
  scroll-padding-top: 16rem;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 4rem;
  }
}

/* Span cursors */
span.btn,
span[data-toggle],
a[data-toggle],
div[data-toggle],
div[data-target] {
  cursor: pointer;
}

/* Scroll */
ul.horizontal-scroll {
  padding-bottom: 0.6em;
}

.horizontal-scroll::-webkit-scrollbar {
  border: none;
  height: 2px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

.horizontal-scroll::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

.notif {
  position: absolute;
  top: 0;
  right: 3px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.notif-success {
  background-color: var(--success-color);
  color: var(--success-color);
}

.notif-warning {
  background-color: var(--warning-color);
  color: var(--warning-color);
}

.notif-danger {
  background-color: var(--danger-color);
  color: var(--danger-color);
}

.hidden {
  display: none;
}

/* Popover */

.popover {
  -webkit-background-clip: padding-box;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  border-radius: 8px;
  background-clip: padding-box;
  background-color: var(--primary-color);
  padding: 1px;
  max-width: 330px;
  color: var(--secondary-color);
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  border-bottom: 1px solid var(--primary-color-80);
  border-radius: 8px 8px 0 0;
  background-color: var(--primary-color);
  padding: 8px 14px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 14px;
}

.popover-content {
  padding: 9px 14px;
  font-family: var(--secondary-font);
}

.popover-content span {
  font-weight: bold;
}

.popover > .arrow,
.popover > .arrow:after {
  display: block;
  position: absolute;
  border-style: solid;
  border-color: transparent;
  width: 0;
  height: 0;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: var(--primary-color);
}

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: var(--primary-color);
  content: " ";
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: var(--primary-color);
}

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  border-left-width: 0;
  border-right-color: var(--primary-color);
  content: " ";
}

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: var(--primary-color);
}

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: var(--primary-color);
  content: " ";
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: var(--primary-color);
}

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  border-right-width: 0;
  border-left-color: var(--primary-color);
  content: " ";
}

/* Alerts Message */
.alert {
  border: unset;
  padding: 2.6rem;
  color: unset;
}

.alert ul,
.alert ol {
  margin-left: 27px;
  padding-left: 15px;
}

.alert ul li,
.alert ol li {
  font-weight: normal;
  list-style-type: decimal;
}

.alert-info {
  background-color: var(--info-bg-color);
}
.alert-success {
  background-color: var(--success-bg-color);
}
.alert-warning {
  background-color: var(--warning-bg-color);
}
.alert-danger {
  background-color: var(--danger-bg-color);
}

/* Cards */

figure img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout */

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-color: var( --primary-color );
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  main {
    margin-top: 45px;
  }
}

.container {
  padding-right: 20px;
  padding-left: 20px;
}

.container-md {
  max-width: 776px;
}

@media (min-width: 1200px) {
  .container-lg {
    max-width: 1422px;
  }
}

/* End Layout */

/* Global Element */

.sr-only {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

body {
  min-width: 320px;
  height: 100%;
  overflow-x: hidden;
}

body.content_only {
  margin: 0 10px;
  background: none;
}

textarea {
  resize: none;
}

.columns-container {
  position: relative;
  padding-top: 0;
}

.columns-container.darken::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}

#columns {
  position: relative;
}

#index .tab-content {
  margin-top: 35px;
  margin-bottom: 34px;
}

/*** HEADER ***/
header {
  position: relative;
  z-index: 1003;
  border-bottom: 1px solid var(--primary-color-20);
}

#header {
  top: 0;
  background: var(--secondary-color);
  width: 100%;
}

#header.header_fixed {
  -webkit-transition: top 250ms ease;
  -moz-transition: top 250ms ease;
  -o-transition: top 250ms ease;
  -ms-transition: top 250ms ease;
  position: fixed;
  transition: top 250ms ease;
}


.productsort_fixed {
  position: fixed;
}


@media (min-width: 768px) {
  .productsort_fixed {
    -webkit-transition: top 250ms ease;
    -moz-transition: top 250ms ease;
    -o-transition: top 250ms ease;
    -ms-transition: top 250ms ease;
    transition: top 250ms ease;
  }
}


#header #main_header {
  position: relative;
  background: var(--secondary-color);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  #header #main_header {
    background: #fff;
    padding-bottom: 0;
  }
}

#header #main_header .header {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 250ms ease-in-out;
  background-color: var(--secondary-color);
}

@media (min-width: 768px) {
  #header #main_header .header {
    background-color: #fff;
  }
}

#header #main_header .header .header_left,
#header #main_header .header .header_right,
#header #main_header .header .header_center {
  display: flex;
  width: 33.33333%;
}

@media (min-width: 768px) {
  #header #main_header .header .header_left,
  #header #main_header .header .header_right {
    flex: 1;
  }

  #header #main_header .header .header_center {
    justify-content: center;
    align-items: center;
  }
}

header .header_left {
  align-items: center;
}

.header_left .header_icon>a,
.header_left .header_icon>span {
  margin-right: 10px;
}

@media (min-width: 576px) {

  .header_left .header_icon>a,
  .header_left .header_icon>span {
    margin-right: 20px;
  }
}

#header #main_header .header .header_right {
  justify-content: flex-end;
  gap: 6px;
}

@media (min-width: 768px) {
  #header #main_header .header .header_right {
    gap: 1em;
  }
}

#header #main_header .header .header_right .header_icon:first-child>div {
  padding-left: 0;
}

@media (min-width: 576px) {
  .header_icon>div.popover {
    max-width: 220px;
    letter-spacing: 0.7px;
    text-align: center;
  }
}

.header_icon>div b {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.header_icon a,
.header_icon span {
  cursor: pointer;
  text-decoration: none;
}

.header_icon .orhus-symbols {
  position: relative;
  color: var(--primary-color);
  font-size: 24px;
}

.header_icon a:hover b,
.header_icon span:hover b {
  color: #111;
}

@media (max-width: 767px) {
  .header_icon>div b {
    display: none;
  }
}

#header #main_header #header_logo {
  display: flex;
}

#header #main_header #header_logo img {
  margin: 0 auto;
}

#header #main_header #header_logo svg {
  display: none;
}

@media (min-width: 767px) {
  #header #main_header #header_logo img {
    display: none;
  }

  #header #main_header #header_logo svg {
    display: unset;
  }
}

.ie8 #header #header_logo {
  width: 350px;
}

#header.header_fixed #es_search_top {
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

/** END HEADER **/

/*** CENTER COLUMN ***/

#center_column .page_product_box h3 {
  position: relative;
  margin: 0 0 20px;
  border: 1px solid #d6d4d4;
  border-bottom: none;
  background: #fbfbfb;
  padding: 14px 20px 17px;
  color: #555555;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
}

p.info-account {
  text-align: justify;
}

.dark {
  color: #333333;
}

.main-page-indent {
  margin-block: 3rem;
}

.label {
  display: inline-block;
  padding: 6px 10px;
  white-space: normal;
}

.unvisible {
  display: none;
}

.checkbox {
  line-height: 16px;
}

.close {
  opacity: 1;
}

.close:hover {
  opacity: 1;
}

input.button_mini,
input.button_small,
input.button,
input.button_large,
input.button_mini_disabled,
input.button_small_disabled,
input.button_disabled,
input.button_large_disabled,
input.exclusive_mini,
input.exclusive_small,
input.exclusive,
input.exclusive_large,
input.exclusive_mini_disabled,
input.exclusive_small_disabled,
input.exclusive_disabled,
input.exclusive_large_disabled,
a.button_mini,
a.button_small,
a.button,
a.button_large,
a.exclusive_mini,
a.exclusive_small,
a.exclusive,
a.exclusive_large,
span.button_mini,
span.button_small,
span.button,
span.button_large,
span.exclusive_mini,
span.exclusive_small,
span.exclusive,
span.exclusive_large,
span.exclusive_large_disabled {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: black;
  padding: 5px 7px;
  color: white;
  font-weight: bold;
  text-align: left;
  white-space: normal;
}

*:first-child+html input.button_mini,
*:first-child+html input.button_small,
*:first-child+html input.button,
*:first-child+html input.button_large,
*:first-child+html input.button_mini_disabled,
*:first-child+html input.button_small_disabled,
*:first-child+html input.button_disabled,
*:first-child+html input.button_large_disabled,
*:first-child+html input.exclusive_mini,
*:first-child+html input.exclusive_small,
*:first-child+html input.exclusive,
*:first-child+html input.exclusive_large,
*:first-child+html input.exclusive_mini_disabled,
*:first-child+html input.exclusive_small_disabled,
*:first-child+html input.exclusive_disabled,
*:first-child+html input.exclusive_large_disabled {
  border: none;
}

input.button_mini:hover,
input.button_small:hover,
input.button:hover,
input.button_large:hover,
input.exclusive_mini:hover,
input.exclusive_small:hover,
input.exclusive:hover,
input.exclusive_large:hover,
a.button_mini:hover,
a.button_small:hover,
a.button:hover,
a.button_large:hover,
a.exclusive_mini:hover,
a.exclusive_small:hover,
a.exclusive:hover,
a.exclusive_large:hover {
  background-color: #ccc;
  text-decoration: none;

}

input.button_mini:active,
input.button_small:active,
input.button:active,
input.button_large:active,
input.exclusive_mini:active,
input.exclusive_small:active,
input.exclusive:active,
input.exclusive_large:active,
a.button_mini:active,
a.button_small:active,
a.button:active,
a.button_large:active,
a.exclusive_mini:active,
a.exclusive_small:active,
a.exclusive:active,
a.exclusive_large:active {
  background-position: left -100px;
}

input.button_disabled,
input.exclusive_disabled,
span.exclusive {
  cursor: default;
  border: 1px solid #cccccc;
  background: url(../img/bg_bt_2.gif) repeat-x 0 0 #cccccc;
  color: #999999;
}

.btn.disabled,
.btn[disabled]:hover {
  opacity: 0.3;
}

.button.button-small {
  border: 0;
  background: #111;
  padding: 0;
  color: white;
}

.button.button-small span {
  display: block;
  padding: 3px 8px 3px 8px;

}

.button.button-small span i {
  vertical-align: 0;
  margin-right: 5px;
}

.button.button-small span i.right {
  margin-right: 0;
  margin-left: 5px;
}

.button.button-small span:hover {
  background: #575757;

}

.button {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  border-radius: 0;
}

.button.button-medium {
  border: 2px solid #111;
  background: #111;
  padding: 0;
  color: white;
  font-weight: bold;
  font-size: 17px;
  line-height: 21px;
}

.button.button-medium span {
  display: block;
  padding: 10px 10px 10px 14px;
}

@media (max-width: 479px) {
  .button.button-medium span {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 15px;
  }
}

.button.button-medium span i.left {
  display: inline-block;
  vertical-align: -2px;
  margin: -4px 10px 0 0;
  font-size: 24px;
}

@media (max-width: 479px) {
  .button.button-medium span i.left {
    margin-right: 5px;
  }
}

.button.button-medium span i.right {
  margin-right: 0;
  margin-left: 9px;
}

@media (max-width: 479px) {
  .button.button-medium span i.right {
    margin-left: 5px;
  }
}

.button.button-medium:hover {
  border-width: 2px;
  border-color: #111;
  background: #fcfcfc;
  color: #111;
}

.link-button {
  font-weight: bold;
}

.link-button i {
  margin-right: 5px;
}

.link-button i.large {
  vertical-align: -3px;
  color: silver;
  font-size: 26px;
  line-height: 26px;
}

.btn.button-plus,
.btn.button-minus {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: 1px solid;
  border-color: #dedcdc #c1bfbf #b5b4b4 #dad8d8;
  border-radius: 0;
  padding: 0;
  color: silver;
  font-size: 14px;
  line-height: 14px;
  text-shadow: 1px -1px rgba(0, 0, 0, 0.05);
}

.btn.button-plus span,
.btn.button-minus span {
  display: block;
  vertical-align: middle;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fbfbfb', GradientType=0);
  border: 1px solid white;
  background: #1e5799;
  background: white;
  background: -moz-linear-gradient(top, white 0%, #fbfbfb 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #fbfbfb));
  background: -webkit-linear-gradient(top, white 0%, #fbfbfb 100%);
  background: -o-linear-gradient(top, white 0%, #fbfbfb 100%);
  background: -ms-linear-gradient(top, white 0%, #fbfbfb 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #fbfbfb 100%);
  padding: 4px 0 0 0;
  width: 25px;
  height: 25px;
  text-align: center;
}

.btn.button-plus:hover,
.btn.button-minus:hover {
  color: #333333;
}

.btn.button-plus:hover span,
.btn.button-minus:hover span {
  filter: none;
  background: #f6f6f6;
}

.button.exclusive-medium {
  border: none;
  padding: 0;
  color: #333333;
  font-weight: bold;
  font-size: 17px;
  line-height: 21px;
}

.button.exclusive-medium span {
  display: block;
  border: none;
  background: #e3e3e3;
  padding: 9px 10px 11px 10px;
  color: #666;
}

@media (max-width: 479px) {
  .button.exclusive-medium span {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 15px;
  }
}

.button.exclusive-medium span:hover {
  background: #dadada;
}

.button.ajax_add_to_cart_button {
  border: 1px solid;
  padding: 0;
  color: white;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.button.ajax_add_to_cart_button span {
  display: block;
  border: 1px solid #06b2e6;
  background: #009ad0;
  padding: 10px 14px;
}

.button.ajax_add_to_cart_button:hover {
  border-color: #01314e #004b74 #0079b6 #004b74;
}

.button.ajax_add_to_cart_button:hover span {
  filter: none;
  background: #0084bf;
}

.button.lnk_view {
  border: 1px solid;
  border-color: #cacaca #b7b7b7 #9a9a9a #b7b7b7;
  padding: 0;
  color: #333333;
  font: 700 17px/21px Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px white;
}

.button.lnk_view span {
  display: block;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#ededed', GradientType=0);
  border: 1px solid white;
  background: #f7f7f7;
  background: -moz-linear-gradient(top, #f7f7f7 0%, #ededed 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #ededed));
  background: -webkit-linear-gradient(top, #f7f7f7 0%, #ededed 100%);
  background: -o-linear-gradient(top, #f7f7f7 0%, #ededed 100%);
  background: -ms-linear-gradient(top, #f7f7f7 0%, #ededed 100%);
  background: linear-gradient(to bottom, #f7f7f7 0%, #ededed 100%);
  padding: 10px 14px;
}

.button.lnk_view:hover {
  border-color: #9e9e9e #9e9e9e #c8c8c8 #9e9e9e;
}

.button.lnk_view:hover span {
  filter: none;
  background: #e7e7e7;
}

.button.lnk_view i.left {
  padding-right: 8px;
  color: #777777;
}

/*
 * Social Buttons for Bootstrap
 *
 * Copyright 2013-2016 Panayiotis Lipiridis
 * Licensed under the MIT License
 *
 * https://github.com/lipis/bootstrap-social
 */

#authenticationAlign .btn-social {
  position: relative;
  padding-left: 44px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap
}

#authenticationAlign .btn-social> :first-child {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  width: 32px;
  font-size: 1.6em;
  line-height: 34px;
  text-align: center
}

#authenticationAlign .btn-social.btn-lg {
  padding-left: 61px
}

#authenticationAlign .btn-social.btn-lg> :first-child {
  width: 45px;
  font-size: 1.8em;
  line-height: 45px
}

#authenticationAlign .btn-social.btn-sm {
  padding-left: 38px
}

#authenticationAlign .btn-social.btn-sm> :first-child {
  width: 28px;
  font-size: 1.4em;
  line-height: 28px;
}

#authenticationAlign .btn-social.btn-xs {
  padding-left: 30px
}

#authenticationAlign .btn-social.btn-xs> :first-child {
  width: 20px;
  font-size: 1.2em;
  line-height: 20px
}

#authenticationAlign .btn-social-icon {
  position: relative;
  padding: 0 0 0 44px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#authenticationAlign .btn-social-icon> :first-child {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  width: 32px;
  font-size: 1.6em;
  line-height: 34px;
  text-align: center
}

#authenticationAlign .btn-social-icon.btn-lg {
  padding-left: 61px
}

#authenticationAlign .btn-social-icon.btn-lg> :first-child {
  width: 45px;
  font-size: 1.8em;
  line-height: 45px
}

#authenticationAlign .btn-social-icon.btn-sm {
  padding-left: 38px
}

#authenticationAlign .btn-social-icon.btn-sm> :first-child {
  width: 28px;
  font-size: 1.4em;
  line-height: 28px
}

#authenticationAlign .btn-social-icon.btn-xs {
  padding-left: 30px
}

#authenticationAlign .btn-social-icon.btn-xs> :first-child {
  width: 20px;
  font-size: 1.2em;
  line-height: 20px
}

#authenticationAlign .btn-social-icon> :first-child {
  border: none;
  width: 100% !important;
  text-align: center
}

#authenticationAlign .btn-social-icon.btn-lg {
  padding-right: 0;
  padding-left: 0;
  width: 45px;
  height: 45px
}

#authenticationAlign .btn-social-icon.btn-sm {
  padding-right: 0;
  padding-left: 0;
  width: 30px;
  height: 30px
}

#authenticationAlign .btn-social-icon.btn-xs {
  padding-right: 0;
  padding-left: 0;
  width: 22px;
  height: 22px
}

#authenticationAlign .btn-facebook {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #3b5998;
  color: #fff
}

#authenticationAlign .btn-facebook i {
  color: #fff;
}

#authenticationAlign .btn-facebook:focus,
#authenticationAlign .btn-facebook.focus {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #2d4373;
  color: #fff
}

#authenticationAlign .btn-facebook:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #2d4373;
  color: #fff
}

#authenticationAlign .btn-facebook:active,
#authenticationAlign .btn-facebook.active,
#authenticationAlign .open>.dropdown-toggle.btn-facebook {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #2d4373;
  color: #fff
}

#authenticationAlign .btn-facebook:active:hover,
#authenticationAlign .btn-facebook.active:hover,
#authenticationAlign .open>.dropdown-toggle.btn-facebook:hover,
#authenticationAlign .btn-facebook:active:focus,
#authenticationAlign .btn-facebook.active:focus,
#authenticationAlign .open>.dropdown-toggle.btn-facebook:focus,
#authenticationAlign .btn-facebook:active.focus,
#authenticationAlign .btn-facebook.active.focus,
#authenticationAlign .open>.dropdown-toggle.btn-facebook.focus {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #23345a;
  color: #fff
}

#authenticationAlign .btn-facebook:active,
#authenticationAlign .btn-facebook.active,
#authenticationAlign .open>.dropdown-toggle.btn-facebook {
  background-image: none
}

#authenticationAlign .btn-facebook.disabled:hover,
#authenticationAlign .btn-facebook[disabled]:hover,
#authenticationAlign fieldset[disabled] .btn-facebook:hover,
#authenticationAlign .btn-facebook.disabled:focus,
#authenticationAlign .btn-facebook[disabled]:focus,
#authenticationAlign fieldset[disabled] .btn-facebook:focus,
#authenticationAlign .btn-facebook.disabled.focus,
#authenticationAlign .btn-facebook[disabled].focus,
#authenticationAlign fieldset[disabled] .btn-facebook.focus {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #3b5998
}

#authenticationAlign .btn-facebook .badge {
  background-color: #fff;
  color: #3b5998
}

.form-control.grey {
  background: #fbfbfb;
}

/* table */

table.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: var(--secondary-color);
}

table.std,
table.table_block {
  margin-bottom: 20px;
  border: 1px solid var(--primary-color-40);
  border-collapse: collapse;
  background: #fff;
  width: 100%;
}

table.std thead>tr>td,
table.std th,
table.table_block th {
  vertical-align: middle;
  border-bottom-width: 1px;
  border-bottom-color: var(--primary-color-40);
  background: var(--primary-color-20);
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
}

table.std thead p {
  margin: 0;
}

table.std td,
table.table_block td {
  vertical-align: top;
  border-right: 1px solid var(--primary-color-40);
  border-bottom: 1px solid var(--primary-color-40);
  padding-inline: clamp(1.2rem, 0.75rem + 2.25vw, 3rem);
  padding-block: clamp(1.2rem, 0.95rem + 1.25vw, 2.2rem);
  font-size: clamp(1.2rem, 1.15rem + 0.25vw, 1.4rem);
}

.table {
  margin-bottom: 30px;
}

.table>thead>tr>th {
  vertical-align: middle;
  border-bottom-width: 1px;
  background: #fbfbfb;
  color: #333333;
  text-align: center;
}

.table td a.color-myaccount {
  color: #777777;
  text-decoration: underline;
}

.table td a.color-myaccount:hover {
  text-decoration: none;
}

.product-name {
  color: var(--primary-color-80);
  font-weight: 400;
  font-family: var(--primary-font);
  text-decoration: none;

}

@media (max-width: 1199px) {
  .product-name a {
    font-size: 13px;
  }
}

.product-details .product-brand {
  margin-bottom: 0;
}

.price {
  color: var(--primary-color-80);
  white-space: nowrap;
}

.price.product-price {
  font-weight: 700;
  font-size: 1em;
}

.old-price {
  color: var(--primary-color-50);
  font-weight: 300;
  font-size: .9em;
  text-decoration: line-through;
}

.price-discount {
  padding: 5px 0;
}

.price-discount>span {
  font-style: italic;
  text-transform: uppercase;
}

#product .label-box,
#product .sale-box {
  position: absolute;
  top: -4px;
  z-index: 1;
  width: 125px;
  height: 125px;
  overflow: hidden;
  text-align: center;
}

#product .label-box {
  left: -4px;
}

#product .sale-box {
  right: -5px;
}

.product-bottom-center {
  display: block;
  width: 100%;
  height: 35px;
  text-align: center;
}

.stock-label,
.oos-label {
  background-color: rgb(193, 193, 193);
}

.sale-box {
  display: block;
}

.box.box-small {
  padding: 9px 10px 9px 20px;
}

.box.box-small .dark {
  margin-bottom: 0;
  padding-top: 10px;
  padding-right: 20px;
  width: auto;
}

.product-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  float: left;
  box-sizing: border-box;
  width: 178px;
}

.product-box .product-image {
  display: block;
  margin-bottom: 11px;
  border: 1px solid #d6d4d4;
  background: white;
  padding: 5px;
}

.product-box .product-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

#home-page-tabs {
  border: none;
  background: white;
}

@media (min-width: 768px) {
  #home-page-tabs {
    margin: 0 0 0 -18px;
    padding: 10px 0;
  }
}

#home-page-tabs>li {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #home-page-tabs>li {
    margin: 0 0 0 9px;
    border-left: 1px solid #d6d4d4;
    padding: 0 0 0 9px;
  }
}

@media (max-width: 479px) {
  #home-page-tabs>li {
    width: 100%;
  }
}

#home-page-tabs>li a {
  margin: 0;
  outline: none;
  border: none;
  padding: 10px;
  color: #555555;
  font-weight: 600;
  font-size: 21px;
  line-height: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #home-page-tabs>li a {
    padding: 1px 10px;
  }
}

#home-page-tabs>li:first-child {
  border: none;
}

#home-page-tabs>li.active a,
#home-page-tabs>li a:hover {
  background: #333333;
  padding: 10px;
  color: white;
}

@media (min-width: 768px) {

  #home-page-tabs>li.active a,
  #home-page-tabs>li a:hover {
    margin: -9px 0;
  }
}

.block {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .block {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .block .block_content {
    margin-bottom: 20px;
  }
}

.block .block_content p {
  letter-spacing: 0.2px
}

.block .block_content a {
  text-decoration: none;
}

.block .block_content a:hover {
  background: none;
  text-decoration: none;
}

.block .title_block,
.block h4 {
  margin-top: 8px;
  padding: 10px 0;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}

.block .block_content form .h4 {
  font-weight: normal;
}

@media (min-width: 768px) and (max-width: 991px) {
  .block .title_block,
  .block h4 {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  #left_column .block .title_block i {
    display: none;
  }

  #left_column .block .title_block,
  #left_column .block h4 {
    position: relative;
    cursor: pointer;
    background-color: var(--primary-color);
    padding-inline: 2rem;
    padding-block: 1.8rem;
    color: var(--secondary-color);
  }

  #left_column .block .title_block:after,
  #left_column .block h4:after {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    width: 20px;
    height: 20px;
    content: "\e90f";
    font-weight: normal;
    font-size: 20px;
    font-family: 'Orhus-Symbols', sans-serif;
  }

  #left_column .block .title_block.active:after,
  #left_column .block h4.active:after {
    content: "\e90e";
  }
}

.block .list-block {
  margin-top: -8px;
}

@media (max-width: 767px) {
  .block .list-block {
    margin-top: 0;
  }
}

.block .list-block li {
  position: relative;
  border-top: 1px solid #d6d4d4;
  padding: 4px 0;
}

.block .list-block li a {
  display: block;
  padding: 0 0 0 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.block .list-block li a:hover {
  font-weight: bold;
  text-decoration: underline;
}

.block .list-block li a:hover::before {
  left: 3px;
}

.block .list-block li:first-child {
  border-top: none;
}

.block .list-block .form-group {
  margin-bottom: 0;
  border-top: 1px solid #d6d4d4;
  padding-top: 20px;
}

.block .list-block .form-group select {
  max-width: 270px;
}

@media (max-width: 767px) {
  .block .list-block .form-group select {
    width: 270px;
  }
}

.block .list-block .btn {
  margin-top: 12px;
}

.block .products-block li {
  margin-bottom: 20px;
  border-bottom: 1px solid #d6d4d4;
  padding: 0 0 20px 0;
}

.block .products-block li .products-block-image {
  float: left;
  margin-right: 19px;
  border: 1px solid #d6d4d4;
}

@media (min-width: 768px) and (max-width: 991px) {
  .block .products-block li .products-block-image {
    display: inline-block;
    float: none;
    margin: 0 auto 10px;
    text-align: center;
  }
}

.block .products-block li .product-content {
  overflow: hidden;
}

.block .products-block li .product-content h5 {
  margin: -3px 0 0 0;
}

.block .products-block .product-name {
  font-size: 15px;
  line-height: 18px;
}

.block .products-block .product-description {
  margin-bottom: 14px;
}

.block .products-block .price-percent-reduction {
  padding: 1px 6px;
}

.page-heading span.heading-counter {
  margin-left: auto;
  padding-top: 7px;
  color: rgb(17, 17, 17);
  font-style: italic;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.page-heading span.lighter {
  color: #9c9c9c;
}

.box .page-subheading {
  margin-top: 0;
}

h2.page-product-heading,
p.page-product-heading.title_h2 {
  font-size: 18px;
}

ul.footer_links {
  border-top: 1px solid #d6d4d4;
  padding: 20px 0 0 0;
  height: 65px;
}

ul.footer_links li {
  float: left;
}

ul.footer_links li+li {
  margin-left: 10px;
}

.produits_par_page {
  float: right;
  padding: 0;
}

.produits_par_page select {
  color: #666;
}

/*** Pagination ****/

.pagination-container {
  position: relative;
  padding: 2.4rem 0 1.5rem 0;
  text-align: center;
}

@media (min-width: 767px) {
  .pagination-container {
    padding: 5.3rem 0 2.8rem 0;
  }
}

.pagination-container div.pagination .showall {
  float: right;
  margin: 8px 53px 8px 14px;
}

@media (min-width: 992px) and (max-width: 1199px) {

  .pagination-container div.pagination .showall {
    margin-right: 11px;
  }
}

@media (max-width: 991px) {

  .top-pagination-content div.pagination .showall,
  .pagination-container div.pagination .showall {
    margin-right: 0;
  }
}

.pagination-container div.pagination .showall .btn span {
  padding: 3px 5px 4px 5px;
  font-size: 13px;
  line-height: normal;
}

.pagination-container ul.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin: 0;
}

@media (min-width: 768px) {
  .pagination-container ul.pagination {
    gap: 8px;
  }
}

.pagination-container ul.pagination li > a,
.pagination-container ul.pagination li > span {
  display: block;
  margin: 0;
  padding: 11px 18px;
  color: var(--primary-color-40);
  font-weight: bold;
  font-size: 1.2rem;
  font-family: var(--secondary-font);
}

.pagination-container ul.pagination li > a:hover {
  background-color: var(--primary-color-20);
  color: var(--primary-color);
}

.pagination-container ul.pagination li.active > span {
  background-color: var(--primary-color);
  padding: 11px 18px;
  color: var(--secondary-color);
}

.pagination-container ul.pagination li > .lk {
  border: 1px solid var(--primary-color-60);
  padding: 9px 11px 7px 11px;
  color: var(--primary-color);
}

.pagination-container ul.pagination li > .lk:hover {
  border-radius: 8px;
  background: transparent;
  color: unset;
}

.pagination-container ul.pagination li:not(.active) > span:not(.lk) {
  border: 1px solid var(--primary-color-40);
  padding: 10px 14px;
  color: var(--primary-color-40);
}

.pagination-container ul.pagination li:not(.active) > span:not(.lk):hover {
  background: unset;
}

@media (max-width: 767px) {
  .pagination-container ul.pagination li.pagination_previous>a b,
  .pagination-container ul.pagination li.pagination_previous>span b,
  .pagination-container ul.pagination li.pagination_next>a b,
  .pagination-container ul.pagination li.pagination_next>span b {
    display: none;
  }
}

.pagination-container ul.pagination li.pagination_previous>a span,
.pagination-container ul.pagination li.pagination_previous>span span,
.pagination-container ul.pagination li.pagination_next>a span,
.pagination-container ul.pagination li.pagination_next>span span {
  border: none;
  background: none;
  padding: 0;
}

.pagination-container ul.pagination li.pagination_previous>a span b,
.pagination-container ul.pagination li.pagination_previous>span span b,
.pagination-container ul.pagination li.pagination_next>a span b,
.pagination-container ul.pagination li.pagination_next>span span b {
  font-weight: bold;
}

.pagination-container ul.pagination li.pagination_previous {
  margin-right: 16px;
  margin-left: 16px;
}

.pagination-container ul.pagination li.pagination_previous i,
.pagination-container ul.pagination li.pagination_next i {
  vertical-align: bottom;
}

.pagination-container .compare-form {
  float: right;
}

@media (max-width: 479px) {
  .pagination-container .compare-form {
    float: left;
    clear: both;
    padding-bottom: 10px;
    width: 100%;
    text-align: left;
  }
}

.pagination-container .product-count {
  padding: 3rem 0 .7rem 0;
  color: var(--primary-color-60);
}

@media (min-width: 768px) {
  .pagination-container .product-count {
    padding: 5.6rem 0 4.2rem 0;
  }
}

/*** End Pagination ****/

/** Rating **/
.stars-rating {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: .4rem;
}

.stars-rating .icon-stack {
  width: unset;
}

.stars-rating span.icon-stack .orhus-symbols:nth-child(2) {
  color: rgba(10,11,11,.15);
}

.stars-rating .icon-stack-1x:first-child {
  left: -5px;
}

.stars-rating .icon-stack-1x:last-child {
  position: unset;
}

.rating {
  display: block;
  clear: both;
  cursor: pointer;
  margin: 2em;
}

.rating:after {
  display: block;
  clear: both;
  visibility: hidden;
  width: 0;
  height: 0;
  content: ".";
}

.cancel,
.star {
  float: left;
  cursor: pointer;
  margin: 0 1px 0 0;
  width: 16px;
  height: 16px;
  overflow: hidden;
}

.cancel a,
.star a {
  display: block;
  background-position: 0 0;
  width: 100%;
  height: 100%;
}

div.star_on a {
  background-position: 0 -16px;
}

div.star_hover a,
div.star a:hover {
  background-position: 0 -32px;
}

.pack_content {
  margin: 10px 0 10px 0;
}

.confirmation {
  margin: 0 0 10px;
  border: 1px solid #e6db55;
  background: none repeat scroll 0 0 lightyellow;
  padding: 10px;
  font-size: 13px;
}

#page .rte {
  background: transparent none repeat scroll 0 0;
  text-align: justify;
}

.listcomment {
  margin: 0 0 20px 0 !important;
  list-style-type: none;
}

.listcomment li {
  border-bottom: 1px dotted #d6d4d4;
  padding: 10px 0;
  color: #666666;
}

.listcomment .titlecomment {
  display: block;
  color: #333333;
  font-weight: bold;
  font-size: 12px;
}

.listcomment .txtcomment {
  display: block;
  padding: 5px 0;
  color: #333333;
}

/*** Breadcrumb ***/

.breadcrumb {
  padding: 0;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  color: var(--primary-color-60);
}

.breadcrumb ul {
  display: flex;
  column-gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}

.breadcrumb ul > li,
.breadcrumb ul > span {
  display: unset;
  float: none;
  color: unset;
  font-size: unset;
  text-transform: unset;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.ie8 .breadcrumb {
  min-height: 1px;
}

.ie8 .breadcrumb a:after {
  display: none;
}

/* FOOTER */
.footer-container {
  background-color: var(--secondary-color);
  padding-top: 30px;
  padding-bottom: 20px;
  font-family: var(--secondary-font);
}

@media (min-width: 768px) {
  .footer-container {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}

.footer-container a {
  text-decoration: none;
}

/*Footer Aera Structure */
@media (min-width: 992px) {
  #social_block {
    grid-area: fhead-4;
  }

  .footer-area {
    display: grid;
    grid-template-areas:
      "fhead-1-2 fhead-1-2 . fhead-4"
      "fbody-1 fbody-2-3-4 fbody-2-3-4 fbody-2-3-4"
      "ffoot-1-2 ffoot-1-2 ffoot-3-4 ffoot-3-4";
  }
}

/*End Footer Aera Structure */

.footer-area .footer-block {
  margin-bottom: clamp(1.6rem, 1.2rem + 2vw, 3.2rem);
  border-bottom: 1px solid var(--primary-color-20);
  padding-bottom: clamp(1.6rem, 1.2rem + 2vw, 3.2rem);
}

@media (min-width: 768px) {
  .footer-area .footer-block {
    border-width: 0;
  }
}

.footer-area .footer-block .h3 {
  display: block;
}

.footer-area .footer-block .block_content {
  margin-top: 24px;
}

/* FOOTER - Social */
.footer-container #social_block ul {
  display: flex;
  column-gap: 30px;
}

.footer-container #social_block ul li a {
  margin-bottom: 0;
  color: var(--secondary-color);
}

.footer-container #social_block ul li a:hover {
  text-decoration: none;
}

/* FOOTER - Copyright */
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    border-top: 1px solid var(--primary-color-40);
    padding-top: 18px;
  }
}

.copyright {
  color: var(--primary-color);
  font-weight: 700;
  font-size: .7em;
  font-family: var(--secondary-font);
}

#go_to_top {
  margin: 0;
}

#go_to_top.fixed {
  position: fixed;
  right: 2rem;
  bottom: 1.6rem;
  z-index: 1001;
}

/* END FOOTER */

#short_description_content ul,
#short_description_content ol,
#short_description_content dl,
#tinymce ul,
#tinymce ol,
#tinymce dl {
  margin-left: 20px;
}

.rte ul {
  margin-left: 10px;
  padding-left: 15px;
  list-style-type: disc;
}

.rte ol {
  padding-left: 15px;
  list-style-type: decimal;
}

.rte h1,
.rte .h1 {
  font-size: clamp(2rem, 1.2366rem + 3.257vw, 2.8rem); /** 375 <> 768 *!*/
  margin-top: 1em;
}

.rte h2,
.rte .h2 {
  font-size: clamp(1.8rem, 1.0366rem + 3.257vw, 2.6rem); /** 375 <> 768 *!*/
  margin-top: 1.9em;
  margin-bottom: 3rem;
}

.rte h4,
.rte .h4 {
  font-size: clamp(1.6rem, 1.0275rem + 2.4427vw, 2.2rem); /** 375 <> 768 *!*/
  margin-top: 1.9em;
  margin-bottom: 0.9em;
}

.block_hidden_only_for_screen {
  display: none;
}

#cart_navigation > button {
  margin-bottom: 1.3em;
}

.cart_navigation {
  margin: 0 0 10px;
}

.cart_navigation.cart_navigation_top {
  margin-bottom: 5px;
}

.cart_navigation.cart_navigation_top .button-medium {
  font-size: 14px;
  line-height: 24px;
}

.cart_navigation.cart_navigation_top .button-medium span {
  padding: 0 15px;
}

.cart_navigation.cart_navigation_top .button-medium i.right {
  vertical-align: 0;
  font-size: 12px;
}

@media (max-width: 479px) {
  .cart_navigation>span {
    display: block;
    padding-bottom: 15px;
    width: 100%;
  }
}

.cart_last_product {
  display: none;
}

.cart_quantity .cart_quantity_input {
  padding: 0;
  width: 57px;
  height: 27px;
  line-height: 27px;
  text-align: center;
}

.cart_gift_quantity .cart_quantity_input {
  padding: 0;
  width: 57px;
  height: 27px;
  line-height: 27px;
  text-align: center;
}

.table tbody>tr>td {
  vertical-align: middle;
  padding: 0;
  padding-inline: .8rem;
  padding-block: 1.4rem;
}

.table tbody>tr>td.cart_quantity {
  padding: 41px 14px 25px;
  width: 60px;
}

.table tbody>tr>td.cart_quantity .cart_quantity_button {
  margin-top: 3px;
}

.table tbody>tr>td.cart_quantity .cart_quantity_button a {
  float: left;
  margin-right: 3px;
}

.table tbody>tr>td.cart_quantity .cart_quantity_button a+a {
  margin-right: 0;
}

.table tbody>tr>td.cart_delete,
.table tbody>tr>td.price_discount_del {
  padding: 5px;
}

.table tfoot>tr>td {
  vertical-align: middle;
}

#cart_summary tbody .customization td {
  border-top: 0;
}

#cart_summary tbody td {
  vertical-align: top !important;
  padding: 7px 8px 9px 18px;
}

#cart_summary tbody td.cart_product {
  vertical-align: top;
  padding: 10px 10px 0 10px;
  width: 137px;
}

#cart_summary .cart_item {
  border-top: 1px solid #D6D4D4;
}

#cart_summary tbody td.cart_product img {
  margin: 0 auto;
}

#cart_summary tbody td.cart_description,
#cart_summary tbody td.cart_unit,
#cart_summary tbody td.cart_quantity,
#cart_summary tbody td.cart_total {
  padding-top: 10px;
}

#cart_summary tbody td.cart_delete {
  padding-top: 1px;
}

#cart_summary tbody td.cart_unit .price span {
  display: inline-block;
}

#cart_summary tbody td.cart_unit .price span.price-percent-reduction,
#cart_summary tbody td.cart_total .price span.price-percent-reduction {
  display: inline-block;
  margin: 5px auto;
  background: #3a6780;
  padding: 0 5px 0 3px;
  width: 50px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

#cart_summary tbody td.cart_unit .price span.price-percent-reduction.sale,
#cart_summary tbody td.cart_total .price span.price-percent-reduction.sale {
  background: #d4a551;
}

#cart_summary tbody td.cart_unit .price span.old-price {
  text-decoration: line-through;
}

#cart_summary tbody td.cart_description small {
  display: block;
  padding: 5px 0 0 0;
  color: #777;
}

#cart_summary tfoot td.text-right,
#cart_summary tfoot tbody td.cart_unit,
#cart_summary tbody tfoot td.cart_unit,
#cart_summary tfoot tbody td.cart_total,
#cart_summary tbody tfoot td.cart_total {
  color: #333333;
  font-weight: bold;
}

#cart_summary tfoot td.price {
  text-align: right;
}

#cart_summary tfoot td.total_price_container span {
  color: #555555;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}

#cart_summary tfoot td#total_price_container {
  background: white;
  color: #333333;
  font-weight: 600;
  font-size: 21px;
  line-height: 25px;
}

#cart_summary .stock-management-on tbody td.cart_description {
  width: 479px;
}

.customization td.cart_customization {
  text-align: right;
}

.customization .cart_customization_description {
  padding-bottom: 10px !important;
  text-align: left;
}

#cart_discount .cart_discount {
  display: flex;
  justify-content: space-between;
}


#cart_discount .cart_discount .cart_discount_line {
  display: flex;
  justify-content: space-between;
}

.cart_discount_price {
  text-align: right;
}

.cart_discount_delete {
  text-align: center;
}

tr.oc_cart_extra {
  color: #666666;
}

tr.oc_cart_extra .iframe {
  cursor: pointer;
}

@media (max-width: 767px) {
  #order-detail-content #cart_summary table,
  #order-detail-content #cart_summary thead,
  #order-detail-content #cart_summary tbody,
  #order-detail-content #cart_summary th,
  #order-detail-content #cart_summary td,
  #order-detail-content #cart_summary tr {
    display: block;
  }

  #order-detail-content #cart_summary thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #order-detail-content #cart_summary tr {
    clear: both;
  }

  #order-detail-content #cart_summary tr:not(:first-child) {
    padding-top: 5px;
  }

  #order-detail-content #cart_summary tr.cart_total_price,
  #order-detail-content #cart_summary tr.cart_total_voucher {
    border-bottom: none !important;
  }

  #order-detail-content #cart_summary td {
    position: relative;
    float: left;
    border: none;
    width: 100%;
    white-space: normal;
  }

  #order-detail-content #cart_summary td.cart_avail {
    clear: both;
  }

  #order-detail-content #cart_summary td.cart_delete {
    vertical-align: top;
    clear: both;
    padding-top: 0;
    padding-right: 20px;
    width: 100%;
    text-align: right;
  }

  #order-detail-content #cart_summary td.cart_delete div,
  #order-detail-content #cart_summary td.cart_delete div form {
    display: inline;
  }

  #order-detail-content #cart_summary td.cart_delete:before {
    display: inline-block;
    position: relative;
    top: -3px;
    padding-right: 0.5em;
  }

  #order-detail-content #cart_summary td>div {
    display: inline;
  }

  #order-detail-content #cart_summary td:before {
    display: block;
    content: attr(data-title);
  }

  #order-detail-content #cart_summary tfoot td {
    float: none;
    width: 100%;
  }

  #order-detail-content #cart_summary tfoot td:before {
    display: inline;
  }

  #order-detail-content #cart_summary tfoot tr .text-right,
  #order-detail-content #cart_summary tfoot tr tbody td.cart_unit,
  #order-detail-content #cart_summary tbody tfoot tr td.cart_unit,
  #order-detail-content #cart_summary tfoot tr tbody td.cart_total,
  #order-detail-content #cart_summary tbody tfoot tr td.cart_total,
  #order-detail-content #cart_summary tfoot tr .price {
    display: block;
    float: left;
    width: 50%;
  }
}

@media (max-width: 767px) {
  #order-detail-content #cart_summary tbody td .price {
    text-align: center;
  }
}

.cart_voucher {
  vertical-align: top !important;
}

.cart_voucher .cart_voucher_title {
  color: #666666;
  font-weight: bold;
  font-size: 16px;
  line-height: 34px;
}

.cart_voucher #display_cart_vouchers span {
  cursor: pointer;
  color: #777777;
  font-weight: bold;
}

.cart_voucher #display_cart_vouchers span:hover {
  color: #515151;
}

.enable-multishipping {
  margin: -13px 0 17px;
}

.enable-multishipping label {
  font-weight: normal;
}

#order_carrier {
  clear: both;
  margin-top: 20px;
  border: 1px solid #999999;
  background: white;
}

#order_carrier .title_block {
  background: url(../img/bg_table_th.png) repeat-x 0 -10px #999999;
  padding: 0 15px;
  height: 29px;
  color: white;
  font-weight: bold;
  line-height: 29px;
  text-transform: uppercase;
}

#order_carrier span {
  display: block;
  padding: 15px;
  font-weight: bold;
}

.cgv {
  text-align: right;
}

.multishipping_close_container {
  text-align: center;
}

table#cart_summary .gift-icon {
  display: inline-block;
  margin-bottom: 10px;
  background: #cc0000;
  padding: 2px 0;
  width: 80px;
  color: white;
  line-height: 20px;
  text-align: center;
}

@media (max-width: 479px) {
  table#cart_summary .gift-icon {
    width: 95%;
  }
}

#multishipping_mode_box {
  padding-top: 12px;
  padding-bottom: 19px;
}

#multishipping_mode_box .title {
  margin-bottom: 15px;
  color: #333333;
  font-weight: bold;
}

#multishipping_mode_box .description_off {
  display: none;
}

#multishipping_mode_box .description_off div {
  margin-bottom: 10px;
}

#multishipping_mode_box .description_off a:hover,
#multishipping_mode_box .description a:hover {
  border: 1px solid #cccccc;
  background: #f3f3f3;
}

#multishipping_mode_box.on .description_off {
  display: block;
}

.multishipping-cart .cart_address_delivery.form-control {
  width: 198px;
}

.form-group .form_info {
  color: #333;
  font-style: italic;
}

.addresses .waitimage {
  display: none;
  position: relative;
  bottom: -2px;
  left: 10px;
  float: left;
  background-image: url("../../../img/loader.gif");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.addresses .checkbox.addressesAreEquals {
  margin-bottom: 2.4rem;
}

#order .delivery_option>label,
#order-opc .delivery_option>label {
  display: block;
  cursor: pointer;
  margin-bottom: -1px;
  font-weight: normal;
}

#order .delivery_option.item>label>table,
#order-opc .delivery_option.item>div>table {
  background: #fafafa;
}

#order .delivery_option>label>table.resume.delivery_option_carrier,
#order-opc .delivery_option>label>table.resume.delivery_option_carrier {
  margin-top: 10px;
  border: 1px solid #4b80c3;
  background: #5192f3;
  width: 100%;
  color: white;
  font-weight: bold;
}

#order .delivery_option>label>table.resume.delivery_option_carrier td,
#order-opc .delivery_option>label>table.resume.delivery_option_carrier td {
  padding: 8px 11px 7px 11px;
}

#order .delivery_option>label>table.resume.delivery_option_carrier td i,
#order-opc .delivery_option>label>table.resume.delivery_option_carrier td i {
  vertical-align: -2px;
  margin-right: 7px;
  font-size: 20px;
}

#order .delivery_option>label>table.resume td.delivery_option_logo,
#order-opc .delivery_option>label>table.resume td.delivery_option_logo {
  padding: 0;
  width: 220px;
}

#order .delivery_option>label>table.resume td.delivery_option_check {
  vertical-align: middle;
  padding: 0;
  width: 49px;
  height: 10px;
  color: #339933;
  font-size: 34px;
  text-align: center;
}

#order .delivery_option {
  margin-bottom: 1em;
  border: 1px solid var(--primary-color-20);
  border-radius: 4px;
  padding-inline: 2.4rem;
  padding-block: 1.8rem;
}

#order .delivery_option .form-check {
  align-items: center;
  gap: 3.3rem;
  margin-bottom: unset;
}

#order .delivery_option label {
  flex-grow: 2;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;

}

@media (min-width: 576px) {
  #order .delivery_option label {
    flex-direction: inherit;
    align-items: inherit;
    gap: inherit;
  }
}

#order .delivery_option label table.resume td.delivery_option_check span i {
  display: none;
}

#order .delivery_option.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

#order .delivery_option.active label {
  color: var(--secondary-color);
}

#order .delivery_option img {
  max-width: 125px;
}

.oc_pickup_content .address .form-group .btn {
  cursor: pointer;
  margin-bottom: 0;
  margin-left: -1px;
  border: 1px solid var(--primary-color-40);
  border-left: 1px solid #fff;
  border-radius: 0;
  width: inherit;
  height: 48px;
}

.oc_pickup_content .oc_pickup_map {
  margin-bottom: 2.4rem;
  height: 350px;
}

@media (max-width: 767px) {
  .oc_pickup_content .oc_pickup_map {
    height: 30vh;
  }
}

.oc_pickup_content .list {
    height: 45vh;
    overflow: auto;
}

.delivery-pickup-infos {
  position: relative;
  margin-bottom: 2.4rem;
  border: 1px solid var(--primary-color-40);
  padding: 1em;
  padding-bottom: 0;
  font-family: var(--secondary-font);
}

.delivery-pickup-infos:last-child {
  margin-bottom: 0;
}

.delivery-pickup-infos .delivery-pickup-header {
  margin-bottom: .8rem;
  min-height: 2.8rem;
  color: var(--primary-color-60);
  font-weight: bold;
  font-size: 1.4rem;
}

.delivery-pickup-infos .delivery-pickup-header .selection {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.delivery-pickup-infos .delivery-pickup-header .selection input {
  margin-top: 2px;
}

.delivery-pickup-infos .delivery-pickup-header .btn {
  display: none;
}

.delivery-pickup-infos .delivery-pickup-body {
  color: var(--primary-color-60);
  font-size: 1.4rem;
}

.delivery-pickup-infos .delivery-pickup-body p {
  margin: 0;
}

.delivery-pickup-infos .delivery-pickup-body p:first-child {
  color: var(--primary-color);
}

.delivery-pickup-infos .delivery-pickup-footer {
  display: none;
  align-items: center;
  gap: 1em;
}

.delivery-pickup-infos .delivery-pickup-footer .delivery-pickup-btns {
  display: flex;
  align-items: center;
}

.delivery-pickup-infos .delivery-pickup-footer .btn {
  margin: 0;
}

.delivery-pickup-infos .delivery-pickup-footer .btn:hover ~ i {
  color: var(--primary-color-60);
}

.delivery-pickup-infos .delivery-pickup-footer .opening_hours_btn {
  display: flex;
  align-items: center;
}

.delivery-pickup-infos .delivery-pickup-footer .opening_hours {
  display: none;
  grid-template-columns: 1fr 1fr;
  row-gap: .8rem;
  border-top: 1px solid var(--primary-color-40);
  padding-block: 1.8rem;
  color: var(--primary-color-60);
  font-size: 1.2rem;
}

.delivery-pickup-infos .delivery-pickup-footer .opening_hours.opening_hours_displayed {
  display: grid;
}

@media (min-width: 768px) {
  .delivery-pickup-infos .delivery-pickup-footer .opening_hours {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.delivery-pickup-infos .delivery-pickup-footer .opening_hours b {
  display: block;
  color: var(--primary-color-80);
  font-size: 1rem;
}

@media (min-width: 992px) {
  .delivery-pickup-infos .delivery-pickup-footer .opening_hours b {
    display: block;
  }
}

.delivery-pickup-infos .delivery-pickup-footer .opening_hours span {
  white-space: nowrap;
}

.delivery-pickup-infos .delivery-pickup-footer .active ~ .opening_hours {
    display: grid;
}

.delivery-pickup-infos.selected {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.delivery-pickup-infos.selected::before {
  position: absolute;
  top: -1em;
  left: 2.5em;
  content: "▲";
  color: var(--secondary-color);
}

.delivery-pickup-infos.selected .delivery-pickup-header {
  display: flex;
  justify-content: space-between;
}

.delivery-pickup-infos.selected .delivery-pickup-header .btn {
  display: inline-flex;
  cursor: pointer;
  width: inherit !important; /* à réajusteer */
}

.delivery-pickup-infos.selected .delivery-pickup-footer {
  display: block;
}

.delivery-pickup-infos.selected .delivery-pickup-btns {
  display: flex;
  align-items: center;
  gap: 1em;
}

#order .delivery_option.active table.resume td.delivery_option_check span i {
  display: block;
}

@media (max-width: 375px) {
  #order .delivery_option>label>table.resume td.delivery_option_logo,
  #order-opc .delivery_option>label>table.resume td.delivery_option_logo {
    max-width: 200px;
  }

  #order .delivery_option>label>table.resume td.delivery_option_check {
    min-width: 35px;
    font-size: 15px;
  }

}

#order .delivery_option_description {
  font-weight: bold;
}

@media (max-width: 767px) {
  #order .delivery_option>label>table.resume td.delivery_option_description,
  #order-opc .delivery_option>label>table.resume td.delivery_option_description {
    padding: 0;
  }
}

#order .delivery_option>label>table.resume td.delivery_option_price,
#order-opc .delivery_option>label>table.resume td.delivery_option_price {
  width: 11%;
  min-width: 88px;
  white-space: nowrap;
}

#order .delivery_option>label>table.resume td label,
#order-opc .delivery_option>label>table.resume td label {
  display: inherit;
  margin-bottom: 0;
  font-weight: normal;
}

.order_carrier_content {
  background: inherit;
  padding: 14px 0 16px 0;
  line-height: normal;
}

.order_carrier_content .checkbox input {
  margin-top: 2px;
}

.order_carrier_content+div {
  padding-bottom: 15px;
}

#carrierTable {
  border: 1px solid #999999;
  border-bottom: none;
  background: white;
}

#carrierTable tbody {
  border-bottom: 1px solid #999999;
}

#carrierTable th {
  background: url(../img/bg_table_th.png) repeat-x 0 -10px #999999;
  padding: 0 15px;
  height: 29px;
  color: white;
  font-weight: bold;
  line-height: 29px;
  text-transform: uppercase;
}

#carrierTable td {
  border-right: 1px solid #e9e9e9;
  padding: 15px;
  font-weight: bold;
}

#carrierTable td.carrier_price {
  border: none;
}

#gift_div {
  display: none;
  margin-top: 5px;
  margin-bottom: 10px;
}

a.iframe {
  text-decoration: none;
}

/*** Order Steps ***/

/*** Order Step - Payment ***/

.payment {
  position: relative;
  margin-bottom: 1em;
  border: 1px solid var(--primary-color-20);
  border-radius: 4px;
  padding-inline: 2.6rem;
  padding-block: 2rem;
}

.payment:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.payment:last-of-type {
  margin-bottom: 2em;
}

.payment a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.payment:hover .h4 {
  color: var(--secondary-color);
}

.payment div {
  background-color: var(--secondary-color);
  padding-inline: .6rem;
  padding-block: .8rem;
}

.payment_module img {
  max-width: 125px;
}

.payment_module span {
  display: block;
  margin: 0;
  font-weight: bold;
}

.payment_module span .texte-xs {
  display: block;
  color: var(--primary-color-60);
}

.payment_module span .texte-xs strong {
  color: var(--primary-color-80);
}

.payment_module:hover span .texte-xs strong {
  color: var(--primary-color-60);
}

.payment_module span .texte-xs strong:hover {
  color: var(--primary-color-20);
}

.payment_module p {
  margin: 1em 1em 0 0;
}

.payment_module .payment_price {
  text-align: center;
}

.payment_module .btn-payment {
  background: none repeat scroll 0 0 #55ca66;
  width: 100%;
  color: #ffffff;
  font-weight: bold;
}

.payment_module.box {
  margin-top: 20px;
}

.payment_module.inactive {
  opacity: 0.4;
}

.payment_module.inactive .btn-payment {
  cursor: inherit;
  background: none repeat scroll 0 0 #ccc;
  color: #000;
}

.payment_module.inactive .btn-payment:active,
.payment_module.inactive .btn-payment:focus {
  outline: none;
  box-shadow: none;
}

#HOOK_PAYMENT h4 {
  display: none;
}

p.cheque-indent {
  margin-bottom: 3.2rem;
  font-family: var(--secondary-font);
}

.cheque-box ul {
  margin-bottom: 3.2rem;
  margin-left: 2.6rem;
  list-style: unset;
}

.cheque-box .alert {
  margin-bottom: 4rem;
}

.cheque-box .form-group {
  margin-bottom: 0;
}

.cheque-box .form-group .form-control {
  width: 269px;
}

/*** Order Step - Confirmation ***/

.order-confirmation.box {
  line-height: 29px;
}

.order-confirmation.box a {
  text-decoration: underline;
}

.order-confirmation.box a:hover {
  text-decoration: none;
}

/*** Order Step - Carrier ***/

.delivery_option_carrier td {
  width: 200px;
}

.delivery_option_carrier td+td {
  width: 280px;
}

.delivery_option_carrier td+td+td {
  width: 200px;
}

.delivery_option_carrier tr td {
  padding: 5px;
}

.delivery_option_carrier.selected {
  display: table;
}

.delivery_option_carrier.not-displayable {
  display: none;
}

.delivery_option.active .delivery_option_price {
  color: var(--success-color);
}

.delivery_option_price {
  color: var(--primary-color-50);
}

.delivery_option_delay.texte-xs {
  margin-bottom: 0.5em;
}

/*** Order Step - Address ***/

#address p.required,
#address .required sup,
#identity p.required,
#account-creation_form p.required,
#new_account_form p.required,
#opc_account_form p.required,
#authentication p.required {
  margin: 9px 0 16px 0;
  color: #f13340;
}

#address p.inline-infos,
#identity p.inline-infos,
#account-creation_form p.inline-infos,
#new_account_form p.inline-infos,
#opc_account_form p.inline-infos,
#authentication p.inline-infos {
  color: red;
}

#address .form-group .form-control#adress_alias,
#identity .form-group .form-control#adress_alias,
#account-creation_form .form-group .form-control#adress_alias,
#new_account_form .form-group .form-control#adress_alias,
#opc_account_form .form-group .form-control#adress_alias,
#authentication .form-group .form-control#adress_alias {
  margin-bottom: 20px;
}

#address .gender-line,
#identity .gender-line,
#account-creation_form .gender-line,
#new_account_form .gender-line,
#opc_account_form .gender-line,
#authentication .gender-line {
  margin-bottom: 4px;
  padding-top: 4px;
}

#address .gender-line>label,
#identity .gender-line>label,
#account-creation_form .gender-line>label,
#new_account_form .gender-line>label,
#opc_account_form .gender-line>label,
#authentication .gender-line>label {
  margin-right: 10px;
  margin-bottom: 0;
}

#address .gender-line .radio-inline label,
#identity .gender-line .radio-inline label,
#account-creation_form .gender-line .radio-inline label,
#new_account_form .gender-line .radio-inline label,
#opc_account_form .gender-line .radio-inline label,
#authentication .gender-line .radio-inline label {
  color: #777777;
  font-weight: normal;
}

#identity #center_column form.std .row,
#authentication #center_column form.std .row,
#order-opc #center_column form.std .row {
  margin-right: -5px;
  margin-left: -5px;
}

#identity #center_column form.std .row .col-xs-4,
#authentication #center_column form.std .row .col-xs-4,
#order-opc #center_column form.std .row .col-xs-4 {
  padding-right: 5px;
  padding-left: 5px;
  max-width: 94px;
}

#identity #center_column form.std .row .col-xs-4 .form-control,
#authentication #center_column form.std .row .col-xs-4 .form-control,
#order-opc #center_column form.std .row .col-xs-4 .form-control {
  max-width: 84px;
}

#identity #center_column .footer_links,
#authentication #center_column .footer_links,
#order-opc #center_column .footer_links {
  border: none;
  padding-top: 0;
}

#new_account_form .box {
  line-height: 20px;
}

#new_account_form .box .date-select {
  padding-bottom: 10px;
}

#new_account_form .box .top-indent {
  padding-top: 10px;
}

#new_account_form .box .customerprivacy {
  padding-top: 15px;
}

#authentication fieldset.account_creation {
  margin-bottom: 20px;
}

#identity .radio,
#authentication .account_creation .radio,
#authentication #opc_account_form .radio {
  padding-top: 0 !important;
}

#authentication #account-creation_form .submit {
  margin-top: 10px;
}

#password {
  border: none;
  padding-top: 0;
}

#password .box p {
  margin-bottom: 9px;
}

#password .box .form-group {
  margin-bottom: 20px;
}

#password .box .form-group .form-control {
  width: 263px;
}

#instant_search_results a.close {
  opacity: 1;
  font-weight: 600;
  font-size: 13px;
  line-height: inherit;
  text-transform: none;
}

#instant_search_results a.close:hover {
  color: #515151;
}

#manufacturers_list h3,
#suppliers_list h3 {
  font-size: 17px;
  line-height: 23px;
}

#manufacturers_list .description,
#suppliers_list .description {
  line-height: 18px;
}

#manufacturers_list .product-counter a,
#suppliers_list .product-counter a {
  color: #333333;
  font-weight: bold;
}

#manufacturers_list .product-counter a:hover,
#suppliers_list .product-counter a:hover {
  color: #515151;
}

#manufacturers_list.list li .mansup-container,
#suppliers_list.list li .mansup-container {
  border-top: 1px solid #d6d4d4;
  padding: 31px 0 30px 0;
}

@media (max-width: 767px) {
  #manufacturers_list.list li .mansup-container,
  #suppliers_list.list li .mansup-container {
    text-align: center;
  }
}

#manufacturers_list.list li:first-child .mansup-container,
#suppliers_list.list li:first-child .mansup-container {
  border-top: 0;
}

#manufacturers_list.list li .left-side,
#suppliers_list.list li .left-side {
  text-align: center;
}

#manufacturers_list.list li h3,
#suppliers_list.list li h3 {
  margin-top: -5px;
  padding-bottom: 8px;
}

#manufacturers_list.list li .middle-side,
#suppliers_list.list li .middle-side {
  padding-left: 0;
}

@media (max-width: 767px) {
  #manufacturers_list.list li .middle-side,
  #suppliers_list.list li .middle-side {
    padding-right: 15px;
    padding-left: 15px;
  }
}

#manufacturers_list.list li .right-side-content,
#suppliers_list.list li .right-side-content {
  border-left: 1px solid #d6d4d4;
  padding: 0 0 32px 31px;
  min-height: 108px;
}

@media (max-width: 767px) {
  #manufacturers_list.list li .right-side-content,
  #suppliers_list.list li .right-side-content {
    border: none;
    padding: 0;
    min-height: 1px;
  }
}

#manufacturers_list.list li .right-side-content .product-counter,
#suppliers_list.list li .right-side-content .product-counter {
  position: relative;
  top: -6px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  #manufacturers_list.list li .right-side-content .product-counter,
  #suppliers_list.list li .right-side-content .product-counter {
    top: 0;
  }
}

#manufacturers_list.grid li,
#suppliers_list.grid li {
  text-align: center;
}

#manufacturers_list.grid li .product-container,
#suppliers_list.grid li .product-container {
  border-bottom: 1px solid #d6d4d4;
  padding-top: 40px;
  padding-bottom: 20px;
}

#manufacturers_list.grid li .product-container .left-side,
#suppliers_list.grid li .product-container .left-side {
  padding-bottom: 42px;
}

#manufacturers_list.grid li .product-container h3,
#suppliers_list.grid li .product-container h3 {
  padding-bottom: 10px;
}

#manufacturers_list.grid li .product-container .product-counter,
#suppliers_list.grid li .product-container .product-counter {
  margin-bottom: 12px;
}

@media (min-width: 1200px) {
  #manufacturers_list.grid li.first-in-line,
  #suppliers_list.grid li.first-in-line {
    clear: left;
  }

  #manufacturers_list.grid li.last-line .product-container,
  #suppliers_list.grid li.last-line .product-container {
    border-bottom: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #manufacturers_list.grid li.first-item-of-tablet-line,
  #suppliers_list.grid li.first-item-of-tablet-line {
    clear: left;
  }

  #manufacturers_list.grid li.last-tablet-line .product-container,
  #suppliers_list.grid li.last-tablet-line .product-container {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  #manufacturers_list.grid .product-container,
  #suppliers_list.grid .product-container {
    border-bottom: none;
  }
}

#manufacturer .description_box,
#supplier .description_box {
  border-top: 1px solid #d6d4d4;
  padding-top: 20px;
  padding-bottom: 20px;
}

#manufacturer .description_box .hide_desc,
#supplier .description_box .hide_desc {
  display: none;
}

#manufacturer .pagination-container,
#manufacturer .top-pagination-content,
#supplier .pagination-container,
#supplier .top-pagination-content {
  min-height: 69px;
}

#manufacturer .top-pagination-content.bottom-line,
#supplier .top-pagination-content.bottom-line {
  border-bottom: 1px solid #d6d4d4;
}

table.discount i {
  vertical-align: -2px;
  font-size: 20px;
  line-height: 20px;
}

table.discount i.icon-check {
  color: #46a74e;
}

table.discount i.icon-remove {
  color: #f13340;
}

#guestTracking .form-control {
  max-width: 271px;
}

@media (min-width: 1200px) {
  #guestTracking .form-group {
    overflow: hidden;
  }

  #guestTracking .form-group i {
    padding-left: 10px;
  }

  #guestTracking .form-control {
    float: left;
  }

  #guestTracking label {
    float: left;
    clear: both;
    width: 100%;
  }
}

/** 404 **/

#pagenotfound .pagenotfound {
  margin: 0 auto;
  padding-block: 3em;
  max-width: 824px;
  text-align: center;
}

#pagenotfound .pagenotfound .img-404 {
  padding: 8px 0 27px 0;
}

#pagenotfound .pagenotfound .img-404 img {
  max-width: 100%;
}

#pagenotfound .pagenotfound h1 {
  margin-top: unset;
}

#pagenotfound .pagenotfound form {
  margin-inline: auto;
  max-width: 600px;
}
/** END 404 **/

#account-creation_form fieldset.reversoform {
  padding: 10px !important;
}

#account-creation_form fieldset.reversoform .text label {
  display: block;
  padding: 0 0 10px 0;
  width: 100%;
  text-align: left;
}

#account-creation_form fieldset.reversoform .infos-sup {
  padding: 0 !important;
  font-style: italic;
  font-size: 10px;
  text-align: right;
}

#account-creation_form fieldset.customerprivacy label,
fieldset.customerprivacy label {
  cursor: pointer;
}

.tab-content {
  margin-top: 5px;
}

.form-group.form-error input[placeholder] {
  color: #f13340;
}

.fancybox-skin {
  background: white !important;
}

.fancybox-skin .fancybox-close {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: none;
  background: white;
  width: 28px;
  height: 28px;
  color: #333333;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
}

.fancybox-skin .fancybox-close:hover {
  color: #515151;
}

.fancybox-skin .fancybox-close:after {
  font-family: 'Orhus-Symbols' !important;
  content: "\e919";
}

#facebook_block,
#cmsinfo_block {
  background: #f2f2f2;
  padding-right: 29px;
  padding-left: 29px;
  min-height: 344px;
  overflow: hidden;
}

@media (max-width: 991px) {
  #facebook_block,
  #cmsinfo_block {
    padding-right: 13px;
    padding-left: 13px;
    min-height: 348px;
  }
}

@media (max-width: 767px) {
  #facebook_block,
  #cmsinfo_block {
    width: 100%;
    min-height: 1px;
  }
}

#facebook_block h4 {
  margin: 0 0 12px 0;
  padding: 35px 0 0 0;
  color: #6f6d6d;
  font-weight: 300;
  font-size: 21px;
  line-height: 25px;
}

@media (max-width: 991px) {
  #facebook_block h4 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  #facebook_block h4 {
    padding-top: 20px !important;
  }
}

@media (max-width: 767px) {
  #facebook_block h4 {
    font-size: 16px;
  }
}

#facebook_block .facebook-fanbox {
  border: 1px solid #aaaaaa;
  background: white;
  padding-bottom: 10px;
}

#cmsinfo_block {
  border-left: 1px solid #d9d9d9;
}

@media (max-width: 767px) {
  #cmsinfo_block {
    margin-top: 10px;
    border: none;
  }
}

#cmsinfo_block>div {
  padding: 35px 10px 0 0;
}

@media (max-width: 767px) {
  #cmsinfo_block>div {
    padding-top: 20px;
  }
}

@media (max-width: 479px) {
  #cmsinfo_block>div {
    border-top: 1px solid #d9d9d9;
    width: 100%;
  }
}

#cmsinfo_block>div+div {
  border-left: 1px solid #d9d9d9;
  padding-left: 29px;
  min-height: 344px;
}

@media (max-width: 479px) {
  #cmsinfo_block>div+div {
    border-left: none;
    padding-bottom: 15px;
    padding-left: 10px;
    min-height: 1px;
  }
}

#cmsinfo_block em {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  float: left;
  margin: 3px 10px 0 0;
  border-radius: 100px;
  background: #6f6d6d;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
}

@media (max-width: 991px) {
  #cmsinfo_block em {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
  }
}

#cmsinfo_block .type-text {
  overflow: hidden;
}

#cmsinfo_block h3 {
  margin: 0 0 5px 0;
  color: #6f6d6d;
  font-weight: 300;
  font-size: 21px;
  line-height: 25px;
}

@media (max-width: 1199px) {
  #cmsinfo_block h3 {
    font-size: 18px;
  }
}

#cmsinfo_block ul li {
  padding-bottom: 22px;
}

@media (max-width: 1199px) {
  #cmsinfo_block ul li {
    padding-bottom: 10px;
  }
}

@media (max-width: 991px) {
  #cmsinfo_block ul li {
    padding-bottom: 0;
  }
}

#cmsinfo_block p em {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  float: none;
  margin: 0;
  border-radius: 0;
  background: none;
  height: inherit;
  color: #777777;
  font-style: italic;
  font-size: 13px;
  line-height: inherit;
  text-align: left;
}

.ie8 #facebook_block,
.ie8 #cmsinfo_block {
  height: 344px;
}

@media (max-width: 1199px) {
  .zoomdiv {
    display: none !important;
  }
}

#product.content_only div.pb-left-column p.resetimg {
  margin-bottom: 0;
  padding-top: 0;
}

#product.content_only div.pb-left-column #thumbs_list_frame {
  margin-bottom: 0;
}

#product_comparison td.compare_extra_information {
  padding: 10px;
}

#product_comparison #social-share-compare {
  margin-bottom: 50px;
}

.btn-facebook:hover,
.btn-twitter:hover,
.btn-google-plus:hover,
.btn-pinterest:hover {
  border-color: #fff;
}

.btn-facebook i {
  color: #435f9f;
}

.btn-facebook:hover {
  background-color: #435f9f;
  color: white;
}

.btn-facebook:hover i {
  color: white;
}

.btn-twitter i {
  color: #000000;
}

.btn-twitter:hover {
  background-color: #000000;
  color: white;
}

.btn-twitter:hover i {
  color: white;
}

.btn-google-plus i {
  color: #e04b34;
}

.btn-google-plus:hover {
  background-color: #e04b34;
  color: white;
}

.btn-google-plus:hover i {
  color: white;
}

.btn-pinterest i {
  color: #ce1f21;
}

.btn-pinterest:hover {
  background-color: #ce1f21;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #000000;
  color: white;
}

.btn-pinterest:hover i {
  color: white;
}

#header_title {
  float: left;
  padding-top: 10px;
  color: #999;
  line-height: 18px;
}

.rte.content_only {
  padding-bottom: 10px;
  height: calc(100% + 30px);
}

.AS_Arrow {
  position: absolute;
  margin-top: 18px;
  margin-left: -40px;
  background: url('../img/icons/arrow.jpg') no-repeat scroll 0 0 transparent;
  width: 39px;
  height: 71px;
}

#account_left h4,
#order_left h4 {
  margin-bottom: 10px;
  border-bottom: 1px dashed #B2B2B2;
  padding-bottom: 2px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
}

#order-opc #left_column>div,
#order #left_column>div {
  color: #666666;
}

#my_account ul li h4 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
}

#my_account ul h4 {
  border: none;
}

#my_account ul li a {
  padding-left: 10px;
}

#my_account ul {
  line-height: 20px;
  list-style-type: none;
}

/** My account page(s) **/

@media (min-width: 768px) {
  #account-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 6rem;
  }
}

.account_widget {
  position: relative;
  margin-bottom: 2.6rem;
  border: 1px solid var(--primary-color-30);
  border-radius: 8px;
  padding: clamp(2rem, 1.875rem + 0.625vw, 2.5rem);
}

@media (min-width: 768px) {
  .account_widget {
    margin: 0;
  }
}

.account_widget_title {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.account_widget_title .btn {
  position: relative;
  margin: unset;
}

.account_widget_title .btn .notif {
  top: 3px;
  right: 0;
}

.account_widget_title h4 {
  margin: unset;
}

.account_widget a {
  text-decoration: none;
}

.account_widget a::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.account_widget>a>div:nth-child(1) {
  text-align: center;
}

#orap_myaccount .badge,
#ocrap_customer_account .badge {
  padding-block: 4px;
  color: var(--secondary-color);
  text-decoration: none;
}

#orap_myaccount .badge {
  background-color: var(--primary-color-40);
}

#orap_myaccount:hover .badge,
#orap_myaccount .selected .badge {
  background-color: var(--primary-color);
}

/** END My account page(s) **/

.paiement_block .paiement-resume {
  margin-top: 1.4rem;
  margin-bottom: 3.2rem;
  border-radius: 4px;
  background-color: var(--secondary-color);
  padding-inline: 2.5rem;
  padding-block: 2.8rem;
  font-family: var(--secondary-font);
}

.paiement_block .paiement_title .price {
  font-weight: 700;
  font-size: 24px;
}

.paiement_block h4::before {
  display: block;
  height: 2em;
  content: '';
}

.paiement_block h4:first-child::before {
  display: none;
}

@media (max-width: 767px) {
  #order-opc #left_column,
  #order #left_column {
    display: none;
  }
}

#order-opc #left_column h2,
#order #left_column h2 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 16px;
}

@media (max-width: 991px) {
  #order-opc #left_column h2,
  #order #left_column h2 {
    margin-top: 18px;
    margin-bottom: 5px;
    font-size: 14px;
  }
}

#order-opc #left_column #cart_secure i,
#order #left_column #cart_secure i {
  font-size: 30px;
}

@media (max-width: 991px) {
  #order-opc #left_column #cart_secure i,
  #order #left_column #cart_secure i {
    font-size: 25px;
  }
}

@media (min-width: 1200px) {
  #order-opc #left_column #cart_paiement .oc_mensualites,
  #order #left_column #cart_paiement .oc_mensualites {
    padding-left: 50px;
  }
}

#order-opc #left_column #cart_paiement .oc_mensualites_off,
#order #left_column #cart_paiement .oc_mensualites_off {
  color: #000;
  font-style: normal;
}

#order-opc #left_column #loyalty i,
#order #left_column #loyalty i {
  color: #cfcccc;
  font-size: 26px;
  line-height: 26px;
}

/* responsive area */
@media (max-width: 767px) {
  .navbar .navbar-cart {
    right: 0;
    margin-top: 10px;
    font-size: 0.8em;
    white-space: nowrap;
  }

  .navbar .navbar-cart .cart_quantity {
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 6px;
    left: 30px;
    z-index: 10;
    border-radius: 8px;
    background: #ff6666;
    padding: 0;
    width: 15px;
    height: 15px;
    color: white;
    font-style: inherit;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
  }

  .navbar .navbar-cart .unvisible {
    display: none;
  }

  .navbar .navbar-info {
    margin-top: 10px;
    font-size: 0.8em;
    white-space: nowrap;
  }

  .navbar .navbar-cart>a>span>span>i {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 34px;
    z-index: 1;
    border-radius: 8px;
    width: 15px;
    height: 15px;
    color: #55c65e;
    font-style: inherit;
    font-size: 18px;
    line-height: 15px;
    text-align: center;
  }

  .navbar .icon-stack>span {
    position: absolute;
    left: 5px;
  }

  .columns-container {
    padding: 0 0 0 0;
  }

  td.cart_product {
    float: left;
    clear: none !important;
    width: 25% !important;
  }

  td.cart_description {
    float: left;
    clear: none !important;
    width: 75% !important;
  }

  td.cart_description_no_offer {
    padding: 9px 7px 11px !important;
    width: 100% !important;
    min-height: auto !important;
  }

  td.cart_unit,
  td.cart_quantity,
  td.cart_total,
  td.cart_delete {
    float: left;
    clear: none !important;
    width: 25% !important;
  }

  td.cart_unit {
    clear: both !important;
    width: 35% !important;
  }

  td.cart_delete {
    width: 15% !important;
  }

  tr.customized td.cart_delete {
    display: none;
  }

  tr.oc_cart_extra,
  tr.cart_discount {
    border-top: 1px solid #D6D4D4;
  }

  tr.oc_cart_extra td.cart_description,
  tr.cart_discount td.cart_description {
    float: left;
    clear: none !important;
    width: 60% !important;
  }

  tr.oc_cart_extra td.cart_total,
  tr.cart_discount td.cart_total {
    width: 85% !important;
  }

  tr.cart_discount td.cart_product {
    float: left;
    clear: none !important;
    width: 25% !important;
  }

  tr.cart_discount td.cart_discount_name {
    float: left;
    clear: none !important;
    width: 50% !important;
  }

  tr.cart_discount td.cart_total {
    padding-bottom: 0 !important;
  }

  tr.cart_discount td.cart_delete {
    padding: 0 10px !important;
  }

  tr.cart_discount td.cart_delete a {
    color: #000;
    font-size: 23px;
  }

  td.cart_discount_price_unit,
  td.cart_discount_delete {
    display: none !important;
  }

  .customization td.cart_product {
    display: none;
  }

  .customization td.cart_customization {
    vertical-align: top !important;
    width: 75% !important;
    text-align: left;
  }

  .customization td.cart_customization_description {
    width: 50% !important;
  }

  .customization td.cart_customization_preview {
    width: 50% !important;
  }

  .customization td.cart_delete {
    width: 25% !important;
  }

  .AS_Arrow {
    display: none;
  }

}

.cart_total_voucher>td,
.cart_total_message>td {
  border: medium none !important;
  padding-top: 0 !important;
}

.btn span i {
  vertical-align: 0;
  margin-right: 5px;
}

/*** Debut - Shopping Cart ***/

#order-cart {
  overflow: unset;
}

/* iPad Portrait & Landscape */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1366px)
and (-webkit-min-device-pixel-ratio: 1)  {
  #order-cart {
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .order-cart-container {
    display: flex;
  }

  .order-cart-container::after {
    margin-right: -100%;
    background-color: var(--secondary-color);
    width: 100%;
    content: "";
  }

}

@media (min-width: 992px) {
  .order-cart-container::after {
    width: 100%;
  }
}

#order-cart-left {
  flex-grow: 2;
  padding-inline: 0;
  padding-top: clamp(2.5rem, 1.75rem + 3.75vw, 5.5rem);
}

@media (min-width: 768px) {
  #order-cart-left {
    padding-right: clamp(2rem, 0.5rem + 3.5vw, 8rem);
    padding-bottom: clamp(2.5rem, 1.75rem + 3.75vw, 5.5rem);
    padding-left: 2rem;
    width: clamp(20rem, 14.5313rem + 27.3438vw, 41.875rem);
  }
}

#order-cart-left .h2 {
  margin-bottom: clamp(3.3rem, 2.925rem + 1.875vw, 4.8rem);
}

#shopping-cart {
  margin-bottom: 15px;
  border-bottom: 1px solid #d6d4d4;
}

#shopping-cart .btn-text {
  margin: 0;
}

#shopping-cart .cart_item {
  margin-bottom: 1em;
  border-bottom: 1px solid var(--primary-color-30);
  padding-bottom: 1em;
}

#shopping-cart .cart_item:last-child {
  margin-bottom: unset;
  border: unset;
  padding-bottom: 0;
}

#shopping-cart .shopping_cart_product {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  #shopping-cart .shopping_cart_product {
    gap: 2em;
  }
}

#shopping-cart .shopping_cart_product .product_image {
  width: 15%;
  min-width: 90px;
  text-align: left;
}

@media (min-width: 768px) {
  #shopping-cart .shopping_cart_product .product_image {
    min-width: 150px;
    text-align: center;
  }
}

#shopping-cart .shopping_cart_product .product_image img {
  margin-top: 1em;
  width: 100%;
}

#shopping-cart .shopping_cart_product .h4 {
  margin: unset;
}

#shopping-cart .shopping_cart_product .product_name {
  flex-grow: 1;
}

#shopping-cart .product_name-title .btn-text::after {
  display: none;
}

#shopping-cart .product_name .product_name-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#shopping-cart .product_name a {
  color: var(--primary-color-80);
  text-decoration: none;
}

#shopping-cart .product_name .product-attributes {
  margin-bottom: 1rem;
  color: var(--primary-color-60);
  font-size: 1.4rem;
}

#shopping-cart .product_name .ref-product {
  margin-bottom: 1em;
  color: var(--primary-color-60);
}

#shopping-cart .product_name #product-qty {
  margin-bottom: 1rem;
}

#shopping-cart td.product_name .product_name-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#shopping-cart td.product_name .product_name-footer .h4 {
  margin: unset;
}

#shopping-cart td.product_name #product-qty {
  color: var(--primary-color-60);
  font-weight: bold;
  font-size: 1.4rem;
  font-family: var(--secondary-font);
}

#shopping-cart td.product_infos {
  min-width: 60px;
  text-align: right;
}

#shopping-cart td.product_infos .price-percent-reduction {
  display: inline-block;
  margin: 5px auto;
  background: #3a6780;
  padding: 0 5px 0 3px;
  width: 50px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

#shopping-cart td.product_quantity,
#shopping-cart td.product_total {
  text-align: right;
}

#shopping-cart td.product_customization strong {
  display: block;
  margin-bottom: 15px;
}

#shopping-cart tr.separate-customization {
  display: block;
  height: 10px;
}

#shopping-cart tr.customization td.product_customization {
  padding-bottom: 1em;
}

#shopping-cart tr.customization td.product_customization .product_customization-content {
  position: relative;
  margin-top: 1.7em;
  padding: 1em;
}

#shopping-cart tr.customization td.product_customization .product_customization_header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--primary-color-40);
  padding-bottom: 1.2rem;
}

#shopping-cart .display_product_customization_details {
  cursor: pointer;
}

#shopping-cart .product_customization_details {
  display: none;
  margin-bottom: 1rem;
  color: var(--primary-color-70);
  font-size: clamp(1.1rem, 1.075rem + 0.125vw, 1.2rem);
}

#shopping-cart tr.customization td.product_customization .product_customization_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#shopping-cart tr.customization td.product_customization .product_customization_footer .h4 {
  margin: unset;
}

#shopping-cart tr.customization td.product_customization .product_customization-content .btn-text::after {
  display: none;
}

#shopping-cart .shopping_cart_product_extra {
  display: none;
}

#shopping-cart .display_shopping_cart_product_extra {
  display: none;
  cursor: pointer;
}

#shopping-cart .display_shopping_cart_product_extra span {
  border-bottom: inherit;
}

#shopping-cart .shopping_cart_product_extra > div:not(.selected) {
  display: none;
}

#shopping-cart .shopping_cart_product_extra .h5 {
  display: inline;
  margin: unset;
  font-weight: bold;
  text-transform: inherit;
}

#order-cart-right {
  flex-grow: 1;
  margin-inline: -2rem;
  background-color: var(--secondary-color);
}

@media (min-width: 768px) {
  #order-cart-right {
    margin: unset;
    padding-bottom: 2em;
    width: clamp(20rem, 19.375rem + 3.125vw, 22.5rem);
  }
}

#order-cart-right .order-cart-content {
  padding-block: clamp(3.4rem, 2.6rem + 4vw, 6.6rem);
  padding-right: 2rem;
  padding-left: clamp(2rem, 1rem + 5vw, 6rem);
}

#order-cart-right .order-cart-content {
  position: sticky;
  top: 0;
}

#order-cart-right a {
  margin: 0;
  text-decoration: none;
}

#cart_voucher {
  margin-bottom: 2.4rem;
}

#cart_voucher .btn-container {
  margin-left: -1px;
  border-left: 1px solid #fff;
  background-color: #fff;
  padding-inline: 1em;
}

.btn-container {
  border: 1px solid; /* juste la class pour avoir le changement de bordure lorsque l'input est actif ou focus */
}

#cart_voucher .btn-container .btn {
  cursor: pointer;
  margin: 0;
}

#cart_voucher .btn-container .btn-text::after {
  -webkit-transform-origin: center;
  position: absolute;
  bottom: 14px;
  left: 0;
  transform-origin: center;
  transition: width 125ms,-webkit-transform 125ms;
  transition: transform 125ms,width 125ms;
  transition: transform 125ms,width 125ms,-webkit-transform 125ms;
  background-color: var(--primary-color);
  width: 100%;
  height: .15rem;
  content: "";
}

#cart_discount {
  font-family: var(--secondary-font);
  font-size: 1.3rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--primary-color-40);
  padding-bottom: 2.4rem;
}

#cart_discount .cart_discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cart_discount .cart_discount_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

#cart_discount .cart_discount_line .btn-text::after {
  display: none;
}

#cart_delivery {
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--primary-color-40);
  padding-bottom: 2.4rem;
}

#cart_delivery .product_name {
  display: flex;
  justify-content: space-between;
}

#cart_delivery .product_infos {
  margin-bottom: 1em;
}

#shopping-cart-recap {
  font-family: var(--secondary-font);
}

#shopping-cart-recap .cart_recap_line {
  display: flex;
  justify-content: space-between;
}

#shopping-cart-recap .cart_recap_line .cart_recap_price {
  text-align: right;
}

#shopping-cart-recap form .input_voucher {
  width: 100%;
}

#shopping-cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
  font-family: var(--secondary-font);
}

#shopping-cart-total .cart_total_price {
  font-weight: bold;
}

.shopping_cart_empty {
  margin: 50px 0;
  text-align: center;
}

@media (max-width: 768px) {
  #shopping-cart-recap .cart_voucher {
    margin-bottom: 10px;
    width: 100%;
  }

  #shopping-cart-recap .cart_recap {
    margin-bottom: 10px;
    width: 100%;
  }

  #shopping-cart-recap .cart_recap_legend {
    width: 75%;
  }

  #shopping-cart-recap .cart_recap_price {
    width: 25%;
  }

}

#order-cart-right .btn-primary {
  width: 100%;
}

#HOOK_SHOPPING_CART > div {
  font-size: 1.5rem;
  display: flex;
  gap: .8rem;
  margin-bottom: .8rem;
}

/* Loyalty */
#order-cart-right #loyalty .loyalty_help {
  cursor: help;
  text-decoration: underline;
}

#order-cart-right #oc_payment_logos_cart {
  border-bottom: 1px solid var(--primary-color-40);
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
}

/* FIN - Panier */

.checkout_process main {
  margin: unset;
}

@media (min-width: 768px) {
  .checkout_process main {
    background-color: var(--primary-color-20);
  }
}

.checkout_process header {
  border: none;
  background: none;
}

.checkout_process #header {
  background: none;
}

.checkout_process #header #main_header {
  background: none;
}

.checkout_process #header #main_header .header {
  background: none;
  min-height: 28.25px;

}

@media (min-width: 768px) {
  .checkout_process header {
    background-color: var(--primary-color-20);
  }

  .checkout_process #header {
    background-color: var(--primary-color-20);
  }

  .checkout_process #header #main_header {
    background-color: var(--primary-color-20);
  }

  .checkout_process #header #main_header .header {
    background-color: var(--primary-color-20);
    min-height: 56px;
  }
}

.order-content-box {
  margin-top: clamp(3rem, 2.55rem + 2.25vw, 4.8rem);
  margin-bottom: clamp(3.7rem, 2.425rem + 6.375vw, 8.8rem);
}

@media (min-width: 768px) {
  .order-content-box {
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 4rem;
    padding-inline: 8rem;
  }
}

.tabbed-navigation {
  display: flex;
  margin-bottom: 3rem;
  white-space: nowrap;
}

.tabbed-navigation li {
  flex: 1 1 50%;
  text-align: center;
}

.tabbed-navigation li a,
.tabbed-navigation li span {
  display: block;
  border: none;
  border-bottom: 1px solid var(--primary-color-20);
  background: none;
  padding-block: 2.2rem;
  color: var(--primary-color-40);
  font-weight: bold;
  font-size: 1.4rem;
  font-family: var(--secondary-font);
  text-decoration: none;
  text-transform: uppercase;
}

.tabbed-navigation li a:hover,
.tabbed-navigation li a:focus  {
  color: var(--primary-color);
}

.tabbed-navigation li.active a,
.tabbed-navigation li.step_current span {
  border-bottom: 3px solid var(--primary-color);
  background-color: #fff;
  color: var(--primary-color);
}

.order-content-box .btn:not(.btn-secondary, .btn-text, .btn-icon, .close),
.order-content-box .btn ~ .btn-secondary,
.order-content-box .btn-primary {
  width: 100%;
}

.order-content-box .form-check {
  margin-bottom: 3rem;
}

.order-content-box .footer-box {
  text-align: center;
}

body>img {
  display: none;
}

/* LABEL */
.menu_label {
  display: inline-block;
  position: relative;
  top: -1px;
  right: 0;
  vertical-align: middle;
  margin-left: 10px !important;
  background: #62b8fd none repeat scroll 0 0;
  padding: 0 10px !important;
  color: white;
  font-weight: normal;
  font-size: 10px;
  line-height: 16px;
}

.menu_label.menu_label_black {
  background: #000000 none repeat scroll 0 0;
}

/* ocarat suisse */
.orhus-symbols:is(.fo-swiss) {
  line-height: 0;
}

.orhus-symbols:is(.fo-swiss):before {
  margin-left: 4px;
  color: #cc3333;
  font-size: 13px;
}

/* ocarat cms cards */
.occms-center {
  text-align: center;
}

.occms-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary-color-40);
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 1em;
  align-items: center;
}

.rte h2.occms-card-title,
.rte .h2.occms-card-title,
.occms-card-title {
  text-align: center;
  margin-block: 0.4em;
  font-size: 2.2rem;
}

.rte h3.occms-card-title,
.rte .h3.occms-card-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0;
}

.occms-card-subtitle {
  font-weight: 600;
  margin-bottom: 1rem;
}

.occms-card-description {
  text-align: center;
}

.occms-card-note {
  text-align: center;
  margin-top: 1em;
  font-size: 1.2rem;
}

#cms .content_only img.occms-card-logo,
#cms #center_column img.occms-card-logo,
img.occms-card-logo {
  max-width: 150px;
  display: block;
  margin: auto;
}

/* ocarat modal */
.modal ul {
  list-style: inside none disc;
}

.reference_product td {
  color: #666;
}

#cms .rte.content_only .cms_retour {
  display: inline-block;
  margin: 10px 0;
}

#page ::-webkit-scrollbar-track {
  background-color: rgba(17, 17, 17, 0.4);
}

#page ::-webkit-scrollbar {
  background-color: rgb(245, 245, 245);
  width: 5px;
}

#page ::-webkit-scrollbar-thumb {
  border: 1px solid rgb(17, 17, 17);
  background-color: rgb(17, 17, 17);
}

.flex-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.clear {
  clear: both;
}

.nopadding {
  padding: 0;
}

.pointercursor {
  cursor: pointer;
}

#addresses_used .address-box {
  margin-bottom: 2.4rem;
  background-color: var(--secondary-color);
  padding: 1.4rem;
}

#addresses_used .address-box ul {
  color: var(--primary-color-60);
  font-weight: bold;
  font-size: 1.4rem;
  font-family: var(--secondary-font);
}

#address_delivery,
#address_invoice {
  margin: 0;
  height: 100%;
}

#address_add {
  display: flex;
  align-items: center;
  gap: 1em;
  padding-bottom: 1em;
}

#address_add .btn {
  margin: 0;
}

#address_add > i {
  display: inline-block;
  position: relative;
  cursor: help;
  margin-left: 10px;
  color: var(--primary-color-40);
  font-size: 25px;
}

#ordermsg {
  margin-bottom: 30px;
  border-top: 1px solid var(--primary-color-20);
  padding-top: 2.4rem;
}

#ordermsg label {
  font-weight: normal;
}

.productsort div.selector {
  background: none;
  padding: 5px 0;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
}

.productsort div.selector span {
  color: rgb(17, 17, 17);
  font-size: 10px;
}

.productsort div.selector:after {
  top: 5px;
  right: 0;
  color: rgb(17, 17, 17);
}

/****** Bouton Messagerie *****/
div[role='presentation']>iframe {
  z-index: 1000 !important;
  border-radius: 50%;
}

/** Bloc RSS Home**/
.oc_rss {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .oc_rss {
    padding-top: 9rem;
    padding-bottom: 8.6rem;
  }
}

.post-list-container {
  text-align: center;
}

@media (min-width: 992px) {
  .post-list-container {
      display: grid;
      grid-template-areas:
      "polhead-1 . polhead-3  "
      "polbody polbody polbody";
  }
}

.oc_rss h2 {
  grid-area: polhead-1;
  margin-bottom: 3.2rem;
}

.oc_rss .posts_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  grid-area: polbody;
  gap: 2.4rem;
  padding-top: 1.4rem;
  padding-bottom: 3.3rem;
  overflow-x: scroll;
  scrollbar-color: var(--primary-color) var(--primary-color-20);
  scrollbar-width: thin;
  text-align: left;
}

@media (min-width: 768px) {
  .oc_rss .posts_container {
    grid-template-columns: repeat(3, 1fr);
    gap: 5.6rem;
    padding-top: 2.4rem;
    padding-bottom: 3.5rem;
    overflow: unset;
    }
}

#rss_block_left .btn {
  grid-area: polhead-3;
}

.oc_rss .posts_container::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.oc_rss .posts_container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  height: 3px;
}

.oc_rss .posts_container::-webkit-scrollbar-track {
  background: var(--primary-color-20);
  height: 1px
}

.oc_rss article {
  position: relative;
}

.oc_rss .post-thumbnail {
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .oc_rss .post-thumbnail {
    margin-bottom: 2.4rem;
  }
}

.oc_rss article a {
  text-decoration: none;
}

.oc_rss article a::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}
