/*---------------------------------*\
    Common
\*---------------------------------*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

html {
    font-size: 68.80%;
    font-size: calc(0.688em);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    background-color: #fff;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    color: #272726;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
    outline: none;
    padding: 5px 10px;
    border: 1px solid #9a9a9a;
}

a {
    color: #272726;
    text-decoration: none;
    outline: none;
}

a:hover,
a:focus {
    color: #d2d2d2;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

.error_msg {
    color: #f00;
    padding-bottom: 10px;
    display: block;
}

#_searchBox {
    position: relative;
}

#searchFormLabel_ {
    display: none;
}

#loadingWrapper {
    display: none;
    background-color: #fff;
    position: fixed;
    z-index: 900;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#loadingWrapper span {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Antique Oli Reg', Helvetica, Arial, sans-serif;
    font-size: 120px;
    margin: 0 auto;
    text-align: center;
    top: 30%;
    right: 0;
    bottom: 0;
    left: 0;
    color: #000;
}

#goTopButtonWrapper img {
    display: block;
    margin: 0 auto;
}

.spacemenu {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.col12 {
    width: 100%;
}

/*---------------------------------*\
    Buttons
\*---------------------------------*/
.amv-button {
    padding: 10px 25px;
    font-size: 12px;
    text-align: center;
    font-weight: normal;
    background-color: #000;
    color: #fff;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.amv-button:focus,
.amv-button:hover {
    outline: none;
    color: #fff; /* reset */
}

.amv-button:active {
    background-color: #c6c8ca;
}

/* legacy btn */
.button_primary {
    display: inline-block;
}

.button_primary > .button_text {
    padding: 10px 25px;
    border-radius: 0;
    font-family: 'Heebo', Helvetica, Arial, sans-serif; /* reset */
    font-size: 12px;
    text-decoration: none; /* reset */
    background: none; /* reset*/
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.button_primary > .button_text:active {
    background-color: #c6c8ca;
}

/*---------------------------------*\
    Structure
\*---------------------------------*/
@media screen and (min-width: 900px) {
    .menuCol {
        position: fixed;
        width: 25%;
        height: 100%;
        max-height: calc(100% - 180px); /* Full height (-) Footer height */
    }
}

@media screen and (min-width: 1600px) {
    .menuCol {
        width: 15%;
    }
}

.contentCol {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 100px;
    overflow: hidden;
}

@media screen and (min-width: 900px) {
    .contentCol {
        position: absolute;
        right: 0;
        width: 75%;
    }
}

@media screen and (min-width: 1600px) {
    .contentCol {
        width: 85%;
    }
}

/*---------------------------------*\
    Main Menu
\*---------------------------------*/
/* Menu Toggle*/
.menuButton {
    display: none;
    padding: 0; /* reset */
    margin-top: 5px;
    margin-left: 15px;
    border: 1px solid transparent; /* reset */
    background: transparent none; /* reset */
    cursor: pointer;
}

.menuButton .iconBar {
    background-color: #000;
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 1px;
    margin-top: 7px;
}

/* Menu */
#menuWrapper {
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
}

@media screen and (min-width: 900px) {
    #menuWrapper {
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        padding-top: 0; /* reset */
        padding-bottom: 0; /* reset */
    }
}

@media screen and (min-width: 1600px) {
    #menuWrapper {
        padding-left: 40px;
    }
}

/* Tablet and down */
@media screen and (max-width: 900px) {
    #menuWrapper {
        position: fixed;
        top: 65px;
        max-height: 400px;
        width: 50%;
        background-color: rgba(255, 255, 255, .9);
        overflow-y: scroll;
    }
}

/* Mobile and down */
@media screen and (max-width: 600px) {
    #menuWrapper {
        width: 70%;
    }
}

#page.is-menu-open #menuWrapper {
    display: -ms-flexbox;
    display: flex;
}

#menuWrapper .menuHeader {
    margin-bottom: 15px;
}

@media screen and (min-width: 900px) {
    #menuWrapper .menuHeader {
        min-height: 100px;
        overflow-y: auto;
    }

    /* Force visiblity of Menu scrollbqr on Safari */
    .dj_safari #menuWrapper .menuHeader::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 8px;
    }

    .dj_safari #menuWrapper .menuHeader::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, .1);
        border-radius: 8px;
    }

    .dj_safari #menuWrapper .menuHeader::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: rgba(0, 0, 0, .4);
    }
}

#menuWrapper .menuHeader ul {
    list-style-type: none;
}

#menuWrapper #departmentsMenu .categoryList {
    margin-top: 10px;
}

#menuWrapper #departmentsMenu .subcategoryList li a {
    padding: 0;
}

#menuWrapper #departmentsMenu .item-lvl1 {
    padding-bottom: 5px;
}

#menuWrapper #departmentsMenu .item-lvl1 .selected,
#menuWrapper #departmentsMenu .item-lvl2 .selected {
    border-bottom: 1px solid #000;
    margin-bottom: 5px;
}

#menuWrapper #departmentsMenu .item-lvl1 > .departmentButton {
    display: inline-block;
    color: #111;
    font-size: 32px;
    font-weight: lighter;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    #menuWrapper #departmentsMenu .item-lvl1 > .departmentButton {
        font-size: 30px;
    }
}

@media screen and (max-width: 1060px) {
    #menuWrapper #departmentsMenu .item-lvl1 > .departmentButton {
        font-size: 25px;
    }
}

@media screen and (max-width: 900px) {
    #menuWrapper #departmentsMenu .item-lvl1 > .departmentButton {
        font-size: 22px;
    }

    #menuWrapper #departmentsMenu .item-lvl1 > a.departmentButton.hasSubcategory {
        display: none;
    }

    #menuWrapper #departmentsMenu .item-lvl1 > span.departmentButton.hasSubcategory {
        display: inline-block;
    }
}

#menuWrapper #departmentsMenu .item-lvl1 > span.departmentButton {
    display: none;
}

#menuWrapper #departmentsMenu .item-lvl2 {
    margin-bottom: 20px;
}

#menuWrapper #departmentsMenu .item-lvl2 a {
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 0;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
    display: inline-block;
}

@media screen and (max-width: 900px) {
    #menuWrapper #departmentsMenu .item-lvl2 > a {
        font-size: 10px;
    }
}

#menuWrapper #departmentsMenu .item-lvl2 > a {
    display: none;
}

#menuWrapper #departmentsMenu .item-lvl2 .subcategoryList li {
    margin-bottom: 7px;
}

