/*==== Changes =====*/
:root {
    /* colors */
    --wp-blue: #3e66ff;
    --wp-blue-lite: #d3dcff;
    --wp-blue-bold: #3e66ff;
    --text-color: #1e1e1e;
    --wp-yellow: #ffc600;
    --wp-danger: #ec0c01;
    --wp-yeelow-bold: #faa100;
    --wp-orange : #d97904;
    /* background */
    --wp-bg-danger-lite: #ffbebe;
    --wp-bg-yellow-lite: #ffeeaf;
    --wp-bg-blue-lite: #c0daff;
    --wp-bg-success-lite: #c6ffc5;
    --wp-body: #eeeeee;
    --wp-badge-danger: var(--wp-danger);
    --wp-badge-yellow: var(--wp-yeelow-bold);
    --shadow : rgba(0, 0, 0, .15) 0 3px 6px 0;
}

/* wizard */
.content{
    display: none;
}
/* end */

/* previsualisation logo et cover */
#logo,
#cover {
    border: 2px dashed gray;
    padding: 10px;
    height: 200px;
    border-radius: 10px;
}

#coverContainer {
    max-height: 120px !important;
    /* max-width: 140px !important; */
}

#logoContainer img,
#coverContainer img {
    height: 130px;
    width: 100%;
    object-fit: contain;
}

/* fin */

 #drop-zone {
    background: white;
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}
.media-container {
    /* height: 100px; */
    z-index: 1000;
    margin-right: 18px;
    margin-bottom: 5px;
    /* display: block; */
    /* align-items: center;
    justify-content: center; */
    /* overflow: hidden; */
}
.preview-media {
    max-width: 100px;
    max-height: 100px;
    border-radius: 5px;
    margin: 4px;
    object-fit: cover;
}

.dropdown-toggle::after {
    display: none !important;
}
.custom-image {
    width: 100px !important;
    height: 100px !important;
    overflow-y: hidden;
    object-fit: cover;
}
.media{
    width: 100px;
    height: 100px;
    /* overflow-y: hidden; */
    object-fit: cover;
}

/* preloader.css */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Couleur de fond du preloader */
    z-index: 9999;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    /* Couleur des bordures du spinner */
    border-top: 4px solid #fff;
    /* Couleur de la pointe du spinner */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    /* Animation de rotation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*fin prealoder*/

