/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 * 
 */

/*# sourceMappingURL=custom.css.map */

p{
    margin: 0;
}

.modal-body .card{
    padding: 40px 20px;
    border: 1px solid #00063a;
    row-gap: 20px;
    text-align: center;
}

.navbar .nav-link.nav-link-user{
    text-align: center;
}

.section-buttons{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.iziToast.iziToast-color-red{
    background: #fc544b !important;
    border-color: #fc544b !important;
}
.iziToast.iziToast-color-green{
    background: #47c363 !important;
    border-color: #47c363 !important;
}
.iziToast.iziToast-color-blue{
    background: #6777ef !important;
    border-color: #6777ef !important;
}

.ag-cell-value a{
    color:#0056b3;
    text-decoration: underline;
}

.ag-cell-value a.nounderline{
    text-decoration: none;
}

@media (max-width: 1024px){
    .main-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-height: 640px) {

    .navbar-bg{
        height:70px;
    }

    .section-header,
    .section-title,
    .section-lead{
        display:none !important;
    }

    #btns,
    .section-buttons{
        margin: 0 0 10px 0 !important;
    }

    #myGrid{
        height: calc( 100vh - 140px ) !important;
    }
}

@media (max-width: 580px){
    .section-lead-hide{
        display: none;
    }
}

@media (max-width: 530px){
    #btns{
        justify-content: center !important;
        flex-wrap: wrap;
        grid-gap: 20px;
    }
}

nav{
    background-color: #171c35;
    height: 50px; 
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 12%;
}

nav>div:last-child{
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}

#iw-logo-smartphone{
    display: none;
}

#iw-company-desktop{
    display: block;
    color:#fff;
    margin-top: 5px;
}

.menu{
    background-color: #fff;
    height: 100px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12%;
    column-gap: 15px;
    -webkit-box-shadow: 0px 3px 5px -4px grey;
    box-shadow: 0px 3px 5px -4px grey;
}

.menu .wd200{
    width: 200px;
}

.menu div{
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.menu a.nav-item{
    color: #000;
    font-weight: 600;
    font-size: 17px;
}

.menu a.nav-item.active{
    color: #db1782;
}

.menu a.nav-item-noel{
    position: relative;
    color: #c41e3a !important;
    font-weight: 400 !important;
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 30px !important;
    letter-spacing: 1px;
    overflow: visible;
    z-index: 1;
}

.menu a.nav-item-noel::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 120%;
    height: 50px;
    pointer-events: none;
    background-image:
        radial-gradient(circle, white 20%, transparent 20%),
        radial-gradient(circle, white 18%, transparent 18%),
        radial-gradient(circle, white 22%, transparent 22%),
        radial-gradient(circle, white 15%, transparent 15%),
        radial-gradient(circle, white 25%, transparent 25%),
        radial-gradient(circle, white 20%, transparent 20%);
    background-size: 8px 8px, 12px 12px, 10px 10px, 6px 6px, 14px 14px, 9px 9px;
    background-position: 8% -5px, 28% -12px, 52% -3px, 73% -18px, 88% -8px, 42% -10px;
    animation: snowfall 10s linear infinite;
    z-index: 1;
    opacity: 0.8;
    rotate: 8deg;
}

@keyframes snowfall {
    0% {
        background-position: 8% -5px, 28% -12px, 52% -3px, 73% -18px, 88% -8px, 42% -10px;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        background-position: 10% 120px, 25% 140px, 55% 125px, 70% 150px, 90% 135px, 40% 145px;
        opacity: 0;
    }
}

.form-control{
    border-radius: 0;
}

.btn.btn-primary.btn-account{
    margin-top: 28px;
    width: 100%;
    border-radius: 0;
    padding: 8px 0px;
    font-size: 14px;
}

.btn.btn-secondary{
    border-radius: 0;
    border-color: #db1782;
    color: #db1782;
    background-color: #fff;
}

.btn.btn-secondary:hover{
    color: #fff;
    background-color: #db1782 !important;
}

.btn.btn-third{
    display: none;
    border-radius: 0;
    border-color: #e85f29;
    color: #fff;
    background-color: #e85f29;
}