@media screen and (min-width: 900px) {
    #menuWrapper .menuFooter {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

#menuWrapper .newsletter {
    margin-bottom: 10px;
}

#menuWrapper .newsletter .newsletter-popup-link {
    font-size: 18px;
    font-weight: lighter;
}

@media screen and (min-width: 900px) {
    #menuWrapper .espotPromo {
        margin-bottom: 10px;
    }
}

#menuWrapper .espotPromoDelivery {
    display: none;
}

@media screen and (min-width: 900px) {
    #menuWrapper .espotPromoDelivery {
        display: block;
    }
}

/*---------------------------------*\
    Content
\*---------------------------------*/
#contentWrapper,
div.content_wrapper_position {
    width: 100%;
    float: left;
    position: relative;
    padding-top: 130px;
}

@media screen and (min-width: 601px) {
    #contentWrapper,
    div.content_wrapper_position {
        min-height: 490px;
    }
}

#contentWrapper .error-template {
    z-index: 9999;
    padding: 30px;
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: initial;
    max-height: initial;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
}

#contentWrapper .error-template .left_espot.centered {
    display: none;
}

.fullImageHome {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}

.oneImageHome {
    width: 35%;
    left: 0;
    right: 0;
    margin: 30px auto auto;
}

.imageHomePageContainer {
    margin: 10px;
}

.multiImageHome {
    position: relative;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.imageHomePageContainer {
    position: relative;
}

.homePageTitle {
    transform: translateX(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
    left: 0;
    bottom: initial;
    z-index: 1;
    text-align: center;
    font-family: 'Antique Oli Reg', Helvetica, Arial, sans-serif;
    font-size: 72px;
    line-height: 72px;
    position: absolute;
    width: 100%;
    color: #fff;
    text-transform: initial;
}

.homePageTitleOnePic {
    position: absolute;
    font-family: 'Antique Oli Reg', Helvetica, Arial, sans-serif;
    font-size: 72px;
    color: #fff;
}

.portrait.pic-1x img,
.portrait.pic-2x img,
.landscape.pic-1x img,
.landscape.pic-2x img {
    width: 750px;
}

.oneImageHomePageWrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    right: 5%;
    margin-left: 35px;
}

.multiImageHomePageWrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.multiImageHomePageWrapper .slot-1 .imageHomePageContainer,
.multiImageHomePageWrapper .slot-2 .imageHomePageContainer {
    margin-top: 0;
}

.imageHomePageContainer img {
    padding: 5px;
}

.imageHomePageContainer img {
    padding-top: 0;
}

/*---------------------------------*\
    Category
\*---------------------------------*/
#productListWrapper {
    margin-bottom: 30px;
}

#goTopButtonWrapper {
    display: block;
    margin-bottom: 75px;
}

#productListWrapper .productContainer .productImage {
    display: block;
    width: 100%;
    margin: 5px;
}

#productListWrapper .productContainer .product_info {
    text-align: center;
}

#productListWrapper .productContainer .product_info span {
    display: block;
    font-size: 10px;
}

#productListWrapper .productContainer .product_info .productLink {
    font-weight: bolder;
    margin-top: 25px;
}

#productListWrapper .productContainer .product_info .productColorSelector {
    display: none;
}

#productListWrapper .product {
    display: inline-block;
    width: 30%;
    padding: 10px;
    margin-bottom: 75px;
}

#rightPanelWrapper {
    position: fixed;
    background-color: #fff;
    margin-top: 20px;
}

#categoryFacetWrapper,
#productListInfoWrapper {
    z-index: 1;
    padding-left: 20px;
}

#productListInfoWrapper {
    margin-bottom: 10px;
}

#categoryFacetWrapper span, #categoryFacetWrapper a {
    font-size: 18px;
}

#categoryFacetWrapper .productListNumber {
    display: block;
    font-size: 10px;
    margin-bottom: 5px;
}

.facetTitle, .colorSelector, .facetSizeSelector {
    display: block;
    padding-bottom: 10px;
}

.colorSelectorTitle {
    display: block;
    margin-bottom: 5px;
}

.sizeSelectorTitle, .facetSizeSelector ul {
    display: inline-block;
}

.facetSizeSelector ul li {
    display: inline-block;
}

.collectionSelectorTitle, .facetCollectionSelector ul li {
    display: block;
    margin-bottom: 10px;
}

.facetSizeSelector a:hover, .facetCollectionSelector a:hover {
    text-decoration: underline;
}

.facetCollectionSelector img.arrow-down {
    display: none;
    width: 24px;
    margin-top: -4px;
}

#productListWrapper .product.hidden {
    display: none;
}

/*---------------------------------*\
    Product
\*---------------------------------*/
#productPictureWrapper {
    text-align: center;
}

#productPictureWrapper img {
    width: 49%;
}

#productInfoPanelWrapper {
    position: fixed;
    z-index: 1;
    width: 25%;
}

#productInfoWrapper span.productTitle {
    display: block;
    text-decoration: underline;
    padding-top: 30px;
}

#productInfoWrapper span.productCode {
    display: block;
    margin-top: 5px;
}

#productInfoWrapper span.productPrice {
    display: block;
    margin: 50px 0 50px 0;
    font-size: 16px;
    font-weight: bolder;
}

#productInfoWrapper span.productColorSelectorTitle,
#productInfoWrapper .productColorList,
#productInfoWrapper ul.productColorList li,
#productInfoWrapper span.productSizeSelectorTitle,
#productInfoWrapper ul.productSizeList,
#productInfoWrapper ul.productSizeList li {
    display: inline-block;
}

#productInfoWrapper span.productSizeSelectorTitle {
    margin-top: 40px;
}

#productInfoWrapper a.productSizeGuideLink {
    display: block;
    margin-top: 5px;
}

#productInfoWrapper .productAddToCartButton,
#accountWrapper .logInWrapper .quickLogIn .signInButton {
    display: block;
    cursor: pointer;
    padding: 9px;
    background-color: #272726;
    color: #fff;
    border: none;
}

#accountWrapper .logInWrapper .quickLogIn .signInButton {
    width: 100%;
}

#productInfoWrapper .productAddToCartButton {
    margin: 50px 0 30px 0;
    padding: 10px 25px 10px 25px;
    font-size: 12px;
}

#productInfoWrapper .productWishlistButtonWrapper {
    line-height: 30px;
    margin-bottom: 50px;
}

#productInfoWrapper .productWishlistButtonWrapper img {
    vertical-align: middle;
}

