/* ** TOP > LOGO ** */
#m-top {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  color: #014712;
  background-color: white;
  box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px -1px, rgb(0 0 0 / 6%) 0px 2px 4px -1px;
}

#m-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1650px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#m-top .box {
  display: flex;
  height: 100%;
}

#m-top .box:first-child {
  border-left: 0;
}

#m-top .box a,
#m-top .box button {
  padding-left: .5em;
  padding-right: .5em;
  text-decoration: none;

  outline: none;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#m-top .box button {
  width: 100%;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background-color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#m-top .box.burger_area,
#m-top .box.home_area,
#m-top .box.search_area,
#m-top .box.account_area,
#m-top .box.cart_area {
  display: flex;
  align-items: center;
}

@media screen and (min-width:992px) {
  #m-top .box.burger_area {
    display: none;
  }
}

#m-top .box.burger_area a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #014712;
  padding: 0;

  height: 100%;
}

#m-top .box.burger_area .icon {
  font-size: 2em;
}

#m-top .box.burger_area.active a {
  color: white;
  background-color: #014712;
}

#m-top .box.search_area {
  position: relative
}

#m-top .box.slogan_area {
  flex: 1;
  align-items: center;
}

#m-top .box.slogan_area a {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8em;
  font-weight: bold;
  text-decoration: none;
  padding: 0;
  line-height: 1;
}

@media screen and (min-width:576px) {
  #m-top .box.slogan_area a {
    font-size: 2.333em;
    padding-left: 1.333em;
    padding-right: 1.333em;
  }
}

@media screen and (min-width:992px) {
  #m-top .box.slogan_area .brand {
    display: none;
  }
}

#m-top .box.logo-text {
  display: flex;
  align-items: center;
  margin-left: 1em;
}

#m-top .box.logo-text div {
  display: flex;
  align-items: baseline;
}

#m-top .box.logo-text span.name {
  font-family: 'Roboto', sans-serif;
  font-size: 2.333em;
  font-weight: bold;
}

#m-top .box.logo-text span.reg {
  font-family: 'Roboto', sans-serif;
  font-size: .733em;
  font-weight: bold;
  margin-left: .133em;
}

#m-top .box.logo-image {
  display: flex;
  align-items: center;
  margin-left: 2em;
}


#m-top .box.home_area .icon {
  font-size: 1.8em;
}

#m-top .box.search_area .icon {
  font-size: 1.667em;
}

#m-top .box.account_area .icon,
#m-top .box.cart_area .icon {
  font-size: 2em;
}

#m-top .box.account_area {
  margin-left: 3.333em;
}

#m-top .box .label {
  padding: 0 .333em;
  font-weight: bold;
}

#m-top .box:not(.cart_area) .label {
  display: none
}


@media screen and (max-width:992px) {
  #m-top .box.logo-text {
    display: none;
  }

  #m-top .box.logo-image {
    display: none;
  }

  #m-top .box.account_area {
    margin-left: 0;
  }
}

.search_box {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 101;
  min-width: 10em;
  max-width: 768px;
  height: 100%;
  color: grey;
}

.search_box form,
.search_box fieldset {
  height: 100%
}

.search_box label {
  display: none;
}

.search_box .line {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: .25em;
  background-color: white;
}

.search_box .line .input-box {
  flex: 1;
}

.search_box .line .input-box input {
  width: 100%;
  font-size: 1.333em;
  height: 2em;
  padding-left: .667em;
  margin: 0;
  color: inherit;
  text-overflow: ellipsis;
  outline: none;
  font-family: inherit;
  -webkit-appearance: none;
  background-color: white;
  border-radius: 0;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #014712;
}

#m-top .search_box .line .submit-box button {
  width: 100%;
  font-size: 1.333em;
  height: 2em;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #014712;
  padding: 0 .333em;
  margin: 0;
  color: #014712;
  background-color: white;
  cursor: pointer;
}


@media screen and (max-width:360px) {
  #m-top .box a {
    padding-left: .25em;
    padding-right: .25em;
  }
}

@media screen and (max-width:480px) {
  #m-top .box.home_area {
    display: none
  }
}

@media screen and (min-width:576px) {
  #m-top .box:not(.cart_area) .label {
    display: block
  }
}

.m-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  overflow-y: auto;
  background-color: white;
  color: black;
  border: 1px solid gainsboro;
  width: 19em;
  min-width: 50vw;
  max-width: 100vw;
  height: 100vh;
}

@media screen and (min-width:992px) {
  body:not(.funnel) .m-menu {
    display: block !important;
    min-width: auto;
  }
}

.m-menu::-webkit-scrollbar {
  width: .333em;
}

.m-menu::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, .1);
}

