/*-----------------------------------------------------------------------------------------------------
  [Master Stylesheet]
	by : Francois Leproust
  Version : 1.0

  Projet :

  CSS structure : ITCSS
  - https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/

	Global namespace : BEMIT
    - Guideline : https://csswizardry.com/2015/08/bemit-taking-the-bem-naming-convention-a-step-further/
    Other ressources :
    - http://bradfrost.com/blog/post/css-architecture-for-design-systems/
    - http://getbem.com/naming/
		- https://seesparkbox.com/foundry/bem_by_example

  Accessibility
  	- Tips : https://webaccessibility.guide/
  	- Checklist : https://a11yproject.com/checklist
  	- Tools : https://benrobertson.io/accessibility/tools-for-website-audits
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
  [breackpoints]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
  [colors]
-------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------
    [mixins]
-------------------------------------------------------------------------------------------------------*/
/*
* Media queries
* Exemple : bp(MAX, MIN)
* @include bp(500px) = @media (max-width: 500px)
* @include bp(0, 500px) = @media (min-width: 500px)
* @include bp(500px, 320px) = @media (min-width: 320px) and (max-width: 500px)
*/
/*
* CSS triangle
* Infos : https://codyhouse.co/blog/post/css-rounded-triangles-with-clip-path
*/
/*
* Placeholder style test
*/
/*
* IE11 & 10 specific CSS
*/
/*
* Edge specific CSS
*/
/*-----------------------------------------------------------------------------------------------------
    [layout]
-------------------------------------------------------------------------------------------------------*/
.no-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.customer-account-index .footer {
    margin-top: 0px;
}

.page-products .main {
    padding-top: 0px;
}

/*-----------------------------------------------------------------------------------------------------
    [logo]
-------------------------------------------------------------------------------------------------------*/
.logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
}

.logo a {
    display: block;
    height: auto;
    margin: 0 24px 0 0;
    padding: 0;
}

.logo a img {
    display: block;
}

.logo .pro {
    display: block;
    width: auto;
    height: auto;
    top: initial;
}

.logo .pro > span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 19px;
    padding: 3px 4px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
}

.logo .pro > span:before {
    display: none;
}

/*-----------------------------------------------------------------------------------------------------
    [menu]
-------------------------------------------------------------------------------------------------------*/
.header-sticky .header-content .user-content .c-icons {
    position: relative;
    top: 10px;
    left: 0;
}

.header-sticky .header-content .cart-content .c-icons {
    position: relative;
    top: 10px;
    left: 12px;
}

.header .header-content .user-content li span {
    color: #000;
}

.header .header-content .user-content p a {
    display: inline-block;
    color: #000;
}

.header .header-content .user-content .c-icons {
    position: absolute;
    top: 5px;
    left: 0;
    color: #000;
}

.header .header-content .cart-content a {
    display: block;
    padding: 10px 0 10px 44px;
    color: #000;
}

.header .header-content .cart-content a .c-icons {
    position: absolute;
    top: 5px;
    left: -4px;
    color: #000;
}

.nav-content .menu-main ul {
    padding: 0;
}

.nav-content .menu-main ul li:hover a {
    background: #fff;
}

.nav-content .menu-main ul li a {
    text-transform: none;
    padding: 18px 25px 10px 25px;
}

.nav-content .menu-main ul li a:after {
    display: none;
}