#productInfoWrapper p.productDescription {
    font-size: 10px;
    margin: 5px 0;
}

#productPictureWrapper .productSubPictureWrapper img {
    width: 30%;
}

#productSuggestionWrapper .productSuggestionListWrapper ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

#productSuggestionWrapper .productSuggestionListWrapper img {
    width: 100%;
}

#productSuggestionWrapper .productSuggestionTitle {
    display: block;
    margin-bottom: 30px;
    text-align: center;
}

#productSuggestionWrapper .product .productInfo .productName {
    display: block;
    margin: 20px;
    text-align: center;
}

#productInfoWrapper .tab_header > div.tab {
    margin-bottom: 10px;
    display: none;
}

#productInfoWrapper .tabButtonContainer .productDescriptionTitle.selected {
    text-decoration: underline;
}

.rowimage {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.selectcolor {
    box-shadow: 0 0 5px black;
}

.nosize {
    color: grey;
}

.selectsize {
    border: 1px solid black;
    padding: 4px 2px 0 1px;
}

#AutoSuggestDiv .heading {
    margin-top: 0;
}

#AutoSuggestDiv #suggestedProductsResults .as_thumbnail img {
    max-width: 41px;
    height: auto;
}

#suggestedProductsResults .as_thumbnail {
    float: left;
}

#AutoSuggestDiv .list_section li > a {
    display: block;
}

li.guest .separator {
    display: none;
}

/*---------------------------------*\
    Popup Newsletter #popUpNewsletter
\*---------------------------------*/
#popUpNewsletter {
    border: 1px solid #191919;
    z-index: 700 !important;
    width: 500px;
    margin: 0 auto 10px;
    background: white;
    top: 0 !important;
}

#popUpNewsletter .dijitDialogPaneContent {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

#popUpNewsletter .form {
    padding: 30px;
}

#newsletter-title {
    margin-bottom: 15px;
    padding-top: 45px;
    font-size: 13px;
}

.registration_pop-up {
    color: #000;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
}

#newsletter-subtitle {
    padding-bottom: 20px;
    line-height: 1.4;
}

#newsletter-subtitle sup {
    font-size: 7px;
}

#popUpNewsletter .form-column-label {
    width: 45%;
    display: inline-block;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 28px;
    vertical-align: top;
}

#popUpNewsletter .form-column-input {
    display: inline-block;
    width: 100%;
    font-size: 11px;
    height: 28px;
    line-height: 28px;
    max-width: 224px;
}

#popUpNewsletter .form-column-input input {
    width: 100%;
}

#popUpNewsletter .form-column-checkbox {
    padding-top: 8px;
    padding-bottom: 8px;
}

#popUpNewsletter .form-row.centered {
    text-align: center;
    margin-top: 36px;
}

#popUpNewsletter .form-row {
    margin-bottom: 10px;
}

#popUpNewsletter .newsletter-info {
    margin-bottom: 5px;
}

.dijitDialogTitleBar {
    height: 1px;
    width: 1px;
    position: absolute;
    overflow: hidden;
    top: -10px;
}

#popUpNewsletter select.invalid-required + .sbHolder,
#popUpNewsletter .invalid-required,
.selectContainer.Noborder {
    border: 1px solid red !important;
}

@media screen and (max-width: 600px) {
    input[type="email"],
    input[type="text"]:not(.field),
    #popUpNewsletter .form-column-input,
    #popUpNewsletter .form-column-label {
        width: 100%;
        max-width: 100%;
    }

    #popUpNewsletter {
        top: 10px !important;
        width: 95%;
    }
}

/* Page confirmation inscription Newsletter */
.contentRecommendationWidget .table-mail {
    max-width: 1300px;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -9999px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
    position: relative;
    padding: 0; /* reset */
    cursor: pointer;
    line-height: 1;
    display: block;
    float: left;
    margin-right: 10px;
    height: 11px;
}

/* radio aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
    content: '';
    position: relative;
    left: 0;
    top: 0 !important; /* reset common1_1.css */
    width: 8px !important; /* reset common1_1.css */
    height: 8px !important; /* reset common1_1.css */
    border: 1px solid #9a9a9a;
    background: #fff;
    display: inline-block;
    margin-right: 4px;
    float: left;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
    content: '' !important; /* reset common1_1.css */
    position: absolute;
    top: 1px !important; /* reset common1_1.css */
    left: 0 !important; /* reset common1_1.css */

    background: url("../../images/new_amv/new_sprite.png") no-repeat;
    background-position: -54px -114px;

    line-height: 0.8;
    width: 12px;
    height: 6px;
    transition: all .2s;
}

/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* disabled radio */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="radio"]:disabled:checked + label:after {
    color: #999;
}

[type="radio"]:disabled + label {
    color: #aaa;
}

/*---------------------------------*\
    Slim Scroll
\*---------------------------------*/
select {
    display: block !important;
    position: absolute;
    left: -99999px;
}

.sbHolder {
    border: 1px solid #9a9a9a;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    height: 28px;
    position: relative;
    width: 100%;
    background: #fff url("../../images/downRow.jpg") 100% 11px no-repeat;
}

.sbHolder a,
.sbHolder a:hover,
.sbHolder a:focus {
    color: inherit;
}

.sbSelector {
    display: block;
    height: 28px;
    left: 0;
    line-height: 28px !important;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 100%;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
}

.sbSelector:hover {
    color: #000006;
    outline: none;
    text-decoration: none;
}

