/*
/	Solution web ideveloppement
/	http://www.ideveloppement.fr
/
*/

.pj-header {
    box-sizing: border-box;
}
.pj-header *,
.pj-header *:before,
.pj-header *:after {
    box-sizing: inherit;
}

.pj-header {
    font: 12px/1.5 'roboto', sans-serif;
    background: #f6f6f6;
    color: #454545;
}

.pj-header-sub {
    display: none;
}

.pj-header-top-wrap {
    position: relative;
}
.pj-header-top-fixable {
    background: #f6f6f6;
}
.pj-header-first-bar {
    padding: 7px 0 0;
    height: 66px;
}
.pj-header-first-bar:after {
    content: '';
    display: table;
    clear: both;
}
.pj-header-logo {
    float: left;
    margin: 0 0 0 -10px;
    padding: 0 0 0 10px;
}
.pj-header-logo a,
.pj-header-logo img {
    display: block;
    border: 0;
}
.pj-header-logo img {
    max-width: 100%;
    height: auto;
}
.pj-header-top-nav {
    float: right;
    margin: 7px 0 0;
}
.pj-header-top-nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pj-header-top-nav > ul > li {
    float: left;
    margin-left: 10px;
}
.pj-header-top-nav > ul > li:first-child {
    margin-left: 0;
}
.pj-header-top-nav > ul > li > a {
    display: block;
    overflow: hidden;
    width: 30px;
    height: 30px;
    font: 500 11px/30px 'poppins', sans-serif;
    position: relative;
    text-indent: -9999em;
    text-decoration: none;
    color: #454545;
    text-transform: uppercase;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-top-nav > ul > li > a:before {
    content: '';
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-size: 15px;
    color: #71ba2c;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'pj-icomoon' !important;
    /*noinspection CssUnknownProperty*/
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pj-header-top-nav > ul > li > a:hover:before {
    color: #51a11a;
}
.pj-header-top-nav > ul > .pj-header-account > a:before {
    content: "\e911"; /* account */
}
.pj-header-top-nav > ul > .pj-header-selection > a:before {
    content: "\e939"; /* heart */
}
.pj-header-top-nav > ul > .pj-header-cart > a:before {
    content: "\e922"; /* cart */
}

.pj-header-top-nav a[data-pill]:after {
    content: attr(data-pill);
    text-indent: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    color: #71ba2c;
    font-weight: bold;
    font-size: 7px;
    width: 13px;
    height: 13px;
    line-height: 13px;
    text-align: center;
    border-radius: 6px;
    background: #dbeace;
    background: rgba(113, 186, 44, 0.2);
}

.pj-header-account-hover,
.pj-header-cart-hover {
    display: none;
}

.pj-header-second-bar {
    position: relative;
    padding: 0 0 20px;
}
.pj-header-main-nav-toggler {
    float: left;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 35px;
    line-height: 35px;
    font-size: 25px;
    position: relative;
    text-indent: -9999em;
    color: #71ba2c;
    cursor: pointer;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-main-nav-toggler:hover {
    color: #51a11a;
}
.pj-header-main-nav-toggler:before {
    content: "\e90c"; /* menu */
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;

    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'pj-icomoon' !important;
    /*noinspection CssUnknownProperty*/
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pj-header-search {
    margin-left: 50px;
    position: relative;
}
.pj-header-search input {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;

    box-shadow: none;
    outline: 0;
    opacity: 1;

    background: #fff;
    border: 1px solid #ddd;
    border-right: 0;
    height: 35px;
    padding: 8px 45px 7px 10px;
    font: 12px/18px 'poppins', sans-serif;
    color: #71ba2c;
    width: 100%;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-search input:focus {
    border-color: #71ba2c;
}
.pj-header-search ::-webkit-input-placeholder {
    opacity: 1;
}
.pj-header-search :-moz-placeholder { /* Firefox 18- */
    opacity: 1;
}
.pj-header-search ::-moz-placeholder {  /* Firefox 19+ */
    opacity: 1;
}
.pj-header-search :-ms-input-placeholder {
    opacity: 1;
}
/* Fix <= IE9 placeholder */
.pj-header-search .placeholder {
    opacity: 1;
}
.pj-header-search button {
    background: #71ba2c;
    border: 0;
    padding: 0;
    margin: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    text-indent: -9999em;
    color: #fff;
    cursor: pointer;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-search button:hover {
    background-color: #51a11a;
}
.pj-header-search button:before {
    content: "\e929"; /* search */
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;

    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'pj-icomoon' !important;
    /*noinspection CssUnknownProperty*/
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pj-header-search-results {
    display: none;
    position: absolute;
    left: -50px;
    right: 0;
    top: 100%;
    background: #fff;
    z-index: 20;
    margin-top: 20px;

    -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
}
.pj-header-search-results:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: 100%;
    left: 65px;
}
.pj-header-search-results-left,
.pj-header-search-results-right {
    padding: 15px 20px 0;
    overflow: hidden;
}
.pj-header-search-results-right {
    background: #eaf5e0;
}
.pj-header-search-results-title {
    font-family: 'poppins', sans-serif;
    text-transform: uppercase;
    color: #71ba2c;
    margin-bottom: 10px;
}
.pj-header-search-results-list {
    list-style: none;
    padding: 0;
}
.pj-header-search-results-list a {
    color: #454545;
    text-decoration: none;
    font-weight: normal;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-search-results-list a:hover {
    color: #51a11a;
}
.pj-header-search-results-highlighted {
    background: none;
    color: #fa493c;
    font-weight: bold;
}
.pj-header-search-results-count {
    font-size: 10px;
    color: #999;
}

.pj-header-search-results-list-products > li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
.pj-header-search-results-list-products > li:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.pj-header-search-results-product {
    position: relative;
}
.pj-header-search-results-product:after {
    content: '';
    display: table;
    clear: both;
}
.pj-header-search-results-product a {
    font-weight: 300;
}
.pj-header-search-results-product-image {
    float: left;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    overflow: hidden;

    -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
}
.pj-header-search-results-product-image img {
    display: block;
    border: 0;
}
.pj-header-search-results-product-name-block {
    margin-left: 70px;
    font-size: 0;
    line-height: 60px;
}
.pj-header-search-results-product-name {
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

.pj-header-main-nav {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    z-index: 200;
    top: 100%;
    left: 0;
    right: 0;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-main-nav-open .pj-header-main-nav {
    max-height: 450px;

    -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
}
.pj-header-main-nav > ul {
    list-style: none;
    padding: 10px 10px 0;
    margin: 0;
    background: #fff;
    overflow: hidden;
}
.pj-header-main-nav > ul > li {
    margin: 0 0 10px;
}
.pj-header-main-nav > ul > li > a {
    position: relative;
    display: block;
    font: 500 14px/30px 'poppins', sans-serif;
    color: #454545;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 0 0 8px;
    border: #fff;
    border-left: 4px solid #fff;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.pj-header-main-nav > ul > .pj-header-promotion > a {
    color: #fa493c;
}
.pj-header-main-nav > ul > .pj-header-gardening-advice > a {
    color: #71ba2c;
}
.pj-header-main-nav > ul > li > a:after {
    content: "\e918"; /* chevron-right */
    text-indent: 0;
    position: absolute;
    top: 50%;
    right: 0;
    color: #454545;
    text-align: center;
    font-size: 10px;
    line-height: 30px;
    margin-top: -15px;

    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'pj-icomoon' !important;
    /*noinspection CssUnknownProperty*/
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pj-header-main-nav > ul > .pj-header-active > a,
.pj-header-main-nav > ul > li > a:hover {
    border-left-color: #71ba2c;
}

.pj-header-bottom-slider {
    display: none;
    background: #fff;
}
.pj-header-bottom-slider .pj-slideshow-wrap > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.pj-header-bottom-slider .pj-slideshow-wrap > ul:after {
    content: '';
    display: table;
    clear: both;
}
.pj-header-bottom-slider-item {
    display: none;
    text-align: center;
    height: 45px;
    font: 14px/45px 'poppins', sans-serif;
}
.pj-header-bottom-slider-item:first-child {
    display: block;
}
.pj-header-bottom-slider-item-icon {
    background: #454545;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 21px;
    height: 21px;
    font-size: 14px;
    line-height: 21px;
    border-radius: 50%;
    margin: 0 5px 0 0;
}
.pj-header-bottom-slider-item-icon [class^="pj-icon-"],
.pj-header-bottom-slider-item-icon [class*=" pj-icon-"] {
    vertical-align: middle;
}
.pj-header-bottom-slider-item-title {
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}
.pj-header-bottom-slider-item-subtitle,
.pj-header-bottom-slider-item-details {
    display: none;
}
.pj-header-bottom-slider .pj-slideshow-prev,
.pj-header-bottom-slider .pj-slideshow-next {
    display: none;
}


@media (min-width: 640px) {
    .pj-header {
        font-size: 14px;
    }
    .pj-header-first-bar {
        padding: 0;
        height: 80px;
    }
    .pj-header-top-nav > ul > li {
        margin-left: 20px;
    }
    .pj-header-top-nav > ul > li > a {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    .pj-header-top-nav > ul > li > a:before {
        font-size: 25px;
    }
    .pj-header-top-nav a[data-pill]:after {
        top: 4px;
        right: 4px;
        font-size: 10px;
        width: 23px;
        height: 23px;
        line-height: 23px;
        border-radius: 11px;
    }

    .pj-header-search input {
        font-size: 14px;
        line-height: 21px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .pj-header-search-results-inner {
        display: table;
        width: 100%;
    }
    .pj-header-search-results-left,
    .pj-header-search-results-right {
        display: table-cell;
        width: 50%;
    }
    .pj-header-search-results-count {
        font-size: 12px;
    }
    .pj-header-search-results-product-name {
        font-size: 14px;
    }

    .pj-header-search-results-right {
        padding-left: 10px;
    }

    .pj-header-bottom-slider-inner {
        position: relative;
        width: 100%;
        max-width: 780px;
        margin: 0 auto;
    }
    .pj-header-bottom-slider .pj-slideshow-wrap {
        margin: 0 35px;
    }
    .pj-header-bottom-slider-item {
        position: relative;
        text-align: left;
    }
    .pj-header-bottom-slider-item-subtitle {
        display: inline-block;
        vertical-align: middle;
        line-height: 1.2;
        margin: 0 0 0 5px;
    }
    .pj-header-bottom-slider-item-details {
        display: block;
        color: #454545;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -9px;
        font-size: 12px;
        text-decoration: underline;
        line-height: 18px;
    }
    .pj-header-bottom-slider-item-details:hover {
        color: #454545;
        text-decoration: none;
    }
    .pj-header-bottom-slider {
        display: block;
    }
    .pj-header-bottom-slider .pj-slideshow-prev,
    .pj-header-bottom-slider .pj-slideshow-next {
        display: block;
        border: 0;
        padding: 0;
        margin: -22px 0 0;
        background: none;
        position: absolute;
        top: 50%;
        font-size: 10px;
        height: 45px;
        line-height: 45px;
        width: 25px;
        text-indent: -9999em;
        cursor: pointer;
    }
    .pj-header-bottom-slider .pj-slideshow-prev {
        left: 10px;
    }
    .pj-header-bottom-slider .pj-slideshow-next {
        right: 10px;
    }
    .pj-header-bottom-slider .pj-slideshow-prev:before,
    .pj-header-bottom-slider .pj-slideshow-next:before {
        content: '';
        text-indent: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;

        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;

        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'pj-icomoon' !important;
        /*noinspection CssUnknownProperty*/
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;

        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .pj-header-bottom-slider .pj-slideshow-prev:before {
        content: "\e916"; /* chevron-left */
    }
    .pj-header-bottom-slider .pj-slideshow-next:before {
        content: "\e918"; /* chevron-right */
    }

}

@media (min-width: 960px) {

    .pj-header-top-wrap {
        height: 157px;
    }
    .pj-header-top-fixable {

        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .pj-header-fixed .pj-header-top-fixable {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;

        -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    }
    .pj-header-top {
        position: relative;
        z-index: 300;
    }
    .pj-header-first-bar {
        padding-top: 10px;
        height: 95px;
    }
    .pj-header-fixed .pj-header-first-bar {
        padding-top: 0;
        height: 60px;
    }
    .pj-header-fixed .pj-header-logo {
        width: 280px;
    }
    .pj-header-fixed .pj-header-top-nav {
        margin-top: 10px;
    }
    .pj-header-top-nav > ul > li {
        position: relative;
    }
    .pj-header-top-nav > ul > li > a {
        text-indent: 0;
        line-height: 1;
        width: auto;
        height: auto;
        padding: 0 15px;
    }
    .pj-header-fixed .pj-header-top-nav > ul > li > a {
        text-indent: -9999em;
        width: 60px;
        height: 50px;
        line-height: 50px;
        padding: 0;
    }
    .pj-header-top-nav > ul > li > a:before {
        position: static;
        display: block;
        height: 46px;
        line-height: 46px;
        margin: 0 auto;
    }
    .pj-header-fixed .pj-header-top-nav > ul > li > a:before {
        position: absolute;
        height: auto;
        line-height: inherit;
    }
    .pj-header-top-nav a[data-pill]:after {
        top: 0;
        right: 50%;
        margin-right: -25px;
    }

    .pj-header-top-nav > ul > .pj-header-account.hovered .pj-header-account-hover {
        display: block;
    }
    .pj-header-account-hover {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        padding-top: 20px;
        margin-left: -180px;
        z-index: 30;
        width: 360px;
    }
    .pj-header-account-hover-inner {
        position: relative;
        background: #fff;

        -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    }
    .pj-header-account-hover-inner:before {
        content: '';
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 6px solid #fff;
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -7px;
    }
    .pj-header-account-hover-title {
        font-family: 'poppins', sans-serif;
        text-transform: uppercase;
        font-weight: 300;
    }
    .pj-header-account-hover-login,
    .pj-header-account-hover-register,
    .pj-header-account-hover-logged {
        padding: 20px 20px 0;
        overflow: hidden;
    }
    .pj-header-account-hover-login .pj-form-row input {
        border: 1px solid #bababa;
        padding: 9px 34px 9px 9px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .pj-header-account-hover-login .pj-form-row input:focus {
        border-color: #71ba2c;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .pj-header-account-hover-forgotten-password {
        margin-top: -10px;
    }
    .pj-header-account-hover-forgotten-password a {
        font-size: 12px;
        font-weight: normal;
        color: #71ba2c;
        text-decoration: none;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .pj-header-account-hover-forgotten-password a:hover {
        color: #51a11a;
    }
    .pj-header-account-hover .pj-form-submit {
        line-height: 40px;
        position: relative;
    }
    .pj-header-account-hover .pj-header-account-hover-remember-me {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 12px;
    }
    .pj-header-account-hover-register {
        background: #eaf5e0;
    }
    .pj-header-account-hover-register .pj-form-submit {
        line-height: 40px;
        margin-top: 0;
    }
    .pj-header-account-hover-register .pj-header-account-hover-title {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }
    .pj-header-account-hover-nav {
        list-style: none;
        padding: 0;
    }
    .pj-header-account-hover-nav > li {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #ddd;
    }
    .pj-header-account-hover-nav > li:first-child {
        margin-top: 0;
        border-top: 0;
    }
    .pj-header-account-hover-nav a {
        color: #454545;
        font-weight: normal;
        display: block;
        overflow: hidden;
    }
    .pj-header-account-hover-nav [class^="pj-icon-"],
    .pj-header-account-hover-nav [class*=" pj-icon-"] {
        float: left;
        font-size: 25px;
        color: #71ba2c;
    }
    .pj-header-account-hover-nav-text {
        display: block;
        margin-left: 45px;
    }
    .pj-header-account-hover-nav-link {
        font-family: 'poppins', sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        color: #71ba2c;
        display: block;
    }

    .pj-header-top-nav > ul > .pj-header-cart.hovered .pj-header-cart-hover {
        display: block;
    }
    .pj-header-cart-hover {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        padding-top: 20px;
        z-index: 30;
        width: 490px;
    }
    .pj-header-cart-hover-inner {
        position: relative;

        background: #fff;
        -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    }
    .pj-header-cart-hover-inner:before {
        content: '';
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 6px solid #fff;
        position: absolute;
        bottom: 100%;
        right: 27px;
    }
    .pj-header-cart-hover-products-list {
        list-style: none;
        padding: 20px 20px 0;
        margin: 0;
    }
    .pj-header-cart-hover-products-list > li {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #ddd;
    }
    .pj-header-cart-hover-products-list > li:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }
    .pj-header-cart-hover-product {
        font-size: 0;
    }
    .pj-header-cart-hover-product-image {
        display: inline-block;
        vertical-align: middle;
        border-radius: 3px;
        overflow: hidden;

        -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);

        width: 60px;
        margin-right: 10px;
    }
    .pj-header-cart-hover-product-image img {
        display: block;
    }
    .pj-header-cart-hover-product-name {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        font-weight: 300;
        width: 150px;
        margin-right: 10px;
    }
    .pj-header-cart-hover-product-price {
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
        font-weight: bold;
        color: #222;
        width: 90px;
        margin-right: 10px;
        text-align: right;
    }
    .pj-header-cart-hover-product-price sup {
        font-size: 0.7em;
        position: relative;
        top: -0.3em;
        line-height: normal;
        display: inline-block;
        vertical-align: baseline;
        width: 25px;
        text-align: left;
    }
    .pj-header-cart-hover-product-conditioning {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        font-weight: 300;
        width: 75px;
        margin-right: 10px;
    }
    .pj-header-cart-hover-product-quantity {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        font-weight: bold;
        color: #222;
        width: 35px;
    }
    .pj-header-cart-hover-product-more {
        font-size: 12px;
        font-weight: bold;
        margin: 0 0 10px;
        line-height: 1;
    }
    .pj-header-cart-hover-bottom {
        background: #eaf5e0;
        position: relative;
        padding: 20px;
    }
    .pj-header-cart-hover-total {
        overflow: hidden;
    }
    .pj-header-cart-hover-total-label {
        float: left;
        width: 130px;
        font-family: 'poppins', sans-serif;
        font-weight: bold;
        color: #fa493c;
        font-size: 12px;
        line-height: 1.2;
    }
    .pj-header-cart-hover-total-label strong {
        display: block;
        text-transform: uppercase;
        font-size: 14px;
    }
    .pj-header-cart-hover-total-price {
        display: block;
        margin-left: 130px;
        margin-right: 180px;
        text-align: center;
        font-size: 30px;
        font-weight: 900;
        color: #fa493c;
        line-height: 1;
    }
    .pj-header-cart-hover-total-price sup {
        font-size: 0.7em;
        position: relative;
        top: -0.3em;
        line-height: normal;
        display: inline-block;
        vertical-align: baseline;
        width: 25px;
        text-align: left;
    }
    .pj-header-cart-hover-bottom .pj-rounded-button {
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -20px;
        max-width: none;
        width: auto;
    }

    .pj-header-top-nav-no-selection > ul > li {
        position: static;
    }
    .pj-header-top-nav-no-selection .pj-header-account-hover {
        left: auto;
        right: 0;
        top: 73px;
    }
    .pj-header-top-nav-no-selection .pj-header-account-hover-inner:before {
        left: auto;
        margin-left: 0;
        right: 134px;
    }
    .pj-header-top-nav-no-selection .pj-header-cart-hover {
        top: 73px;
    }

    .pj-header-fixed .pj-header-top-nav > ul > .pj-header-account.hovered .pj-header-account-hover,
    .pj-header-fixed .pj-header-top-nav > ul > .pj-header-cart.hovered .pj-header-cart-hover {
        display: none;
    }

    .pj-header-main-nav-toggler {
        display: none;
    }
    .pj-header-second-bar {
        position: absolute;
        top: 28px;
        left: 320px;
    }
    .pj-header-fixed .pj-header-second-bar {
        top: 18px;
    }
    .pj-header-search {
        margin-left: 0;
        width: 300px;
    }
    .pj-header-search input {
        height: 45px;
        padding-top: 11px;
        padding-bottom: 11px;
        padding-right: 55px;
    }
    .pj-header-fixed .pj-header-search input {
        height: 35px;
        padding-top: 8px;
        padding-bottom: 7px;
        padding-right: 45px;
        font-size: 12px;
        line-height: 18px;
    }
    .pj-header-search button {
        height: 45px;
        width: 45px;
        line-height: 45px;
    }
    .pj-header-fixed .pj-header-search button {
        height: 35px;
        width: 35px;
        line-height: 35px;
    }

    .pj-header-search-results {
        left: -100px;
        right: -190px;
    }
    .pj-header-search-results:before {
        left: 115px;
    }

    .pj-header-main-nav,
    .pj-header-main-nav-open .pj-header-main-nav {
        max-height: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        margin: 0;
        position: relative;
        top: 0;
        overflow: visible;
    }
    .pj-header-main-nav > ul {
        padding: 0;
        background: none;
        display: flex;
    }
    .pj-header-main-nav > ul:after {
        content: '';
        display: table;
        clear: both;
    }
    .pj-header-main-nav > ul > li {
        margin: 0;
        padding: 0;
        float: left;
        width: 11.111111%; /* 100 / 9 (= nb items in menu) */
        flex: auto;
    }
    .pj-header-main-nav > ul > li > a {
        font-size: 11px;
        height: 62px; /* 16 + 30 + 12 + 4 */
        line-height: 30px;
        padding: 16px 10px 12px;
        border-left: 0 #fff;
        border-bottom: 4px solid #f6f6f6;
        text-align: center;
        position: relative;
    }
    .pj-header-fixed .pj-header-main-nav > ul > li > a {
        font-size: 11px;
        height: 45px; /* 10 + 25 + 6 + 4 */
        line-height: 25px;
        padding-top: 10px;
        padding-bottom: 6px;
    }
    .pj-header-main-nav > ul > li > a:after {
        content: none;
    }
    .pj-header-main-nav > ul > .pj-header-has-sub > a:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 100%;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 6px solid #fff;
        margin: 4px 0 0 -7px;
        z-index: 2;

        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .pj-header-fixed .pj-header-main-nav > ul > .pj-header-has-sub > a:after {
        content: none;
    }
    .pj-header-main-nav > ul > li > a > span {
        display: inline-block;
        vertical-align: middle;
        line-height: 1.3;
    }
    .pj-header-main-nav > ul > .pj-header-active > a {
        border-bottom-color: #71ba2c;
    }
    .pj-header-main-nav > ul > li:hover > a,
    .pj-header-main-nav > ul > li > a:hover {
        background-color: #71ba2c;
        border-bottom-color: #71ba2c;
        color: #fff;
    }
    .pj-header-main-nav > ul > .pj-header-promotion:hover > a,
    .pj-header-main-nav > ul > .pj-header-promotion > a:hover {
        background-color: #fa493c;
        border-bottom-color: #fa493c;
    }
    .pj-header-main-nav > ul > .pj-header-has-sub:hover > a:after,
    .pj-header-main-nav > ul > .pj-header-has-sub > a:hover:after {
        margin-top: -2px;
    }
    .pj-header-main-nav > ul > li.hovered .pj-header-sub {
        display: block;
    }
    .pj-header-fixed .pj-header-main-nav > ul > li.hovered .pj-header-sub {
        display: none;
    }

    .pj-header-sub {
        display: none;
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;

        -webkit-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        -moz-box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
        box-shadow: 0 2px 5px rgba(153, 153, 153, 0.4);
    }
    .pj-header-sub-inner {
        padding: 30px 0 0;
    }
    .pj-header-sub-container {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    .pj-header-sub-line {
        display: table-row;
    }
    .pj-header-sub-nav,
    .pj-header-sub-center,
    .pj-header-sub-right {
        display: table-cell;
        vertical-align: top;
    }
    .pj-header-sub-nav {
        width: 300px;
    }
    .pj-header-sub-nav > ul {
        list-style: none;
        padding: 0 10px 0 0;
        margin: 0;
    }
    .pj-header-sub-nav > ul > li {
        margin: 0 0 10px;
    }
    .pj-header-sub-nav > ul > li > a {
        display: block;
        font: 500 14px/1.5 'poppins', sans-serif;
        color: #454545;
        text-decoration: none;
        padding: 0 0 0 16px;
        border-left: 4px solid #fff;

        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .pj-header-sub-nav > ul > li > a:before {
        content: "\e918"; /* chevron-right */
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px 0 0;
        text-decoration: none;
        font-size: 0.8em;

        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'pj-icomoon' !important;
        /*noinspection CssUnknownProperty*/
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;

        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .pj-header-sub-nav > ul > .pj-header-all > a {
        text-decoration: underline;
        font-weight: bold;
    }
    .pj-header-sub-nav > ul > .pj-header-all > a:before {
        content: none;
    }
    .pj-header-sub-nav > ul > .pj-header-active > a,
    .pj-header-sub-nav > ul > li > a:hover {
        border-left-color: #71ba2c;
        color: #71ba2c;
    }
    .pj-header-sub-nav > ul > .pj-header-all > a:hover {
        border-left-color: #fff;
    }
    .pj-header-sub-nav > ul > .pj-header-active > a {
        font-weight: bold;
    }

    .pj-header-sub-center {
        width: 360px;
        background: #f6f6f6;
        padding: 20px 0 0 20px;
    }
    .pj-header-sub-center-top {
        width: 340px;
    }
    .pj-header-sub-no-right .pj-header-sub-center {
        width: 640px;
        padding-right: 20px;
    }
    .pj-header-sub-center .pj-product-item-list {
        margin-bottom: 0;
    }
    .pj-header-sub-no-right .pj-header-sub-center .pj-product-item-list {
        width: 520px;
    }
    .pj-header-sub-center .pj-product-item-list > ul > li {
        margin-bottom: 0;
    }
    /* Allow only 2 products max */
    .pj-header-sub-center .pj-product-item-list > ul > li + li + li {
        display: none;
    }
    /* Allow 3 products max when no-right */
    .pj-header-sub-no-right .pj-header-sub-center .pj-product-item-list > ul > li + li + li {
        display: inline-block;
    }
    .pj-header-sub-no-right .pj-header-sub-center .pj-product-item-list > ul > li + li + li + li {
        display: none;
    }
    .pj-header-sub-center-title {
        font: 500 14px/18px 'poppins', sans-serif;
        height: 22px;
        color: #454545;
        text-transform: uppercase;
        margin: 0;
    }
    .pj-header-sub-center-promo {
        margin: 0 0 20px;
    }
    .pj-header-sub-center-promo a {
        display: block;
    }
    .pj-header-sub-center-promo img {
        display: block;
        max-width: 100%;
        height: auto;
        border: 0;
    }

    .pj-header-sub-right {
        border: 20px solid #f6f6f6;
        border-top-width: 42px;
        -webkit-box-shadow: inset 0 0 0 1px #ddd;
        -moz-box-shadow: inset 0 0 0 1px #ddd;
        box-shadow: inset 0 0 0 1px #ddd;
        background: #fff;
        position: relative;
    }
    .pj-header-sub-right-content {
        position: relative;
        padding: 29px 9px 0;
    }
    .pj-header-sub-right-title {
        position: absolute;
        top: -20px;
        left: 5px;
        background: url('../img/brush-dg_120.png') no-repeat;
        width: 120px;
        height: 41px;
        line-height: 41px;
        text-align: center;
        margin: 0;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
    }
    .pj-header-sub-right-title-2 {
        font: 300 22px/1.3 'poppins', sans-serif;
        color: #71ba2c;
        border-bottom: 1px solid #ddd;
        margin: 0 0 20px;
    }
    .pj-header-sub-right-nav {
        padding: 0 5px;
    }
    .pj-header-sub-right-nav > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .pj-header-sub-right-nav > ul > li {
        margin: 0 0 10px;
    }
    .pj-header-sub-right-nav > ul > li > a {
        font: 300 14px/1.5 'popping', sans-serif;
        color: #454545;
        text-decoration: none;
    }
    .pj-header-sub-right-nav > ul > li > a:hover {
        text-decoration: underline;
    }

}

@media (min-width: 1210px) {

    .pj-header-top-wrap {
        height: 163px;
    }
    .pj-header-first-bar {
        padding-top: 0;
    }
    .pj-header-top-nav {
        margin-top: 15px;
    }
    .pj-header-top-nav > ul > li {
        margin-left: 10px;
    }
    .pj-header-top-nav > ul > li > a {
        font-size: 13px;
        padding: 0 10px;
    }

    .pj-header-top-nav-no-selection .pj-header-account-hover-inner:before {
        right: 122px;
    }

    .pj-header-second-bar {
        left: 390px;
    }
    .pj-header-search {
        width: 500px;
    }

    .pj-header-search-results {
        left: 0;
        right: -90px;
    }
    .pj-header-search-results:before {
        left: 15px;
    }

    .pj-header-main-nav > ul > li > a {
        font-size: 14px;
        height: 68px;
        line-height: 36px;
    }
    .pj-header-fixed .pj-header-main-nav > ul > li > a {
        padding-left: 20px;
        padding-right: 20px;
    }
    .pj-header-sub-center {
        width: 610px;
    }
    .pj-header-sub-center-top {
        width: 590px;
    }
    .pj-header-sub-no-right .pj-header-sub-center {
        width: 890px;
    }
    .pj-header-sub-no-right .pj-header-sub-center .pj-product-item-list {
        width: 790px;
    }
    /* Allow only 3 products max */
    .pj-header-sub-center .pj-product-item-list > ul > li + li + li {
        display: inline-block;
    }
    .pj-header-sub-center .pj-product-item-list > ul > li + li + li + li {
        display: none;
    }
    /* Allow 4 products max when no-right */
    .pj-header-sub-no-right .pj-header-sub-center .pj-product-item-list > ul > li + li + li + li {
        display: inline-block;
    }
    .pj-header-sub-no-right .pj-header-sub-center .pj-product-item-list > ul > li + li + li + li + li {
        display: none;
    }

    .pj-header-bottom-slider-inner {
        max-width: 790px;
    }

}