/*
    Theme Name: RAFCART - Multipurpose eCommerce HTML Template
    Author: contact@programmingkit.xyz
    Support: contact@programmingkit.xyz
    Description: Multipurpose eCommerce HTML templete
    Version: 1.0
*/

/* CSS Index
-----------------------------------
    01. Theme default
    02. Header
    03. Navbar
    04. Hero area
    05. Features area
    06. Offer area
    07. Shop category
    08. Product design
    09. Product design 2
    10. Footer
    11. Slider setting
    12. Shop page
    13. Shopping cart
    14. Product view page
    15. Home page 2
    16. Mobile search
    17. New arrivale
    18. My account
    19. Contact us page
    20. About us
    21. Product quick view
    22. Home 3
    23. Messages
-----------------------------------
*/

/* 01. Theme default */
@import 'google-fonts.css';

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    /* color: #2B2D42; */
    color: #000;
    overflow-x: hidden;
}

button:focus,
a:focus,
input:focus,
textarea,
select {
    outline: none;
    /*font-size: 16px;*/
}

a {
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #fd3d57;
}
a:hover {
    color: #f38493;
}
textarea:focus {
    -webkit-box-shadow: 0px 0px 2px #fd3d57ad !important;
            box-shadow: 0px 0px 2px #fd3d57ad !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.text-semibold {
    font-weight: 500 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.text-green {
    color: #08B54C !important;
}

.text-yellow {
    color: #F6BC3E !important;
}

.text-color {
    color: #FD3D57 !important;
}

.bg-color {
    background-color: #FD3D57 !important;
}

.shadow_sm {
    -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
            box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
}

.top_2 {
    top: 2px !important;
}

.text_md {
    font-size: 15px !important;
    line-height: 24px;
}

.text_lg {
    font-size: 16px !important;
}

.text_xl {
    font-size: 18px !important;
}

.text_2xl {
    font-size: 22px !important;
}

.text_xs {
    font-size: 14px !important;
}

.text_p {
    color: #464545 !important;
}

.default_link {
    color: #1d1d1b;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.default_link:hover {
    color: #b19019;
}

.text_black {
    color: #2B2D42;
}

.section_padding {
    padding: 56px 0;
}

.section_padding_b {
    padding-bottom: 46px; 
    margin-top: 1em   
}

.section_padding_t {
    padding-top: 56px;
}
input:focus, textarea:focus {
    -webkit-box-shadow: 0px 0px 2px #fd3d57ad !important;
            box-shadow: 0px 0px 2px #fd3d57ad !important;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

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


/* section title */
.section_title {
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

.section_title h2 {
    font-size: 32px;
    text-transform: uppercase;
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: #fd3d57;
}

h2.section_title_3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: black;
    font-weight: bold;
}

/* 02. Header */
header {
    position: relative;
}

.logo img {
    width: 201px;
}

.search_wrap {
    position: relative;
}

.search_suggest {
    position: absolute;
    left: 0;
    top: 56px;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    border-radius: 0 0 3px 3px;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
}

.search_suggest.active {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.search {
    border: 1px solid #003d5a;
    border-radius: 7px;
    width: 348px;
    height:38px;
}

.search2 {
    border: 1px solid #003d5a;
    border-radius: 7px;
    width: 380px;
    margin-left: 15px;
}

.categorie {
    font-size: 10px !important;
}


.search_category {
    width: 118px;
    border-right: 1px solid #003d5a;
    background: #fff;
    border-radius: 6px 0 0 6px;
}

.search_category select {
    width: 100%;
    border: none;
    padding: 11px 14px;
    font-size: 15px;
}

.search_category select:focus {
    outline: 0;
}

.search_category .nice-select {
    border-radius: 5px;
    font-size: 14px;
    height: 30px;
    line-height: 43px;
    margin-top: 2px;
    padding-left: 5px;
    padding-right: 30px;
    width: 100%;
    border: none;
}

.search_input {
    max-width: 390px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.search_input input {
    width: 100%;
    padding: 5px 20px;
    border: none;
    font-size: 14px;
    border-radius: 7px;
}

.search_input input::placeholder {
    font-size: 14px;
}

.search_input input:focus {
    outline: 0;
}

.search_subimt {
    width: 142px;
}

.search_subimt button {
    border: none;
    background-color: #b19019;
    width: 100%;
    display: block;
    padding: 5px 16px;
    color: white;
    font-size: 11px;
    font-weight: 500;
    border-radius: 0 5px 5px 0;
}

.search_subimt button:hover {
    background-color: #c9a41d;
}

.search_suggest .search_result_product_mobile {
    height: auto;
    padding: 0;
}

a.single_sresult_product:hover {
    background: #f2f0f0;
}

.single_sresult_product:last-child {
    border-bottom: none;
}

.header_icon a.icon_wrp span {
    display: block;
    position: relative;
    font-size: 24px;
    color: #2b2d42;
}

.header_icon a.icon_wrp span.icon img {
    height: 30px;
    width: 30px;
}

.header_icon a.icon_wrp span.icon_text {
    font-size: 11px;
    line-height: 10px;
    margin-top: 4px;
}

.header_icon a.icon_wrp {
    position: relative;
    margin-left: 20px;
    display: block;
    color: #2B2D42;
    padding: 20px 0;
}

.header_icon a.icon_wrp:hover {
    color: #FD3D57;
}

.header_icon a.icon_wrp .pops {
    position: absolute;
    right: -8px;
    top: 13px;
    font-size: 11px;
    background: #b19019;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    color: white;
}

.header_icon a.icon_wrp.wishlist .pops {
    right: 0;
}

/* 03. Navbar */

#navbar {
z-index: 1;

}

nav {
    /*background-color: #2B2D42;*/
    background-color: #1d1d1b;
   /* position: fixed;*/
    width: 100%;
    z-index: 2;
}

.all_category {
    width: 240px;
    /*background-color: #FD3D57;*/
    background-color: #b19019;
    position: relative;
}

.all_category .bars {
    /*padding: 15px;*/
    padding: 19px;
    margin-top:7px;
}

.all_category .bars .icon_text {
    font-size: 14px;
}

.icon_text {
    color: #1d1d1b;
    font-size: 12px !important;
    font-weight: 700;
}


.icon_text2 {
    color: #fff;
    font-size: 12px !important;
    font-weight: 700;
}

.all_category .bars .icon {
    font-size: 18px;
    margin-right: 10px;
}

.nav_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 29px;
}

.nav_bar li {
    position: relative;
}

.nav_bar > li > a {
    display: block;
    color: #e1e1e1;
    text-transform: capitalize;
    margin: 0 10px;
    padding: 15px 6px;
    font-size: 14px;
}

.nav_bar > li:hover > a {
    color: #ffffff;
}

.nav_bar .subnav {
    position: absolute;
    left: 0;
    top: 100%;
    /* min-width: 200px; */
    background-color: #fff;
    padding: 12px 0;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 16px rgb(0 0 0 / 6%);
            box-shadow: 0px 0px 16px rgb(0 0 0 / 6%);
    opacity: 0;
    visibility: hidden;
    margin-top: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 3px;
    min-width: 170px;
}

.single_subnav {
    min-width: 140px;
}

.nav_bar li:hover .subnav {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.nav_bar .subnav li a {
    font-size: 15px;
    display: block;
    padding: 1px 16px;
    color: #2b2d42;
    border-left: 2px solid #fff;
    white-space: nowrap;
}

.nav_bar .subnav li:hover a {
    color: #fd3d57;
}

.nav_bar > li.withsubs > a > span {
    position: absolute;
    top: 15px;
    right: 2px;
    font-size: 13px;
}

.container_navbar {
	width:100%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.hotline {
    margin: 0 10px;
    padding: 1px 16px;
    font-size: 13px;
    wIdth: 400px;
}

.hotline a {
    display: block;
    margin-top: 10px;
    color: rgb(225, 225, 225);
}

.all_category a.lien_niv1 {
    color:inherit;
}

.all_category a.lien_niv2 {
    color:inherit;
    display:inline-block;
}

.all_category a.lien_niv3 {
    color:inherit;
}

.withsubs {
    margin-top: 10px;
}
.sub_categories {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 5px 0;
    top: 100%;
    background-color: #ffffff;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    -webkit-box-shadow: 0 0 5px #00000020;
            box-shadow: 0 0 5px #00000020;
}

.all_category:hover .sub_categories {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.sub_categories .singlecats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3px 15px;
    width: 100%;
    text-decoration: none;
    color: #2b2d42;
    padding-left: 25px;
    border-bottom: 1px dotted #C8C8CE;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sub_categories .singlecats:last-child {
    border-bottom: none;
}

.sub_categories .singlecats .img_wrp {
    width: 45px;
}
.sub_categories .singlecats .img_wrp i {
    font-size: 21px;
    color: #f4cad0;
}
.sub_categories .singlecats .img_wrp img {
    height: 15px;
}

.sub_categories .singlecats span {
    font-size: 10.5px;
    font-weight: bolder;
    line-height: 20px;
    margin-left: -10px;
}

.sub_categories .singlecats:hover {
    background-color: #efefef;
}

.sub_categories .singlecats .wsicon {
    font-size: 14px;
    margin-left: auto;
    margin-right: 2px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.myacc_cont {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 20px 15px;
    border-radius: 3px;
    width: 205px;
    z-index: 2;
    -webkit-box-shadow: 2px 4px 10px #00000020;
            box-shadow: 2px 4px 10px #00000020;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.myacwrap:hover .myacc_cont {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.ac_join p {
    font-family: Poppins;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    font-weight: 500;
}

.account_btn .default_btn {
    padding: 1px 15px;
    font-family: 'Poppins';
    font-size: 9px;
    font-weight: 500;
    min-width: 84px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.ac_links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 7px;
    font-size: 15px;
    color: #1d1d1b;
    padding-left: 32px;
}

.ac_links i {
    position: absolute;
    width: 20px;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.ac_links {
    padding-top: 10px;
}

.ac_links a:hover {
    color: #b19019;
}

.ac_links .myac img {
    top: 5px;
}

/* mega menu */

.mega_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 200px;
    background: #FFFFFF;
    border: 1px solid #E9E4E4;
    border-radius: 5px;
    width: 976px;
    height: 100%;
    padding: 20px;
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sub_categories .singlecats:hover .mega_menu {
    margin-left: 40px;
    opacity: 1;
    visibility: visible;
    cursor: default;
}

.sub_categories .singlecats:hover .wsicon {

}

/*
.single_mega_menu {
    width: 25%;
    padding-left: 8px ;
}
*/

/* STAUL mega menu en 3 colonnes et 4 colonnes de marques (décommenter) */
.single_mega_menu {
    width: 50%;
    padding: 0.25em;
}

.single_mega_menu.desktop {
    width: 75%;
    columns: 3 auto;
}

.single_mega_menu.brnd {
    width: 25%;
}

.mega_menu_wrap h4 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
    font-weight: 500;
}

.mega_categories a {
/*
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
*/
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #1d1d1b;
    line-height: 1.4;
    margin-bottom: 9px;
}

.mega_categories a:hover {
    color: #b19019;
}

.mega_menu_wrap:first-child {
    margin-bottom: 20px;
}

.mega_brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

/*
.mega_brnd_img {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 12px;
}
*/

/* STAUL mega menu 4 colonnes de marques (décommenter) */
.mega_brnd_img {
    width: 25%;
    padding: 0 5px;
    margin-bottom: 12px;
}

.mega_brnd_img img {
    width: 100%;
    height: 42px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-shadow: 0 0 9px #00000014;
            box-shadow: 0 0 9px #00000014;
}

/* 04. Hero area */
.hero_area {
    background-position: center bottom;
    background-size: cover;
    min-height: 520px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.hero_content h1 {
    font-size: 56px;
    line-height: 64px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero_btn {
    margin-top: 40px;
}

.hero_img img {
    width: 100%;
}

.single_hero_slider.bg-1 {
    background: #cccccc;
}

.single_hero_slider.bg-2 {
    background: #7cc8f8ba;
}

.single_hero_slider.bg-3 {
    background: rgba(253, 61, 87, 0.19);
}

/* 05. Features area */

.feature_icon img {
    width: 50px;
    max-height: 45px;
}

.feature_icon {
    margin-right: 24px;
    font-size: 30px;
}

.feature_content h4 {
    font-size: 18px;
    line-height: 24px;
}

.feature_content p {
    font-size: 13px;
    color: #6B6B6B;
    margin: 0;
    line-height: 1;
}

.single_feature {
    min-height: 90px;
    border: 1px solid #1d1d1b;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 4px;
}

/* 06. Offer area */

.offerimg img {
    width: 200px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single_offercard:hover .offerimg img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.single_offercard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #ccdde5;
    padding: 24px 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.single_offercard.bg_2 {
    background: #fffbd5;
}

.txt_promo {
    font-size: 14px;
    color: #000 !important;
    font-weight: normal !important;
}

.offertext .offer_pers {
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #005882;
}

.offertext h4 {
    font-size: 22px;
    line-height: 26px;
    color: #2B2D42;
}

.offertext p {
    font-size: 15px;
    line-height: 16px;
    color: #464545;
    margin-bottom: 20px;
}

.offerimg {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

/* 07. Shop category */
.single_shopbycat {
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.single_shopbycat::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #00000060;
}

.shopcat_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
}

.shopcat_cont .icon {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.shopcat_cont h4 {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}

.single_shopbycat:hover .shopcat_cont .icon {
    opacity: 1;
    margin-left: 8px;
}

/* 08. Product design */
.topariv_img {
    position: relative;
}

.topariv_img img {
    width: 100%;
}

.persof {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #28A745;
    padding: 8px;
    border-radius: 3px;
    font-size: 15px;
    color: #fff;
    line-height: 16px;
    z-index: 1;
}

.adto_wish {
    height: 30px;
    width: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px #0000;
            box-shadow: 0 0 10px #0000;
    font-size: 16px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    color: #2B2D42;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}
.adto_wish2 {
    height: 30px;
    width: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px #0000;
            box-shadow: 0 0 10px #0000;
    font-size: 16px;
    border-radius: 50%;
    position: absolute;
    right: 87px;
    top: 15px;
    color: #fd3d57;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    background-image: url(../img/comparer.png);
    background-repeat: no-repeat;
    background-size: 74%;
    background-position: 43% 62%;
   
}

.adto_wish3 {
    height: 30px;
    width: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px #0000;
            box-shadow: 0 0 10px #0000;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    position: absolute;
    right: 51px;
    top: 15px;
    color: #fd3d57;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
   
   
}

.titre_register {
    text-align: center;
    margin-left: 93px;
    font-size: 21px;
    font-weight: bold;
}
.deja_client {
    text-align: center;
    margin-left: 93px;
    font-size: 21px; 
    font-weight: bold;
}

.pas_encore_client {
    text-align: center;
    margin-left: 93px;
    font-size: 21px; 
    font-weight: bold;
    margin-top: 40px;
}

.img-eye {
    width: 50%;
}

.img_comp {
    width: 80%;
}


.scaling_logo:hover {
        transform: scale(1.2);
}

.scaling_logo {
    transition: transform 330ms ease-in-out;
}


.topariv_cont {
    padding: 16px;
    padding-bottom: 0px !important;
}

.topariv_cont h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
}

.topariv_cont a {
    color: #2B2D42;
}

.topariv_cont a:hover {
    color: #b19019;
}

.topariv_cont p {
    font-size: 11px;
    color: #464545;
    margin-bottom: 10px;
}

.txt-Tab {
    padding-left: 8px;
    color: #1d1d1b !important;
    font-weight: bold;
    margin-bottom: 6px!important;
    font-size: 13px;
}
.txt-Tab2 {
    padding-left: 8px;
    color: #fff !important;
    font-weight: bold;
    margin-bottom: 6px!important;
    font-size: 13px;
}
.reference {
    background-color: #2c2e34;
    padding-left: 8px;
    color: white !important;
    font-weight: bold;
    text-align: center;
}

.reference2 {
    background-color: #2c2e34;
    padding: 0.75em;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    /*width: 73%;*/
}

.datedispo2 {
    text-align: center;
}

.reference3 {
    background-color: #005782;
    padding-left: 22px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    width: 94%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.reference4 {
    background-color: #383838;
    color: #fff;
    padding-left: 22px;
    font-weight: bold;
    font-size: 14px;
    width: 94%;
    padding-top: 10px;
    padding-bottom: 10px;
}



.row {
    display: flex;
  }

.row2 {
    display: block;
  }

.row3 {
    display: flex;
    width: 79%;
    position: relative;
    bottom: -21px;
    left: 335px;
    background-color: white;
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 42px;
    padding-right: 20px;
}

.row4 {
    display: flex;
    position: relative;
    bottom: 25px;
    left: 322px;
    padding: 7px;
    width: 80%;
}


.row5 {
    display: flex;
    width: 84%;
    background-color: #383838;
    padding: 13px;
    padding-bottom: 64px;
    margin-left: 80px;
}

.row6 {
    display: flex;
    width: 79%;
    padding: 7px;
    margin-top: -58px;
    margin-left: 83px;
}


.equipe {
    color: #002E45;
    text-decoration: underline;
    font-size: 12px;
    padding-left: 10px;
}


.equipe2 {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
    padding-left: 10px;
}

.equipe2:hover {
    color: #b19019;
}


.boutton_tab {
    font-size: 12px !important;
}

/* Ajout STAUL */
.boutton_tab:hover {
    color: #1d1d1b;
}

.statut_stock_panier,
.statut_stock_favoris {
	display: inline-block;
	background-color: #f3f3f3;
	color: #000;
	font-weight: bold;
	padding: 5px 10px;
	min-width: 160px;
	text-align: center;
	text-transform: uppercase;
}

.statut_stock_product {
	/*display: inline-block;*/
	background-color: #f3f3f3;
	color: #000;
	font-weight: bold;
    font-size: 18px;
    padding: 0.75em;
	text-align: center;
	text-transform: uppercase;
}

.statut_stock_product_variant {
	/*display: inline-block;*/
	background-color: #f3f3f3;
	color: #000;
	font-weight: bold;
    font-size: 0.75em;
    padding: 0.75em;
	text-align: center;
	text-transform: uppercase;
}

.statut_stock_galerie {
	/*display: inline-block;*/
	background-color: transparent;
	color: #000;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

.statut_stock_favoris.statut_sur_cmd,
.statut_stock_panier.statut_sur_cmd,
.statut_stock_product.statut_sur_cmd,
.statut_stock_product_variant.statut_sur_cmd,
.statut_stock_galerie.statut_sur_cmd {
	background-color: #8ecdf5;
	color: #000;
}

.statut_stock_favoris.statut_dispo,
.statut_stock_panier.statut_dispo,
.statut_stock_product.statut_dispo,
.statut_stock_product_variant.statut_dispo,
.statut_stock_galerie.statut_dispo {
	background-color: #0fbf0f;
	color: #FFF;
}

.statut_stock_favoris.statut_en_transit,
.statut_stock_panier.statut_en_transit,
.statut_stock_product.statut_en_transit,
.statut_stock_product_variant.statut_en_transit,
.statut_stock_galerie.statut_en_transit {
	background-color: #ffff66;
	color: #000;
}

.statut_stock_favoris.statut_arv_encours,
.statut_stock_panier.statut_arv_encours,
.statut_stock_product.statut_arv_encours,
.statut_stock_product_variant.statut_arv_encours,
.statut_stock_galerie.statut_arv_encours {
	background-color: #fca134;
	color: #000;
}
.statut_stock_favoris.statut_epuise,
.statut_stock_panier.statut_epuise,
.statut_stock_product.statut_epuise,
.statut_stock_product_variant.statut_epuise,
.statut_stock_galerie.statut_epuise {
	background-color: #7d211a;
	color: #FFF;
}

 
 .stock {
    background-color: #0fbf0f;
    color: white !important;
    font-weight: bold;
    width: 64%;
    padding-left: 16px;
 }



.sous-titre-tab {
    font-size: 12px;
    font-weight: 100;
}

 .col2 {
    width:44%;
    margin-left:32px;
    padding-right: 18px;
    }
    
    .col4 {
        width:30%;
        margin-top:20px;
    }


    .txt_bold {
        font-size: 16px;
        font-weight: bolder;
    }

    .txt_public {
        font-size: 12px;
        font-weight: normal;
        
    }

    .txt-prix {
        font-size: 32px;
        font-weight: bolder;
        color: #E54C4C !important;
    }

    .txt_descrip_rapide {
        font-weight: normal;
        font-size: 12px;
        text-align: justify;
        margin-top:20px;
    }








    .col3 {
        width:30%;
        margin-left:26px;
        }
        
        .full_atc_btn3 button {
            width: 100%;
            border: 1px solid #1d1d1b;
            background: white;
            border-radius: 3px 3px 3px 3px;
            color: #1d1d1b;
            font-size: 13px;
            font-weight: 600;
            line-height: 15px;
            padding: 4px 4px;
            cursor: pointer;
            text-transform: uppercase;
            transition: .5s;
            -webkit-transition: .5s;
            
            }
            
            .full_atc_btn3:hover button {
	            background: #b19019;
	            color: white;
            }
    



    .full_atc_btn2 button {
        width: 100%;
        border: 1px solid #b19019;
        background: #b19019;
        border-radius: 3px 3px 3px 3px;
        color: #fff;
        font-size: 16px;
        line-height: 19px;
        padding: 8px 0;
        cursor:pointer;
        text-transform: uppercase;
        transition: .5s;
        -webkit-transition: .5s;
        margin-top:19px;
        
    }
    .full_atc_btn3 #btn_acces_compte {
        width: 100%;
        border: 1px solid #b19019;
        background: #b19019;
        border-radius: 3px 3px 3px 3px;
        color: #fff;
        font-size: 16px;
        line-height: 19px;
        padding: 8px 0;
        cursor:pointer;
        text-transform: uppercase;
        transition: .5s;
        -webkit-transition: .5s;
        margin-top:19px;
        
    }
        

.single_toparrival {
    -webkit-box-shadow: 5px 5px 7px -3px rgba(0,0,0,0.24); 
box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.24);
    border-radius: 3px;
    overflow: hidden;
}


.single_toparrival2 {
    
    border-radius: 3px;
    overflow: hidden;
}



.full_atc_btn button {
    width: 100%;
    border: 1px solid #b19019;
    background: #b19019;
    border-radius: 0 0 3px 3px;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    padding: 8px 0;
    text-transform: uppercase;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.voir_produit_a_options_btn {
    width: 100%;
    border: 1px solid rgb(0, 102, 0);
    background: rgb(0, 102, 0);
    border-radius: 0 0 3px 3px;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    padding: 8px 0;
    text-transform: uppercase;
    text-align: center;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.voir_article_solo_btn {
    width: 100%;
    border: 1px solid #DAA520;
    background: #DAA520;
    border-radius: 0 0 3px 3px;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    padding: 8px 0;
    text-transform: uppercase;
    text-align: center;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

/*.full_atc_btn button:hover {
    background-color: transparent;
    color: #FD3D57;
}*/

.topariv_cont .org_price {
    font-weight: 600;
    font-size: 20px;
}

.product_slider_2 .single_toparrival, .single_toparrival2 {
    margin: 0 15px;
}

.product_slider_2 {
    margin-left: -15px;
    margin-right: -15px;
}

/* 09. Product design 2 */

.single_product {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    text-align: center;
    height: 358px;
}

.product_slider .single_product {
    width: 100%;
    margin: 0 15px;
}

.product_img {
    position: relative;
    padding: 20px;
    background: #FBFBFB;
    border-radius: 5px 5px 0 0;
}

.prodcut_hovcont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #e5e5e58c;
    z-index: 1;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.product_img img {
    width: 200px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
}

.product_content {
    padding: 20px 5px;
    padding-top: 30px;
    position: relative;
}

.product_content a {
    text-decoration: none;
    color: #000;
}

.product_content h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.price {
    line-height: 22px;
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.price span.prev_price {
    font-size: 14px;
    color: #687188;
    text-decoration: line-through;
}

.price span.org_price {
    color: #002e45;
    margin-right: 5px;
}

.price span.public_price {
    color: red;
    margin-right: 5px;
}

.price span.dont_ecotaxe {
    color: #002e45;
    margin-right: 5px;
    font-weight: normal;
    font-size: 0.75em;
}

.price span.prix_barre {
	font-weight:normal;
	font-size:12px;
	text-decoration:line-through;
}

.txt_prix {
    margin-bottom: 2px !important;
}

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

.org_price3 {
    color: #fd3d57 !important;
    font-weight: 600;
    font-size: 20px !important;
}

.prodcut_hovcont a {
    margin: 0 8px;
    height: 40px;
    width: 40px;
    background: #fd3d57;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.prodcut_hovcont a:hover {
    background: #2B2D42;
}

.rating_star span {
    font-size: 16px;
    color: #F6BC3E;
}

.rating_count {
    font-size: 14px;
    margin-left: 9px;
    margin-bottom: 0;
    color: #687188;
}

.default_btn {
    border: 1px solid #1d1d1b;
    background: #1d1d1b;
    color: #fff;
    padding: 8px 24px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 15px;
    transition: .5s;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.default_btn:hover {
    background-color:#b19019 ;
    border: 1px solid #b19019;
    color: white;
    cursor: pointer;
}
.default_btn.second {
    background-color: #1d1d1b;
    border: 1px solid #1d1d1b;
    color: #fff;
}

.default_btn.second:hover {
    background:#b19019 ;
    color: #fff;
    border: 1px solid #b19019;
}

.default_btn2 {
    border: 1px solid #b19019;
    background: #b19019;
    color: #fff;
    padding: 8px 24px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 15px;
    transition: .5s;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.default_btn.xs_btn {
    min-width: 80px;
    padding: 6px 15px;

}

.default_btn2.xs_btn {
    min-width: 80px;
    padding: 6px 15px;

}

.default_btn2:hover {
    background-color:#fff ;
    border: 1px solid #fff;
    color: #000;
}


.product_adcart {
    opacity: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 65px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-top: 15px;
}

.single_product:hover .ratprice {
    opacity: 0;
}

.single_product:hover .product_adcart,
.single_new_arrive:hover .prodcut_hovcont {
    opacity: 1;
    margin-top: 0;
}

.single_product:hover .prodcut_hovcont {
    opacity: 1;
}

.product_area {
    padding: 50px 0;
    overflow-x: hidden;
}

/* banner ad */
.offer_banner_area img {
    width: 100%;
   
}

/* 10. Footer */
footer {
    background: #f3f3f3;
    padding: 56px 0;
}

footer.colored {
    background: #fd3d571a;
}

.footer_logo img {
    width: 230px;
}

.footet_text p {
    font-size: 15px;
    line-height: 1.5;
    color: #2B2D42;
    margin-bottom: 0;
    margin-top: 16px;
}

.footer_menu a {
    color: #1d1d1b;
    font-size: 15px;
    display: block;
    text-decoration: none;
    line-height: 24px;
    margin-bottom: 12px;
}

.footer_menu a:last-child {
    margin-bottom: 0;
}

h4.footer_title {
    color: #2B2D42;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 9px;
    text-transform: uppercase;
}

.download_img img {
    width: 150px;
}

.download_img a {
    margin-right: 20px;
}

.footer_social h5 {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer_icon a {
    width: 32px;
    height: 32px;
    font-size: 15px;
    display: block;
    border-radius: 50%;
    margin-right: 12px;
    text-align: center;
    line-height: 32px;
    color: #ffffff;
}

a.facebook {
    background: #3B5998;
}

a.twitter {
    background: #00ACEE;
}

a.instagram {
    background: #D53982;
}

.footer_menu a:hover {
    color: #b19019;
}

.footer_contact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #2B2D42;
    position: relative;
    padding-left: 32px;
    margin-bottom: 13px;
}

.footer_contact p span.txt {
    font-weight: 500;
}

.footer_contact .icn {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
}

.footer_icon {
    margin-top: 6px;
}

form.footernews_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footernews_form button {
    padding: 6px 10px;
    border-radius: 0 5px 5px 0;
    min-width: 105px;
}

.footernews_form input {
    padding: 5px 15px;
    font-size: 13px;
    width: 230px;
    border: 1px solid #c7c7c7;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    background-color: transparent;
    color: #2B2D42;
}

.footernews_form input:focus {
    border-color: #909090;
}

.footernews_form input::placeholder {
    color: #a5a5a5;
}

.footer_newslet h4 {
    font-size: 18px;
    color: #2B2D42;
    margin-top: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

footer.white {
    background: #ffffff;
    border: 1px solid #E9E4E4;
}

/* 11. Slider setting */
.product_slider {
    margin-left: -15px;
    margin-right: -15px;
}

.slick-slide:focus,
.slick-track:focus {
    outline: 0;
}

.banner_slider button.slick-arrow,
.product_slider_2 button.slick-arrow {
    position: absolute;
    z-index: 0;
    font-size: 25px;
    color: #2B2D42;
    top: 50%;
    left: 15px;
    border: none;
    background: transparent;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.banner_slider button.slick-arrow:hover {
    color: #fd3d57;
}

.banner_slider button.slick-next.slick-arrow,
.product_slider_2 button.slick-next.slick-arrow {
    left: auto;
    right: 15px;
}

/* footer copyright */
.copyright_wrap {
    background: #1d1d1b;
    padding: 12px 0;
}

.copyright_text {
    font-size: 16px;
    color: #F9F9F9;
    margin-bottom: 0;
}

.payment_method {
    text-align: right;
}

.payment_method img {
    width: 333px;
    display: inline-block;
}

/* custom checkbox */
.custom_check label {
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}

.custom_check label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #C5C4C4;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.custom_check .check_inp:checked + label:after {
    border: none;
    background-image: url('../images/check.png');
}

.custom_check.check_2 label:after {
    border: none;
    width: 18px;
    background-image: url('../images/checkbox-empty.png');

}

.custom_check.check_2 .check_inp:checked + label:after {
    background-image: url('../images/checkbox.png');
}

.custom_check.radio label:after {
    border: none;
    background-image: url('../images/radio-empty.png');
}

.custom_check.radio .check_inp:checked + label:after {
    background-image: url('../images/radio.png');
}

/* 12. Shop page */
.shop_wrap {
    position: relative;
}

/* shop sidebar */
h4.filter_title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.shop_filter {
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
    margin-bottom: 16px;
}

.filter_list .custom_check {
    margin-bottom: 8px;
}

.filter_list .custom_check:last-child {
    margin-bottom: 0;
}

.custom_check p {
    font-size: 15px;
    line-height: 26px;
}

.view_filter .view_icon {
    font-size: 24px;
    width: 40px;
    height: 32px;
    border: 1px solid #C1C1C1;
    text-align: center;
    border-radius: 3px;
    margin-left: 10px;
    color: #717171;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.view_filter .view_icon.active {
    background-color: #FD3D57;
    border: 1px solid #FD3D57;
    color: #FFFFFF;
}

.sorting_filter .nice-select {
    border: 1px solid #C1C1C1;
    border-radius: 3px;
    width: 210px;
}

button#mobile_filter_btn {
    padding: 7px 10px;
    min-width: 150px;
}

.close_filter {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    color: #fd3d57;
}

/* price range slider */

.price-range-slider {
    width: 100%;
    margin-top: 25px;
}

.ui-widget.ui-widget-content {
    border: none;
    background: #DDDDDD;
    height: 8px;
}

.price-range-slider .range-bar .ui-slider-handle {
    -webkit-box-shadow: 0px 0px 154px rgba(0, 0, 0, 0.22),
    0px 0px 67.1344px rgba(0, 0, 0, 0.1485),
    0px 0px 25.025px rgba(0, 0, 0, 0.11),
    0px 0px 8.90312px rgba(0, 0, 0, 0.0715);
            box-shadow: 0px 0px 154px rgba(0, 0, 0, 0.22),
    0px 0px 67.1344px rgba(0, 0, 0, 0.1485),
    0px 0px 25.025px rgba(0, 0, 0, 0.11),
    0px 0px 8.90312px rgba(0, 0, 0, 0.0715);
    width: 18px;
    height: 18px;
    background-color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle:focus {
    outline: none;
}

.price-range-slider .range-bar .ui-slider-range {
    background-color: #FD3D57;
}

.price-range-slider .range-value {
    margin-top: 16px;
    margin-bottom: 0;
}

.price-range-slider .range-value input {
    border: none;
    font-size: 16px;
    font-weight: 500;
}

/* price-range-slider */

/* size select box */
.single_size_opt label {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border: 1px solid #E9E4E4;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
}

.single_size_opt .size_inp:checked + label {
    border: none;
    background: #fc3d57;
    color: #ffffff;
}

.color_selector .single_size_opt .size_inp:checked + label {
    border: 2px solid #eceef0;
    -webkit-box-shadow: 0 0 0 2px #fd3d57;
            box-shadow: 0 0 0 2px #fd3d57;
}

/* shop products */
.shop_products {
    margin-top: 24px;
}

.shop_products .single_product {
    margin-bottom: 30px;
}

/* pagination design */
.pagination_wrp .single_paginat {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    border: 1px solid #E9E4E4;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.pagination_wrp {
    margin-top: 20px;
}

.pagination_wrp .single_paginat:hover,
.pagination_wrp .single_paginat.active {
    background: #fc3d57;
    color: #fff;
    border: 1px solid #fc3d57;
}

/* list product design */
.single_list_product .product_content {
    padding: 20px 30px 20px 0;
}

.single_list_product .product_content h5 {
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 6px;
}

.single_list_product .price span.org_price {
    font-size: 18px;
}

.single_list_product .price span.prev_price {
    font-size: 16px;
}

.list_product_img img {
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_list_product {
    border: 1px solid #E9E4E4;
    margin-bottom: 30px;
}

p.product_list_desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
}

.list_product_img {
    background: #fafafa;
    min-height: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
}

button.list_product_btn {
    border: 1px solid #FD3D57;
    background: #FD3D57;
    color: #fff;
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: 500;
    min-width: 135px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

button.list_product_btn.disable {
    background: rgba(253, 61, 87, 0.74);
    cursor: not-allowed;
    border-color: rgba(253, 61, 87, 0.74);
}

button.list_product_btn.disable:hover {
    background-color: rgba(253, 61, 87, 0.74);
    color: #fff;
}

button.list_product_btn .icon {
    margin-right: 5px;
}

button.list_product_btn.wish {
    background: transparent;
    color: #FD3D57;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
button.list_product_btn.wish:hover {
    background: #FD3D57;
    color: #fff;

}

button.list_product_btn:hover {
    background: transparent;
    color: #FD3D57;
}

/* 13. Shopping cart */
.shop_cart_title {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 70px;
    background: #E9E4E4;
}

.shop_cart_title.wishlist_ttl span:first-child {
    width: 22%;
}

.shop_cart_title.wishlist_ttl span:nth-child(2) {
    width: 39%;
}

.single_shop_cart,
.cart_summary {
    border: 1px solid #E9E4E4;
    border-radius: 5px;
    padding: 20px;
    padding-bottom: 15px;
}

.single_shop_cart {
    margin-top: 24px;
}

.cart_summary {
    padding-bottom: 15px;
}

.cart_summary h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}

.cartsum_text p {
    margin-bottom: 5px;
}

.cart_img {
    max-width: 150px;
    background: transparent;
    margin-right: 30px;
}

.cart_img img {
    width: 100%;
    max-height: 105px;
    -o-object-fit: contain;
       object-fit: contain;
}

.cart_cont {
    width: 320px;
}

.shop_cart_wrap.wishlist .cart_cont {
    width: 400px;
}

.cart_cont h5 {
    font-size: 17px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 500;
    color: #2B2D42;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cart_cont h5:hover {
    color: #fd3d57;
}

.cart_cont p.price {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fd3d57;
    margin-bottom: 0px;
}

.cart_qnty .cart_qnty_btn {
    font-size: 17px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    border: 1px solid #E9E4E4;
}

.cart_qnty .cart_count {
    font-size: 14px;
    width: 42px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #E9E4E4;
    border-left: 0;
    border-right: 0;
}

.cart_price p {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fd3d57;
}

.cart_remove {
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.cart_remove:hover {
    color: #fd3d57;
}

.cart_qnty_btn:hover {
    background: #dadada;
}

.cart_price {
    min-width: 100px;
    text-align: right;
}

.cart_sum_total p {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.cart_sum_total {
    padding-top: 12px;
    border-top: 1px solid #E9E4E4;
    margin-bottom: 5px;
    margin-top: 4px;
}

.cart_sum_coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.cart_sum_coupon input {
    width: 65%;
    border-radius: 5px 0 0 5px;
    border: 1px solid #E9E4E4;
    font-size: 13px;
    padding: 5px 10px;
}

.cart_sum_coupon button {
    width: 35%;
    border: none;
    background: #fd3d57;
    border-radius: 0 5px 5px 0;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #fd3d57;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cart_sum_coupon button:hover {
    background: transparent;
    color: #fd3d57;
}

.cart_sum_pros button {
    width: 100%;
    border: 1px solid #fd3d57;
    background: #fd3d57;
    text-align: center;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cart_sum_pros {
    margin-bottom: 10px;
}

.cart_sum_pros button:hover {
    background: transparent;
    color: #fd3d57;
}

.wishlist .cart_cont h5 {
    margin-bottom: 0;
}

.cart_cont .instock {
    margin-bottom: 0;
    font-size: 14px;
    color: #464545;
}

.cart_cont .instock span {
    color: #28A745;
}

.cart_cont .instock span.outstock {
    color: #fd3d57;
}

.shop_cart_title.sopcart_ttl span:first-child {
    width: 57%;
}

.shop_cart_title.sopcart_ttl {
    padding-left: 180px;
}

.shop_cart_title.sopcart_ttl span:nth-child(2) {
    width: 22%;
}

/* shop cart content */
.shopcart {
    position: relative;
}

.shopcart_dropdown {
    position: absolute;
    background: #fff;
    right: 0;
    top: 100%;
    z-index: 99;
    padding: 16px;
    width: 486px;
    border-radius: 0 0 3px 3px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cartdrop_img img {
    width: 75px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}

.cartdrop_img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.single_cartdrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-right: 20px;
}

.cart_droptitle {
    padding-bottom: 0px;
    margin-bottom: 12px;
    border-bottom: 1px solid #d8d8d8;
}

.cartdrop_cont {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 16px;
}

span.remove_cart {
    position: absolute;
    right: 0;
    color: #2b2d42;
    cursor: pointer;
}

span.remove_cart:hover {
    color: #fd3d57;
}

.cartdrop_footer .default_btn {
    padding: 6px 8px;
}

.shopcart:hover .shopcart_dropdown {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.mobile_title {
    background: #e64c4c;
    text-align: center;
    color: #fff;
    padding: 14px 0px;
    /* text-transform: capitalize; */
    position: relative;
}

.total_cartdrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d8d8d8;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wishlist .cart_img img {
    width: 80px;
    height: 80px;
}

/* breadcrums */
.breadcrumbs a {
    color: #b19019;
    font-size: 16px;
    position: relative;
    display: block;
    margin-right: 25px;
}

.breadcrumbs {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   
}

.breadcrumbs a:not(.active):after {
    content: '\f105';
    position: absolute;
    right: -17px;
    top: 1px;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 13px;
    color: #2B2D42;
}

.breadcrumbs a.active {
    color: #2B2D42;
    margin-right: 0;
}

/* 14. Product view page */
.single_viewslider img {
    width: 100%;
    border-radius: 2px;
    background-color: #eceef0;
    background-color: #fff;
    /*background-color: #FFF;*/
    height: 460px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_viewslid_nav img {
    width: 100%;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    background: #eceef0;
    /*background-color: #FFF;*/
}

.product_viewslid_nav {
    margin-top: 15px;
}

.single_viewslid_nav {
    padding: 0 7px;
    background-color: #fff;
}

.product_viewslid_nav {
/*
    margin-left: -7px;
    margin-right: -7px;
    */
}

.product_quickview .product_viewslid_nav {
/*
    margin-right: -4px;
    */
}

.product_viewslid_nav button.slick-arrow {
    border: none;
    border-radius: 0;
    top: 50%;
    left: 6px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.32);
            box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.32);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: absolute;
    z-index: 1;
}

.product_viewslid_nav:hover button.slick-arrow {
    opacity: 1;
}

.product_viewslid_nav button.slick-next.slick-arrow {
    left: auto;
    right: 5px;
}

.single_viewslid_nav.slick-current img {
    border-color: #fd3d57;
}

.product_base_info h1 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 10px;
}

.product_top_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product_delevary_info {
    width: 226px;
}

.product_base_info .price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product_base_info .price span.prev_price {
    font-size: 16px;
    font-weight: 500;
}

.product_base_info .rating {
    margin-bottom: 6px;
}

.brand_info {
    margin-bottom: 12px;
    font-size: 16px;
}

.brand_info span {
    margin-right: 10px;
}

.size_selector h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
}

.product_base_info .cart_qnty p {
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 15px;
}

.delivery_opts {
    background: #F1F1F1;
    padding: 18px 15px;
    margin-bottom: 3px;
}

.delivery_opts h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.single_delivery_opt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
}

.delivery_icon img {
    width: 18px;
}

.delivery_icon {
    width: 38px;
}

.delivery_content h5 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 20px;
}

.delivery_content p {
    font-size: 12px;
    margin: 0;
    line-height: 16px;
}

.delivery_cost {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
}

.product_buttons {
    padding: 20px 0;
    border-bottom: 1px solid #E9E4E4;
    margin-top: 6px;
    margin-bottom: 14px;
}

.product_buttons a {
    margin-top: 6px;
}

.product_other_info {
    margin-top: 14px;
}

.product_info_wrapper .share_icons.footer_icon a {
    color: #2B2D42;
    border: 1px solid #E9E4E4;
}

.product_info_wrapper .share_icons.footer_icon a:hover {
    background: #E9E4E4;
}

.product_other_info p {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 26px;
}

.product_other_info p span {
    font-weight: 600;
    margin-right: 10px;
}

.share_icons.footer_icon a {
    height: 32px;
    width: 32px;
    font-size: 16px;
    line-height: 32px;
    margin-right: 12px;
}

.pv_tab_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 32px;
    margin-left:0px;
    /* Commentaire STAUL */
    /*margin-top: 67px;*/
}

.pv_tab_buttons2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 32px;

}

.pv_tab_buttons3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 32px;
    margin-left:20px;
    margin-top: 67px;
}


.pbt_single_btn {
    padding: 10px 15px;
    border: 1px solid #929292;
    border-radius: 5px 5px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 19px;
    font-weight: 500;
    margin-right: 8px;
    cursor: pointer;
    /* Ajout STAUL */
    text-align: center;
}

.pbt_single_btn:hover {
    background-color:#b19019;
}

.pbt_single_btn a {
    color:inherit;
}

.pbt_single_btn.active {
    border-color: #1c1c1a;
    color: #b19019;
    background-color: #E5E7E9;
}

.pbt_single_btn.active:hover {
    background-color:#1c1c1a;
}

.pbt_single_btn.active a {
    color:inherit;
}

.pbt_info_text p {
    font-size: 15px;
    line-height: 1.5;
    color: #393838;
    margin-bottom: 16px;
}

.pbt_info_text {
	margin-left: 2em;
}

.liste_caracteristiques {
    padding-left:2em;
}

.liste_caracteristiques li {
    list-style-type: disc;
    list-style-position: inside;
	text-indent: -1em;
    margin-left: 1em;
}

.tableau_variantes_produit {
	margin-left: 2em;
}
.tableau_variantes_produit ht {
	vertical-align:middle;
}

/* Colonne triée (ASC) : triangle vers le bas */
.tableau_variantes_produit .sorttable_sorted:after {
	content: " ▾";
	font-size: 1.3em;
	color: #b19019;
}
.sorttable_sorted {
	color: #b19019;
}

/* Colonne triée (DESC) : triangle vers le haut */
.tableau_variantes_produit .sorttable_sorted_reverse:after {
	content: " ▴";
	font-size: 1.3em;
	color: #b19019;
}
.sorttable_sorted_reverse {
	color: #b19019;
}

.tableau_variantes_produit .sku_courant td {
	background-color:#b19019;
	color:#FFF;
}

.tableau_variantes_produit .sku_courant td a {
	color:#FFF;
}

.tableau_variantes_produit .sku_courant td .full_atc_btn button {
	background-color:#e64c4c;
}

.tableau_substitution_produit {
	margin-left: 2em;
}

.pbt_info_table {
    margin-top: 24px;
}

.pbtit_single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #B2B2B2;
}

.pbtit_single:not(:last-child) {
    border-bottom: none;
}

.pbtit_single p {
    margin-bottom: 0;
    font-size: 14px;
    -height: 18px;
    padding: 12px 15px;
}

.pbtit_single .specs {
    min-width: 190px;
    border-right: 1px solid #B2B2B2;
}

.pb_tab_content {
    display: block;
    padding-bottom: 3rem;
}

.pb_tab_content.active {
    display: block;
}

.pb_tab_content.qna h4 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0;
}

.pbqna_wrp {
    border-bottom: 1px solid #F0F0F0;
    padding: 16px 0;
}

.single_pbqna {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.pbqna_content h5 {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #393838;
}

.pbqna_content p {
    font-size: 12px;
    line-height: 1.5;
    color: #7D7979;
    margin: 0;
}

.pbqna_icon {
    width: 40px;
}
.pbqna_icon i {
    font-size: 20px;
}
.single_pbqna:first-child {
    margin-bottom: 8px;
}

.pbqna_form textarea {
    width: 100%;
    display: block;
    margin-bottom: 25px;
    border: 1px solid #2B2D42;
    border-radius: 5px;
    min-height: 110px;
    padding: 20px;
}

.pbqna_form {
    margin-top: 24px;
}

.review_rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.total_rating {
    margin-right: 50px;
}

.trating_number .avrage {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    line-height: 41px;
    font-weight: 500;
}

.trating_number .from {
    font-size: 35px;
    line-height: 27px;
    font-family: 'Poppins', sans-serif;
    padding-top: 7px;
    margin-left: 4px;
}

.trating_number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.trating_count {
    color: #9E9EA0;
    font-size: 13px;
    line-height: 18px;
}

.rating_pbox {
    width: 150px;
    height: 8px;
    background: #EFF0F5;
    margin-left: 14px;
    margin-right: 8px;
    border-radius: 2px;
}

.rating_pbox span {
    height: 8px;
    background: #FACA51;
    display: block;
    width: 0;
}

.review_filters {
    width: 160px;
}

.review_filters {
    width: 160px;
}

.review_header {
    padding-bottom: 0px;
    margin-top: 24px;
}

.single_review_wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.review_avatar img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 50%;
}

.review_avatar {
    margin-right: 30px;
}

.single_review_wrp {
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.review_content h5 {
    font-size: 16px;
}

.review_date {
    font-size: 12px;
    color: #A1A2A3;
    line-height: 15px;
    margin-bottom: 10px;
    margin-top: 4px;
}

.review_body p {
    margin-bottom: 15px;
    color: #393838;
    line-height: 1.5;
    font-size: 16px;
}

.review_imgs img {
    width: 70px;
    height: 55px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #A39E9E;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.add_review_form {
    margin-top: 50px;
}

.add_review_form h4 {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.add_review_form .rating_star {
    margin-bottom: 15px;
}

.add_review_form .rating_star span {
    cursor: pointer;
}

.add_review_form textarea {
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    min-height: 120px;
    display: block;
}

.add_review_form .files_inp {
    max-width: 470px;
}

.add_review_form .review_submit {
    margin-top: 30px;
}

/* checkout page design */

.ft_white {
    color: #fff;
}

#souvenir_connexion {
    color: #fff;
}
.single_billing_inp label {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 6px;
}

.single_billing_inp input,
.single_billing_inp textarea {
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 8px 16px;
    border: 1px solid #E9E4E4;
    border-radius: 3px;
    margin-bottom: 5px;
}

.single_billing_inp input.right {
    border: 1px solid #28A745;
}

.single_billing_inp input.wrong {
    border: 1px solid #FB3245;
}

.single_billing_inp label span {
    color: #fd3d57;
}

.single_billing_inp p.inp_err_msg {
    margin-bottom: 0;
    color: #FB3245;
    font-size: 13px;
    line-height: 1.5;
}

.single_billing_inp {
    margin-bottom: 17px;
}

.checkout_order {
    margin-top: 40px;
    border: 1px solid #E9E4E4;
    border-radius: 3px;
    padding: 24px 16px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.checkout_order h4 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
}

.checkout_order h4 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    border-bottom: 1px solid #E9E4E4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.checkorder_cont h5 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}
.checkorder_cont.subtotal-h h5 {
    font-size: 15px;
}
.single_check_order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

.checkorder_cont p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

p.checkorder_qnty {
    margin-left: auto;
    margin-right: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

p.checkorder_price {
    margin-left: auto;
    min-width: 70px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.5;
}

.single_check_order.subs,
.single_check_order.total {
    border-bottom: 1px solid #E9E4E4;
}

.single_check_order.total h5,
.single_check_order.subs h5 {
    font-weight: 600;
    text-transform: uppercase;
}

.single_check_order.total .checkorder_cont h5,
.single_check_order.total .checkorder_price {
    font-size: 18px;
    line-height: 1.5;
}

.checkorder_agree {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.checkorder_agree label {
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkorder_agree input {
    position: relative;
    top: -2px;
    cursor: pointer;
}

/* order complete page */
.order_complete {
    margin-top: 40px;
    text-align: center;
}

.complete_icon img {
    width: 70px;
}

.complete_icon {
    margin-bottom: 25px;
}

.order_complete_content h4 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.order_complete_content p {
    font-size: 16px;
    line-height: 1.5;
}

.order_complete_btn {
    margin-top: 30px;
}

/* payment design */
.payment_method_options {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single_payment_method {
    width: 150px;
    height: 107px;
    border: 1px solid #E9E4E4;
    border-radius: 5px;
    margin-right: 20px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    cursor: pointer;
}

.sp_img {
    height: 69px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.single_payment_method .sp_text {
    font-size: 13px;
    color: #393838;
    font-weight: 500;
}

.single_payment_method.active {
    border: 1px solid #FD3D57;
}

.single_payment_method.active::after {
    content: '\f00c';
    position: absolute;
    right: -8px;
    top: -8px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #fff;
    font-size: 10px;
    z-index: 2;
    background: #FD3D57;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.payment_methods {
    padding: 15px 25px 35px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 58px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 0px 58px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    display: none;
}

.payment_methods.active {
    display: block;
}

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

.payment_method_title h4 {
    margin: 0;
    color: #393838;
    font-size: 16px;
    line-height: 1.5;
}

.payment_method_img img {
    margin-left: 5px;
}

.cash_on_text p {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 15px;
}
/* 15. Home page 2 */

/* home 2 header and nav  */
header.home-2 {
    padding: 12px 0;
}

nav.home-2 {
    background: #003d5a;
    padding: 0;
}

.home-2 .all_category {
   /* background: #2B2D42;
    border-radius: 5px;*/
    background: #005782;
}

.home-2 .all_category .bars {
   /* padding: 10px 15px;*/
}

.home-2 .search_category {
    border-right: 1px solid #2B2D42;
}

.home-2 .search_subimt button {
    background: #2B2D42;
    border-radius: 0 5px 5px 0;
}

.home-2 .header_icon a.icon_wrp {
    color: #fff;
    padding: 12px 0;
}

.home-2 .header_icon a.icon_wrp span {
    color: #fff;
}

.home-2 .header_icon a.icon_wrp .pops {
    background: #2B2D42;
    top: 5px;
}

.home-2 .sub_categories.active {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.home-2 .all_category:hover .sub_categories {
    margin-top: 10px;
}

.home-2 .nav_bar > li > a {
    color: #2b2d42;
    font-weight: 500;
    padding-bottom: 10px;
}

.home-2 .nav_bar {
    margin-left: 65px;
}

.home-2 .nav_bar > li:hover > a {
    color: #fd3d57;
}

.home_2_hero {
    margin-left: 205px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.home_2_hero .hero_content h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 15px;
}

.home_2_hero .hero_content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.home_2_hero .hero_btn {
    margin-top: 30px;
}

.home_2_hero .hero_img img {
    max-height: 280px;
    -o-object-fit: contain;
       object-fit: contain;
}

.home_2_hero .hero_content {
    padding: 113px 0;
    padding-left: 110px;
}

.home-2 .tophead_items .nice-select {
    font-weight: 500;
}

.home-2 .tophead_items .nice-select .current {
    font-size: 14px;
}

.current {
    font-size: x-small !important;
    position: relative;
    bottom: 6px;
}


/* mobile design */
.mobile_logo img {
    width: 120px;
}

.mobile_bottombar .header_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.mobile_bottombar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #cacaca;
    padding: 12px 0px;
    z-index: 8;
}

span.sidebarclose {
    position: absolute;
    right: 15px;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.home_2_hero ul.slick-dots button,
.banner_slider ul.slick-dots button {
    display: none;
}

.home_2_hero ul.slick-dots li,
.banner_slider ul.slick-dots li {
    border: 2px solid #fd3d57;
    background: transparent;
    line-height: 0;
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    margin: 0 2px;
}

.home_2_hero ul.slick-dots li.slick-active,
.banner_slider ul.slick-dots li.slick-active {
    background: #fd3d57;
}

.home_2_hero ul.slick-dots,
.banner_slider ul.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.mobile_bottombar .header_icon a.icon_wrp {
    padding: 0;
}

.banner_slider ul.slick-dots {
    bottom: 25px;
}


/* 16. Mobile search */
.mobile_search_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9;
    padding: 30px;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.mobile_search_bar.active {
    visibility: visible;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}

.mobile_search_text p {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #8a8a8a;
}

.mobile_search_text {
    position: relative;
}

.close_mbsearch {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 20px;
}

.mobile_search_bar form input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #c3c3c3;
    padding: 5px 10px;
    padding-left: 0;
    font-size: 18px;
    color: #2B2D42;
}

.mobile_search_bar form {
    position: relative;
}

.mobile_search_bar form button {
    position: absolute;
    right: 0;
    top: 3px;
    border: none;
    background: transparent;
}

.single_sresult_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
}

.sresult_img {
    width: 90px;
    padding: 10px;
}

.sresult_img img {
    width: 100%;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
}

.sresult_content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #2B2D42;
}

.search_result_product_mobile {
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-top: 16px;
}

.mobile_search_bar form input:focus {
    border-bottom: 1px solid #696969;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

.sresult_content a {
    color: #2B2D42;
}

.sresult_content a:hover {
    color: #fd3d57;
}

.sresult_content {
    padding-left: 8px;
}

/* top ranking */
.section_title_2 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    text-transform: capitalize;
    color: #2B2D42;
    margin-bottom: 30px;
}

.single_topr_title {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 500;
}

.single_top_ranking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
}

.topr_img {
    width: 105px;
    background-color: #F2F0F0;
    position: relative;
    border-radius: 5px;
    padding: 10px;
}

.topr_img img {
    width: 100%;
    height: 75px;
    -o-object-fit: contain;
       object-fit: contain;
}

.topr_img .tag {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 18px;
    background: #fd3d57;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 12px;
    border-radius: 0 5px 0 5px;
}

.topr_content h4 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.topr_content {
    padding-left: 15px;
}

.topr_content .rating_star span {
    font-size: 12px;
    margin-right: 0;
}

.topr_content .rating_count {
    font-size: 12px;
}

.topr_content .price {
    margin-bottom: 0;
    line-height: 1;
}

.topr_content a {
    color: #2b2d42;
}

.topr_content a:hover {
    color: #fd3d57;
}

/* 17. New arrivale */
.single_new_arrive {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.sna_img {
    position: relative;
    background-color: #f3f3f3;
    padding: 30px 20px;
    border-radius: 5px 5px 0 0;
}

.sna_img img.prd_img {
    width: 100%;
    height: 130px;
    -o-object-fit: contain;
       object-fit: contain;
}

.sna_content {
    padding: 20px 20px;
    height: 125px;
    overflow: hidden;
    position: relative;
}

.sna_content a {
    color: #2B2D42;
}

.sna_content a:hover {
    color: #fd3d57;
}

.sna_content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
}

.sna_content .price {
    margin-bottom: 2px;
}

.sna_content .default_btn {
    padding: 7px 15px;
    min-width: 150px;
}

.single_new_arrive:hover .product_adcart {
    opacity: 1;
    margin-top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single_new_arrive .product_adcart {
    left: 20px;
    top: 56px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
}

.single_new_arrive:hover .ratprice {
    opacity: 0;
}

.sna_img .tag {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 10px;
    background: #ED0020;
    border-radius: 5px 0 5px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    z-index: 2;
}

.ratprice {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

/* home 1 account */
.all_category.otherpage .sub_categories_wrp {
    position: absolute;
    width: 100%;
    padding-top: 9px;
}

.all_category.otherpage:hover .sub_categories {
    margin-top: 0;
}


/* download app */
.download_bg {
    background-color: #f3f3f3;
}

.download_cont {
    padding-top: 90px;
    padding-bottom: 105px;
}
.download_left img {
    height: 100%;
    max-height: 450px;
    object-fit: contain;
}
.subscribe_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

form.subscribe_form input {
    width: 100%;
    background: #fff;
    border-radius: 5px 0 0 5px;
    border: 1px solid #fd3d57;
    border-right: none;
    font-size: 14px;
    padding: 11px 20px;
}

.subscribe_form button {
    min-width: 120px;
    background: #fd3d57;
    color: #fff;
    border: 1px solid #fd3d57;
    border-radius: 0 5px 5px 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.download_cont form button:hover {
    background: transparent;
    color: #fd3d57;
}

.download_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 35px;
}

.download_links img {
    width: 120px;
    border-radius: 5px;
}

/* 18. My account */
.account_profile {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 24px;
}

.acprof_img img {
    width: 100%;
    border-radius: 50%;
}

.acprof_img {
    width: 50px;
    padding: 5px;
    border: 1px solid #E9E4E4;
    border-radius: 50%;
}

.acprof_cont {
    padding-left: 16px;
}

.acprof_cont p {
    font-size: 15px;
    margin-bottom: 0;
}

.acprof_cont h4 {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}

.acprof_wrap {
    padding: 24px 16px;
}

.acprof_links a {
    display: block;
    padding-left: 32px;
    font-size: 15px;
    line-height: 22px;
    color: #2B2D42;
    margin-bottom: 8px;
    position: relative;
}

.acprof_links a h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.acprof_links a h4 i {
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    font-size:22px;
}

.acprof_links {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
}

.acprof_links a:last-child {
    margin-bottom: 0;
}

.acprof_links a.active,
.acprof_links a:hover {
    color: #FD3D57;
}

.acprof_links:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.prof_info_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 16px;
}

.prof_info_title h4 {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}

.single_prof_info {
    padding: 24px;
    min-height: 225px;
}

.prof_info_title a {
    color: #FD3D57;
}

.prof_info_title a:hover {
    text-decoration: underline;
}

.prfo_info_cont p {
    margin-bottom: 0px;
}

.prof_recent_order {
    margin-top: 40px;
    padding: 32px 24px;
}

.prof_recent_order h4 {
    font-size: 18px;
    line-height: 21px;
}

.single_prof_recorder {
    border: 1px solid #E9E4E4;
    margin-top: 24px;
    padding: 32px 24px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4] 130px;
    grid-template-columns: repeat(4, 1fr) 130px;
    grid-row-gap: 24px;
    padding-bottom: 22px;
}

.prorder_btn {
    -ms-grid-column: 5;
        grid-column-start: 5;
    -ms-grid-column-span: 1;
    grid-column-end: 6;
    -ms-grid-row-align: center;
        align-self: center;
}

.prorder_img {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.prorder_img img {
    width: 80px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 16px;
}

.prorder_btn a {
    color: #FD3D57;
    font-size: 16px;
    border: 1px solid #FD3D57;
    border-radius: 3px;
    padding: 8px 24px;
    font-weight: 500;
    font-family: 'Poppins';
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.prorder_btn a:hover {
    background: #FD3D57;
    color: #fff;
}
.prorder_txt h5 {
    font-size: 16px;
    margin-bottom: 6px;
}

.prorder_txt p {
    font-size: 15px;
    margin: 0;
}

.profile_hambarg {
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: 22px;
    color: #2b2d42;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border: 1px solid #fd3d57;
    height: 32px;
    width: 32px;
    border-radius: 3px;
    text-align: center;
    line-height: 32px;
}

.profile_hambarg:hover {
    color: #fd3d57;
}

.acprof_info_wrap {
    padding: 32px 24px;
    padding-top: 26px;
}
.acprof_info_wrap.voucher {
    min-height: 400px;
}
.acprof_info_wrap .single_billing_inp .nice_select {
    line-height: 44px;
    height: 44px;
    font-size: 15px;
}

.acprof_info_wrap .single_billing_inp {
    margin-bottom: 20px;
}

.acprof_subbtn {
    margin-top: 12px;
}

.single_billing_inp span.icon {
    position: absolute;
    right: 16px;
    top: 9px;
    font-size: 14px;
    cursor: pointer;
}

/* account order details */
.order_detail_wrapper {
    padding: 32px 24px;
}

h4.od_title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.single_orderdet h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.single_orderdet p {
    margin: 0;
    font-size: 14px;
}

.sprocess_cont {
    max-width: 618px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.single_sproc_cont p {
    margin-bottom: 0;
    margin-top: 2px;
    font-size: 15px;
}

.single_sproc_cont .sproc_cont_dot {
    width: 15px;
    height: 15px;
    background: #4CAE50;
    border-radius: 50%;
}

.single_sproc_cont .sproc_cont_dot.gray {
    background: #E9E4E4;
}

.single_sproc_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.shipping_process {
    margin-top: 70px;
}

.sprosbar {
    position: absolute;
    left: 37px;
    top: 6px;
    right: 35px;
    background: #E9E4E4;
    height: 2px;
    z-index: -1;
}

.sprosbar .sp_fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background: #4CAE50;
}

.sprocess_tooltip {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid #E9E4E4;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 24px;
    margin-top: 32px;
    position: relative;
    background: #fff;
    max-width: 750px;
}

.sprocess_tooltip p {
    margin: 0;
    font-size: 15px;
    color: #464545;
}

.sprocess_tooltip::after {
    position: absolute;
    content: '';
    width: 27px;
    height: 27px;
    border: 1px solid #E9E4E4;
    right: 87px;
    top: -14px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    z-index: -1;
    background: #fff;
}

.orderprod_img img {
    width: 64px;
    height: 64px;
    -o-object-fit: contain;
       object-fit: contain;
}

.order_prodetails {
    margin-top: 70px;
}

.single_orderdet.pdname {
    padding-left: 16px;
}

.padding_default {
    padding: 60px 61px;
    background-color: #383838;
    padding-top: 41px;
}

.txt_register {
    text-align: center; 
    width: 119%; 
    font-size: 12px;
}

.align-self-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
}

.single_orderdet.pdname {
    width: 220px;
}

.nice_select.retorder {
    width: 180px;
    height: 38px;
    line-height: 38px;
}

.nice-select.retorder .option {
    min-height: 38px;
    line-height: 38px;
}

.select_langue_header .option {
	font-size: 11px;
}

.single_retreq p {
    margin-left: 32px;
    line-height: 1.4;
}

.return_requirement {
    margin-top: 32px;
}

/* rating intaraction */
.intaractive_rating .rating-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.intaractive_rating .rating__icon {
    pointer-events: none;
}

.intaractive_rating .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.intaractive_rating .rating__input--none {
    display: none;
}

.intaractive_rating .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 20px;
}

.intaractive_rating .rating__icon--star {
    color: #FACA52;
}

.intaractive_rating .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
}

.intaractive_rating .rating-group:hover .rating__label .rating__icon--star {
    color: #FACA52;
}

.intaractive_rating .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
}

/* write review page */
.reviewdet_textbox {
    font-size: 13px;
    color: #464545;
    line-height: 1.4;
    padding: 8px 16px;
    border: 1px solid #E9E4E4;
    margin: 0;
    border-radius: 3px;
    display: block;
    width: 100%;
    min-height: 70px;
}
.reviewdet_textbox::placeholder {
    color:#cac7c7;
}

.upload_icn img {
    width: 32px;
    display: inline-block;
}

label.upload_img {
    display: block;
    padding: 12px 10px;
    border-radius: 5px;
    border: 1px dashed #FD3D57;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    padding-bottom: 8px;
}

label.upload_img p {
    font-size: 12px;
    color: #464545;
    margin: 0;
}

label.upload_img:hover {
    background: #f9f9f9;
}

.upload_icn {
    margin-bottom: 6px;
}

.img_uproles {
    position: relative;
}

.uproles_content {
    position: absolute;
    width: 330px;
    background: #FFFFFF;
    padding: 12px;
    top: 31px;
    left: -3px;
    border: 1px solid #E9E4E4;
    opacity: 0;
    visibility: hidden;
}

.uproles_content::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #E9E4E4;
    left: 3px;
    top: -5px;
    z-index: -1;
    background: #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.uproles_content h4 {
    font-size: 14px;
    line-height: 14px;
}

.uproles_content ul li {
    font-size: 11px;
    list-style: disc;
    line-height: 15px;
    margin-bottom: 3px;
    color: #464545;
}

.uproles_content ul li:last-child {
    margin-bottom: 0;
}

.uproles_content ul {
    padding-left: 20px;
}

.img_uproles:hover .uproles_content {
    opacity: 1;
    visibility: visible;
}

.paymeth_img img {
    width: 70px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
}

.w-130px {
    width: 130px;
}

/* product slider 2 design */
.product_slider_2 button.slick-arrow {
    left: -38px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    -webkit-box-shadow: 0 0 10px #00000024;
            box-shadow: 0 0 10px #00000024;
}

.product_slider_2 button.slick-arrow:hover {
    background: #1d1d1b;
    color: #fff;
}

.product_slider_2 button.slick-arrow.slick-next {
    right: -40px;
    z-index: 0;
}

/* top header */
.tophead_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.tophead_items a {
    color: #2B2D42;
    font-size: 14px;
    margin-right: 6px;
    text-transform: capitalize;
}

.tophead_items a:hover {
    color: #b19019;
}

.tophead_items .nice-select {
    color: #2B2D42;
    border: none;
    padding: 0;
    padding-right: 30px;
    height: auto;
}

.tophead_items .nice-select .list {
    width: 220px;
}

.tophead_items .nice-select .current {
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    position: relative;
    top: 0px;
}

.tophead_items .nice-select:hover .current {
    color: #b19019;
}

.tophead_items .nice-select:hover:after {
    border-color: #b19019;
}

.tophead_items a span {
    margin-right: 3px;
}

.top_heaeder {
    border-bottom: 1px solid #f1f1f1;
    padding: 2px 0;
}

/* 19. Contact us page */
.contact_banner {
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url('../images/1920x350.png');
    background-size: cover;
    background-position: center;
}

.contact_banner .breadcrumbs {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.contact_banner h1 {
    color: #fff;
}

.contact_banner .breadcrumbs a.active {
    color: #fff;
}

.contact_banner .breadcrumbs a:after {
    color: #fff;
}

.title_2 {
    font-size: 28px;
    margin-bottom: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact_form .footer_contact p {
    color: #464545;
}

.contact_form textarea {
    height: 80px;
}

.title_4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}

/* login */
.bg-facebook {
    background-color: #3B5999;
    border-color: #3B5999;
}

.bg-facebook:hover {
    color: #3B5999;
}

.bg-google {
    border-color: #D85040;
    background-color: #D85040;
}

.bg-google:hover {
    color: #D85040;
}

.dif_regway {
    position: relative;
    text-align: center;
}

.dif_regway .txt {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    text-transform: uppercase;
}

.dif_regway:after {
    z-index: -1;
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #E9E4E4;;
    left: 0;
    top: 13px;
}

/* 404 page */
.page_nfcont h4 {
    font-size: 25px;
}

/* 21. About us */
.team_img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 29, 29, 0.42);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.single_team:hover .team_img:after {
    opacity: 1;
}

.single_team:hover .team_icons {
    opacity: 1;
    bottom: 16px;
}

.team_img {
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    position: relative;
}

.team_icons {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.team_icons a {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    border-radius: 4px;
    margin: 0 4px;
}

.team_cont h5 {
    font-size: 18px;
    color: #2B2D42;
    margin-bottom: 3px;
    margin-top: 20px;
}

.slider-m-margin {
    margin-right: -15px;
    margin-left: -15px;
}

.slider-margin {
    margin-right: 15px;
    margin-left: 15px;
}

/* brand */
.single_brand_slid img {
    width: 180px;
    display: inline-block;
}

/* faq page */
.title_3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0;
}

.accordion-button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}
.accord_wrap {
    padding-bottom: 32px;
}
.accordion-button:not(.collapsed) {
    color: #fd3d57;
    background-color: #FFF;
}

.accordion-button {
    background-color: #FAFAFA;
}

.accordion-button::after {
    content: "\f067";
    background-image: none;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 18px;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    content: '\f068';
}

/* order tracking */
.track_status h4 {
    background: #28A745;
    padding: 8px 0;
    text-align: center;
    color: #fff;
}

.track_path {
    width: 650px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin-top: 32px;
}

.single_track:nth-child(odd) {
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.single_track {
    max-width: 290px;
    padding: 16px;
    position: relative;
    background: #fff;
    border: 1px solid #E9E4E4;
    margin-bottom: 32px;
    width: 100%;
}

.single_track:last-child {
    margin-bottom: 0;
}

.single_track:after {
    content: '';
    position: absolute;
    left: -13px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 24px;
    height: 24px;
    background: white;
    border-left: 1px solid #E9E4E4;
    border-bottom: 1px solid #E9E4E4;
}

.single_track:nth-child(even):after {
    left: auto;
    right: -12px;
    border: none;
    border-right: 1px solid #E9E4E4;
    border-top: 1px solid #E9E4E4;
}

.single_track:before {
    content: '\f00c';
    position: absolute;
    width: 26px;
    height: 26px;
    background: #28a745;
    border-radius: 50%;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 26px;
    left: -48px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.single_track.pending:before {
    content: '\f12a';
    background-color: #ffc107;
}

.single_track:nth-child(even):before {
    left: auto;
    right: -48px;
}

.track_path:after {
    content: '';
    position: absolute;
    left: 50%;
    height: 100%;
    border-right: 1px dashed #979797;
    z-index: -1;
}

/* 21. Product quick view */
.prodquick_wrap {
    width: 100%;
    max-width: 975px;
    padding: 40px 24px;
    border-radius: 3px;
    background: #FFFFFF;
    max-height: 88vh;
    overflow-y: auto;
}

.product_quickview {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
}

.product_quickview2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 1;
    visibility: visible;
}

.product_quickview.active {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 1;
    visibility: visible;
}

.close_quickview {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 17px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #fc3d57;
    color: #fff;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 3px;
}

.close_quickview:hover {
    color: #fff;
}

/* 22. Home 3 */
header.home-3 {
    background: #FD3D57;
}

.home_2_hero_wrp.home-3 {
    padding-top: 4px;
}

.home-3 .search_subimt button {
    background-color: #2b2d42;
}

.home-3 .search_category {
    border-right: 1px solid #2b2d42;
}

.home-3 .header_icon a.icon_wrp span {
    color: #fff;
}

.home-3 .header_icon a.icon_wrp .pops {
    background: #2b2d42;
}

nav.home-3 {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}

.home-3 .nav_bar > li > a {
    color: #2b2d42;
    font-weight: 500;
}

.home-3 .nav_bar > li > a:hover {
    color: #fd3d57;
}

.home-3 .all_category {
    background-color: #2b2d42;
}

.home-3 .nav_bar {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.home-3 .sub_categories.active {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.home-3 .home_2_hero .hero_content h1 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 15px;
}

.home-3 .home_2_hero {
    min-height: auto;
}

.home-3 .home_2_hero .hero_img img {
    padding-top: 35px;
    width: 100%;
    max-height: 400px;
}

.home-3 .hero_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.home-3 .home_2_hero ul.slick-dots {
    bottom: 24px;
}

.single_bannercol:first-child {
    background: #76A4D8;
}

.single_bannercol h4 {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 5px;
}

.single_bannercol {
    padding: 16px;
    padding-bottom: 19px;
}

.single_bannercol h5 {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    text-transform: uppercase;
}

.bancol_img img {
    width: 190px;
    height: 99px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_bannercol:last-child {
    background: #EAF1F9;
}

.single_bannercol:last-child h4,
.single_bannercol:last-child h5 {
    color: #2B2D42;
}

.bancol_img {
    text-align: center;
}

/* flash sale */
.flash_counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.end_in {
    background: #2B2D42;
    border-radius: 3px;
    padding: 4px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    margin-right: 16px;
}

.single_count {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    padding: 8px 5px;
    color: #fff;
    background: #FD3D57;
    border-radius: 3px;
    margin-right: 8px;
    width: 36px;
    text-align: center;
}

.time_sep {
    color: #FD3D57;
    margin-right: 8px;
    font-size: 16px;
    font-weight: 500;
}

.seemore_2 a {
    font-weight: 500;
    font-size: 15px;
    color: #FD3D57;
}

.seemore_2 a span {
    margin-left: 4px;
    font-size: 14px;
}

.home-3 .topariv_img img {
    width: 230px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 24px;
    display: inline-block;
}

.home-3 .topariv_img {
    background: #F7F7F7;
    text-align: center;
}

.qk_view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: #2c2e34;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.qk_view span i {
    font-size: 18px;
    margin-right: 4px;
}
.qk_view span {
    margin-right: 3px;
}

.prod_soh {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(43, 45, 66, 0.48);
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.single_toparrival:hover .prod_soh {
    opacity: 1;
}

.cat2_img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: #F7F7F7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
}

.cat2_img img {
    width: 56px;
    height: 56px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_category_2 {
    padding: 16px;
}

.single_category_2 {
    display: block;
    padding: 16px;
    text-align: center;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 3px;

}

.single_category_2 h5 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 21px;
    color: #2B2D42;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single_category_2:hover h5 {
    color: #fd3d57;
}

/* best selling */
.single_bestprod {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px;
}

.single_bestprod:last-child {
    margin-bottom: 0;
}

.bestprod_img {
    width: 112px;
    padding: 16px;
    background: #F7F7F7;
    border-radius: 8px;
    text-align: center;
}

.bestprod_img img {
    width: 65px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
}

.bestprod_content {
    padding-left: 16px;
}

.bestprod_title {
    padding-bottom: 8px;
    border-bottom: 1px solid #BFBFBF;
    margin-bottom: 24px;
}

/* popup */
.popup_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.popup_wrap.active {
    opacity: 1;
    visibility: visible;
}




.popup_container {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 66px 24px;
    background-image: url(../images/335x400.png);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: 97% center;
    border-radius: 5px;
}

.popup_content {
    width: 100%;
    max-width: 380px;
    text-align: center;
}



.popup_content h2 {
    font-size: 40px;
    line-height: 50px;
}

.close_popup {
    position: absolute;
    right: 13px;
    top: 8px;
    font-size: 20px;
    color: #2B2D42;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.close_popup:hover {
    color: #fd3d57;
}

.popup_content p {
    font-size: 15px;
    line-height: 22px;
}

.catalogue, .piece_detache {
    background-color: white;
    color: #000 !important;
    margin: 15px;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
}

.catalogue:hover, .piece_detache:hover {
background-color: #b19019;
color: #fff !important;
}

/* external css: flickity.css */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .gallery {
    background: #EEE;
  }
  
  .gallery-cell {
    width:36%;
    height: 200px;
    margin-right: 10px;
    background: #8C8;
    counter-increment: gallery-cell;
  }
  
  /* cell number */
  .gallery-cell:before {
    display: block;
    text-align: center;
    content: counter(gallery-cell);
    line-height: 200px;
    font-size: 80px;
    color: white;
  }
  

  .fleche {
    position: absolute;
    top:40%;
    font-size:60px;
    font-weight:bold;
    cursor:pointer;
    left: .5%;
    z-index: 1;
    }
    .fleche:nth-of-type(2) {
    left:98%;
    text-align:right;
    }
    
    section {
    width:98%;
    height:300px;
    margin: 10px auto;
    display: flex;
    justify-content:left;
    overflow-x:auto;
    }
    
    .section_carrousel::-webkit-scrollbar {
    visibility:hidden;
    }
    
    .carrousel_img {
    margin:10px 20px;
    transition: 0.5s;
    }



    .prix_barre {
        font-weight:normal;
        font-size:12px;
        text-decoration:line-through;
        }
        .prix_base {
        font-weight:bold;
        font-size:20px;
        padding-left: 10px !important;
        }
        
        .prix_rouge {
        color:red;
        font-weight:bold;
        padding-left: 86px !important;
        font-size: 22px !important;
        }
        
        td,
        th {
           
            padding: 10px;
        }
        
        
        tr:nth-child(2n) {
            background-color: #eee;
        }
        
        th[scope="col"] {
            color: black;
            text-align:left;
            font-size: 16px;
            font-weight: bold;
        }
        
        
        
        caption {
            padding: 10px;
            caption-side: bottom;
        }
        
        table {
            border-collapse: collapse;
            width: -webkit-fill-available;
        }

        .txt_sous_des {
            font-weight: normal;
            font-size: 12px;
        }

		/* Prix d'une page produit */
        .product_view_wrap .prix_visible th {
            padding: 0.25em;
            text-align:right;
        }
        
        .product_view_wrap .prix_visible td {
            padding: 0.25em;
            text-align:right;
        	font-size: 24px;
        	font-weight: bold;
        }
        
        .product_view_wrap .prix_visible .dont_ecotaxe th {
            padding: 0.25em;
            text-align:right;
        	font-size: 11px;
        	font-weight: normal;
        }
		
		.product_view_wrap .prix_visible .pxbarre {
            padding: 0.25em;
            text-align:right;
        	font-size: 11px;
        	font-weight: normal;
        	text-decoration: line-through;
		}
        
		.product_view_wrap .prix_visible tbody td:nth-child(2n) {
			color: #3080ba;
		}
        
		.product_view_wrap .prix_visible tbody td:nth-child(3n) {
			color: red;
		}
        
		.product_view_wrap .prix_visible tbody tr:nth-child(odd) {
			background-color: #eee;
		}

		/* Prix d'une page produit popup */
        .prodquick_wrap .prix_visible th {
            padding: 0.25em;
            text-align:right;
        }
        
        .prodquick_wrap .prix_visible td {
            padding: 0.25em;
            text-align:right;
        	font-size: 24px;
        	font-weight: bold;
        }
        
        .prodquick_wrap .prix_visible .dont_ecotaxe th {
            padding: 0.25em;
            text-align:right;
        	font-size: 11px;
        	font-weight: normal;
        }
		
		.prodquick_wrap .prix_visible .pxbarre {
            padding: 0.25em;
            text-align:right;
        	font-size: 11px;
        	font-weight: normal;
        	text-decoration: line-through;
		}
        
		.prodquick_wrap .prix_visible tbody td:nth-child(2n) {
			color: #3080ba;
		}
        
		.prodquick_wrap .prix_visible tbody td:nth-child(3n) {
			color: red;
		}
        
		.prodquick_wrap .prix_visible tbody tr:nth-child(odd) {
			background-color: #eee;
		}
		
		
		
		/* Prix des galeries */
        .galerie h4 {
        	min-height: 7em;
        }
        
        .galerie .tarif_revendeur_degressif td,
        .galerie .tarif_revendeur_degressif th {
            font-family: 'Poppins', sans-serif;
            margin:0;
            padding:0;
            line-height: 1.25em;
        }
		
        .galerie .tarif_revendeur_degressif th {
            /*padding: 0.25em;*/
        	font-size: 10px;
        	font-weight: bold;
            text-align:left;
        }
        
        .galerie .tarif_revendeur_degressif td {
            /*padding: 0.25em;*/
            text-align:left;
        	font-size: 20px;
        	font-weight: bold;
        }
        
        .galerie .tarif_revendeur_degressif .dont_ecotaxe th {
            padding-bottom: 0.25em;
            text-align:left;
        	font-size: 10px;
        	font-weight: normal;
        }
		
		.galerie .tarif_revendeur_degressif .pxbarre {
            /*padding: 0.25em;*/
            text-align:right;
        	font-size: 10px;
        	font-weight: normal;
        	text-decoration: line-through;
		}
        
		.galerie .tarif_revendeur_degressif tbody td{
			color: #3080ba;
		}
        
		.galerie .tarif_revendeur_degressif tbody td:nth-child(2n) {
			color: red;
		}
		
		/* Prix des listes de produits */
        .product_list .titre_bloc_page_liste {
        	min-height: 7em;
        }
        .product_list h4 {
        	min-height: 4.95em;
        }
        
        .product_list .tarif_revendeur_degressif td,
        .product_list .tarif_revendeur_degressif th {
            font-family: 'Poppins', sans-serif;
            margin:0;
            padding:0;
            line-height: 1.25em;
        }
		
        .product_list .tarif_revendeur_degressif th {
            /*padding: 0.25em;*/
        	font-size: 10px;
        	font-weight: bold;
            text-align:left;
        }
        
        .product_list .tarif_revendeur_degressif td {
            /*padding: 0.25em;*/
            text-align:left;
        	font-size: 20px;
        	font-weight: bold;
        }
        
        .product_list .tarif_revendeur_degressif .dont_ecotaxe th {
            padding-bottom: 0.25em;
            text-align:left;
        	font-size: 10px;
        	font-weight: normal;
        }
		
		.product_list .tarif_revendeur_degressif .pxbarre {
            /*padding: 0.25em;*/
            text-align:right;
        	font-size: 10px;
        	font-weight: normal;
        	text-decoration: line-through;
		}
        
		.product_list .tarif_revendeur_degressif tbody td{
			color: #3080ba;
		}
        
		.product_list .tarif_revendeur_degressif tbody td:nth-child(2n) {
			color: red;
		}
        
		.product_view_wrap .tableau_variantes_produit thead th:nth-last-child(-n+3){
			text-align:right;
		}
        
		.product_view_wrap .tableau_variantes_produit thead th:nth-last-child(-n+2){
			text-align:right;
		}
        
		.product_view_wrap .tableau_variantes_produit tbody td:nth-last-child(-n+3) {
			color: #3080ba;
			text-align:right;
		}
        
		.product_view_wrap .tableau_variantes_produit tbody td:nth-last-child(-n+2) {
			color: red;
			text-align:right;
		}
        
		.product_view_wrap .tableau_variantes_produit tbody tr.sku_courant td {
			color: white;
		}

        .prix_euro {}

        .titre_qui_sommes_nous {
            text-align: center;
            font-size: 24px;
            font-weight: 900;
            color: #002e45;
        }
	
            .img_hangar {
	
                width:93%;
                margin-bottom: 130px;
            
            }
        
        
        .wrapper {
            width: 102%;
            margin-left: 363px;
            margin-top: 57px;
            
        }

        .txt_expli {
            font-size: 12px;
            text-align: justify;
            line-height: 19px;
            color: #002e45;
            font-weight: 500;
        }

        .bold_txt_expli {
        font-weight: 700;
        text-decoration: underline;
    
        }

        #div_valeur2 {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }


        #div_valeur {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            flex-wrap: wrap;
            width: 116%;
            margin-left: -8%;
        }
        .picto {
            width: 20%;
            margin: auto;
            display: flex;   
        }
        .column8 {
            margin-top: 20px;
            margin-right: 50px;
            margin-left: 50px;
            background-color: #383838;
            padding-top: 27px;
           
        }
        .column8 p {
            margin-top: 20px;
            color: #fff;
            text-align: center;
        }

        .titre_picto {
            color: #002E45;
            margin-top: 20px;
            font-size: 24px;
            font-weight: 900;
            text-align: center;
            /* Ajout STAUL */
            text-transform: uppercase;
        }
    
        .txt-picto {
            color: #002E45;
        }

        .txt_info {
            font-size: 10px !important;
            line-height: 14px !important;
            color: #000 !important;
            font-weight: 500;
        }

        .img_picto {
            margin-left: 5px;
            margin-bottom: 31px;
        }


        .titre_trio {
            font-size: 16px;
            font-weight: 900;
            color: black;
            margin-left: 80px;
        }

        .txt_trio {
            font-size: 12px;
            width: 70%;
            line-height: 19px;
            margin-left: 81px;
            text-align: justify;
        }

        ul.txt_trio {
		    margin-bottom: 1rem;
        }

        .txt_trio li {
		    list-style-type: disc;
		    list-style-position: inside;
		    padding-left: 1em;
        }



        .titre_Pro {
            text-align:  center;
            padding-right: 888px;
                padding-top: 50px;
            }
            
            
            .testbox legend { 
                color: #fff;
                background-color: #006ab6;
                padding: 3px 5px;
                font-size: 20px;
                }
              
                .testbox {
                
                height: inherit;
                
                }
                .testbox form {
                width: 85%;
                padding: 20px;
                border-radius: 6px;
                background: #383838;
                box-shadow: 0 0 5px 0  #202020; 
                margin-left: 8%;
                }

                .testbox2 form {
                    width: 52%;
                    margin-left: 134px;
                    padding: 20px;
                    border-radius: 3px;
                    background: #383838;
                    box-shadow: 0 0 5px 0 #afafaf;
                }
                    
                .testbox2 legend { 
                    color: #fff;
                    background-color: #006ab6;
                    padding: 3px 5px;
                    font-size: 20px;
                    }
                  
                    .testbox2 {
                    /*display: flex;
                    justify-content: left;*/
                    align-items: flex-start;
                    height: inherit;
                    padding: 20px;
                    margin-left: 115px;
                    }
    


                    .testbox2 .item {
                        position: relative;
                        margin: -1px 0;
                        }
                        .testbox2 .item span {
                        color: red;
                        }
                        
                        .testbox2 .item i {
                        right: 2%;
                        top: 30px;
                        z-index: 1;
                        }
                    
                        .testbox2 label {
                            color: #fff;
                            cursor: pointer;
                            font-size: 15px;
                            font-weight: 600;
                            margin-bottom: 5px;
                            padding-top: 12px;
                            margin-left: 45px;
                        }
                      
                        .testbox2 .question span {
                        margin-left: 30px;
                        }
                        .testbox2 .btn-block {
                        margin-top: 30px;
                        text-align: center;
                        margin-bottom: 11px;
                        }
                        .testbox2 button {
                        width: 370px;
                        padding: 10px;
                        border: none;
                        border-radius: 5px; 
                        background: #b19019;
                        font-size: 16px;
                        color: #fff;
                        cursor: pointer;
                        font-weight: 600;
                        }

                        .testbox2 button:hover {
                            background: #fff;
                            color: #000;
                            font-weight: 600;
                            -webkit-transition: .5s;
                            }
                        

                        .pet-select {
                            border: none;
                            font-size: 13px;
                            padding: 12px;
                            background-color: #fff;
                            color: #707070;
                            /*width: 78%;*/
                            /*margin-left: 44px;*/
                        }
                        .testbox2 input {
                            margin-bottom: 10px;
                            border: 1px solid #ccc;
                            border-radius: 3px;
                            }
                            .testbox2 input {
                            width: calc(100% - 10px);
                            padding: 5px;
                            }
                            .testbox2 select {
                            width: 100%;
                            padding: 7px 0;
                           
                            }
                            .testbox2 input[type="date"] {
                            padding: 4px 5px;
                            }


                .banner {
                    position: relative;
                    height: 320px;
                    background-image: url("/uploads/media/default/0001/02/19ea6ba00def11fb8f5113a4d7555a97bd58ce3d.jpeg");  
                    background-size: cover;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    }
                    .banner::after {
                    content: "";
                    background-color: rgba(0, 0, 0, 0.6); 
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    }
                    .testbox input,
                    .testbox textarea {
                    margin-bottom: 10px;
                    border: 1px solid #ccc;
                    border-radius: 3px;
                    width: calc(100% - 10px);
                    padding: 5px;
                    }
                    .testbox input[type="radio"],
                    .testbox input[type="checkbox"]
                    {
                    	width: auto;
                    }
                    
                    .testbox select {
                    width: 100%;
                    padding: 7px 0;
                    background: transparent;
                    }
                    .testbox input[type="date"] {
                    padding: 4px 5px;
                    }
                    .item:hover p, .item:hover i, .question:hover p, .question label:hover, input:hover::placeholder {
                    color:#095484;
                    }
                    .item input:hover {
                    border: 1px solid transparent;
                    box-shadow: 0 0 6px 0 #095484;
                    color:#095484;
                    -webkit-transition: all 0.3s ease-out 0s;
                    }
                    .testbox .item {
                    position: relative;
                    margin: -1px 0;
                    }
                    .testbox .item span {
                    color: red;
                    }
                    
                    .testbox .item i {
                    right: 2%;
                    top: 30px;
                    z-index: 1;
                    }
                
                    .testbox label {
                        color: #fff;
                        cursor: pointer;
                        font-size: 15px;
                        font-weight: 600;
                        padding-top: 12px;
                    }
                  
                    .testbox .question span {
                    margin-left: 30px;
                    }
                    .testbox .btn-block {
                    margin-top: 10px;
                    text-align: center;
                    }
                    .testbox button {
                    width: 370px;
                    padding: 10px;
                    border: none;
                    border-radius: 5px; 
                    background: #b19019;
                    font-size: 16px;
                    font-weight: 600;
                    color: #fff;
                    cursor: pointer;
                    }
                
                    .Compte_pro {
                        text-align: center;
                        color: #fff;
                        font-weight: 600;
                        font-size: 11px;
                        padding-top: 5px;
                    }
                    .Compte_pro span {
                        color: rgb(197, 17, 17);
                    }
                
                #Info_perso {
                    width: 32%;
                }


                .needs-validation .btn {
                    background-color: #e64c4c;
                }
                
                .needs-validation .btn:hover {
                    background-color: #003d5a;
                }
                .input-group button {
                    background-color: #e64c4c;
                }
                
                .input-group button:hover {
                    background-color: #003d5a;
                }
                
                
                    .testbox ::placeholder {
                        color: rgb(153, 153, 153);
                        font-size: 10px
                      }
                    .testbox button:hover {
                    background: #fff;
                    color: #000;
                    font-weight: 600;
                    -webkit-transition: all 0.3s ease-out 0s;
                    }
                    @media (min-width: 568px) {
                    .name-item, .city-item {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    }
                    .name-item input, .city-item input,.name-item div {
                    width: calc(50% - 20px);
                    }
                    .name-item div input {
                    width:97%;}
                    .name-item div label {
                    display:block;
                    padding-bottom:5px;
                    }
                    }


				/* LISTE DES FAVORIS */
                .titre_favoris {
                    text-align: center;
                    font-size: 24px;
                    font-weight: 900;
                    color: #383838;
                    margin: 1em 0;
                }

                .titre2_favoris {
                    text-align: center;
                    font-size: 24px;
                    font-weight: 900;
                    color: #003d5a;
                    margin-top: 50px;
                }
                
                .tab_page_favoris {
                    background-color: #D2D2D2;
                }
                
                .tab_page_favoris a {
                    color: #002E45;
                    font-weight: bold;
                    text-decoration: underline;
                }

                .tab_page_favoris th {
                    background-color: #383838;
                    box-shadow: 0 1px 0 rgb(255 255 255 / 80%) inset;
                    border-top: none;
                    font-weight: bold;
                    font-size: 14px;
                    color: #fff;
                    padding: 10px;
                    text-align: center;
                }

                .tab_page_favoris td {
                    padding: 4px;
                    text-align: center;
                }
                
                .tab_page_favoris .libelle_prix,
                .tab_page_favoris .libelle_sous_total {
                    text-align: right;
                }

                .tab_page_favoris .category_favoris {
                    font-size: 15px;
                    font-weight: bold;
                    height: 17px;
                    text-align: left;
                    background-color: #f6f6f6;
                    padding-left: 15px;
                }
                
                .tab_page_favoris .votre_prix_cmd {
                    text-align: right;
                	padding-right:1em;
                }
                
                .tab_page_favoris .designation {
                    text-align: left;
                	padding-right:1em;
                }

                .tab_page_favoris td:first-child, .tab_page_favoris th:first-child {
                    border-left: none;
                }
                
                .btn_page_favoris {
	                margin: 1.25em 0;
	                text-align: center;
	                width: 370px;
	                padding: 10px;
	                border: none;
	                border-radius: 5px; 
	                background: #b19019;
	                border: 1px #b19019 solid;
	                font-size: 16px;
	                font-weight: 600;
	                color: #fff;
	                cursor: pointer;
                }
                
                .btn_page_favoris:hover {
                    background: #fff;
	                color: #b19019;
                    font-weight: 600;
                    -webkit-transition: all 0.3s ease-out 0s;
	                border: 1px #383838 solid;
                }
                
                .btn_page_favoris.btnCommande {
                    background-color: #e64c4c;
                }
                
                .btn_page_favoris.btnCommande:hover {
	                border: 1px #e64c4c solid;
                    color: #383838;
                }

                .tab_page_favoris tfoot td {
                    line-height: 40px;
                }
                
                .tab_page_favoris .sous_total_cmd {
                	font-weight:bold;
                	font-size:14px;
                	padding-right:1em;
                    text-align: right;
                }
                
                .tab_page_favoris .quantite_total {
                	font-weight:bold;
                    background-color: #f6f6f6;
                	color:#fd3d57;
                	font-size:14px;
                	padding-right:1em;
                    text-align: center;
                }
                
                .tab_page_favoris .grand_total_ht {
                	font-weight:bold;
                    background-color: #f6f6f6;
                	color:#fd3d57;
                	font-size:14px;
                	padding-right:1em;
                    text-align: right;
                }
                
                .tab_page_favoris .libelle_grand_total {
                    background-color: #383838;
                    box-shadow: 0 1px 0 rgb(255 255 255 / 80%) inset;
                    border-top: none;
                    font-weight: bold;
                    font-size: 14px;
                    color: #fff;
                    padding: 10px;
                    text-align: right;
                }
                
                .form_favoris_options_commande {
                	color: #FFF;
                }
                
                .form_favoris_options_commande input,
                .form_favoris_options_commande select,
                .form_favoris_options_commande option
                {
                	background-color: #FFF;
                    width: 100%;
                    padding: 7px 5px;
                    border: 1px solid #ccc;
                    border-radius: 3px;
                }
                
                .form_favoris_options_commande .bloc_adresse {
                	font-size: 0.75em;
                	padding-left: 2em;
                	height: 15em;
                }
                
                /*.form_favoris_options_commande .bloc_adresse input[type="radio"]
                {
                	display: inline;
                }*/
                
                .form_favoris_options_commande #btnSave {
	                border: 1px #e64c4c solid;
                    background-color: #e64c4c;
                }
                
                .form_favoris_options_commande #btnSave:hover {
	                border: 1px #e64c4c solid;
                    color: #383838;
                }
                
				.modal_favoris_options_commande .modal-dialog {
					display: table;
					position: relative;
					margin: 0 auto;
					top: calc(50% - 24px);
				}
				
				.modal_favoris_options_commande .modal-dialog .modal-content {
					background-color: transparent;
					border: none;
				}

				/* PANIER */
                .titre_panier {
                    text-align: center;
                    font-size: 24px;
                    font-weight: 900;
                    color: #383838;
                    margin: 1em 0;
                }

                .titre2_panier {
                    text-align: center;
                    font-size: 24px;
                    font-weight: 900;
                    color: #003d5a;
                    margin-top: 50px;
                }
                
                .tab_page_panier {
                    background-color: #D2D2D2;
                }
                
                .tab_page_panier a {
                    color: #002E45;
                    font-weight: bold;
                    text-decoration: underline;
                }

                .tab_page_panier th {
                    background-color: #383838;
                    box-shadow: 0 1px 0 rgb(255 255 255 / 80%) inset;
                    border-top: none;
                    font-weight: bold;
                    font-size: 14px;
                    color: #fff;
                    padding: 10px;
                    text-align: center;
                }

                .tab_page_panier td {
                    padding: 4px;
                    text-align: center;
                }
                
                .tab_page_panier .libelle_prix,
                .tab_page_panier .libelle_sous_total {
                    text-align: right;
                }

                .tab_page_panier .category_panier {
                    font-size: 15px;
                    font-weight: bold;
                    height: 17px;
                    text-align: left;
                    background-color: #f6f6f6;
                    padding-left: 15px;
                }
                
                .tab_page_panier .votre_prix_cmd {
                    text-align: right;
                	padding-right:1em;
                }
                
                .tab_page_panier .designation {
                    text-align: left;
                	padding-right:1em;
                }

                .tab_page_panier td:first-child, .tab_page_panier th:first-child {
                    border-left: none;
                }
                
                .btn_page_panier {
	                margin: 1.25em 0;
	                text-align: center;
	                width: 370px;
	                padding: 10px;
	                border: none;
	                border-radius: 5px; 
	                background: #b19019;
	                border: 1px #b19019 solid;
	                font-size: 16px;
	                font-weight: 600;
	                color: #fff;
	                cursor: pointer;
                }
                
                .btn_page_panier:hover {
                    background: #fff;
	                color: #b19019;
                    font-weight: 600;
                    -webkit-transition: all 0.3s ease-out 0s;
	                border: 1px #383838 solid;
                }
                
                .btn_page_panier.btnCommande {
                    background-color: #e64c4c;
                }
                
                .btn_page_panier.btnCommande:hover {
	                border: 1px #e64c4c solid;
                    color: #383838;
                }

                .tab_page_panier tfoot td {
                    line-height: 40px;
                }
                
                .tab_page_panier .sous_total_cmd {
                	font-weight:bold;
                	font-size:14px;
                	padding-right:1em;
                    text-align: right;
                }
                
                .tab_page_panier .quantite_total {
                	font-weight:bold;
                    background-color: #f6f6f6;
                	color:#fd3d57;
                	font-size:14px;
                	padding-right:1em;
                    text-align: center;
                }
                
                .tab_page_panier .grand_total_ht {
                	font-weight:bold;
                    background-color: #f6f6f6;
                	color:#fd3d57;
                	font-size:14px;
                	padding-right:1em;
                    text-align: right;
                }
                
                .tab_page_panier .libelle_grand_total {
                    background-color: #383838;
                    box-shadow: 0 1px 0 rgb(255 255 255 / 80%) inset;
                    border-top: none;
                    font-weight: bold;
                    font-size: 14px;
                    color: #fff;
                    padding: 10px;
                    text-align: right;
                }
                
                .form_panier_options_commande {
                	color: #FFF;
                }
                
                .form_panier_options_commande input,
                .form_panier_options_commande select,
                .form_panier_options_commande option
                {
                	background-color: #FFF;
                    width: 100%;
                    padding: 7px 5px;
                    border: 1px solid #ccc;
                    border-radius: 3px;
                }
                
                .form_panier_options_commande .bloc_adresse {
                	font-size: 0.75em;
                	padding-left: 2em;
                	height: 15em;
                }
                
                /*.form_panier_options_commande .bloc_adresse input[type="radio"]
                {
                	display: inline;
                }*/
                
                .form_panier_options_commande #btnSave {
	                border: 1px #e64c4c solid;
                    background-color: #e64c4c;
                }
                
                .form_panier_options_commande #btnSave:hover {
	                border: 1px #e64c4c solid;
                    color: #383838;
                }
                
				.modal_panier_options_commande .modal-dialog {
					display: table;
					position: relative;
					margin: 0 auto;
					top: calc(50% - 24px);
				}
				
				.modal_panier_options_commande .modal-dialog .modal-content {
					background-color: transparent;
					border: none;
				}
                
                .finalisation-commande {
                	width: 33%;
                	margin-left: auto;
                	margin-right: auto;
                	font-size: 1.25em;
                }

                .bloc_stock {
                    background-color: #D2D2D2 !important;

                }

                .pile {
                    background: #f6f6f6;
                }

                .cap {
                    text-transform: uppercase;
                }

                tfoot {
                    display: table-footer-group;
                    vertical-align: middle;
                    border-color: inherit;
                }

                table#dir_page_list {
                    background-color: #ffffff;
                    border-left: 1px solid #7f8698;
                    border-right: 1px solid #7f8698;
                    border-bottom: 1px solid #7f8698;
                    font-size: 11px;
                    height: 26px;
                    line-height: 23px;
                }

                table#dir_page_list thead tr th.header_generique {
                    border-left: 1px solid #7f8698;
                    border-right: 1px solid #7f8698;
                    border-bottom: 1px solid #7f8698;
                    border-top: 1px solid #7f8698;
                    padding-top: 6px;
                    padding-left: 3px;
                    padding-right: 3px;
                    font-size: 11px;
                }

                .header_generique {
                    font-size: 14px;
                    font-weight: bold;
                    color: #1c1c1a;
                    padding-top: 10px;
                    text-align: center;
                    border-left: 1px solid #7f8698;
                }

                table#dir_page_list tbody tr td {
                    border-left: 1px solid #7f8698;
                    border-right: 1px solid #7f8698;
                    border-bottom: 1px solid #7f8698;
                    padding-top: 6px;
                    padding-left: 3px;
                    padding-right: 3px;
                }

                table#dir_page_list tbody td a:hover {
                    
                    text-decoration: underline;
                }

                table#dir_page_list tbody td a {
                    color: #383838;
                    font-size: 16px;
                }

                table#dir_page_list th.header_generique a:hover {
                    text-decoration: underline;
                }

                table#dir_page_list th.header_generique a {
                    color: #383838;
                    font-size: 16px;
                }

                div#pre_entete_commandes,
                div#pre_entete_livraisons,
                div#pre_entete_factures,
                div#pre_entete_reliquats {
                    background: none repeat scroll 0 0 #F6F6F6;
                    border-top: 1px solid #7F8698;
                    border-left: 1px solid #7F8698;
                    border-right: 1px solid #7F8698;
                    border-bottom: 1px solid #7f8698;
                    font-size: 11px;
                    height: 35px;
                    line-height: 23px;
                    padding-left: 20px;
                    padding-top: 6px;
                }
                
                div#pre_entete_outils {
                    background: none repeat scroll 0 0 #F6F6F6;
                    border-top: 1px solid #7F8698;
                    border-left: 1px solid #7F8698;
                    border-right: 1px solid #7F8698;
                    border-bottom: 1px solid #7f8698;
                    font-size: 11px;
                    height: 75px;
                    line-height: 23px;
                    padding-left: 20px;
                    padding-top: 6px;
                }
                
				.modal_historique_lignes_commandes_detail .modal-dialog {
					/*display: table;*/
					/*position: relative;*/
					margin: auto;
					top: 50%;
				}
				
				.modal_historique_lignes_commandes_detail .modal-dialog .modal-content {
					background-color: #FFF;
					padding: 2em;
					margin: 2em;
					border: 1px bold black;
				}
				
				.modal_historique_lignes_commandes_detail .table {
					margin: 2em;
				}

                .nbe_commandes_page {
                    float: left;
                    font-weight: bold;
                    margin-right: 1em;
                }

                select:not(:-internal-list-box) {
                    overflow: visible !important;
                }

                option {
                    font-weight: normal;
                    display: block;
                    white-space: nowrap;
                    min-height: 1.2em;
                    padding: 0px 2px 1px;
                }

                .pagination {
                    text-align: right;
                }

                .bloc_pagination_liste_produits .compteur_resultat_recherche {
                    float: left;
                    font-weight: bold;
                    margin-right: 1em;
                }

                .bloc_pagination_liste_produits .filtre_categorie,
                .bloc_pagination_liste_produits .filtre_marque,
                .bloc_pagination_liste_produits .tri,
                .bloc_pagination_liste_produits .nbe_pduits_page,
                .bloc_pagination_liste_produits .pagination {
                    float: left;
                    /*font-weight: bold;*/
                    margin-right: 1em;
                }
                
                .bloc_pagination_liste_produits .pagination .lien_precedant {
                    float: left;
                    font-weight: bold;
                    margin-right: 1em;
                }
                
                .bloc_pagination_liste_produits .pagination .lien_suivant {
                    float: left;
                    font-weight: bold;
                    margin-left: 1em;
                }

                .bloc_pagination_liste_produits input,
                .bloc_pagination_liste_produits select {
                	margin-left: 0.5em;
                	margin-right: 0.5em;
                	margin-bottom: 0.5em;
                }

                .bloc_pagination_historique .compteur_resultat_recherche,
                .bloc_pagination_historique .filtre_categorie,
                .bloc_pagination_historique .filtre_marque,
                .bloc_pagination_historique .tri,
                .bloc_pagination_historique .nbe_pduits_page,
                .bloc_pagination_historique .pagination {
                    float: left;
                    font-weight: bold;
                    margin-right: 1em;
                }

                .bloc_pagination_historique input,
                .bloc_pagination_historique select {
                	margin-left: 0.5em;
                	margin-right: 0.5em;
                }

                table {
                    border-collapse: collapse;
                    border-spacing: 0;
                    width: 100%;
                }

                table#commandes,
                table#livraisons,
                table#factures,
                table#reliquats {
                    background-color: #ffffff;
                    border-left: 1px solid #7f8698;
                    border-right: 1px solid #7f8698;
                    border-bottom: 1px solid #7f8698;
                    font-size: 11px;
                    height: 26px;
                    line-height: 23px;
                }

                table {
                    border-collapse: collapse;
                    border-spacing: 0;
                    width: 100%;
                }

                table#commandes thead tr th.header_generique,
                table#livraisons thead tr th.header_generique,
                table#factures thead tr th.header_generique,
                table#reliquats thead tr th.header_generique {
                    border-left: 1px solid #7f8698;
                    border-right: 1px solid #7f8698;
                    border-bottom: 1px solid #7f8698;
                    border-top: 1px solid #7f8698;
                    padding-top: 0.5em;
                    padding-left: 1em;
                    padding-right: 1em;
                    font-size: 11px;
                    font-size: 1.1em;
                }
                
                table#commandes td,
                table#commandes th,
                table#livraisons td,
                table#livraisons th,
                table#factures td,
                table#factures th,
                table#reliquats td,
                table#reliquats th
                {
                    border: 1px solid #7f8698;
                }
                
                table#commandes th,
                table#livraisons th,
                table#factures th,
                table#reliquats th
                {
                    background: #e6e6e6;
                }
                
                #paginationbasdepage_commandes,
                #paginationbasdepage_livraisons,
                #paginationbasdepage_factures,
                #paginationbasdepage_reliquats {
                    background: none repeat scroll 0 0 #f6f6f6;
                    border-bottom: 1px solid #7f8698;
                    border-left: 1px solid #7f8698;
                    border-right: 1px solid #7f8698;
                    font-size: 11px;
                    height: 33px;
                    line-height: 23px;
                    padding-left: 20px;
                    padding-top: 5px;
                    margin-bottom: 150px;
                }

                .nbe_commandes_page {
                    float: left;
                    font-weight: bold;
                    margin-right: 1em;
                }

            .picto_new_univ {
                padding-bottom: 5px;
                padding-left: 9px;

            }

            .picto_menu {
                
                    width: 70%;
                    height: 8px !important;
                    margin-left: -6px;
                }

                .picto_menu2 {
                
                    width: 48%;
                    height: 8px !important;
                    margin-left: -2px;
                }

            .bloc_sous_expert {
                background-color: #383838;
                color: #fff;
            }

            .txt_univers {
                text-align: center;
                color: white;
                font-size: 19px;
                padding-top: 8px;
                font-weight: 600;
                margin-bottom: 5px;

            }

            .img_expert {
                width: 46% !important;
                padding-top: 13px;
                margin-left: -15px;
            }

            #creation_compte_pro {
                font-size: 36px;
                color:#0e3248;
                font-weight: 700; 
                text-align: center;
            }

            #txt_compte_pro {
                font-size: 13px;
                font-weight: 500; 
                text-align: center;
            }

            .btn_valider:hover {
                background: #002E45;
                transition: .5s;
            -webkit-transition: .5s;
            }

            .titre_page {
                text-align:center; 
                margin-bottom:20px;
                font-size:32px;
            }



            #btn_co {
                width: 58%; 
                margin-left: 403px; 
                margin-right: 63px;
            }

            #btn_insc {
                width: 58%; 
                margin-right: 395px;
            }