.sbToggle {
    display: block;
    height: 28px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

.sbHolderDisabled {
    background-color: #3c3c3c;
    border: solid 1px #515151;
}

.slimScrollDiv {
    box-sizing: content-box;
    position: absolute !important; /* reset JavaScript */
    top: 100%;
    left: -1px;
    width: calc(100% + 2px) !important; /* reset JavaScript */
    height: auto !important; /* reset JavaScript */
    overflow: hidden;
    background: #fff;
}

.Noborder .sbToggle + .sbSelector + .slimScrollDiv {
    border: 0;
}

.Noborder .sbToggle.sbToggleOpen + .sbSelector + .slimScrollDiv {
    border: 1px solid #9a9a9a;
    border-top: 0;
}

.slimScrollDiv .sbOptions {
    height: auto !important;
}

.sbOptions {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 155px !important;
    z-index: 99;
    border: 1px solid #9a9a9a;
    border-top: 0;
    padding: 0;
    list-style: none;
    overflow-x: hidden;
    overflow-y: scroll;
    background: #fff;
}

.sbOptions:not([slimed]) {
    left: -1px;
    border: 1px solid #9a9a9a;
    border-top: 0;
    box-sizing: initial;
}

.sbOptions li:first-child {
    padding-top: 15px;
}

.sbOptions a {
    padding: 10px;
    text-align: left;
    font-size: 11px;
    display: block;
    outline: none;
    line-height: 1;
    text-transform: uppercase;
}

.sbOptions a:link, .sbOptions a:visited {
    color: #000006;
    text-decoration: none;
}

.sbOptions a span {
    display: inline-block;
    border-bottom: solid 1px transparent;
}

.sbOptions a:hover span {
    color: #000006;
    border-bottom: solid 1px #515151;
}

.sbOptions li.last a {
    border-bottom: none;
}

.sbOptions .sbDisabled {
    border: 1px solid #9a9a9a;
    color: #999;
    display: block;
    padding: 7px 0 7px 3px;
}

.sbOptions .sbGroup {
    border: 1px solid #9a9a9a;
    color: #ebb52d;
    display: block;
    font-weight: bolder;
    padding: 7px 0 7px 3px;
}

.sbOptions .sbSub {
    padding-left: 17px;
}

.sbOptions li.sbFocus:first-child {
    display: none;
}

.slimScrollRail {
    background: #fff url("../../images/downRowBar.jpg") 0 100% no-repeat !important;
}

span.btn {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    z-index: 99999 !important;
}

/*---------------------------------*\
    Listing Product
\*---------------------------------*/
.transparentProductImage {
    display: none;
}

.productListContainer {
    clear: both;
    float: left;
    position: relative;
    width: calc(100% - 260px);
}

.facet-wrapper,
.facetWrapper {
    max-width: 230px;
    width: 100%;
    float: right;
    padding-right: 15px;
    position: fixed;
    right: 0;
}

.facetWrapper .content {
    margin-top: 10px;
}

@media screen and (min-width: 1025px) {
    .facetWrapper #facet-filter {
        margin-bottom: 35px;
    }
}

#facet-nb-products {
    text-transform: uppercase;
    margin-bottom: 10px;
}

#facet-nb-products span {
    font-size: 12px;
}

.facetWrapper .generic_color ul.facetSelect li {
    float: left;
    width: 17px;
    height: 17px;
    margin: 3px;
}

.facetWrapper .generic_size ul.facetSelect li {
    display: inline-block !important;
    margin-right: 11px;
}

.facetWrapper ul.facetSelect li input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    left: -3000px;
}

.facetWrapper .generic_size ul.facetSelect li a {
    display: block;
}

.facetWrapper .generic_size ul.facetSelect li a:hover {
    text-decoration: underline;
}

ul.facetSelect input[type="checkbox"]:checked + a img {
    border: 1px solid #737374;
    padding: 1px;
}

.facetWrapper .generic_size ul.facetSelect li input[type="checkbox"]:checked + a {
    text-decoration: underline;
}

#clear_all_filter {
    font-size: 10px;
    text-transform: uppercase;
    margin-left: 10px;
}

#facetFilterListWrapper ul#facetFilterList li {
    margin-right: 5px;
    display: inline-block;
}

#facetFilterListWrapper ul#facetFilterList li .filter_option img {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 10px;
    margin-right: 2px;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list .content_color_slide a,
.facetWrapper .generic_color ul.facetSelect li > a {
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid transparent;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list .content_color_slide a img,
.facetWrapper ul.facetSelect li > a img {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 10px;
    color: #fff;
    border: 1px solid #dbdbdb;
}

.facetWrapper span.arrow {
    display: none;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list .content_color_slide {
    display: inline-block;
    vertical-align: top;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list a.arrow_right,
.product_listing_container ul.grid_mode > li .product_info .color_swatch_list a.arrow_left {
    width: 20px;
    height: 20px;
    display: none;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list a.arrow_left {
    background-position: 0 -251px;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list a.arrow_right {
    background-position: -10px -360px;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list {
    font-size: 0;
    display: none;
    width: 100%;
}

.product_listing_container .sliderCouleur {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 25px;
    text-align: center;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list .sliderCouleur {
    min-height: 23px;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list > a {
    display: inline-block;
}

.product_listing_container ul.grid_mode > li .product_info .color_swatch_list a.nodisplay {
    display: none;
}

.product_listing_container #al-product-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 70px;
    margin-right: -30px;
    margin-left: -30px;
}

.product_listing_container .product {
    width: calc(100% / 2);
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 120px;
    max-width: 373px;
}

@media only screen and (min-width: 900px) {
    .product_listing_container .product {
        width: calc(100% / 3);
        max-width: initial;
    }
}

@media only screen and (min-width: 1024px) {
    .product_listing_container .product {
        width: calc(100% / 2);
    }
}

@media only screen and (min-width: 1200px) {
    .product_listing_container .product {
        width: calc(100% / 3);
    }
}

.product_listing_container .product_image .originalImg {
    width: 100%;
}

.product_listing_container .product_info {
    margin-top: 60px;
}

.product_listing_container .product_info .product_name {
    margin-bottom: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 25px;
}

.product_listing_container .product_info a,
.product_listing_container .product_info span {
    text-transform: uppercase;
    color: #000;
}

.product_listing_container .product_info .product_price {
    text-align: center;
}

.product_listing_container .product_info .product_price .price,
.product_listing_container .product_info .product_price .old_price,
.product_listing_container .product_info .product_price .percentage {
    margin-left: 5px;
    margin-right: 5px;
}

.product_listing_container .product_info .NamePriceBlock {
    min-height: 70px;
}

.productListContainer .paging_controls * {
    display: inline-block;
}

.productListContainer .paging_controls .pageControlButton {
    display: none;
}

.facetWrapper span,
.facetWrapper a {
    font-weight: lighter;
    font-size: 18px;
    color: #111;
}

.facetWrapper ul.facetSelect {
    margin: 10px !important; /* reset */
    list-style-type: none;
}

.facetWrapper .facetSelect #price_range_input {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.facetWrapper .facetSelect #price_range_input .price_range_currency {
    font-size: inherit;
    white-space: nowrap;
}

.facetWrapper .facetSelect #price_range_input .range_input {
    width: 37px;
    height: 25px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #d1d1d1;
}

.facetWrapper .facetSelect #price_range_input .go_button_disabled {
    display: none;
}

.facetWrapper .facetSelect #price_range_input .go_button {
    height: 25px;
    background: #000;
    border: 0;
    border-radius: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
}

span.factetTitle {
    display: block;
    text-transform: lowercase;
}

span.factetTitle:first-letter {
    text-transform: capitalize;
}

#productsFacets {
    margin-bottom: 35px;
    display: none;
}

#productsFacets fieldset {
    vertical-align: top;
    margin: 0 25px 30px 0;
}

#facetFilterListWrapper {
    margin-bottom: 30px;
}