.nav-content .menu-main ul li a.new:before {
    content: "NEW";
    color: #fff;
    background-color: #000;
    font-weight: 600;
    font-size: 12px;
    line-height: 10px;
    height: 12px;
    display: block;
    padding: 2px;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.nav-content .menu-main ul li.last {
    float: right;
    font-weight: bold;
}

.header-sticky .nav-content .menu-main ul li:hover a {
    background: #fff;
}

.header-sticky .nav-content .menu-main ul li a {
    text-transform: none;
    padding: 15px 25px 10px 25px;
}

.header-sticky .nav-content .menu-main ul li a:after {
    display: none;
}

.EshopCoussins-content {
    position: absolute;
    left: 0;
    z-index: 20;
    display: none;
    width: 100%;
    min-width: 990px;
    margin-top: -1px;
    padding: 30px 0;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
li#EshopCoussins:hover > .EshopCoussins-content {
    visibility: visible;
    opacity: 1;
    display: block;
}
.c-button {
    background: none;
    border: 1px solid transparent;
    padding: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

.c-button:hover, .c-button:focus {
    background: none;
    border: 1px solid transparent;
    text-decoration: none;
    color: #000;
}

.c-button .text {
    margin-top: 0.2em;
}

.c-button--primary {
    background-color: #000;
    padding: 8px 40px;
    min-height: 56px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 5px;
}

.c-button--primary:visited {
    color: #fff;
    text-decoration: none;
}

.c-button--primary:hover, .c-button--primary:focus {
    color: #fff;
    background-color: #BD8A2E;
    text-decoration: none;
}

.c-button--decouvrir {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 5px 18px;
    min-height: 40px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0px;
    border: 1px solid #000;
    min-width: 264px;
}

.c-button--decouvrir:visited {
    color: #000;
}

.c-button--decouvrir:hover, .c-button--decouvrir:focus {
    color: #BD8A2E;
    border: 1px solid #BD8A2E;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.75);
}

.c-button--leftIcon .c-icons {
    margin: 0 24px 0 0;
}

.c-button--rightIcon .c-icons {
    margin: 0 0 0 24px;
}

.c-EshopCoussinsMenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.c-EshopCoussinsMenu__item {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.c-EshopCoussinsMenu__img {
    margin: 0 32px 0  0;
    width: 50%;
}

.c-EshopCoussinsMenu__title {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
}

.nav-content .menu-main ul.c-EshopCoussinsMenu__list {
    margin: 0;
    padding: 0;
    display: inline-grid;
}

.nav-content .menu-main ul.c-EshopCoussinsMenu__list li {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 6px 0;
}

.nav-content .menu-main ul.c-EshopCoussinsMenu__list li a {
    padding: 0;
    height: 26px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-content .menu-main ul.c-EshopCoussinsMenu__list li a:hover {
    text-decoration: underline;
}

.c-decouvrir__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.c-decouvrir__wrapper .c-decouvrir {
    width: calc(50% - 20px);
}

.c-decouvrir {
    margin: 1px 0 70px 0;
}

.c-decouvrir__img {
    margin: 0 0 15px 0;
}

.c-decouvrir__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-decouvrir__button .c-button {
    margin: 0 10px;
}

.c-decouvrir--dp {
    max-width: 1440px;
    width: 100vw;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.c-decouvrir--dp .c-decouvrir__button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    z-index: 2;
}

.c-avantages {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1053px;
    margin: auto;
}

.c-avantages__title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.c-avantage {
    width: 280px;
    height: 280px;
    border: 1px solid transparent;
    border-radius: 20px;
    margin: 0 0 12px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-avantage:hover {
    border: 1px solid #E5E5E5;
}

.c-avantage:hover .c-avantage__title {
    color: #BD8A2E;
    position: relative;
}

.c-avantage:hover .c-avantage__title:after {
    content: "";
    display: block;
    height: 1px;
    width: 64px;
    background-color: #BD8A2E;
    position: absolute;
    left: 50%;
    bottom: -7px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.c-avantage__img {
    margin: 44px 0 40px 0;
}

.c-avantage__title {
    font-size: 20px;
    font-weight: 600;
}

.c-reassurance {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1148px;
    margin: auto;
    padding: 50px 200px 0 200px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #EEEEEE;
}

.c-reassurance__title {
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin: 0 0 48px 0;
}

.c-reassu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-reassu__img {
    margin: 0 0 24px 0;
}

.c-reassu__title {
    margin: 0 0 24px 0;
    font-size: 18px;
    text-align: center;
}

.c-compteEntrees {
    background: #F9F9F9;
    padding: 45px 0 77px 0;
    position: relative;
    margin: 0 0 3px 0;
    text-align: center;
}

.c-compteEntrees:before {
    content: "";
    width: 100vw;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: inherit;
}

.c-compteEntrees .c-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-compteEntrees .c-list .c-list__item {
    margin: 0 43px 0 43px;
}

.c-compteEntrees .c-list .c-list__item a {
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.c-compteEntrees .c-list .c-list__item a:after {
    content: "";
    display: block;
    height: 1px;
    width: 64px;
    background-color: #000;
    position: absolute;
    left: 50%;
    bottom: -7px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.c-compteEntrees .c-list .c-list__item a:hover {
    color: #BD8A2E;
    position: relative;
}

.c-compteEntrees .c-list .c-list__item a:hover:after {
    content: "";
    background-color: #BD8A2E;
}

.c-compteEntrees__title {
    font-size: 30px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 60px auto;
}

.c-compteEntrees__title img {
    margin: 0 0 30px 0;
}

/*-----------------------------------------------------------------------------------------------------
    [block-product]
-------------------------------------------------------------------------------------------------------*/
.c-productItem {
    position: relative;
    padding: 20px 0 45px 0;
}

.c-productItem:hover .c-productItem__color {
    visibility: visible;
}

.c-productItem:hover .product-image-wrapper .product-image-photo--hover {
    display: block;
}

.c-productItem .product-image-wrapper {
    position: relative;
    display: block;
    padding: 0;
}

.c-productItem .product-image-wrapper picture {
    display: block;
    width: 100%;
}

.c-productItem .product-image-wrapper img {
    width: 100%;
    max-width: 100%;
}

.c-productItem .product-image-wrapper .product-image-photo--hover {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.c-productItem .block-product--title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    height: 43px;
    overflow: hidden;
}

.c-productItem .block-product--collection {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.c-productItem__nbrColor {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.c-productItem__color {
    visibility: hidden;
    position: absolute;
    margin: 0;
    padding: 0px;
    bottom: 10px;
    width: 100%;
}

.c-productItem__color .c-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-productItem__color .c-list__item {
    margin: 0 2px;
}

.c-color {
    display: block;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-color--number {
    font-size: 13px;
    line-height: 27px;
    border: 1px solid #eee;
}

#product-options-wrapper {
    display: block;
}

.product-content .product-left {
    position: relative;
    float: left;
    width: calc(100% - 566px);
}

.product-content .product-left .product-img {
    width: 100%;
    margin: 0;
}

.product-content .c-productOptions {
    max-width: 540px;
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    float: right;
    margin: 0 0 40px 0;
}

.product-content .c-productOptions__title {
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
}

.product-content .c-productOption {
    width: 224px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
}

.product-content .c-productOption:hover {
    border: 1px solid #E5E5E5;
}

.product-content .c-productOption__title {
    width: 200px;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    padding: 0 10px;
}

.product-content .product-infos {
    max-width: 500px;
    padding: 0;
}

.product-content .product-infos .product-infos--title {
    border: none;
    padding: 0;
}

.product-content .product-infos .product-infos--title h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.product-content .product-infos .product-infos--collection {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.product-content .product-infos .product-infos--ref {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.product-content .product-infos .product-infos--desc {
    font-size: 17px;
    font-weight: 400;
}

.product-content .product-infos .product-infos--price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0 0 0;
}

.apply-changes {
    display: none !important;
}

.product-content .product-infos .product-infos--price .price-box .price {
    font-size: 30px;
    font-weight: 700;
}

.product-content .product-infos .product-infos--price .product-infos--availability {
    padding: 0;
    margin: 0;
}

.product-content .product-infos .product-infos--price .product-infos--availability .availability {
    padding: 0;
    margin: 0;
    text-align: right;
}

.product-content .product-infos .product-infos--price .product-infos--availability .availability span {
    width: auto;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #9fd029;
}

.product-content .product-infos .product-infos--price .product-infos--availability .availability.unavailable span {
    color: #ff5501;
}

.product-content .product-infos .product-infos--price-percentage {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    max-width: 400px;
}

.product-content .product-infos .product-infos--price-percentage .accessoires-box span {
    display: inline-block;
    border: 2px solid #888;
    padding: 2px 10px;
    font-size: 22px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 3px;
}

.page-product-configurable .product-infos--availability p.reapprovisionnement
{
    padding-top: 15px !important;
    padding-right: 0 !important;
}

.product-content .product-infos .product-infos--couleurs {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.product-content .product-infos .product-add-form form .fieldset label.label {
    display: none;
}

.product-content .product-infos .product-add-form form .fieldset .field {
    margin: 0 0 20px 0;
}

.product-content .product-infos .product-add-form form .fieldset select {
    height: 56px;
    border-radius: 5px;
    border: 1px solid #acacac;
    font-size: 18px;
    font-weight: 600;
    padding: 0 20px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center right 36px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='rgb%280%2C0%2C0%29'%3E%3Cpath d='M21.8 7.6c-.4-.4-1-.4-1.4 0l-7.9 7.9-7.9-7.9c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l8.5 8.5c.2.2.5.3.8.3.3 0 .6 0 .8-.3L21.8 9c.4-.4.4-1.1 0-1.4z'/%3E%3C/svg%3E");
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.product-content .product-infos .product-add-form form .fieldset select:hover {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='rgb%28189%2C138%2C46%29'%3E%3Cpath d='M21.8 7.6c-.4-.4-1-.4-1.4 0l-7.9 7.9-7.9-7.9c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l8.5 8.5c.2.2.5.3.8.3.3 0 .6 0 .8-.3L21.8 9c.4-.4.4-1.1 0-1.4z'/%3E%3C/svg%3E");
}

.product-content .product-infos .product-add-form form .fieldset option:checked, .product-content .product-infos .product-add-form form .fieldset option:hover {
    color: #BD8A2E !important;
    background: #488f8f repeat url("data:image/gif;base64,R0lGODlhAQABAIAAAEmPjwAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxNC0wMS0yM1QxNDo0NDoxOCswMTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTQtMDEtMjNUMTQ6NDQ6MzIrMDE6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMTQtMDEtMjNUMTQ6NDQ6MzIrMDE6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvZ2lmIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjdDRkY3OTYyODQzNDExRTNBRUI0QUY0MzMyNkVBREZBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjdDRkY3OTYzODQzNDExRTNBRUI0QUY0MzMyNkVBREZBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6N0NGRjc5NjA4NDM0MTFFM0FFQjRBRjQzMzI2RUFERkEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6N0NGRjc5NjE4NDM0MTFFM0FFQjRBRjQzMzI2RUFERkEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQAAAAAACwAAAAAAQABAAACAkQBADs=");
}

.product-content .product-infos .product-add-form .product-options-bottom {
    margin: 0 0 70px 0;
}

.product-content .product-infos .product-add-form .product-options-bottom .fieldset {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.product-content .product-infos .product-add-form .product-options-bottom .fieldset .field {
    margin: 0;
}

.product-content .product-infos .product-add-form .product-options-bottom .actions {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 20px;
}

.product-content .product-infos .product-add-form .product-options-bottom .actions .c-button--primary {
    width: 100%;
}

.product-content .product-infos .product-add-form .product-options-bottom .actions .c-button--primary .c-icons {
    color: #fff;
    width: 32px;
    height: 32px;
}

.product-content .product-infos .product-infos--description {
    padding: 0;
}

.product-content .product-infos .product-infos--description.c-collapse {
    margin: 0 0 5px 0;
}

.product-content .product-infos .product-infos--description.c-collapse .title {
    cursor: pointer;
    height: 64px;
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16px 0 16px;
    position: relative;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.product-content .product-infos .product-infos--description.c-collapse .title:after {
    content: "-";
    display: block;
    font-size: 24px;
    font-weight: 600;
}

.product-content .product-infos .product-infos--description.c-collapse.c-collapse--collapsed .title {
    background-color: #F7F7F7;
    font-weight: normal;
}

.product-content .product-infos .product-infos--description.c-collapse.c-collapse--collapsed .title:after {
    content: "+";
    display: block;
}

.product-content .product-infos .product-infos--description.c-collapse .c-collapse__content {
    padding: 20px 16px 0 16px;
}

.product-content .product-infos .product-infos--description ul li {
    font-size: 17px;
    font-weight: 400;
    display: table;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
    color: #000;
}

.product-content .product-infos .product-infos--description ul li span {
    color: #000;
}

.product-content .product-infos .product-infos--description ul li span + span {
    text-align: right;
}

.product-content .product-infos .product-infos--description ul li span + span span {
    float: none;
    display: inline-block;
}

.c-popin__content .product-content {
    margin: 0;
}

.c-popin__content .product-content .product-left .product-img {
    margin: 0;
}

.c-popin__content .product-content .product-infos {
    padding: 60px 0 0 0;
    margin-right: 50px;
}

.c-popin__content .product-content .product-infos .product-infos--desc {
    padding: 20px 0 20px 0;
    min-height: 60px;
}

.c-popin__content .product-content .product-infos .product-infos--price {
    padding: 40px 0;
}

.catalog-product-view .ui-corner-all {
    border-radius: 8px;
}

.catalog-product-view .ui-corner-bottom {
    border-radius: 0 0 8px 8px;
}

.catalog-product-view .ui-corner-top {
    border-radius: 8px 8px 0 0;
}

.catalog-product-view .ui-selectmenu-button.ui-button {
    background: #fff;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    padding: 10px 16px;
    border: 1px solid #acacac;
}

.catalog-product-view .ui-selectmenu-button.ui-button:hover .ui-selectmenu-icon.ui-icon.ui-icon-triangle-1-s {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='rgb%28189%2C138%2C46%29'%3E%3Cpath d='M21.8 7.6c-.4-.4-1-.4-1.4 0l-7.9 7.9-7.9-7.9c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l8.5 8.5c.2.2.5.3.8.3.3 0 .6 0 .8-.3L21.8 9c.4-.4.4-1.1 0-1.4z'/%3E%3C/svg%3E");
}

.catalog-product-view .avatar-selected {
    position: absolute;
    height: 65px;
    width: 65px;
    left: 16px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-repeat: no-repeat;
    background-size: contain;
}

.catalog-product-view .ui-selectmenu-text {
    padding-left: 100px;
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-product-view .ui-selectmenu-icon.ui-icon.ui-icon-triangle-1-s {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.25em;
    position: absolute;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    right: 36px;
    background-position: initial;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='rgb%280%2C0%2C0%29'%3E%3Cpath d='M21.8 7.6c-.4-.4-1-.4-1.4 0l-7.9 7.9-7.9-7.9c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l8.5 8.5c.2.2.5.3.8.3.3 0 .6 0 .8-.3L21.8 9c.4-.4.4-1.1 0-1.4z'/%3E%3C/svg%3E");
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content {
    border: 1px solid #acacac;
    -webkit-transform: translate(0, -1px);
    -ms-transform: translate(0, -1px);
    transform: translate(0, -1px);
    max-height: 245px;
    overflow-y: auto;
    overflow-x: hidden;
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content .ui-menu-item {
    padding: 0px 16px;
    border: 0px solid transparent;
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content .ui-menu-item:hover {
    background: #eeeeee;
    border: 0px solid transparent;
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content .ui-menu-item:hover .ui-menu-item-wrapper {
    color: #BD8A2E;
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper {
    border: 0px solid transparent;
    background: transparent;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    padding-left: 100px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    border: 0px solid transparent;
    margin: 0;
}

.catalog-product-view .ui-selectmenu-menu .ui-widget.ui-widget-content .ui-menu-item .ui-menu-item-wrapper .ui-icon {
    height: 65px;
    width: 65px;
    background-size: contain;
}

.catalog-product-view .fotorama1620378074119 .fotorama__nav--thumbs .fotorama__nav__frame {
    height: 90px;
    width: 70px;
    margin-bottom: 20px;
}

.catalog-product-view .fotorama1620378074119 .fotorama__nav--thumbs .fotorama__nav__frame .fotorama__thumb {
    background-color: #fff;
}

.catalog-product-view .fotorama__thumb-border {
    border: 1px solid #BD8A2E;
}

.c-completerCommande {
    border-top: 1px solid #EEEEEE;
}

.c-completerCommande .c-completerCommande__title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: 40px 0 30px 0;
}

.c-completerCommande .product-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.c-completerCommande .product-item {
    width: 25%;
    max-width: 276px;
}

/*-----------------------------------------------------------------------------------------------------
    [icons]
-------------------------------------------------------------------------------------------------------*/
/*
* Sprite icons
*/
.c-icons {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
}

/*-----------------------------------------------------------------------------------------------------
    [collapse]
-------------------------------------------------------------------------------------------------------*/
.c-collapse:not(.c-collapse--collapsed) .c-collapse__open {
    display: none;
}

.c-collapse:not(.c-collapse--collapsed) .c-collapse__close {
    display: block;
}

.c-collapse.c-collapse--collapsed .c-collapse__open {
    display: block;
}

.c-collapse.c-collapse--collapsed .c-collapse__close {
    display: none;
}

.c-collapse--collapsed.c-collapse--display > .c-collapse__content {
    display: none;
}

.c-collapse--collapsed.c-collapse--visibility > .c-collapse__content {
    visibility: hidden;
}

.c-collapse--collapsed.c-collapse--height > .c-collapse__content {
    max-height: 0 !important;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
}

.c-collapse--height .c-collapse__content {
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
}

/*
* popin
*/
.c-popin {
    display: none;
    z-index: 1000;
    text-align: left;
}

.c-popin.c-popin--active {
    display: block;
}

.c-popin__overlay {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.c-popin__container {
    z-index: 1000;
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.16);
}

.c-popin__close {
    position: absolute;
    top: 36px;
    right: 36px;
    color: #000;
    z-index: 2;
    background: #fff;
}

.c-popin__close .c-icons {
    width: 24px;
    height: 24px;
}

.c-popin--default {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.c-popin--default.c-popin--active {
    display: block;
}

.c-popin--default .c-popin__container {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    max-width: 720px;
    width: 100%;
    border-radius: 5px;
    height: auto;
    border-radius: 10px;
    margin: 56px auto;
    padding: 24px 40px 40px 40px;
}

.c-popin--default .c-popin__close {
    color: #000;
}

.c-popin--default .c-popin__close:hover {
    color: #000;
}

.c-popin--large .c-popin__container {
    max-width: 1180px;
}

.c-quantity {
    border: 1px solid #acacac;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 56px;
    font-size: 24px;
    font-weight: 600;
    /* Chrome, Safari, Edge, Opera */
}

.c-quantity .c-button {
    font-weight: 600;
    width: 53px;
    height: 42px;
}

.c-quantity .c-button:hover {
    text-decoration: none;
    color: #BD8A2E;
}

.c-quantity input::-webkit-outer-spin-button,
.c-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.c-quantity input {
    font-weight: 600;
    -moz-appearance: textfield;
    text-align: center;
    width: 73px;
    height: 42px;
    border: 1px solid #fff;
    border-left: 1px solid #acacac;
    border-right: 1px solid #acacac;
}

.c-message {
    margin: 0 0 25px 0;
}

.c-message--commercial {
    background-color: #BD8A2E;
    color: #fff;
    font-size: 17px;
    padding: 1.2rem 1.6rem 1.8rem 1.6rem;
    line-height: 1.5;
}

.c-message--commercial .u-text-center {
    text-align: center;
}

.c-message__content--w800max {
    max-width: 800px;
    margin: auto;
}