.select2-container .select2-selection--single {
    height: 39px !important;
    border: 2px solid #c4c4c4 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}

.nav-tabs {
    border-bottom: 0 !important;
}

* {
    box-sizing: border-box;
}
html,
body {
    font-family:  sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 400 !important;
    font-size: 16px;
    color: var(--text-color);
}

/*======= Custom elementsclasses =======*/
.modal{
    background-color: rgba(0, 0, 0, 0.631) !important;
}
.modal-header{
    background-color: #ffecd9;
}.modal-title{font-weight: 600 !important; text-transform: uppercase;}
.shadow-none{
    box-shadow: none !important;
}
.absolute-link{
    position: absolute;
    height: 100%;
    width:80%;
    margin: auto;
    left:-1%;
    right:-1%;
    z-index: 5;
}
.border-radius{
    border-radius: .25rem !important;
}
.mt-70{
    margin-top: 70px !important;
    padding-bottom: 60px !important;
}
.no-padding {
    padding: 0 0 !important
}
.small{font-size: .68rem !important;}
.style-none{
    list-style: none;
    text-decoration: none;
}
.font-one{
    font-family: sans-serif !important;
}
.font-two{
    font-family:  sans-serif !important;
}
.fw-300{font-weight: 300 !important;}
.fw-350{font-weight: 350 !important;}
.fw-400{font-weight: 400 !important;}
.fw-450{font-weight: 450 !important;}
.fw-500{font-weight: 500 !important;}
.fw-550{font-weight: 550 !important;}
.fw-600{font-weight: 600 !important;}
.fw-700{font-weight: 700 !important;}
.fw-900{font-weight: 900 !important;}
.text-orange{
    color: var(--wp-orange) !important;
}
.section-padding{
    padding: 25px 0 15px 0;
}
.shadow-sm{
    box-shadow: var(--shadow) !important;
}
.text-orange:hover{
    color: var(--text-color) !important;
}
.pr-0{
    padding-right: 0px;
}
.pr-l{
    padding-left: 0px;
}
.text-justify{text-align: justify !important;}
.btn-blue {
    background-color: var(--wp-blue);
    color: white;
}
.btn-blue-lite {
    background-color: var(--wp-blue-lite);
    color: white;
}
.btn-danger {
    background-color: var(--wp-danger);
    color: white;
}
.btn-yellow {
    background-color: var(--wp-yellow);
    color: rgb(0, 0, 0);
}
.btn-yellow-bold {
    background-color: var(--wp-yeelow-bold);
    color: rgb(0, 0, 0);
}
.bg-orange{
    background-color: var(--wp-orange);
    color: white;
}
.bg-blue{
    background-color: var(--wp-blue);
    color: white;
}
.bg-flat-orange{
    background-color:#fff2e5;
    color: #e3780d;
}
.bg-body {
    background-color:#f6f6f6 !important;
}
/* Form elements */
.form-check-input {
    cursor: pointer;
    box-shadow: none !important;
}
.form-check-input:checked {
    background-color: var(--wp-orange);
    border-color: var(--wp-orange);
    box-shadow: none !important;
}
input::placeholder{color: #afafaf;font-weight: 300 !important; font-family: "Outfit"; font-size: .98rem;}
.form-control {
    display: block;
    width: 100%;
    padding: .325rem .75rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #c4c4c4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus{
    border-color: var(--wp-blue);
    box-shadow: none !important;
    outline:  none;
    color: var(--wp-blue);
}
.form-control:focus::placeholder{    color: var(--wp-blue);}
/* Welcome page */
.welcome-svg-box{max-width: 200px;
margin: auto;
}
/* Login page */
.separator{
    display: inline-block;width: 100%;height: 1px;background-color: #ababab;
}
.v-text{position: absolute;display: inline-block; left: -1px; right: -1px; background-color: rgb(255, 255, 255); padding: 2px 6px; width: 40%; font-size: .8rem; margin: auto; top: 5px;text-align: center;color: #7c7c7c;}
/* Notification page */
.notification-box{
    position: relative;
    margin: auto; width: 100%;
    background-color: #fff;
    border: 1px solid #f7f7f7;
}
.icon-box{height: 120px;width: 120px;border-radius: 50%; display: flex;align-items: center;justify-content: center;font-size: 95px; margin-bottom: 25px;}
.notification-text{color: #4a4a4a; font-size: 1.1rem; margin: 18px auto;}
.icon-box.success {color: #48b960 !important;}
.icon-box.error {color: #da5b5b !important;}
/* Create shop age */
.bg-style{
    background-image: url(../images/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 50;
}
.bg-style::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;top: 0;
    background-color: #1b42dfcb;
    z-index: -1;
}
/* Header */
/*======= Header custom styles ======*/
header {
    position: fixed !important;
    z-index: 999;
    top: 0;
    width: 100%;
    left: 0;
    background-color: #fff;
    height: 70px;
}
header.fixed{
    box-shadow: var(--shadow) !important;
}
.navbar-content {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    -moz-box-pack: justify;
    justify-content: space-between;
 }
 
.navbar-left {
    width: 35%;
    display: flex;
    align-items: center;
}
.header-search {
    display: none;
}

.navbar-right {
    width: 65%;
}
.navbar-right .right-inner {
    height: 100%;
}
.header-search {
    width: 80%;
    padding-left: 20px;
}
.header-search input.form-control {
    border-radius: 4px !important;
}
.header-search .btn {
    padding: .64rem .75rem !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    font-size: .84rem;
    font-weight: bold;
}
@media screen and (min-width: 860px) and (max-width:1080px) {
    .navbar-right {
        width: 75%;
    }
    .navbar-left {
        width: 25%;
    }
}
@media screen and (min-width: 1080px) and (max-width:1398px) {
    .navbar-right {
        width: 75%;
    }
    .navbar-left {
        width: 25%;
    }
}
@media screen and (min-width: 1398px) {
    .header-search {
        width: 80%;
        display: inline-block;
    }
    .navbar-left {
        width: 40%;
    }
    .navbar-right {
        width: 60%;
    }
}
@media screen and (max-width: 768px) {
    .header-search{
        width: 100%;
        padding-left: 0px;
    }
    .header-search .btn{
        padding: .64rem .75rem !important;
        border-radius: 4px !important;
        text-transform: uppercase;
        font-size: .75rem;
        font-weight: bold;
    }
}
.only-desktop{display: none;}
.only-mobile{display: none;}
@media screen and (min-width: 768px) {
    .only-desktop{display: inline-block;}
}
@media screen and (max-width: 768px) {
    .only-mobile{display: initial;}
}
/* Logo */
.nav-logo {
    display: flex;
    padding-right: 16px;
    -moz-box-align: center;
    align-items: center;
    height: 100%;
    width: 150px;
}
.nav-logo>.logo {
    position: relative;
    display: block;
    text-align: center;
    max-width: 100%;
    height: auto;
}
.nav-logo>.logo>img {
    position: relative;
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    margin-top: -5px;
}
/* Navbar right */
.navbar-right .notification-icon{
    font-size: 21px;
    color: #343434
}
.navbar-right .dropdown-toggle::after {
    color: #343434
}
.navbar-right .dropdown-menu {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 6px 0 !important;
}
@media screen and (min-width: 768px) {
    .dropdown-menu.notification-list{
        min-width: 18rem;
    }
}
.noti-count{
    position: absolute;
    top: -12px;
    right: -4px;
    height: 16px;width: 16px;
    background-color: red;color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}
.notification-message{
    border-bottom: 1px solid #d8e2ff;;
}
.noti-media{
    height: 100px;width: 50px;
    color: var(--wp-blue);
    font-size: 25px;
    display: flex;align-items: center;text-align: center;justify-content: center;
    margin-right: 15px;
}
.noti-info{font-size: 16px;color: var(--wp-blue);}
.noti-desc{color: #484848; font-size: 13px; display: block;}
@media screen and (max-width: 768px) {
    .noti-media{display: none;}
}/* Dashbaord style */
.caption{font-size: 1.3rem;}
.text-small{font-size: 12.45px;}
@media screen and (min-width: 768px) {
    .caption{font-size: 1.7rem;}
    .text-small{font-size: 16.33px;}
}
@media screen and (max-width: 640px) {
    .text-mobile{font-size: 14.45px;}
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: .25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow)
}
.bg-gradient-info {
    background: #17ead9;
    background: -webkit-linear-gradient( 
45deg
 , #17ead9, #6078ea)!important;
    background: linear-gradient( 
45deg
 , #17ead9, #6078ea)!important;
}
.widgets-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ededed;
    font-size: 20px;
    border-radius: 50%;
}
@media screen and (max-width: 640px) {
    .widgets-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .card.radius-10 .card-body{
        padding: .6rem .6rem;
    }
    .height-85-mobile{
        height: 105px;
        overflow: hidden;
    }
}
.text-white {
    color: #fff!important;
}
.ms-auto {
    margin-left: auto!important;
}
.bg-gradient-danger {
    background: #f54ea2;
    background: -webkit-linear-gradient( 
45deg
 , #f54ea2, #ff7676)!important;
    background: linear-gradient( 
45deg
 , #f54ea2, #ff7676)!important;
}
.bg-gradient-success {
    background: #00b09b;
    background: -webkit-linear-gradient( 
45deg
 , #00b09b, #96c93d)!important;
    background: linear-gradient( 
45deg
 , #00b09b, #96c93d)!important;
}
.bg-gradient-warning {
    background: #ffdf40;
    background: -webkit-linear-gradient( 
45deg
 , #ffdf40, #ff8359)!important;
    background: linear-gradient( 
45deg
 , #ffdf40, #ff8359)!important;
}



/* Bottom Menu fixed */
.navbar.fixed-bottom{
    height: 65px;
    box-shadow: var(--bs-box-shadow-sm);
    display: none;
}
.navbar.fixed-bottom ul{
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-left: 0;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
    position: relative;
}
.navbar.fixed-bottom ul li{
    display: inline-block;
    text-align: center;
    position: relative;
    width: 20%;
}
.navbar.fixed-bottom ul li:last-of-type{
    margin-right: 0px;
}
.navbar.fixed-bottom ul li > a{
    display: block;
    font-size: 15px;
    text-align: center;
    color: #949494;
    text-decoration: none;
}
.navbar.fixed-bottom ul li > a > svg{
width: 24px; height:  24px !important;
margin: auto;
display: block;
}
.navbar.fixed-bottom ul li.center > a{
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: 5px;
}
.navbar.fixed-bottom ul li.center > a > svg{
    width: 45px; height:  45px !important;
    color: var(--primary);
    background-color: #fff;
    border-radius: 50%;
}
.navbar.fixed-bottom ul li > a > span{
    text-align: center;
    display: block;
    text-decoration: none;
    position: relative;
    font-size: 11.73px;
}
.navbar.fixed-bottom ul li.center > a > span{
    margin-bottom: -5px;
}
@media screen and (max-width: 991px) {
    .navbar.fixed-bottom{
        display: inline-block;
    }
}
@media screen and (max-width: 345px) {
    .navbar.fixed-bottom ul li > a > span{
        font-size: 9.5px;
    }
}
.menu-toggler{
    font-weight: 700;
    font-size: 1.6rem;
    color: #000;
}

/* OffCanvas */
.offcanvas .user-info{
    background-color: #f3f3f3;
    color: #1f1f1f;
    width: 100%;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--wp-orange);
}
.offcanvas-header .btn-close {
    position: absolute;
    right: 15px;
    top: 8px;
    height: 28px;height: 28px;border-radius: 50%;
    display: flex; align-items: center;justify-content: center;
  }
.offcanvas-header .btn-close:checked{box-shadow: none;}
.offcanvas-header .user-info .avatar{height: 65px;width: 65px; margin-right: 18px;}
.offcanvas-header .user-info .details h3{font-weight: 700; font-size: 1.4rem;}
.offcanvas-header .user-info .details  span.statut{position: relative; display: inline-block; width: 120px;}
.offcanvas-header .user-info .details  span.statut::before{display: inline-block; margin-right: 4px;border-radius: 30px; height: 8px; width: 8px;content: "";background-color: #585858;}
.offcanvas-header .user-info .details  span.statut.online::before{background-color: #0ba44b;}
.offcanvas-header .user-info .details  span.statut.offline::before{background-color: #d54646;}
  .offcanvas-body .mobile-menu{
    width: 100%;
    display: block;
    list-style: none;
    padding-left: 0;
  }

  .avatar > img {
    position: relative;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    margin: auto;
  }
  .offcanvas-body .mobile-menu li{
    display: block;
    list-style: none;
    line-height: 1.5;
    margin-bottom: 8px;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 8px 16px;
    transition: .2s ease-in-out;
  }

  .offcanvas-body .mobile-menu li a{
    display: inline-block;
    list-style: none;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: .2s ease-in-out;
  }
  .offcanvas-body .mobile-menu li:hover{
    background-color: #ffead6;
  }
  .offcanvas-body .mobile-menu li:hover a{
    color: var(--wp-orange);
    margin-left: 4px;
  }
  .offcanvas-body .mobile-menu li a i{
    margin-right: 5px;
  }


  
.text-uppercase{
    text-transform: uppercase !important;
}
  /* Profil Setting Page */
  .avatar-box .avatar{
    margin: auto;
    height: 150px;width: 150px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 5px solid rgba(255, 224, 200, 0.3);
    display: flex;align-items: center;
    overflow: hidden;
    justify-content: center;
  }
 .avatar-box .avatar >img,   .avatar >svg{
    height: 100%;margin: auto;object-fit: cover;
  }
  .avatar-edit{
    position: absolute;
    top: 103px;
    right: 243px;
    z-index: 30;
  }
  .avatar-edit-btn{
    padding: 0 0 !important;
    height: 37px;width: 37px;line-height: 37px;
    border-radius: 50%;
  }

  /* My Shop Pages */
  .shop-item{
    display: block;
    background-color: #fff;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border-radius: .25rem;
  }
.shop-item .shop-infos{
    padding: 6px 13px;
}
.shop-top-banner, .banner{
    position: relative;
    width: 100%;
}
.banner{
    overflow: hidden;
    box-shadow: var(--shadow);
    border-radius: .25rem;
    border: 1px solid #a2a2a2;
    height: 140px;
}
@media screen and (min-width:768px) {
    .banner{
        height: 220px;
    }
}
.shop-logo{
    height: 105px; width: 105px;
    border-radius: .25rem;
    border: 1px solid #a2a2a2;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -15px; 
    left: 22px;
}
.shop-banner{
    object-fit: cover;
    height: auto;
    width: 100%;
    margin: auto;
}
.shop-logo > img,.banner > img{
    object-fit: cover;
    height: 100%;
    max-width: 100%;
    margin: auto;
}
@media screen and (max-width:768px) {
    .shop-logo{
        height: 65px; width: 65px;
        bottom: -15px; 
        left: 22px;
    }
}

/* Products Pages */
.list-item{
    border-radius: .25rem;
    background-color: #fff; 
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}
.row-main {
    padding: 1.5vh 0;
    align-items: center
}

hr {
    margin: 1rem -1vh;
    border-top: 1px solid rgb(214, 214, 214)
}

@media screen and (max-width: 768px) {
    .btn-sm-xs {
        padding: .25rem .475rem;
        font-size: .855rem;
      }
}


/* To remove */
.total {
    font-size: 1rem
}

@media(height: 1366px) {
    .main p {
        margin-bottom: 0;
        font-size: 1.2rem
    }

    .total {
        font-size: 1.5rem
    }
}
.photo-box{
    border-radius: .25rem;
    height: 95px;width: 95px;
    overflow: hidden;
    text-align: center;
}
.product-name{
    font-size: 1.28rem;font-weight: bold;
}
@media screen and (max-width: 640px) {
    .photo-box{
        height: 45px;width: 45px;
    }
    .product-name{
        font-size: .8rem;
    }
}

/* Search form */
.search-box input{
    border-radius: .25rem  0 0 .25rem !important;
}
.search-box .btn{
    border-radius: 0 .25rem .25rem 0 !important;
}

/* Products */

/* car form style */
.image-group,
.gallery-collection {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.car-image,
.gallery-item {
    position: relative;
    box-sizing: content-box;
    width: 80px;
    height: 80px;
    display: block;
    border: 1.8px solid #2a46e7;
    border-radius: 3px;
    float: left;
    margin: 20px 18px 15px 18px;
    overflow: hidden;
    cursor: pointer;
}

.car-image:not(first-of-type),
.gallery-item:not(first-of-type) {
    margin-left: 0px;
}

.car-image.default-select {
    border-style: dashed;
    cursor: pointer;
}

.car-image.default-select:not(.notallowed) input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 100;
    width: 100%;
}

.car-image.default-select.notallowed input {
    z-index: 1;
    width: 0;
}

.car-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    object-fit: cover;
}
.car-image span.remove {
    position: absolute;
    right: 0;
    top: -2px;
    z-index: 50;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    height: 22px;
    width: 22px;
    text-align: center;
    background-color: #d61c1ce9;
    display: block;
    line-height: 22px;
}
.default-select label.label {
    display: block;
    background: var(--wp-blue);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    font-family: Arial, sans-serif;
    height: 30px;
    line-height: 30px;
    left: 50%;
    margin: -15px 0 0 -15px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 30px;
    cursor: inherit;
}
.progress {
    /* display: none; */
}
.default-select.notallowed .progress {
    display: flex;
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 40%;
}
.default-select.notallowed {
    opacity: 4;
    cursor: not-allowed;
    user-select: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.default-select.notallowed .label {
    opacity: .2;
    cursor: not-allowed;
    user-select: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
}
/* Page details duvéhicule */
.gallery-item img.img-fluid {
    width: 80px;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}
.gallery-item.current {
    border: 1px solid var(--wp-blue);
}
.main-box {
    height: 325px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.main-box img {
    width: 100%;
    max-width: 100%;
}
@media screen and (max-width: 768px) {
    .main-box {
        height: 215px;
    }
    .my-sm-3{
        margin: .7rem 0;
    }
}

/* Home page === How It Works ? section */
.nav-tabs.hiw-nav {
    border-bottom: none !important;
  }
.nav-tabs.hiw-nav .nav-item.show .nav-link, .nav-tabs.hiw-nav .nav-link.active {
    color: #495057;
    background-color: #ffead6;
    color: var(--wp-orange);
    font-weight: 500;
  }
  .nav-tabs.hiw-nav .nav-link {
    margin-bottom: 10px;
    background: 0 0;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #b1b1b1;
    border-radius:  0 !important;
  }
  .nav-tabs.hiw-nav .nav-link {
    text-transform: uppercase;
    padding: .5rem 1rem;
    color: #6a6a6a;
  }
  @media screen and (max-width: 768px) {
    .nav-tabs.hiw-nav .nav-link {
        padding: .3rem .6rem;
        font-size: .7rem;
      }
  }
  .card.hiw-card{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px !important;
    transform:  all .2s;
  }
  .card.hiw-card:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
  }
.card.hiw-card >.card-body{
    min-height: 320px;
    display: block;
    padding: 1.3rem 1.5rem;
    text-align: center;
}
.card.hiw-card .box-icon{
    margin: auto;
    transform:  all .2s;
    height: 90px;
    width: 90px;
    border-radius: .25rem;
    display: flex;align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow:  var(--shadow);
    margin-bottom: 30px;
}
.card.hiw-card .box-icon.light-blue{
    background-color: #e3e7ff;
    color: #2a46e7;
}
.card.hiw-card .box-icon.light-orange{
    background-color: #ffeee1;
    color: #ff7b15;
}
.card.hiw-card .box-icon.light-green{
    background-color: #e1ffe1;
    color: #2ab62a;
}
.card.hiw-card .box-icon.light-dark{
    background-color: #f8edff;
    color: #8e06e2;
}
.card.hiw-card .details p{
    font-size: .98rem;
    font-weight: 400;
    color: #888888;
}
/* FAQ section */
  .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    color: var(--wp-orange);
    box-shadow:  none !important;
    outline:  none !important;
  }
  .accordion-button {
    box-shadow:  none !important;
    outline:  none !important;
    padding: 1rem 1.25rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    text-align: left;
    background-color: #fff;
  }
  @media screen and (max-width: 768px) {
    .accordion-button {
        font-size: .98rem;
      }
  }
  /* CTA Section */
  .animate-hover{
   transition: all .2s ease-in;
  }
  .animate-hover:hover i{
    margin-left: 8px;
  }
  .cta-card{
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 50;
    background-image: url(../images/bg.jpg);
    padding: 1.5rem 1.5rem!important;
  }
  @media screen and (min-width: 768px) {
    .card.cta-card .card-body{
        padding: 2rem 1.4rem !important;
    }
    .cta-card{
        padding: 4.5rem 3rem!important;
    }
}
  .cta-card::after{
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #000721c8;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0  ;
}
/* Footer Section */
footer{
    background-color: #ebf0ff !important;
}
@media screen and (max-width: 768px) {
    footer {
        margin-bottom: 65px;
      }
}
/* Hero Carousel section */
.carousel.hero-carousel .carousel-item{
    background-color: #b6b6b6;
}

/* Shop Page */
@media screen and (min-width: 768px) {
    .justify-end-desktop{
        justify-content: end !important;
    }
}
/* Single Product Page */
.carousel-control{
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--wp-orange);
    font-family: 'bootstrap-icons' !important;
}
.carousel-control::before{
    font-size: 28px;
    line-height: 1;
}
.carousel-control-prev-icon.carousel-control {
    background-image: none !important;
  }
  .carousel-control-prev-icon.carousel-control::before {
    content: "\F12C";
  }

  .carousel-control-next-icon.carousel-control::before{
    content: '\F135';
  }
  .carousel-control-next-icon.carousel-control {
    background-image: none !important;
  }

  /* User Dashboard Panel */

  ul.user-dashboard  li {
    position: relative;
    min-width: 15.69%;
  }
  ul.user-dashboard  li  .nav-link{
    position: relative;
    min-width: 100%;
    display: inline-block;
    vertical-align: bottom;
    height: 40px;
    font-weight: 460;
    color: #6b6b6b;
    text-align: center;
    border-radius: 0 !important;
    background: #eaeaea;
    border-top: solid 3px #eaeaea;
    text-transform: uppercase;
  }
  /* User products */
  .user-posts{
    position: relative;
    width: 100%;
  }
  .post-item {
    -webkit-font-smoothing: antialiased;
    border-top: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 11px 15px;
    overflow: hidden;
    /* cursor: pointer; */
    width: 100%;
    border-radius: 3px;
    border: 1px solid #f1f1f1;
    background-color: #fcfcfc;
    margin-bottom: 12px;
    transition: all .125s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .post-item:hover{
    background-color: #f0f8ff;
  }
  .post-item.vip{
    border: 1px solid #ffc35c;
    background-color: #f9ebcc;
  }
  .post-item.vip:hover{
    background-color: #fff9ee;
  }

  /* letf */
  .post-item .post{
    position: relative;
    width: 78%;
    border-right: .74px solid #d1d1d1;
  }
  /* right */
  .post-item .options{
    position: relative;
    width: 22%;
    padding-left: 18px;
    float: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .alignleft {
    float: left;
    margin: 0 20px 0 0;
    width: 164px;
    position: relative;
    height: 125px;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
  }
  .alignleft .post-img{
    height: 100px;
    max-width: 100px;
    overflow: hidden;
    margin: auto;
    padding: 3px;
  }
  .post-img img {
    /* height: 200px; */
    width: 100%;
    object-fit: cover;
    margin: auto;
  }
  .post-infos {
    overflow: hidden;
    padding: 2px 180px 0 0;
    height: 125px;
    position: relative;
  }
  .post-item .post a.post-link {
    margin: 0 20px 0 0;
  }
  .post-item .post a.post-link {
    margin: 0 20px 10px 0;
    max-height: initial;
    text-decoration: none;
  }
  .post-item a.post-link {
    text-overflow: ellipsis;
    font-size: 1.143em;
    line-height: 1.514em;
    font-weight: bold;
    margin: 0 0 6px;
    color: #1568c6;
    display: block;
  }
  .post-item .address {
    width: 425px;
  }
  .post-item time, .post-item .address {
    font-size: 14px;
    line-height: 24px;
    color: #5d5d5d;
    /* display: block; */
  }
  .price {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #333;
    position: absolute;
    right: 40px;
    top: 4px;
  }
  .info-zone {
    position: absolute;
    bottom: 15px;
    right: 20px;
    text-align: right;
  }
  .view {
    position: absolute;
    display: inline;
    right: 38px;
    bottom: 2px;
    color: #333;
    font-weight: bold;
    padding-right: 30px;
  }
  .view::after{
    display: inline;
    position: absolute;
    right: 0px;
    top: -2px;
    width: 22px;
    height: 22px;
    content: "";
    background: url(../images/icons/icon-shop.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  /* Right options */
  .aside {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
  }
  .aside a, .aside .btn{
    position: relative;
    font-size: 15px;
    line-height: 24px;
    display: block;
    margin: 0 0 3px;
    font-weight: 450;
    text-decoration: none;
    color: #353535;
  }
  span.icon{
    display: inline-block;
    padding-left: 20px;
    margin-right: 12px;
    position: relative;
  }
  span.icon::after{ 
    display: inline;
    position: absolute;
    right: 0px;
    top: -15px;
    width: 18px;
    height: 18px;
    content: "";
  }
  span.icon.icon-edit::after{ 
    background: url(../images/icons/icon-pencil.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  span.icon.icon-close::after{ 
    background: url(../images/icons/icon-close.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  span.icon.icon-vip::after{ 
    background: url(../images/icons/icon-vip.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  span.icon.icon-bump::after{ 
    background: url(../images/icons/icon-bump.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  span.icon.icon-off::after{ 
    background: url(../images/icons/desactiver.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  span.icon.icon-publish::after{ 
    background: url(../images/icons/icon-refresh.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  span.icon.icon-star::after{ 
    background: url(../images/icons/star.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  span.icon.icon-power::after{ 
    background: url(../images/icons/power.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
.statut{
    font-size: .8rem;
    line-height: 17px;
    font-weight: 500;
    padding: 4px 10px 4px 10px;
    position: relative;
    display: inline-block;
    margin: 0 0 5px 0px;
    height: 26px;
    border-radius: 3px;
}
span.statut.approuved{
    background-color: #30b41e;
    color: #fff;
}
span.statut.closed{
    background-color: #7a7a7a;
    color: #fff;
}
span.statut.deleted{
    background-color: #ca3434;
    color: #fff;
}
span.statut.waiting{
    background-color: #ebcc02;
    color: #252525;
}
.user-posts.posts-mobile{
    margin-top: 15px;
}
@media screen and (min-width: 885px) {
    .user-posts.posts-mobile{
        display: none;
    }
}
@media screen and (max-width: 885px) {
    .user-posts.posts-desktop{
        display: none;
    }
}

/* Mobile Post */
.mob-post-item{
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 18px;
}
.mob-post{
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid #d6d6d6;
    padding: 8px;
    background-color: #fff;
}
.post-top{
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100px;
    display: flex;
    justify-content: flex-start;
}
.post-left{
    max-width: 22%;
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 8px;
}
.mob-post-media{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    width: 105px;
    min-height: 70px;
}
.mob-post-media img{
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}

/* Post right */
.post-right{
    width: 78%;
    padding-left: 13px;
    padding-right: 5px;
}
.mob-post-details{
    position: relative;
    width: 100%;
    display: block;
}
.mob-post-details .meta{
    clear: both;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 8px 0 0 5px;
}
 .meta > .state > .statut {
    font-size: .8rem;
    line-height: 14px;
    font-weight: 500;
    padding: 3px 8px 3px 8px;
    position: relative;
    display: inline-block;
    margin: 0 0 5px 0px;
    height: 20px;
    border-radius: 3px;
  }
.meta .date{
    font-weight: 400;
    color: #696969;
    font-size: .87rem;
}
.mob-post-details .infos{
    position: relative;
    display: block;
}
.infos .post-title{
    font-weight: 500;
    color: #1568c6;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 7px;
}
.more-infos{
    display: flex;
    align-items: center;
}
.more-infos .mob-price,.more-infos .mob-view{
    font-weight: bold;
    font-size: .8rem;
}

/* Post bottom */
.post-bottom {
    margin: 8px auto 5px auto;
    width: 100%;
    display: block;
}
.post-bottom .inner{
    position: relative;
    width: 100%;
    padding: 0;
    margin: auto;
}

.inner .inner-row{
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: auto;
}
.inner-row .flex{
    padding: 5px 13px;
    position: relative;
    display: inline-block;
    width: 48.333333%;
    margin: 0 auto 3px auto;
    text-align: center;
    border: 1px solid #e5e5e5;
}
.flex a,.flex .btn{
    position: relative;
    display: flex;
    text-decoration: none;
    color: #4a4a4a;
    font-size: .9rem;
    text-align: center;
    justify-content: center;
}

.flex a > span.icon:after,.flex .btn > span.icon:after{
   top: 3px;
} 

/* To check */
.fixed{
    position: fixed;
    width: 100%;
    z-index: 199;
    top: 70px;
    left: 0;
    box-shadow: var(--shadow) !important;
    background-color: #fff;
}
.user-dashboard.fixed{
    /* background-color: #1568c6; */
    color: #656565;
}
ul.user-dashboard li .nav-link.active {
    background: #fff;
    border-top: 3px solid var(--wp-orange);
}
  @media screen and (max-width: 885px){
    ul.nav-tabs{
        border: none;
        /* background-color: #1568c6; */
        background-color: #eaeaea;
        text-transform: uppercase;
    }
    ul.user-dashboard li {
        position: relative;
        min-width: 10%;
        border: none;
        background-color: transparent;
    }
    ul.user-dashboard li .nav-link {
        max-width: 100%;
        height: 100%;
        text-transform: uppercase;
        font-weight: bold;
        /* color: #d6d6d6; */
        color: #737176;
        font-size: .68rem;
        letter-spacing: -.1px;
        padding: .45rem .254rem;
        border: none;
        background-color: transparent;
    }
    ul.user-dashboard li .nav-link.active {
        /* background: transparent; */
        background: #637381;
        border-top: none;
        color: #fff;
        border-bottom: 3px solid var(--wp-orange);
        padding: .45rem .405rem;
    }
  }

  /* Pagination */
  .page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
  }
  .page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
  }
  .page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: var(--wp-orange) !important;
    border-color: var(--wp-orange) !important;
  }
  .page-item:not(:first-child) .page-link {
    margin-left: 2px;
  }
  .page-link {
    padding: 0 0 !important;
    height: 33px;
    width: 33px; 
    border-radius: 50%;
    text-align: center;
    line-height: 33px;
  }
  .page-link {
    position: relative;
    display: block;
    color: #474747;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
      border-top-color: rgb(222, 226, 230);
      border-right-color: rgb(222, 226, 230);
      border-bottom-color: rgb(222, 226, 230);
      border-left-color: rgb(222, 226, 230);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }

  
  /* My Orders */
  #main-content .h5,
        #main-content .text-uppercase {
            font-weight: 500;
            margin-bottom: 0
        }

        #main-content .h5+div {
            font-size: .9rem
        }

        #main-content .box {
            padding: 10px;
            border-radius: 6px;
            width: 180px;
            height: 90px
        }

        #main-content .box img {
            width: 36px;
            height: 36px;
            object-fit: contain
        }

        #main-content .box .tag {
            font-size: .8rem;
            color: #2d2d2d;
            font-weight: 400
        }

        #main-content .box .number {
            font-size: 1.5rem;
            font-weight: 600
        }

        .order {
            padding: 10px 30px;
            min-height: 160px
        }

        .order .order-summary {
            height: 100%
        }

        .order .blue-label {
            background-color: #aeaeeb;
            color: #0046dd;
            font-size: .8rem;
            padding: 0 3px
        }

        .order .green-label {
            background-color: #a8e9d0;
            color: #008357;
            font-size: .8rem;
            padding: 0 3px
        }

        .order .fs-8 {
            font-size: .85rem
        }

        .order .status {
            font-weight: 450
        }

        .order .btn.btn-primary {
            background-color: #fff;
            color: #4e2296;
            border: 1px solid #4e2296
        }

        .order .btn.btn-primary:hover {
            background-color: #4e2296;
            color: #fff
        }

        .order .progressbar-track {
            margin-top: 20px;
            margin-bottom: 20px;
            position: relative
        }

        .order .progressbar-track .progressbar {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-left: 0
        }

        .order .progressbar-track .progressbar li {
            font-size: .9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 30;
            position: relative;
            height: 30px;
            width: 30px;
            border: 1px solid #c6c6c6;
            background-color: #bfbfbf
        }

        @media screen and (min-width:768px) {
            .order .progressbar-track .progressbar li {
                margin-top: 10px
            }
        }

        .order .progressbar-track .progressbar li.current {
            border: 1px solid #07692e;
            background-color: #b3edcc;
            color: #b3edcc
        }

        .order .progressbar-track .progressbar li.current span {
            color: #07692e !important
        }

        .order .progressbar-track .progressbar li.aborted {
            border: 1px solid #c6c6c6;
            background-color: #bfbfbf
        }

        .order .progressbar-track .progressbar li.aborted span {
            color: #dfdfdf !important
        }
        .order .progressbar-track .progressbar li.done {
            border: 1px solid #156332;
            background-color: #2c844c;
            color: #fff
        }
        .canceled>span,
        .done>span {
            color: #fff !important
        }
        .order .progressbar-track .progressbar li.canceled {
            border: 1px solid #fca193;
            background-color: #de2929
        }

        .order .progressbar-track .progressbar li::after {
            position: absolute;
            font-size: .9rem;
            top: 50px;
            left: 0;
            width: 88px
        }

        #tracker {
            position: absolute;
            border-top: 1px solid #bbb;
            width: 100%;
            top: 25px
        }

        #step-0::after {
            content: 'En attente'
        }

        #step-1::after {
            content: 'En cours';
            left: -10px
        }

        #step-2::after {
            content: 'Payée'
        }

        #step-3::after {
            content: 'Livrée';
        }

        #step-4::after {
            content: 'Annulée';
            left: -10px
        }

        #step-4.accordion-button:not(.collapsed) {
            content: 'Annulée';
            left: -10px
        }

        .bg-purple {
            background-color: #55009b
        }

        .bg-light {
            background-color: #f0ecec !important
        }

        .green {
            color: #007965 !important
        }

        @media(max-width:1199.5px) {
            nav ul li {
                padding: 0 10px
            }
        }

        @media(max-width:500px) {
            .order .progressbar-track .progressbar li {
                font-size: 1rem
            }

            .order .progressbar-track .progressbar li::after {
                font-size: .8rem;
                top: 35px
            }

            #tracker {
                top: 20px
            }
        }

        @media screen and (max-width:885px) {
            #main-content .box {
                width: 100%;
                margin-right: 0 !important
            }

            .order {
                min-height: 250px
            }
        }
        @media(max-width:440px) {

            #main-content,
            .order {
                padding: 20px
            }

            #step-4::after {
                left: -5px
            }
        }
        @media(max-width:395px) {
            .order .progressbar-track .progressbar li {
                font-size: .8rem
            }

            .order .progressbar-track .progressbar li::after {
                font-size: .7rem;
                top: 35px
            }

            #tracker {
                top: 15px
            }

            .order .btn.btn-primary {
                font-size: .85rem
            }
        }

        @media(max-width:355px) {
            #main-content {
                padding: 15px
            }

            .order {
                padding: 10px
            }
        }
        .d-block{
            display: block !important;
        }