#facet-collapse-link {
    cursor: pointer;
}

#productsFacets legend {
    display: none;
}

.productListingWidget .header_bar,
.productListingWidget .footer_bar {
    position: absolute;
    top: 0;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: 18px;
    display: none;
}

.productListingWidget .footer_bar {
    bottom: 0;
    top: initial;
}

.compareCheckboxLabels,
#catalog_search_result_information {
    display: none;
}

.productListingWidget .backToTop a {
    background-position: -2px -438px;
    display: inline-block;
    width: 17px;
    height: 19px;
}

.productListingWidget .backToTop {
    width: 100%;
    float: left;
    text-align: center;
    padding-bottom: 60px;
}

.facet-title-container {
    margin-bottom: 10px;
}

.facetSelectContainer {
    margin: 0; /* reset */
    padding: 0; /* reset */
}

#cookies-info {
    position: relative;
    display: none;
    background-color: rgba(0, 0, 0, 0.70);
    color: #fff;
}

#cookies-info p {
    color: #fff;
    padding: 10px 40px 10px 10px;
}

#cookies-info-more-link {
    color: #fff;
    text-decoration: underline;
}

#close-cookies-info {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 4px;
    right: 10px;
    cursor: pointer;
}

#close-cookies-btn {
    padding: 8px 0;
}

.product_listing_container .product_info .not_available {
    font-size: 10px;
    text-transform: uppercase;
}

.product_page_content .rowContainer > .row.margin-true {
    padding: 0;
}

.productPageContainer {
    width: 100%;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 60px;
}

.contentCol .cross-sell > div.first,
.contentCol .product-list-image {
    width: calc(100% - 260px);
    float: left;
    position: relative;
}

.contentCol .product-facetWrapper {
    max-width: 230px;
    width: 100%;
    float: right;
    padding-right: 15px;
}

.ImgContainer_Wrapper {
    display: none;
}

#widget_breadcrumb {
    display: none;
}

.wish_order_list .message,
.definingAttributes .heading.color,
.tab_header .left_espot,
.product-facetWrapper,
.definingAttributes .color_swatch_label,
.contentRecommendationWidget,
#size-guide,
#addToShoppingList {
    text-transform: uppercase;
}

.product-facetWrapper .main_header {
    margin: 0 0 5px 0;
    border-bottom: 1px solid #cecece;
    display: inline-block;
}

.definingAttributes .color_swatch_label {
    float: left;
    margin-right: 5px;
}

.definingAttributes .heading.color {
    float: left;
}

.shoppping_list_content {
    margin-bottom: 10px;
}

.definingAttributes .color_swatch_list.color li a {
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 1px 0 0 1px;
}

.definingAttributes .color_swatch_list.color img {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #dbdbdb;
}

.definingAttributes .color_swatch_list.color li {
    float: left;
    width: 17px;
    height: 17px;
    margin-bottom: 3px;
    margin-right: 3px;
}

.heading.size {
    display: none;
}

.product-facetWrapper .color_swatch_list.size ul li,
.product-facetWrapper .color_swatch_list.size {
    float: left;
    list-style-type: none;
}

.color_swatch_list a span {
    border: 1px solid transparent;
    padding: 0 5px;
}

.color_swatch_list .color_swatch_selected {
    border-color: #737374 !important;
    color: #000;
    cursor: default;
}

.color_swatch_list .color_swatch_disabled {
    color: #b7bebe;
    cursor: default;
}

.product-facetWrapper #size-guide {
    margin-top: 10px;
}

.tab_header.tab_header_double {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-facetWrapper .color_swatch_list.color,
.product-facetWrapper .namePartPriceContainer {
    margin-bottom: 10px;
    margin-top: 5px;
}

.product-facetWrapper .shoppping_list_content {
    background-position: -1px -50px;
    padding: 0 0 0 19px;
}

.product-facetWrapper .namePartPriceContainer div[id^="price_display"] {
    padding-top: 25px;
    padding-bottom: 25px;;
}

.product-facetWrapper .namePartPriceContainer div[id^="price_display"] span {
    font-weight: bolder;
    font-size: 14px;
}

.old_price, .price {
    margin-right: 10px;
}

.old_price {
    text-decoration: line-through;
}

.product-facetWrapper .quantity_section {
    display: none;
}

#definingAttributesSection {
    margin-bottom: 5px;
}

.contentCol .cross-sell > div,
.tab_header.tab_header_double,
.shopperActions,
.product-facetWrapper #shoppingListDropDown,
.product-facetWrapper #addToShoppingListBtn,
.product-facetWrapper .color_swatch_list.color,
.product-facetWrapper .More_Info,
.product-facetWrapper #shoppingListDropDown,
.contentCol .product-facetWrapper > div,
.shoppping_list_content,
.quantity_section,
.definingAttributes .color_swatch_list.color ul {
    width: 100%;
    float: left;
    list-style-type: none;
}

.More_Info {
    display: none;
}

#add2CartBtn {
    display: inline-block;
    margin-top: 50px;
}

.tabButtonContainer .tab {
    overflow: hidden;
    transition: height 1s ease-in-out;
    -webkit-transition: height 1s ease-in-out;
}

.tabButtonContainer .tab_container.active_tab .left_espot {
    text-decoration: underline;
    cursor: pointer;
    outline: none;
}

.tabButtonContainer .tab_container .left_espot {
    cursor: pointer;
}

.product-facetWrapper #tab1Widget,
.product-facetWrapper #tab2Widget,
.product-facetWrapper #tab3Widget {
    width: 100%;
    float: left;
    padding: 8px 0 0 0;
}

.product-facetWrapper #tab1.active_tab + #tab1Widget + #tab2 {
    padding: 15px 0;
    clear: both;
}

.product-facetWrapper #tab2.active_tab + #tab2Widget + #tab3 {
    padding: 15px 0 0;
    margin-bottom: 0;
    clear: both;
}

.product-facetWrapper #tab3.active_tab {
    padding: 15px 0 0;
}

.product-facetWrapper #tab1 {
    margin-top: 50px;
    margin-bottom: 11px;
    clear: both;
}

.product-facetWrapper #tab1.active_tab {
    margin-bottom: 8px;
}