.btn.btn-third:hover{
    color: #e85f29;
    border-color: #e85f29 !important;
    background-color: #fff !important;
}

.btn.btn-secondary.btn-filled{
    border-color: #db1782;
    color: #fff;
    background-color: #db1782;
    border-radius: 0;
    box-shadow: none;
    padding: 0.4rem 3rem;
}

.btn.btn-secondary.btn-filled:hover{
    color: #db1782 !important;
    background-color: #fff !important;
    border-color: #db1782 !important;
}

.btn.btn-secondary.btn-filled.btn-rounded{
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
}

.btn.btn-secondary.btn-filled:hover{
    background-color: transparent !important;
}

.announce,
.announce .images{
    display: flex;
    justify-content: center;
    flex-direction: row;
    grid-gap: 40px;
    align-items: center;
}

.highlight{
    background-color: #f7ebf7;
    padding: 50px 12%;
}

.announce .images{
    grid-gap: 0;
}

.announce .images img{
    height: 300px;
    width: 100%;
    margin: 0 15px;
    background: #dedede;
    border-radius: 4px;
}

.announce .images img:last-child{
    margin-top: 30px;
}

.modal-title {
    color: #000;
    font-size: 24px;
}

section.section-background-image{
    display: none;
    padding: 1px 0 0 0;
    background-image: url(/assets/img/section.png);
    background-position: center;
    background-size: cover;
}

section .main-section{
    margin-top: 100px;
    background: rgb(23, 28, 53, 0.8);
    padding: 50px 12%;
}

section .main-page{
    background: rgb(23, 28, 53);
    background: linear-gradient(90deg, rgb(23, 28, 53,1) 50%, rgb(23, 28, 53,0.1) 100%);
    padding: 50px 12%;
}

section .main-page .breadcrumb{
    background: transparent;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 0;
}

section h3{
    color: #fff;
    font-size: 30px;
}

section .main-section h3{
    margin-bottom: 30px;
}

section p{
    color: #fff;
}

section .main-page .breadcrumb p,
section .main-page .breadcrumb a{
    font-size: 16px;
    color: #fff !important;
}

section h3.secondary{
    color: #000;
}

section p.secondary{
    color: #db1782;
}

.main-footer{
    border: 0;
    background-color: #171c35;
    min-height: 200px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 50px 12%;
    grid-gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
}

.main-footer div:first-child{
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
    flex-direction: column;
    max-width: 200px;
}

.main-footer div:first-child p{
   color: #fff;
}

.main-footer div:last-child{
    display: flex;
    column-gap: 80px;
}

.main-footer .nav-links{
    display: flex;
    align-items: flex-start;
    column-gap: 30px;
    flex-direction: column;
}

.main-footer .nav-links h5{
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.main-footer .nav-links a.nav-item{
    margin: 5px 0;
    color: #fff;
}

.main-footer .nav-links a.nav-item.active{
    color: #db1782;
}

.copyright{
    border:0;
    background-color: #30354b;
    height: 50px; 
    display: flex !important;
    align-items: center;
    padding: 0 12%;
    column-gap: 15px;
}

.copyright p{
    color: #fff;
    font-size: 12px;
}

main{
    padding: 50px 12%;
}

main.filters{
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

main.filters .buttons{
    display: grid;
    grid-template-columns: 180px 10px 45px 45px;
    column-gap: 10px;
}

main.filters .select-filters{
    display: flex;
    column-gap: 15px;
    overflow-x: scroll;
    padding-bottom: 15px;
}

.header-flashs > div {
    display: none;
}

.type-of-vue{
    margin: 0 !important;
    border-radius: 0 !important;
    background:#fff !important;
    padding: 0 !important;
    width: 45px !important;
    border-color: #e3eaef !important;
}

.type-of-vue.active{
    background:#DB1782 !important;
    border-color: #DB1782 !important;
    color: #fff;
}

.type-of-vue.active svg{
    fill: #fff;
}

main.contents{
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 60px;
    padding-top: 10px;
}

main.contents .sidebar{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    padding: 15px;
    height: fit-content;
    box-shadow: 0px 3px 12px #bfbfbf;
    border-radius: 4px;
    margin-top: 20px;
}

main.contents .sidebar-products{
    align-items:flex-start
}

main.contents .sidebar-products h4{
    font-size: 22px;
    padding: 15px;
}

main.contents .sidebar-products a{
    font-size: 16px;
}

main.contents .sidebar a{
    padding: 6px 15px;
    text-decoration: none !important;
}

main.contents .sidebar-products .form-group{
    margin-bottom: 10px;
    font-size: 16px;
}

main.contents .sidebar a.account-links{
    padding: 15px;
    font-size: 16px;
}

main.contents .sidebar a.account-links.active{
    color: #db1782;
}

.main-center-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    column-gap: 25px;
}

.main-center{
    display: flex;
    flex-direction: column;
    align-items: center;
}

form.search{
    padding: 4px 4px 4px 13px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    border-radius: 50px;
    overflow: hidden;
}

form.search input{
    border: 0;
    background: #f4f4f4;
    font-size: 13px;
    outline: none;
    margin-top: 3px;
    padding-left: 10px;
}

form.search button{
    margin-left: -25px;
    width: 50px !important;
}

form.search button svg{
    margin-left: -2px;
}

#iw-filters-smartphone{
    display: none;
}