/***********************************************************************************************************************/

.legende {
    text-align: center;
    margin-top: 2px;
    font-size: 12px;
    margin-right: 7px;
}

.legende2 {
    text-align: center;
    margin-top: 2px;
    font-size: 12px;
    margin-right: 174px;
}



.img_bandeau {
	
	width:100%;
	margin-top:50px;
}



/* Ajout STAUL */
.bandeau { 
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    background-image: url("../img/img_bandeau.jpg");
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}

/* Ajout STAUL */
.img_titre {
	margin-top: 140px;
	width: 100%;
}

/* Ajout STAUL */
.img_titre p {
    opacity: 0.8;
    background-color: black;
    color: white;
    font-size: 20px;
    text-align: center;
}



/* Image hangar et texte 1*/
.img_hangar {
	
    width:93%;
    margin-bottom: 130px;

}


.wrapper2 {
    width: 67%;
    margin-left: 331px;
    
}


.column p {
    width: 86%;
    font-size: 12px;
    text-align: justify;
    line-height: 19px;
    color: #383838;
    font-weight: 500;
	
}

.lien-site {
    color: #b19019;
    font-weight: 700;
}
.column2 {
	
    margin: auto;
	float: left;
}

.search_category {
    display: none;
}

/* 23. Messages */

#messages {
	text-align: center;
}
 