.product_page_content {
    padding-bottom: 60px
}

.contentCol .cross-sell {
    margin: 0;
    padding-bottom: 60px !important;
}

.contentCol .cross-sell div#widget_coordinate {
    width: auto; /* reset common1_1.css */
}

.contentCol .cross-sell .productDescDropMerch {
    display: none;
}

.contentCol .cross-sell .product_name_merch {
    text-align: center;
    margin-top: 60px;
}

.contentCol .cross-sell .product_name_merch a {
    text-transform: uppercase;
}

.contentCol .cross-sell > div.first ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contentCol .cross-sell > div.first ul li {
    display: block;
    width: auto !important;
    max-width: 50%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 5px;
    padding-right: 5px;
}

.cross-sell .coordinate_title {
    margin-top: 60px;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
}

.list_mode.package_mode {
    margin: 0 auto;
}

@media screen and (min-width: 1200px) {
    .list_mode.package_mode {
        width: 70%;
    }
}

#close-size-guide-container {
    position: absolute;
    top: 0;
    right: 6px;
    line-height: 50px;
    width: 30px;
    background-color: #fff;
    text-align: center;
}

#popUpSizeGuide {
    position: relative;
    display: inline-block;
}

#popUpSizeGuide_underlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    color: rgba(0, 0, 0, 0.498039);
    background-color: rgba(0, 0, 0, 0.498039);
    display: block;
}

#close-size-guide-link {
    font-size: x-large;
}

#product-name-container {
    margin-bottom: 5px;
}

#product-name {
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-decoration: underline;
}

/*---------------------------------*\
    Popin Error
\*---------------------------------*/
div.store_message {
    position: fixed;
    top: 75vh !important;
    left: 50%;
    right: 5%;
    margin: auto;
    z-index: 700;
    min-width: 270px;
    width: 100%;
    max-width: 740px;
    display: none;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* Dev -- Hide the error message area by default */

.store_message .error_icon {
    float: left;
    margin-top: -2px;
}

.store_message > .content {
    margin-top: 3px;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
    border-left: 0 solid #e5e5e5;
    border-right: 0 solid #e5e5e5;
    border-bottom: 0 solid #e5e5e5;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 20px;
    box-shadow: 0 0 10px 2px #888;
    filter: progid:DXImageTransform.Microsoft.Glow(color='#888888', Strength='5');
}

.store_message > .content > .close {
    margin-right: 15px;
    cursor: pointer;
    float: right;
    padding: 2px;
}

.store_message > .content > .close > .close_text {
    font-size: 11px;
    color: #777;
    height: 13px;
    margin-right: 7px;
    float: left;
}

.store_message > .content > .close > .close_icon {
    margin-top: 3px;
    width: 8px;
    height: 8px;
    background: url('../../images/colors/color1/close_circle_sprite2.png') no-repeat;
    float: left;
}

.store_message > .content > .close:hover > .close_text {
    text-decoration: underline;
}

.store_message > .content > .close:hover > .close_icon {
    background-position: 0 -8px;
}

.store_message > .content > .message {
    margin: 10px 20px 0 20px;
}

.store_message > .content > .message .message_icon {
    width: 19px;
    float: left;
}

.store_message > .content > .message .message_text {
    font-size: 12px;
    color: #4d4d4d;
    line-height: 16px;
    width: 100%;
    margin: 0 20px;
}

div#widget_minishopcart_popup_1 > #cartDropdown > .content > .products > .product > .product_price {
    margin-right: 15px;
}

#MessageArea > .content {
    padding: 0;
    margin: 0;
}

#MessageArea > .content > .message {
    margin: 0;
}

#MessageArea .message_text {
    padding: 31px 20px;
    margin: 0 auto;
    max-width: 571px;
    width: 100%;
}

#MessageArea .message_text span {
    font-size: 14px;
    text-transform: uppercase;
    color: #000006;
}

#MessageArea .message_icon {
    display: none;
}

#MessageArea > .content {
    box-shadow: none;
    border: 1px solid #191919;
}

#MessageArea > .content > .close {
    margin: 0;
    position: absolute;
    right: 4px;
    top: 4px;
}

#MessageArea > .content > .close > .close_icon {
    display: none;
}

#MessageArea > .content > .close > .close_text {
    text-indent: -3000px;
    font-size: 1.2rem !important;
    font-family: 'Heebo', Helvetica, Arial, sans-serif !important;
    text-transform: uppercase;
    color: #000;
    padding: 0;
    position: relative;
    margin: 0;
}

#Header_GlobalLogin_signInDropdown .field.error {
    margin: 0 50% 10px 0;
}

.productListingWidget .product .product_info .heading.attr {
    display: none;
}

/*---------------------------------*\
    Inputs
\*---------------------------------*/
/* Placeholder */
::-webkit-input-placeholder {
    color: #000;
    font-size: 10px;
    opacity: 1;
    text-transform: uppercase;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
    padding-top: 5px; /* prevent iOS */
    padding-bottom: 5px; /* prevent iOS */
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
    font-size: 10px;
    opacity: 1;
    text-transform: uppercase;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    font-size: 10px;
    opacity: 1;
    text-transform: uppercase;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    font-size: 10px;
    opacity: 1;
    text-transform: uppercase;
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
}

/* Ne pas factoriser les sélecteurs séparés par une virgule, ça ne fonctionne pas */
input:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus::-ms-input-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

input:focus::placeholder {
    opacity: 0;
}

input.field {
    border: 0;
    background: none;
    border-bottom: 1px solid #272726;
    font-size: 18px;
    width: 150px;
    padding: 4px 0;
    font-family: 'Heebo', Helvetica, Arial, sans-serif !important;
    font-weight: lighter;
    color: #000;
    text-transform: none !important;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    height: inherit !important;
    line-height: inherit !important;
}

#headerWrapper input[type="email"],
#headerWrapper input[type="text"]:not(.field),
#headerWrapper input[type="password"]
.sign_in_registration input[type="email"],
.sign_in_registration input[type="text"]:not(.field),
.sign_in_registration input[type="password"] {
    width: 224px;
    border: 1px solid #747475;
    margin-bottom: 10px;
    background: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    font-size: 1.1em;
    line-height: 1.33;
}

@media screen and (max-width: 600px) {
    .signInForm input[type="text"],
    input[type="password"],
    input[type="email"],
    .bottomsignInForm > .action,
    .signInForm .footer,
    .signInForm #Header_GlobalLogin_GlobalLogon {
        width: 100%;
        float: left;
        max-width: 100%;
    }
}