.iw-filters-in-absolute{
    display: none !important;
    width: 180px;
    position: absolute;
    top: 0;
    padding: 0 !important;
    right: 0;
}

.filters-margin{
    display: none;
    margin-bottom: 70px;
}

.product-card{
    display: flex;
    min-width: 190px;
    max-width: 300px;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    box-shadow: 0px 3px 12px #bfbfbf;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #fff;
    position: relative;
    flex-grow: 2;
    flex: 1;
    justify-content: flex-end;
    padding-top: 40px;
    user-select: none;
}

.product-card.always-visible{
    display:block !important;
    visibility: hidden !important;
    height: 0px !important;
    padding: 0 !important;
}

.product-card:hover{
    border: 1px solid #db1782;
}

.product-card a.product-img{
    display: flex;
    justify-content: center;
    height: 140px;
    align-items: center;
}

.product-card img{
	/*
    height: 100px;
    width: auto;
    margin: 20px;
    user-select: none;
	border-radius: 6px;*/
	
	height: auto;
    max-width: 100%;
    margin: 20px;
    user-select: none;
    border-radius: 6px;
    max-height: 100px;
}

.product-card .description{
    padding: 10px 0;
    margin-top: 10px;
}

.product-card .description a{
    text-decoration: none;
}

.product-card .buttons{
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    z-index: 999;
    padding-bottom: 10px;
}

.buttons-add-to-cart svg,
.buttons-add-to-cart input{
    padding: 0 10px;
    border-radius: 50px;
    box-shadow: 0px 3px 12px #bfbfbf;
    cursor:pointer;
    fill: #000;
    width: 37px !important;
    height: 37px !important;
    background-color: #fff;
}

.buttons-add-to-cart .form-control.add-cart-quantity[readonly]{
    background-color: #fff;
    user-select: none;
}

.buttons-add-to-cart input{
    text-align: center;
}

.buttons-add-to-cart svg:last-child{
    padding: 5px 10px 0px 10px;
}

.buttons-add-to-cart svg:hover{
    background-color: #db1782;
    cursor:pointer;
    fill:#fff;
}

.product-list{
    display: grid;
    grid-template-columns: 1fr 120px 65px 230px;
    width: 100%;
    align-items: center;
    box-shadow: 0px 3px 12px #bfbfbf;
    padding: 20px;
    margin-bottom: 15px;
    column-gap: 15px;
    user-select: none;
}

