/********************
	Part - Style global
********************/
#wrapper {
    background : var(--color-grey-default);
    z-index    : 1;
}

.products-section-title {
    text-align    : center;
    margin-bottom : 1.5rem;
}

/********************
	Part - Style général des headers de pages
********************/
.page-header h1,
.page-header h2 {
    margin         : 0;
    padding        : 1em 1.5em;
    text-align     : center;
    color          : var(--color-primary);
    border-bottom  : 1px solid var(--color-primary);
    background     : white;
    text-transform : uppercase;
}

/********************
	Part - Style général des accordéons
********************/

.js-accordion__container {
    border     : 1px solid var(--color-grey-default);
    box-shadow : 2px 2px 11px 0 rgba(0, 0, 0, 0.1);
}

.js-accordions__wrapper .accordion__title {
    background      : white;
    color           : var(--color-primary) !important;
    padding         : 15px;
    font-weight     : 700;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    cursor          : pointer;
}

/********************
	Part - fix taille mini d'une page à 100vh hors du checkout
********************/
body:not(#checkout) main {
    min-height     : 100vh;
    display        : flex;
    flex-direction : column;
}

body:not(#checkout) #wrapper {
    flex           : 1 0 auto;
    display        : flex;
    flex-direction : column;
}

body:not(#checkout) #wrapper .wrapper__inner {
    flex : 1 0 auto;
}

/********************
	Part - class notransition for js
********************/
.notransition,
.notransition * {
    -webkit-transition : none !important;
    -moz-transition    : none !important;
    -o-transition      : none !important;
    transition         : none !important;
}

/********************
	Part - Style all product link
********************/
.all-product-link {
    color       : var(--color-grey-font-default);
    font-weight : 700;
    padding     : 3px 7px;
    display     : inline-block;
}

.section__content .all-product-link {
    margin-top : 1.5rem;
}

.all-product-link:focus,
.all-product-link:hover {
    text-decoration : none;
}

/********************
	Part - Style dropdown
********************/
.dropdown {
    color : var(--color-grey-font-default)
}

.dropdown:hover .expand-more {
    color : #2fb5d2
}

.dropdown .expand-more {
    color               : var(--color-black-default);
    cursor              : pointer;
    -webkit-user-select : none;
    -moz-user-select    : none;
    -ms-user-select     : none;
    user-select         : none
}

.dropdown .active {
    max-height : 200px;
    overflow-y : hidden;
    visibility : visible
}

.dropdown select {
    -moz-appearance : none;
    border          : 0 none;
    outline         : 0 none;
    color           : var(--color-black-default);
    background      : #fff
}

.dropdown-item:focus, .dropdown-item:hover {
    background      : none;
    text-decoration : none;
    color           : #2fb5d2
}

/*
--------------------------------------
Sort by
--------------------------------------
*/

.dropdown-menu {
    position: absolute;
    top: 80%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
.open > .dropdown-menu {
    display: block;
}

/*
--------------------------------------
Amazzing Filter
--------------------------------------
*/

.slider-container .clickable-dummy {
    background: #fff;
}

.slider-container .back-bar .pointer {
    background: #292e32;
    border: 1px solid #292e32;
}

.slider-container .back-bar .pointer.high {
    display: none;
}

.af_filter:hover .slider_value,
.slider .slider_value.edit {
    border-color: transparent;
}

/*
--------------------------------------
Products -- Jolisearch
--------------------------------------
*/

body#module-ambjolisearch-jolisearch .products {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    justify-content: space-between;
    background: #f9f9f9;
}

body#module-ambjolisearch-jolisearch .product-miniature .thumbnail-container {
    position: relative;
    display: flex;
    flex-direction: row;
    background: white;
    border-top: 3px solid var(--color-primary);
    height: 100%;
}

body#module-ambjolisearch-jolisearch .search-header-container {
    background: #fff;
    padding: 5em;
}