#searchTermWrapper input::-webkit-input-placeholder {
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
    color: #000;
    font-size: 18px;
    opacity: 1;
    text-transform: none;
    line-height: 1.2;
}

#searchTermWrapper input::-moz-placeholder {
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
    color: #000;
    font-size: 18px;
    opacity: 1;
    text-transform: none;
    line-height: 1;
}

#searchTermWrapper input:-ms-input-placeholder {
    font-family: 'Heebo', Helvetica, Arial, sans-serif;
    font-weight: lighter;
    color: #000;
    font-size: 18px;
    opacity: 1;
    text-transform: none;
    line-height: 1;
}

.bottomsignInForm,
#autoSuggest_Result_div,
#suggestedProductsResults,
.autoSuggestDivNestedList {
    width: 100%;
    float: left;

}

#autoSuggest_Result_div li {
    list-style: none;
}

/* Hidden elements */
#accountWrapper #myAccountQuickLink br,
#Header_GlobalLogin .linkClose span,
#autoSuggestAdvancedSearch,
#autoSuggestStatic_1,
.hidden,
#quickLinksBar a.panelLinkSelected br,
#quickLinksBar > li[role^="menuitem"],
#quickLinksBar #searchButton,
#searchFormLabel,
#cookies-info,
#autoSuggest_Result_div,
#autoSuggestCachedSuggestions_div,
#searchFilterMenu,
#searchFilterButton,
#_quickLinksBar li.guest .panelLinkSelected .separator,
#_quickLinksBar #quickLinksButton {
    display: none;
}

.product-facetWrapper .shoppping_list_content,
.backToTop a, .product_listing_container ul.grid_mode > li .product_info .color_swatch_list > a,
.close-button, .loginMenuDropdown .linkClose,
#cartDropdown .closeButton,
#wishlist {
    background: url("../../images/new_amv/new_sprite.png") no-repeat;
}

.close-button,
.loginMenuDropdown .linkClose,
#cartDropdown .closeButton {
    background-position: -52px -110px;
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 12px;
    right: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.close-button:hover,
.loginMenuDropdown .linkClose:hover,
#cartDropdown .closeButton:hover {
    opacity: 0.4;
}

#wishlist {
    background-position: -1px -40px;
}

#page h3 {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bolder;
    color: #000;
    line-height: 1.4;
}

.browserupgrade {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.browserupgrade p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    font-size: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#page.CategoryNavPage #contentWrapper h1 {
    float: left;
    font-weight: lighter;
    font-size: 22px;
    z-index: 2;
}

.browserupgrade p a {
    color: #23527c;
    font-size: 16px;
    text-decoration: underline;
}

#progress_bar_dialog,
#progress_bar {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 900;
}

#loading_popup {
    position: absolute;
    left: 50% !important;
    top: 50% !important;
}

#loading_popup img {
    width: 50px;
    height: 50px;
}

#loading_popup .top_left,
#loading_popup .top_right,
#loading_popup .header,
#loading_popup .footer {
    display: none;
}

#loading_popup .bodycontent {
    background: none; /* reset common1_1.css */
}

.widthAuto {
    width: auto !important;
}

#ResetPasswordForm a.button_primary .button_text {
    background-position: 0 6px;
}

/*Affiche de la facette prix en mobile*/
#DropdownFacPrix .closeButtonFacPrix {
    right: 45px;
    background: url(../../images/new_amv/new_sprite.png) no-repeat -52px -110px;
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    cursor: pointer;
}

@media (min-width: 1025px) {
    /* facette prix */
    #DropdownFacPrix {
        display: none;
    }
}

/*---------------------------------*\
    Product page images
\*---------------------------------*/
#ProductAngleImagesAreaList {
    margin: 0 auto;
}

.productImagesLine {
    text-align: center;
}

.productImage {
    display: inline-block;
    line-height: 0;
    text-align: center;
}

.productImage img {
    max-width: 100%;
}

.productImage.fullWidth,
.productImage.halfWidth,
.productImage.thirdWidth {
    padding: 5px;
}

.productImage.fullWidth {
    max-width: 100%;
}

.productImage.halfWidth {
    max-width: 50%;
}

.productImage.thirdWidth {
    max-width: 33.333%;
}

.productImagesLine:nth-child(1) .productImage {
    vertical-align: bottom;
}

.productImagesLine:nth-child(2) .productImage {
    vertical-align: top;
}

#viewMoreImages, #labelMoreImages, #labelLessImages {
    display: none;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
}

/*---------------------------------*\
    Content pages (access by Footer)
\*---------------------------------*/
/* Payment */
.PaymentPage_Footer * {
    font-size: 100%;
}

.PaymentPage_Footer p * {
    font-size: 100%;
}

.contentRecommendationWidget .PaymentPage_Footer {
    font-weight: normal;
    text-transform: inherit;
    font-size: inherit;
}

.contentRecommendationWidget .PaymentPage_Footer span,
.contentRecommendationWidget .PaymentPage_Footer a,
.contentRecommendationWidget .PaymentPage_Footer p {
    font-size: inherit;
    color: #000;
}

.contentRecommendationWidget .PaymentPage_Footer p {
    padding-bottom: 13px;
}

.contentRecommendationWidget .PaymentPage_Footer u strong,
.contentRecommendationWidget .PaymentPage_Footer strong u {
    font-family: 'Heebo', Helvetica, Arial, sans-serif !important;
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
}

.contentRecommendationWidget .PaymentPage_Footer h2 {
    text-transform: uppercase;
    color: #000;
    font-size: 15px;
    padding-bottom: 20px;
}

/* Landing Page [Full Width] */
#page.CategoryNavPage .col9.contentCol > script + .rowContainer .row > div,
.searchPage .col9.contentCol .products-list .tab.left {
    width: 100%;
}

#page.CategoryNavPage .col9.contentCol .products-list {
    width: calc(100% - 260px);
}

#page.CategoryNavPage .col9.contentCol .breadcrumb-wrapper {
    display: none;
}

div.selectContact {
    max-width: 320px;
}

#pages-relation-client ~ p > img {
    margin: 10px auto !important;
    display: block;
}

/*---------------------------------*\
    Carousel
\*---------------------------------*/
.carousel .content > ul {
    width: 100%;
    margin: 0;
    display: table;
    table-layout: fixed;
}

.carousel .content > ul > li {
    list-style-type: none;
    white-space: normal;
    vertical-align: top;
    display: table-cell;
    width: auto;
}