.product-list .product-details{
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.product-list .product-details label{
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
}

.product-list .product-details p{
    color: grey;
    text-align: left;
}

.product-card p.product-amount{
    font-weight: 700;
    font-size: 17px;
    color: #c32982;
}

.product-list p.product-amount{
    border-left: 1px solid #ccc;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    color: #c32982;
}

.product-list .buttons{
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: flex-end;
}

.product-list .product-details p:last-child{
    line-height: 18px;
}

.account-orders{
    margin: 20px 0 20px 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    width: 100%;
}

.account-orders .order-details{
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.account-orders .order-buttons{
    display: grid;
    grid-template-columns: 43px 43px 43px 43px;
    /* grid-template-columns: 43px 43px 43px; */
    width: 100%;
    justify-content: end;
    align-items: center;
    grid-gap: 12px;
}

.cart{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    height: fit-content;
    width: 100%;
}

.cart label{
    font-size: 16px;
    font-weight: 700;
}

textarea{
    width:100%;
    min-height: 200px;
    max-height: 200px;
    padding: 15px;
    font-size: 16px;
    border-color: #e4e6fc;
}

.cart .resume{
    background-color: #171c35;
    padding: 20px;
    width: 100%;
    border-radius: 4px;
}

.cart .amount{
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    margin-top: 35px;
}

.cart .checkbox{
    width: 100%;
    font-size: 13px;
    display: flex;
    column-gap: 10px;
    color: #fff;
}

.cart-orders{
    display: grid;
    grid-template-columns: 1fr 140px 80px 60px 80px 50px;
    width: 100%;
    border-bottom: 0.5px solid #ccc;
    padding-bottom: 25px;
    margin-top: 25px;
}

.cart h4,
.cart-orders h4{
    font-size: 20px;
}

.cart-orders h4:nth-child(n+2),
.cart-orders p:nth-child(n+2){
    text-align: center;
}

.cart-orders .cart-details{
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.cart-orders .cart-details label{
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.cart-orders .cart-details p{
    color: grey;
    text-align: left;
    font-size: 14px;;
}

/* .cart-orders .cart-details p:last-child{
    line-height: 18px;
} */

.cart-orders > p,
.cart-orders a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.loading-line {
    position: relative;
    overflow: hidden;
}
  
.loading-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Couleur de surbrillance */
    animation: highlight 1.5s infinite; /* Durée de l'animation */
}

@keyframes highlight {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.main-products{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.announce-products{
    padding: 20px;
    background: #ddd;
    width: 100%;
    margin: 0 0 20px 0;
    border-radius: 4px;
}

.announce-products p{
    color: #7fb500;
}

.sidebar-products .form-group{
    padding: 0 15px;
    display: flex;
    column-gap: 5px;
    align-items: center;
}

.sidebar-products .form-group > label{
    font-weight: unset;
    color: #000;
    font-size: 16px;
    letter-spacing: 0;
    margin: 0;
    cursor: pointer;
}

.main-contact{
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    column-gap: 40px;
    margin: 50px 12%;
    box-shadow: 0px 3px 12px #bfbfbf;
}

.main-contact form>div{
    display: flex;
    column-gap: 10px;
    align-items: center;
}

#iw-contact-form-smartphone{
    display: none;
}

section .section-contact{
    background: rgba(23, 28, 53,0.7);
    padding: 50px 12%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    position: relative;
}

section .section-contact img{
    position: absolute;
    top: 20px;
    right: 20px;
}

main.cart.contents{
    grid-template-columns: 1fr 320px;
    column-gap: 70px;
    width: 100%;
    padding-top: 30px;
}

main.account.contents{
    padding-top: 30px;
}

main.cart.contents .main-center{
    align-items: flex-start;
    width: 100%;
}

main.main-products.filters{
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 10px;
}

.account-orders .order-buttons .iw-button-account-order-smartphone {
    display: block;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 50px !important;
}

main.favorites.contents{
    grid-template-columns: 1fr;
}

main.favorites.contents .announce-products{
    height: auto;
}

#product-modal .modal-dialog {
    max-width: 70% !important;
}

#product-modal .modal-body{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}

#product-modal .modal-body>div:first-child{
    text-align: center;
}

#product-modal .modal-body img{
    width: 75%;
    padding: 20px;
}

#product-modal .modal-body .description{
    min-width: 400px;
}

.add-to-cart{
    display: flex;
}

#search-form-smartphone{
    display: none;
    margin: 20px;
    margin-bottom: 0;
}

#search-form-smartphone input{
    width: calc(100% - 29px);
}