.m-menu::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.m-menu a {
  color: inherit;
  text-decoration: none;
}

.m-menu ol,
.m-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.m-menu li.sousmenu.account {
  background-color: darkgrey;
}

.m-menu li.sousmenu div.main {
  width: 100%;
  border-top: 1px solid gainsboro;
  display: flex;
  justify-content: space-between;
  padding-top: .333em;
  padding-bottom: .333em;
}

.m-menu li.sousmenu:first-child div.main {
  border-top: 0;
}

.m-menu li.sousmenu div.main.opened {
  border-bottom: 0;
  color: white;
  background-color: #014712;
  background: linear-gradient(90deg, #014712 67%, darkgreen);
}

.m-menu li.sousmenu div.main a.text {
  flex: 1;
  font-weight: bold;
  padding: .333em 1em;
}

.m-menu li.sousmenu div.main a.goto {
  padding: .333em .667em;
  border-left: 1px solid gainsboro;
}

.m-menu li.sousmenu div.main.opened a.goto {
  border-left-color: gainsboro;
}

.m-menu ol.level2 {
  display: none;
  background-color: white;
  color: black;
}

.m-menu ol.level2.current {
  display: block;
}

.m-menu ol.level2 li.level2 a.level2 {
  display: inline-block;
  width: 100%;
  padding: .5em .333em .5em 1.333em;
  border-bottom: 1px solid gainsboro;
}

.m-menu ol.level2 li.level2 a.level2 .my-fa-icon {
  margin-right: .333em;
}

.m-menu ol.level2 li.level2 a.level2.current {
  font-weight: bold;
  background: linear-gradient(90deg, white, whitesmoke);
}

.m-menu ol.level2 li.level2 a.level2:hover,
.m-menu ol.level2 li.level2 a.level2:active {
  text-decoration: underline;
}

.m-menu ol.level3 {
  border-bottom: 1px solid gainsboro;
  background-color: white;
}

.m-menu ol.level3 li.level3 {
  font-size: .933em;
}

.m-menu ol.level3 li.level3:last-child {

}

.m-menu ol.level3 li.level3 a.level3 {
  display: inline-block;
  width: 100%;
  padding: .333em .333em .333em 2.667em;
}

.m-menu ol.level3 li.level3 a.level3.current {
  font-weight: bold;
}

.m-menu ol.level3 li.level3 a.level3:hover,
.m-menu ol.level3 li.level3 a.level3:active {
  text-decoration: underline;
}

.my-pull-left {
  text-align: left !important;
}

.scroll-back2top-area {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 1;
}

.scroll-back2top-area button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #014712;
  padding: 0;
  font-size: 2em;
  width: 1.8em;
  height: 1.8em;
  border-radius: 1em;
  border: 0;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */

  transition: 333ms all;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transition: 333ms all;
  -moz-transition: 333ms all;
  -o-transition: 333ms all;
  -ms-transition: 333ms all;
  -webkit-tap-highlight-color: transparent;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.scroll-back2top-area button:hover,
.scroll-back2top-area button:focus:hover {
  background-color: black;
}


/* ** sommaire de sous-cat -- la ligne avec Voir les X article de xxx ** */
.my-subtitle-view-other-v2119 {
  text-align: center;
  padding: 0;
  margin: 0 0 .75em 0;
  font-size: 1.067em;
  font-weight: normal;
  line-height: 1.2;
}

.my-subtitle-view-other-v2119 a {
  text-decoration: none
}

.my-subtitle-view-other-v2119 a:hover {
  text-decoration: underline
}

/* ** AFFICHAGE DES SOMMAIRES DE PRODUITS ** */
.caps_line {
  margin-bottom: 2em;
}

.caps_line_added2cart {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid gainsboro;
}

.caps_line .caps_line_title {
  padding: 0 0 .25em 0;
  margin: 0 0 .75em 0;
  font-size: 1.267em;
  font-weight: bold;
  line-height: 1.1;
  border-bottom: 1px solid grey;
}

.caps_line .caps_line_title a {
  text-decoration: none
}

.caps_line .caps_line_footer_link {
  text-align: center;
  font-size: .933em;
}

.caps-v2020 {
  margin-left: auto;
  margin-right: auto;
  max-width: 992px;
}

.caps-v2020 .gotoprod {
  cursor: pointer
}

.caps-v2020 .container {
  display: flex;
  width: 100%;
}

.caps_line .caps-v2020 .container {
  border-bottom: 1px solid gainsboro;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.caps_line .caps-v2020:last-child .container {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media screen and (min-width:992px) {
  .caps_line {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .caps_line .caps_line_title {
    flex-basis: 100%;
  }

  .caps_line .caps_line_footer_link {
    flex-basis: 100%;
    text-align: right;
    /*margin-top: 1em;*/
  }

  .caps_line .caps-v2020 {
    padding: .667em;
    flex-basis: 50%;
    display: flex;
  }

  .caps_line .caps-v2020 .container,
  .caps_line .caps-v2020:last-child .container {
    margin: 0;
  }

  .caps_line .caps-v2020:last-child .container {
    border-bottom: 1px solid gainsboro;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .caps_line .caps-v2020 .container:hover {
    border-color: silver;
  }
}


.caps-v2020 .caps_image_area {
  flex-basis: 35%;
  max-width: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
}

.caps-v2020 .caps_image_area .image img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 250px;
  height: auto !important;
}

.caps-v2020 .caps_image_area .picto {
  position: absolute;
  z-index: 1;
}

.caps-v2020 .caps_image_area .picto.new {
  top: 0;
  left: 0;
  font-size: .733em;
  font-weight: bold;
  background-color: white;
  border: 1px solid currentColor;
  padding: 1px 5px;
  user-select: none;
  text-transform: uppercase;
}

.caps-v2020 .caps_image_area .picto.promo {
  top: 0;
  right: 0;
  font-size: .933em;
  font-weight: 600;
  color: white;
  background-color: goldenrod;
  border: 0;
  padding: 2px .333em;
  user-select: none;
}

.caps-v2020 .caps_content_area {
  flex: 1;
  align-self: center;
}

.caps-v2020 .name_area {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: .25em;
}

.caps-v2020 .name_area a {
  text-decoration: none
}

.caps-v2020 .name_area a:hover {
  text-decoration: underline
}

.caps-v2020 .name_area h2,
.caps-v2020 .name_area h3,
.caps-v2020 .name_area h4 {
  margin: 0;
  font: inherit;
}

.caps-v2020 .price_area {
  margin: .5em 0;
  line-height: 1.2
}

.caps-v2020 .price_area .prix-vente .prefix {
  font-size: .8em;
  margin-right: .25em;
}

.caps-v2020 .price_area .prix-vente .price {
  font-size: 1.4em;
  font-weight: bold;
}

.caps-v2020 .price_area .prix-vente .currency {
  font-size: 1.267em;
  font-weight: bold;
  padding-left: 2px;
}

.caps-v2020 .price_area .prix-barre {
  font-size: .867em
}

.caps-v2020 .shipping_area {
  margin-bottom: .25em
}

.caps-v2020 .shipping_area span {
  font-size: .733em;
  color: white;
  background-color: black;
  padding: 1px .5em;
  user-select: none;
}

.caps-v2020 .description_area {
  font-size: .867em;
  margin-bottom: 1em;
}

.caps-v2020 .description_area .etc {
  white-space: nowrap
}

.caps-v2020 .description_area .etc a {
  text-decoration: none
}

.caps-v2020 .description_area .etc a:hover {
  text-decoration: underline
}

.caps-v2020 .action_area {
  margin-top: .5em;
  font-size: .8em;
}

@media screen and (min-width:992px) {
  .caps-v2020 .name_area {
    font-size: 1.333em
  }

  .caps-v2020 .price_area .prix-vente .price {
    font-size: 1.467em
  }

  .caps-v2020 .price_area .prix-vente .currency {
    font-size: 1.333em
  }

  .caps-v2020 .action_area {
    font-size: .867em;
    text-align: right;
  }
}

.grecaptcha-badge {
  display: none;
}



.hidden {
  display: none !important;
}

.marginb1 {
  margin-bottom: 1px !important;
}

.noshadow {
  -moz-box-shadow: 0 0 0 transparent !important;
  -webkit-box-shadow: 0 0 0 transparent !important;
  -o-box-shadow: 0 0 0 transparent !important;
  box-shadow: 0 0 0 transparent !important;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.justify {
  text-align: justify;
}

/* ** Misc ** */
/* Marges */
.nomargin {
  margin: 0 !important;
}

.nomargint {
  margin-top: 0 !important;
}

.nomarginb {
  margin-bottom: 0 !important;
}

.nomarginl {
  margin-left: 0 !important;
}

.nomarginr {
  margin-right: 0 !important;
}

/* Espacements */
.nopadding {
  padding: 0 !important;
}

.nopaddingt {
  padding-top: 0 !important;
}

.nopaddingb {
  padding-bottom: 0 !important;
}

.nopaddingl {
  padding-left: 0 !important;
}

.nopaddingr {
  padding-right: 0 !important;
}

/* Bordures */
.noborder {
  border: 0 !important;
}

.nobordert {
  border-top: 0 !important;
}

.noborderb {
  border-bottom: 0 !important;
}

.noborderl {
  border-left: 0 !important;
}

.noborderr {
  border-right: 0 !important;
}

/* Text-align */
.my-center {
  text-align: center;
}

.my-left {
  text-align: left;
}

.my-right {
  text-align: right;
}

.my-justify {
  text-align: justify;
}

/* Vertical-align */
.my-top {
  vertical-align: top;
}

.my-middle {
  vertical-align: middle;
}

.my-bottom {
  vertical-align: bottom;
}


/* ** BOUTON 2014 / CSS3 ** */
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

/* debug FF */

.my-hr {
  /*display: inline-block;*/
  width: 100%;
  margin: 1em 0;
  padding: 0;
  border: 0 solid gainsboro;
  height: 0;
  border-width: 1px 0 0;
  border-bottom: 0;

}

.my-hr.my-hr-s {
  margin: .5rem 0;
}

/* ** START : TITRES UNIFORMISES ** */


/* ** TITRE PRINCIPAL ** */
.my-main-title-v2019 {
  color: #014712;
  padding: 0;
  margin: 0 0 .5em 0;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.1;
}

.my-main-title-v2019 a {
  color: inherit;
  text-decoration: none;
}

.my-main-title-v2019 h1,
.my-main-title-v2019 h2,
.my-main-title-v2019 h3,
.my-main-title-v2019 h4,
.my-main-title-v2019 h5 {
  font: inherit;
  padding: 0;
  margin: 0;
}

/* ** TITRE ** */
.my-title-v2019 {
  padding: 0;
  margin: 0 0 .75em 0;
  font-size: 1.333em;
  font-weight: bold;
  line-height: 1.1;
}

.my-title-v2019 a {
  color: inherit;
  text-decoration: none;
}

/* ** SOUS-TITRE ** */
.my-subtitle-v2019 {
  padding: 0;
  margin: 0 0 .75em 0;
  font-size: 1.067em;
  font-weight: bold;
  line-height: 1.1;
}

.my-subtitle-v2019 a {
  color: inherit;
  text-decoration: none;
}


/* ** BOX > TITRE PRINCIPAL ** */
.my-box .my-box-main-title {
  font-family: arial, helvetica, sans-serif;
  display: inline-block;
  width: 100%;
  color: white;
  font-size: 23px;
  font-weight: normal;
  padding: 5px 1.25rem;
  text-transform: uppercase;
  background: #111111;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(17,17,17,0.5)", endColorstr="#111111");
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.5)), to(#111111));
  background: -webkit-linear-gradient(rgba(17, 17, 17, 0.5), #111111);
  background: -moz-linear-gradient(rgba(17, 17, 17, 0.5), #111111);
  background: -o-linear-gradient(rgba(17, 17, 17, 0.5), #111111);
  background: -ms-linear-gradient(rgba(17, 17, 17, 0.5), #111111);
  background: linear-gradient(rgba(17, 17, 17, 0.5), #111111);
}

/* ** BOX > TITRE PRINCIPAL ** */
.my-box .my-box-main-title {
  margin: 0 0 1px 0;
}

.my-box .my-box-main-title h1,
.my-box .my-box-main-title h2,
.my-box .my-box-main-title h3,
.my-box .my-box-main-title h4,
.my-box .my-box-main-title h5 {
  font: inherit;
  margin: 0;
  padding: 0;
}

.my-box .my-box-main-title a {
  color: inherit;
  text-decoration: none;
}

.my-box .my-box-main-title a:hover {
  text-decoration: underline;
}


/* ** TITRE */
/* ** BOX > TITRE */
.my-box .my-box-title {
  display: inline-block;
  width: 100%;
  color: white;
  font-size: 1.2em;
  font-weight: normal;
  padding: .25em .75em;
  background-color: #009600;
  line-height: 1.2;
  border-radius: .125em;
}

/* ** BOX > TITRE */
.my-box .my-box-title {
  margin: 0 0 1px 0;
}

.my-box .my-box-title h1,
.my-box .my-box-title h2,
.my-box .my-box-title h3,
.my-box .my-box-title h4,
.my-box .my-box-title h5 {
  font: inherit;
  margin: 0;
  padding: 0;
}

.my-box .my-box-title a {
  color: inherit;
  text-decoration: none;
}

.my-box .my-box-title a:hover {
  text-decoration: underline;
}


/* ** SOUS-TITRE ** */
/* ** BOX > SOUS-TITRE ** */
.my-subtitle,
.my-box .my-box-subtitle {
  display: inline-block;
  width: 100%;
  color: inherit;
  font-size: 1.067em;
  font-weight: normal;
  padding: .25em .75em;
  border: 1px solid gainsboro;
  background-color: whitesmoke;
}

/* ** SOUS-TITRE ** */
.my-subtitle {
  margin: 0 0 1rem 0;
}

/* ** BOX > SOUS-TITRE ** */
.my-box .my-box-subtitle {
  margin: 0 0 1px 0;
}

.my-subtitle h1,
.my-subtitle h2,
.my-subtitle h3,
.my-subtitle h4,
.my-subtitle h5,
.my-box .my-box-subtitle h1,
.my-box .my-box-subtitle h2,
.my-box .my-box-subtitle h3,
.my-box .my-box-subtitle h4,
.my-box .my-box-subtitle h5 {
  font: inherit;
  margin: 0;
  padding: 0;
}

.my-subtitle a,
.my-box .my-box-subtitle a {
  color: inherit;
  text-decoration: none;
}

.my-subtitle a:hover,
.my-box .my-box-subtitle a:hover {
  text-decoration: underline;
}


/* ** TEXTE > Après Titre/Sous-Titre ** */
.my-text {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px 0;
}


.my-force-bg-dark,
.my-box .my-box-main-title.my-force-bg-dark,
.my-box .my-box-title.my-force-bg-dark,
.my-box .my-box-subtitle.my-force-bg-dark {
  border-color: #222222;
  color: white;
  text-shadow: none;
  background: #222222;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#777777", endColorstr="#222222");
  /* IE */
  background: -webkit-gradient(linear, left top, left bottom, from(#777777), to(#222222));
  background: -webkit-linear-gradient(#777777, #222222);
  background: -moz-linear-gradient(#777777, #222222);
  background: -o-linear-gradient(#777777, #222222);
  background: -ms-linear-gradient(#777777, #222222);
  background: linear-gradient(#777777, #222222);
}

.my-force-bg-advisor,
.my-box .my-box-main-title.my-force-bg-advisor,
.my-box .my-box-title.my-force-bg-advisor,
.my-box .my-box-subtitle.my-force-bg-advisor {
  border-color: #dd0000;
  color: white;
  text-shadow: none;
  background: #dd0000;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ee7f7f", endColorstr="#dd0000");
  /* IE */
  background: -webkit-gradient(linear, left top, left bottom, from(#ee7f7f), to(#dd0000));
  background: -webkit-linear-gradient(#ee7f7f, #dd0000);
  background: -moz-linear-gradient(#ee7f7f, #dd0000);
  background: -o-linear-gradient(#ee7f7f, #dd0000);
  background: -ms-linear-gradient(#ee7f7f, #dd0000);
  background: linear-gradient(#ee7f7f, #dd0000);
}

/* ** BOX ** */
.my-box {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0;
  margin-top: 0;
  margin-bottom: 1.75rem;

  background-color: rgb(232, 232, 232);
  background-color: rgba(255, 255, 255, .9) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.25);
}

.my-box:hover,
.my-box:focus {
  -moz-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.5);
}

.my-box a {
  color: inherit;
}

.my-box .my-box-content {
  display: inline-block;
  width: 100%;
  padding: .5em 1.25rem;
}

.my-box .my-box-content p {
  padding: 0;
  margin: 0 0 .75em 0;
}

.my-box .my-box-footer {
  display: inline-block;
  width: 100%;
  padding: .5em 1.25rem;
  border-top: 1px solid #CCCCCC;
}

/* .my-box EDIT */
.my-box.edit .my-box-content {
  border-width: 0 1px 1px 1px;
  border-style: solid;

  background-color: rgba(249, 30, 169, .1);
  border-color: rgba(249, 30, 169, .75);
}

/* ** FORMULAIRES ** */
.my-alert {
  display: inline-block;
  width: 100%;
  color: black;
  padding: 0.5em 1.25rem;
  margin-bottom: 1.75rem;
  border-width: 1px;
  border-style: solid;
  border-color: #333333;
  background-color: #FFFFFF;
}

.my-alert.my-alert-fail {
  border-color: #CC0000;
  background-color: #FFF2F2;
  /*op:.05*/
}

.my-alert.my-alert-fail.my-alert-use-same-color {
  color: #CC0000;
}

.my-alert.my-alert-fail.my-alert-use-same-color .my-hr {
  border-color: #CC0000;
}

.my-alert.my-alert-success {
  border-color: #339933;
  background-color: #EEFFEE;
}

.my-alert.my-alert-success.my-alert-use-same-color {
  color: #339933;
}

.my-alert.my-alert-success.my-alert-use-same-color .my-hr {
  border-color: #339933;
}

.my-alert a {
  color: inherit;
}

.my-alert p {
  margin: .25em 0;
}



.my-subtitle a {
  color: inherit;
  text-decoration: none;
}

.my-subtitle a:hover {
  text-decoration: underline;
}

.my-alert ul.fa-ul {
  margin-top: 0;
}


@media screen and (max-width:480px) {

  .my-box .my-box-main-title,
  .my-box .my-box-title,
  .my-subtitle,
  .my-box .my-box-subtitle {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .my-box .my-box-main-title {
    text-transform: none;
  }

  .my-box .my-box-content {
    padding-left: .75rem;
    padding-right: .75rem;
  }
}

/* ** A AJOUTER DANS CONFIGURATOR (.warning_message) ** */
.warning_message {
  display: inline-block;
  width: 100%;
  padding: 0.5em 1.25rem;
  margin-bottom: 1.75rem;
  border: 1px solid #ff4040;
  /* rgba(255,0,0,.75); */
  background-color: #fff2f2;
  /*background-color: rgba(255,0,0,.05); */
}

.warning_message a {
  text-decoration: underline;
}

.warning_message p {
  margin: .25em 0;
}

/* Fix script google ** */
iframe[id^="oauth2relay"] {
  display: none !important;
}


/* ** START :CONTENU POPUP AJOUT AU PANIER ** */
.from-popup-cac-area {
  margin-bottom: 1em;
  text-align: center;
}

.from-popup-cac-area .back {
  margin-top: 1em;
}

.mz-expand.dark-bg {
  background-color: rgba(51, 51, 51, 0.85);
}

.mz-expand.dark-bg button.mz-button {
  color: white !important;
}

.mz-expand.dark-bg button.mz-button:hover {
  color: white !important;
  border-color: white !important;
}

.captcha_img {
  padding: .25rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  -moz-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 .125em .125em 0 rgba(0, 0, 0, 0.15);
}

/* LP - navigation parmis les sous-catégories */
.nav-into-cat {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.nav-into-cat .cat {
  margin: .2em;
}

.nav-into-cat .cat .cat-name {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: inherit;
}

.nb-and-sort-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}

.nb-and-sort-area .nb-products-area {
  font-size: 1.067em;
  font-weight: bold;
}

.nb-and-sort-area .filter-area {
  display: flex;
  align-items: center;
  margin-left: .667em;
}

.filter-area label {
  font-size: .867em;
  margin-right: .667em;
}

.filter-area .select-area select {
  width: auto;
  font-family: inherit;
  font-size: .933em;
  padding-left: .5em;
  padding-right: .5em;
  height: 2em;
  text-overflow: ellipsis;
  /* bug sur safari mac */
  /* border: 1px solid darkgrey; */
  /* bug sur safari mac */
  /* border-radius: 0; */
  background-color: white;
}

/* LP - Grande description de la catégorie (en bas) */
.category-description-area {
  margin-bottom: 1em;
  text-align: center;
}

.category-description-area img {
  max-width: 100%;
  height: auto !important;
}

.my-model-text h1 {
  font-size: 1.267em;
  font-weight: bold;
  text-transform: uppercase
}

.my-model-text h1 a {
  text-decoration: none
}

.my-model-text h2 {
  color: #014712;
  font-size: 1.2em;
  font-weight: bold;
}

.my-model-text h3 {
  font-size: 1.067em;
  font-weight: bold;
}

.my-model-text h4 {
  font-size: 1.067em;
  font-weight: bold;
}

.my-model-text a {
  color: inherit
}

.my-model-text h1 a,
.my-model-text h2 a,
.my-model-text h3 a,
.my-model-text h4 a {
  color: inherit;
  text-decoration: none;
}

.category-description-area .my-model-text ul {
  list-style-type: none
}


.my-model-text table {
  border-collapse: collapse;
  font-size: .933em;
}

.my-model-text th {
  background-color: whitesmoke;
}

.my-model-text th,
.my-model-text td {
  text-align: center;
  border: 1px solid gainsboro;
  font: inherit;
  padding: 1px;
}

.my-model-text tr td:first-child {
  width: 15%
}

.my-model-text th,
.my-model-text th *,
.my-model-text td,
.my-model-text td * {
  font: inherit;
  margin: 0;
  padding: 0;
}

/* ** inscription */
@media screen and (max-width:768px) {
  .specialaccess {
    display: none !important;
  }
}

.access-area {
  margin-bottom: 2em;
}

.access-area .access-new {
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid gainsboro;
}

.access-area .my-title-v2019 span {
  color: #014712;
  text-transform: capitalize;
}

@media screen and (min-width:769px) {
  .access-area {
    display: flex;
  }

  .access-area .access-slot {
    flex: 1;
  }

  .access-area .access-new {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .access-area .access-customer {
    padding-left: 1em;
    margin-left: 1em;
    border-left: 1px solid gainsboro;
  }
}


.access-form .intro-form {
  margin-bottom: 1em;
  text-align: center;
  font-size: .867em;
}

@media screen and (max-width:480px) {
  .access-form .intro-form .more {
    display: none
  }
}

.access-form .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: .5em;
  margin-left: auto;
  margin-right: auto;
  max-width: 576px;
}

.access-form .cnil_line {
  margin-bottom: 1em;
  text-align: center;
  font-size: .733em;
  line-height: 1.1;
}

.access-form .mandatory_line {
  margin-bottom: .5em;
  text-align: right;
  font-size: .733em;
}

.access-form .mandatory_line .oblig {
  color: #014712;
  padding-left: 2px;
}

.access-form .submit_line {
  text-align: center;
  margin-top: .75em;
  margin-bottom: .5em;
}

.access-form .reset_or_back_line {
  text-align: center;
  margin-top: 2em;
  margin-bottom: .5em;
}

.access-form .password_line {
  text-align: center;
  margin-top: 1.5em;
  font-size: .933em;
}

.access-form .create_line {
  text-align: center;
  margin-top: 1em;
  font-size: .933em;
}

.access-form .res progress {
  width: 100%;
}

.access-form .line .help_area {
  flex-basis: 100%;
  text-align: right;
  font-size: .8em;
  color: grey;
}

.access-form .line .label-box {
  flex-basis: 100px;
  font-size: .8em;
  margin-right: .5em;
  text-align: right;
}

.access-form .line .label-box.hidden-label {
  color: white
}

.access-form .line .label-box label .mail {
  white-space: nowrap;
}

.access-form .line .label-box .oblig {
  color: #014712;
  padding-left: 2px;
}

.access-form .line .input-box {
  flex: 1;
  text-align: left;
}

.access-form .line.birthday .input-box {
  flex-wrap: wrap;
  justify-content: center;
}

.access-form .line .input-box input[type="text"],
.access-form .line .input-box input[type="tel"],
.access-form .line .input-box input[type="email"],
.access-form .line .input-box input[type="password"] {
  width: 100%;
  font-family: inherit;
  font-size: 1.067em;
  padding-left: .5em;
  padding-right: .5em;
  height: 2.25em;
  text-overflow: ellipsis;
  border: 1px solid darkgrey;
  border-radius: 0;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.access-form .line .input-box input.first_name {
  width: 60%
}

.access-form .line .input-box input.password {
  width: 160px
}

.access-form .line .input-box input.phone {
  width: 160px
}

.access-form .line .input-box input.zip_code {
  width: 100px
}

.access-form .line .input-box input.disabled {
  background-color: gainsboro;
  cursor: default;
  outline: none;
}

.access-form .line .input-box select {
  width: 100%;
  font-family: inherit;
  font-size: 1.067em;
  padding-left: .5em;
  padding-right: .5em;
  height: 2.25em;
  text-overflow: ellipsis;
  /* bug sur safari mac */
  /* border: 1px solid darkgrey; */
  /* bug sur safari mac */
  /* border-radius: 0; */
  background-color: white;
}

.access-form .line.birthday .input-box select {
  width: auto
}

.access-form .line .input-box select.month {
  margin-left: .5em;
  margin-right: .5em;
}

.access-form .line .input-box textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1.067em;
  padding: .5em;
  height: 10em;
  text-overflow: ellipsis;
  border: 1px solid darkgrey;
  background-color: white;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.access-form .line .radio-box {
  flex: 1;
  text-align: left;
  display: flex;
}

.access-form .line .radio-box input[type="radio"] {
  margin: 0 .25em 0 1em;
  padding: 0;
  border: 0;
  width: 1.4em;
  height: 1.4em;
}

.access-form .line .radio-box input:first-child[type="radio"] {
  margin-left: 0
}

.access-form .line .checkbox-box {
  padding-right: .5em;
  align-self: baseline;
}

.access-form .line .checkbox-box input[type="checkbox"] {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 1.4em;
  height: 1.4em;
}

.access-form .line .checkbox-label {
  flex: 1
}


.access-form hr {
  margin: 1em 0;
  padding: 0;
  border: 0 solid gainsboro;
  height: 0;
  border-width: 1px 0 0;
  border-bottom: 0;
}

.access-form .line.force-inline {
  flex-direction: column;
}

.access-form .line.force-inline .label-box {
  flex-basis: 100%;
  margin-right: 0;
  margin-bottom: .25em;
}

.access-form .line.force-inline .input-box {
  flex-basis: 100%;
  display: flex;
  width: 100%;
}

.access-form .line.force-inline .input-box input {
  text-align: center;
}

.access-form .line.force-inline .help_area {
  text-align: center;
}

/* bouton arrondi */
.cac-touch {
  display: inline-block;
  color: black;
  background-color: gainsboro;
  border: 0;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: normal;
  text-decoration: none;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */

  padding: .333em .75em;
  font-size: 1em !important;
  border-radius: 1em;
}

.cac-touch:hover,
.cac-touch:focus:hover {
  color: white;
  background-color: black;
  text-decoration: none !important;
}

/* petit bouton rectangulaire */
.cac-basic {
  display: inline-block;
  color: black;
  background-color: gainsboro;
  border: 0;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: normal;
  text-decoration: none;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */

  padding: .5em .75em;
  font-size: .867em !important;
}

.cac-basic:hover,
.cac-basic:focus:hover {
  color: white;
  background-color: black;
  text-decoration: none !important;
}

/* en rouge */
.cac-primary {
  background-color: #014712;
  color: white !important;
}

/* en vert */
.cac-secondary {
  background-color: darkgreen;
  color: white !important;
}

/* en foncé */
.cac-dark {
  background-color: dimgrey;
  color: white !important;
}

/* plus gros */
.cac-bigger {
  font-size: 1.2em !important;
}

/* le plus gros */
.cac-biggest {
  font-size: 1.467em !important;
}

/* plus petit */
.cac-smaller {
  font-size: .867em !important;
}

/* le plus petit */
.cac-smallest {
  font-size: .733em !important;
}

/* 100% */
.cac-block {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-left: .125em;
  padding-right: .125em;
}

.ui-widget.ui-widget-content.darken {
  border: 0;
  padding: 0;
  border-radius: 0;
  -moz-box-shadow: 0 0 0 999rem rgba(0, 0, 0, .5);
  -webkit-box-shadow: 0 0 0 999rem rgba(0, 0, 0, .5);
  -o-box-shadow: 0 0 0 999rem rgba(0, 0, 0, .5);
  box-shadow: 0 0 0 999rem rgba(0, 0, 0, .5);
}

.ui-dialog.darken .ui-dialog-titlebar {
  border-radius: 0;
  background-color: black;
  color: white;
}

.ui-dialog.darken .ui-dialog-titlebar .ui-dialog-title {
  margin: 0;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.ui-dialog.darken .ui-dialog-titlebar-close {
  right: 15px;
  border: 0;
  border-radius: 0;
  padding: 0;
  width: auto;
  height: auto;
  font-size: 1.2em;
  background-color: inherit;
  color: inherit;
  outline: none;
}

.ui-dialog.darken .ui-dialog-content {
  padding: 0;
}

.ui-dialog.darken .ui-dialog-buttonpane {
  margin: 0;
  border: 0;
  background-color: silver;
}

.ui-dialog.darken .ui-dialog-buttonpane button,
.ui-dialog.darken .ui-dialog-buttonpane button:focus,
.ui-dialog.darken .ui-dialog-buttonpane button:hover,
.ui-dialog.darken .ui-dialog-buttonpane button:active {
  margin: 0;
  padding: .333em .75em;
  border-radius: 0;
  font-family: inherit;
  font-size: .8em;
  background-color: whitesmoke;
  color: black;
  border: 0;
}

.JQdialog_filter .container {
  font-size: 15px;
}

.JQdialog_filter .container a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.JQdialog_filter .container .label-area {
  border-bottom: 1px solid gainsboro;
  background-color: whitesmoke;
}

.JQdialog_filter .container .label-area a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5em .75em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.JQdialog_filter .container .content-area.close {
  display: none;
}

.JQdialog_filter .container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.JQdialog_filter .container ul li {
  border-top: 1px solid gainsboro;
}

.JQdialog_filter .container ul li:first-child {
  border-top: 0;
}

.JQdialog_filter .container ul li a {
  display: block;
  padding: .5em .75em;
  font-size: .933em;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  background-color: white;
  outline: none;
}

.JQdialog_filter .container ul li a:hover,
.JQdialog_filter .container ul li.current a {
  color: #014712;
}

.JQdialog_filter .container ul li a svg {
  color: gainsboro;
  width: 40px;
}

.JQdialog_filter .container ul li a:hover svg {
  color: grey;
}

.JQdialog_filter .container ul li.current a svg {
  color: inherit;
}

.pagination-area {
  text-align: center;
}

.pagination-area .nb {
  margin-bottom: .5em;
}

.pagination-area .pages {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.pagination-area .pages a {
  font-size: .933em !important;
  margin-left: .5em;
  margin-right: .5em;
}

.breadcrumb a:hover {
  text-decoration: underline;
}