.carousel .content > ul > li img {
    max-width: 100%;
}

.homepage .video-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: auto;
}

@media (min-aspect-ratio: 16/9) {
    .homepage .video-background {
        height: 150%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .homepage .video-background {
        width: 300%;
        left: -100%;
    }
}

.homepage .youtube-video,
.homepage .video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
}

.homepage .youtube-video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
}

.emptyInputFileLink {
    cursor: pointer;
}
.myAccountCouponTable {
	width: 100%;
	border-collapse: collapse;
}

.walletTittle{
	margin-top: 50px;
	margin-bottom: 15px;
	font-family: 'Heebo', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 1.1rem;
}
.myAccountCouponTable td
{
	border: 1px solid #c6c8ca !important;
    
}
.myAccountCouponTable th
{
	border: 1px solid #c6c8ca;
}
.fidelityStatus, .fidelityPoints{
	font-size: 1.4rem;
	line-height: 1;
	padding: 2px;

}

.fidelityPoints {
	margin-top: 10px;
}

.fidelityStatusValue {
	margin-left: 50px;
}


/***********************************
Geo Location Popup */
	.geoloc-popup {
		clear: both;
		width: 540px;
		height: 250px;
		margin: 0 auto;
		border: 1px solid #D1D1D1;
		background: rgba(255, 255, 255, 0.95);
		color: #000;
		padding: 6% 0;
		position: relative;
	}
	@media screen and (max-width: 767px) {
		.geoloc-popup {
			width: 85%;
			padding: 8% 6% 4%;
			height: auto;
		}
		.geoloc-popup.store-popup {
			padding: 6%;
			min-height: 228px;
		}
		.geoloc-popup .gl-popup-content .gl-info {
		    padding-bottom: 10px;
		}
		.geoloc-popup .gl-action button {
		    line-height: 23px;
		    margin-bottom: 9px;
		}
		.geoloc-popup.store-popup .selectContainer .sbHolder {
			margin-bottom: 10px;
		}
		.geoloc-popup.store-popup .action-confirm {
			margin-bottom: 10px;
		}
	}
	/* Close Popup */
		.geoloc-popup .close-wrong-store-acces {
		    height: 0;
		}
		.geoloc-popup .close-wrong-store-acces a {
			display: block;
			width: 12px;
			height: 12px;
			background: url("../../images/new_amv/new_sprite.png") -52px -110px no-repeat;
			position: absolute;
			right: 12px;
			top: 12px;
			cursor: pointer;
		}
	/* Content */
		.geoloc-popup .gl-popup-content {
			width: 100%;
			max-width: 370px;
			margin: 0 auto;
		}
		.geoloc-popup.store-popup .choose-store {
			text-transform: uppercase;
			line-height: 18px;
			padding: 3px 0 15px;
			display: block;
		}
	/* Title */
		.geoloc-popup .gl-title {
			text-transform: uppercase;
		    padding-bottom: 9px;
		}
		.geoloc-popup .choose-store-title {
			font-size: 1.42em;
		    font-weight: 600;
		    padding-bottom: 20px;
		}
	/* Selecbox */
		.geoloc-popup .selectContainer {
			background: none !important;
		}
		.geoloc-popup .selectContainer .sbHolder {
			margin-bottom: 15px;
		}
		.geoloc-popup .gl-info {
		    text-transform: uppercase;
		    padding-bottom: 15px;
		    line-height: 19px;
	    }
	/* Buttons */
	    .geoloc-popup button {
	    	width: 100%;
	    	line-height: 27px;
	    	text-transform: uppercase;
	    	border: 1px solid #000;
	    	cursor: pointer;
	    	margin-bottom: 15px;
	    }
	    .geoloc-popup .button-primary {
	    	background: #000;
	    	color: #FFF;
	    }
	    .geoloc-popup .button-secondary {
	    	background: #FFF;
	    	color: #000;
	    }
	    .geoloc-popup .action-confirm {
	    	width: 100%;
	    	line-height: 26px;
	    	padding: 0.5em 1.5em;
	    	background: #000;
	    	color: #FFF;
	    	text-transform: uppercase;
	    	text-align: center;
	    }
	/* Footer */
	    .geoloc-popup .gl-footer {
	    	text-transform: uppercase;
	    	line-height: 16px;
	    }
	    .geoloc-popup .gl-footer a{
		    color: #000;
		    text-decoration: underline;
	    }

/***********************************
Page choose store */
	/* Store Title */
		.page-choose-store h2.select-store-title {
		    position: relative;
		    max-width: 100%;
		    margin: auto;
		    border: 0;
		    background-color: transparent;
		    font-size: 1.5rem;
		    text-transform: uppercase;
		    line-height: 33px;
		    white-space: nowrap;
		    font-weight: normal;
		    color: black;
		    padding: 10px 0;
		    height: auto;
		}
		.page-choose-store h2.select-store-title:after {
		    content: "";
		    width: 100%;
		    height: 1px;
		    background: #a5a5a5;
		    position: absolute;
		    left: 0;
		    top: 100%;
		}
	/* Store Container */
		.page-choose-store .chooseStoreContainer {
			width: 100%;
		    padding: 22px 10% 0;
		}
		.page-choose-store .chooseStoreContainer .choose-store-title {
		    font-weight: 600;
		    text-transform: uppercase;
		}
	/* Selecbox Custom */
		/* Height */
		.page-choose-store .chooseStoreContainer .sbHolder,
		.page-choose-store .chooseStoreContainer .sbSelector {
			height: 31px;
		}
		.page-choose-store .chooseStoreContainer .sbSelector {
			line-height: 31px !important;
		}
		.page-choose-store .chooseStoreContainer .sbToggle {
			height: 29px;
		}
		/* Margin */
		.page-choose-store .chooseStoreContainer .chooseStore.chooseCountry {
			margin: 25px 0 15px;
		}
		.page-choose-store .chooseStoreContainer .chooseStore.ChooseLanguage {
			margin: 0 0 25px;
		}
	/* Change Store Action */
		.page-choose-store .chooseStoreContainer .button-primary._confirm {
			width: 100%;
			max-width: 280px;
			font-size: inherit;
		}

.CategoryNavPage .contentCol .col9 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.originalImgForIE {
    display: none;
}
.carousel.catalogEntryRecommendationWidget ul > li .product_image img.originalImgForIE {
    display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	/* Following CSS only applies to IE (but not Edge) */
    .originalImg {
        display: none;
    }
    .originalImgForIE {
        display: inline;
    }
}