.add-to-cart .btn-add-to-cart,
.add-to-cart .btn-add-to-cart:hover,
.btn.btn-add-to-cart:not(.btn-social):not(.btn-social-icon):hover,
.btn.btn-add-to-cart:not(.btn-social):not(.btn-social-icon):active,
.btn.btn-add-to-cart:not(.btn-social):not(.btn-social-icon):focus{
    padding: 0.3rem 0.8rem !important;
    border: 1px solid #e4e6fc;
    border-radius: 0;
    border-right: 0;
    border-color: #e4e6fc !important;
}

.add-to-cart input{
    width: 80px !important;
    text-align: center;
    border: 1px solid #e4e6fc;
    border-radius: 0;
    border-right: 0;
    padding-left: 30px !important;
}

.add-cart-hidden{
    display: none;
}

.filters-close{
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
}

.filters-validation{
    display: none;
    margin: 50px 0;
}

.tags{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

tag{
    border-radius: 12px 2px;
    font-size: 12px;
    padding: 0px 10px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    background: #DB1782 0% 0% no-repeat padding-box;
    width: max-content;
    min-width: 25px;
    height: 20px;
}

tag.type-promo::before{
    content:"PROMO";
}

tag.type-bio::before{
    content:"BIO";
}

tag.type-season::before{
    content:"SAISON";
}

tag.type-flash::before{
    content:"FLASH";
}

tag.type-top::before{
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="rgb(219, 23, 130)" class="bi bi-tags-fill" viewBox="0 0 16 16"><path d="M2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 6.586V2zm3.5 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z"/><path d="M1.293 7.793A1 1 0 0 1 1 7.086V2a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l.043-.043-7.457-7.457z"/></svg>');
    line-height: 25px;
}

tag.type-top::after{
    content: " TOP VENTE";
}

tag.type-origine-fr{
    background: linear-gradient(to right, blue 33.33%, white 33.33%, white 66.66%, red 66.66%) 0% 0% no-repeat padding-box;
    height: 18px;
}

tag.type-promo{
    background: #DB1782 0% 0% no-repeat padding-box;
}

tag.type-bio{
    background: #80B500 0% 0% no-repeat padding-box;
}

tag.type-season{
    background: #171C35 0% 0% no-repeat padding-box;
}

tag.type-flash{
    background: #ffca28 0% 0% no-repeat padding-box;
}

tag.type-top{
    color: #DB1782;
    background: #fff 0% 0% no-repeat padding-box;
}

#hello-user{
    color:#fff;
    margin-top: 5px;
}

#cart-count{
    background: #DB1782;
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    margin-top: 3px;
    cursor: default;
}

#cart-amount{
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background: #DB1782;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    cursor: default;
}

.products{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: unset;
}

@media screen and (max-width: 870px){
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 675px){

    .products {
        column-gap: 0px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px){
    .products {
        /* grid-template-columns: 1fr;
        grid-template-columns: 1fr 1fr; */
    zoom: 0.85;
    }
}





@media screen and (max-width: 1400px){
    
    nav,
    .menu,
    .copyright{
        padding: 0 8%;
    }

    .highlight,
    section .main-section,
    section .main-page,
    .main-footer,
    main,
    section .section-contact{
        padding: 50px 8%;
    }
    .main-contact{
        margin: 50px 8%;
    }
}

@media screen and (max-width: 1200px){
    
    nav,
    .menu,
    .copyright{
        padding: 0 6%;
    }

    .highlight,
    section .main-section,
    section .main-page,
    .main-footer,
    main,
    section .section-contact{
        padding: 50px 6%;
    }

    .main-contact{
        margin: 50px 6%;
        grid-template-columns: 1fr 300px;
    }

    #iw-contact-form-web{
        display: none;
    }
    #iw-contact-form-smartphone{
        display: block;
    }

    .account-orders{
        margin: 20px;
    }
    .account-orders .order-buttons{
        grid-template-columns: 43px 43px 43px;
    }
}