body#module-ambjolisearch-jolisearch .features-container {
    padding-bottom: 1.5em;
}

body#module-ambjolisearch-jolisearch .features-container span {
    font-size: calc(13px + (15 - 13) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
}


body#module-ambjolisearch-jolisearch .name-season-container {
    display: flex;
    align-items: center;
}

body#module-ambjolisearch-jolisearch .name-season-container span {
    font-size: 14px;
    font-weight: 500;
    color: #919798;
    margin-left: 0.75em;
}
body#module-ambjolisearch-jolisearch .product-miniature .season-container {
    display: flex;
}

body#module-ambjolisearch-jolisearch .product-miniature .product-price-and-shipping span {
    font-size: calc(18px + (29 - 18) * ((100vw - 320px) / (1920 - 320)));
    color: #051125;
}

body#module-ambjolisearch-jolisearch .product-miniature .product-price-and-shipping small {
    font-size: 10px;
    font-weight: 500;
    color: #676e7a;
}

body#module-ambjolisearch-jolisearch .product-miniature .product-price-and-shipping {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem 0 1em 0;
}
body#module-ambjolisearch-jolisearch .product-miniature .product-price-and-shipping .unit-price {
    margin-top: 6px;
    font-size: var(--font-size-200);
    font-weight: 300;
}

body#module-ambjolisearch-jolisearch .product-miniature .product-description {
    display: grid;
    grid-template-columns: repeat(2, auto);
    padding: 1em;
}

body#module-ambjolisearch-jolisearch .product-description-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body#module-ambjolisearch-jolisearch .pagination {
    width : 100%
}

body#module-ambjolisearch-jolisearch .pagination > div:first-child {
    line-height : 2.5rem
}

body#module-ambjolisearch-jolisearch .pagination .page-list {
    background    : #fff;
    padding       : .375rem;
    margin-bottom : 0;
    /*box-shadow    : 2px 2px 4px 0 rgba(0, 0, 0, .2)*/
}

body#module-ambjolisearch-jolisearch .pagination .page-list li {
    display : inline
}

body#module-ambjolisearch-jolisearch .pagination a {
    color       : #000;
    font-weight : 600
}

body#module-ambjolisearch-jolisearch .pagination a:not(.previous):not(.next) {
    letter-spacing : .125rem
}

body#module-ambjolisearch-jolisearch .pagination .previous {
    float : left
}

body#module-ambjolisearch-jolisearch .pagination .next {
    float : right
}

body#module-ambjolisearch-jolisearch .pagination .disabled {
    color : var(--color-grey-font-default)
}

body#module-ambjolisearch-jolisearch .pagination .current a {
    color           : var(--color-primary);
    text-decoration : none;
    font-size       : 1.25rem
}

body#module-ambjolisearch-jolisearch .product-list__back-to-top .btn {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.block-promo .promo-code .alert-danger {
    position   : relative;
    margin-top : 1.25rem;
    background : #ff4c4c;
    color      : #fff;
    display    : none
}

/*
--------------------------------------
Marketplace
--------------------------------------
*/

body#module-ets_marketplace-contactseller a {
    color: var(--color-primary)
}

body#module-ets_marketplace-contactseller .ets_mp_content_left {
    background: #fff;
    padding-bottom: 10px;
    border : 1px solid var(--color-primary);
}
body#module-ets_marketplace-contactseller .ets_mp_content_left a {
    color: var(--color-primary);
}
body#module-ets_marketplace-contactseller .ets_upload_file_custom .custom-file-label::after {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

body#module-ets_marketplace-contactseller .ets_mp_content_left a.link_contact_back {
    border-bottom: 0;
}

/*
--------------------------------------
Label RECQ
--------------------------------------
*/

.label-type-container .logo-recq {
    max-width: 80px;
    margin: 0;
}

#category .label-type-container .logo-recq {
    max-width: 60px;
    margin: 0;
}