@media screen and (max-width: 1140px){

    main.contents .sidebar-products,
    .announce-products{
        display: none;
        
    }
    .filters-close,
    .filters-validation{
        display: block;
    }
    main.contents .sidebar-products{
        position: absolute;
        z-index: 9999;
        background: #fff;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        border-radius: 0;    
    }
    #iw-logo-smartphone,
    #iw-filters-smartphone{
        display: block;
    }
    #iw-company-desktop{
        display:none;
    }
    main.contents{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .main-products {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 960px){

    .announce .images img{
        height: 200px;
        width: 100%;
    }
    .header-flashs {
        display: none;
    }
}

@media screen and (max-width: 870px){
    
    nav,
    .menu,
    .copyright{
        padding: 0 5%;
    }

    .highlight,
    section .main-section,
    section .main-page,
    .main-footer,
    main,
    section .section-contact{
        padding: 50px 5%;
    }

    .main-contact{
        margin: 50px 5%;
    }

    #iw-logo-web{
        display: none;
    }

    #iw-logo-smartphone{
        display: block;
    }

    main.filters .buttons{
        position: relative;
        width: 100%;
    }
    #iw-filters-smartphone{
        display: none;
    }
    .iw-filters-in-absolute{
        display: block !important;
    }
    .filters-margin{
        display: block;
    }
    #iw-company-desktop{
        display:none;
    }

    main.account.contents {
        justify-content: center;
    }
    main.account.contents .sidebar{
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 50px;
    }
    main.account.contents .sidebar>div{
        display: none;
    }
    main.cart.contents .cart h4{
        display: none;
    }

    .main-contact{
        display: flex;
        flex-direction: column-reverse;
    }

    .type-of-vue{
        display: none;
    }
}

@media screen and (max-width: 780px){

    .announce{
        flex-wrap: wrap;
    }
    main.main-products.filters{
        flex-direction: row;
        flex-wrap: wrap;
        grid-gap: 10px;
    }
    .cart-to-hide-on-tablet{
        display: none !important;
    }
    .cart-orders{
        grid-template-columns: 1fr 140px 80px 60px 80px;
    }

    .remove-from-cart{
        position: absolute;
        bottom: 20px;
        right: 20px;
    }

    .remove-from-cart svg{
        display: none;
    }

    .remove-from-cart::before {
        content: "Supprimer";
        display: block;
        margin-bottom: 5px;
        color: #000;
        font-size: 12px;
        margin: 0;
        background: #fb2c39;
        padding: 2px 10px;
        border-radius: 20px;
        color: #fff;
        position: absolute;
        bottom: 0;
        right: -10px;
    }

    #modal-add-custom-product .modal-dialog{
        max-width: 100% !important;
    }

    #modal-add-custom-product .modal-body{
        padding: 25px 0;
    }
    
}

@media screen and (max-width: 640px){
    
    .menu{
        justify-content: center;
    }
    #search-form{
        display: none;
    }
    #search-form-smartphone{
        display: block;
    }

    #product-modal .modal-body{
        display: flex;
        flex-direction: column;
    }

    #product-modal .modal-body img{
        width: 200px;
    }

    #product-modal .modal-body .description{
        min-width: unset;
    }
    .cart-to-hide-on-smartphone{
        display: none !important;
    }
    .cart-orders{
        grid-template-columns: 1fr 80px 60px 80px;
    }
}

@media screen and (max-width: 540px){
    .main-footer{
        grid-gap: 50px;
    }
    #hello-user,
    #product-modal .modal-body .add-to-cart .add-cart-plus span{
        display: none;
    }
    #product-modal .modal-body .add-to-cart {
        justify-content: center;
    }
    .account-orders{
        grid-template-columns: 200px 1fr;
    }  
    #product-modal .modal-dialog {
        max-width: 100% !important;
    }  
}

@media screen and (max-width: 450px){
    
    nav,
    .menu,
    .copyright{
        padding: 0 4%;
    }
    

    .highlight,
    section .main-section,
    section .main-page,
    .main-footer,
    main,
    section .section-contact{
        padding: 50px 2%;
    }

    .main-contact{
        margin: 50px 2%;
    }

    main.contents .sidebar a.account-links {
        font-size: 14px;
    }

    .announce .images{
        flex-wrap: wrap;
    }

    .main-products {
        zoom: 0.8;

    }

    .menu{
        height: auto;
        margin-bottom: 20px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .menu div{
        display: flex;
        align-items: center;
        column-gap: 30px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 15px;
        margin-top: 20px;
    }
    .menu a.nav-item-noel{
        font-size: 30px !important;
        font-weight: 600 !important;
    }
}