#cart #wrapper {
    background-color: #F5F5F5;

    h1 {
        margin-bottom: 0px;
    }

    .container {
        margin: 0;
        padding: 0;
        width: 100%;
        min-width: 100%;

        .row {
            margin: 0;
            padding: 0;
        }

        #content-wrapper {
            margin: 0 !important;
            padding: 0 !important;
        }

        #notifications {
            padding: 0 15px;
        }

        .breadcrumb {
            padding-left: 6px;
        }
    }

    .cart-grid.row {
        padding: 0;
        margin: 0;
    }

    .cart-container .card-block {
        background-color: #F5F5F5;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding-left: 0 !important;

        h1 {
            font-weight: bold;
        }

        span {
            display: flex;
            align-items: end;
        }
    }

    .cart-container .card-block::after {
        content: none;
    }

    .cart-container .cart-overview {
        background-color: #F5F5F5;
        padding-top: 0;
        padding-left: 0;
    }

    .continue-shopping {
        padding-left: 0;

        .label {
            text-transform: uppercase;
            font-weight: 500;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-decoration-color: #EB6909;
        }

        .label:hover {
            color: black;
        }
    }

    @media screen and (max-width: 576px) {
        .continue-shopping {
            text-align: center;
            margin-bottom: 20px;
        }

        .cart-grid-right {
            padding: 0;

            .card-grid-right-title {
                padding: 1rem 15px !important;
            }
        }
    }

    .cart-grid-right {
        .card-block {
            padding: 0;

            h1 {
                font-size: 1.5rem;
            }
        }

        .cart-summary {
            padding: 1.5rem;
            border-radius: 8px;
            background-color: white;

            .cart-detailed-actions {
                padding-top: 0;

                .btn-primary {
                    border-radius: 8px;
                    background-color: #211F1F;
                    color: white;
                    font-size: 12px;
                    padding-top: 15px;
                    padding-bottom: 15px;
                }

                .disabled {
                    background-color: #f6f6f6;
                }
            }
        }

        .card-block-2 {
            border-radius: 8px;
            background-color: white;
            padding: 1.5rem;
        }

        .payment-secure {
            border-top: 1px solid #E8E9EA;
            padding-top: 1rem;
            border-bottom: 1px solid #E8E9EA;

            .payment-secure-title {
                font-weight: bold;
                text-align: left;
                width: 100%;
            }
        }
    }

    .cart-item {
        padding-top: 12px;
        padding-bottom: 12px;
        background-color: white;
        border-radius: 8px;
        margin-bottom: 10px;

        .product-line-grid {
            display: flex;
            flex-wrap: wrap;
        }

        .product-line-grid-left img {
            min-height: 100px;
            min-width: 100px;

            @media only screen and (min-width: 1001px) {
                min-height: 180px;
                min-width: 180px;
            }
        }

        .product-line-grid-body {
            display: grid;
            align-items: center;
        }

        .product-line-grid-body {
            /*display: flex;*/
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .product-line-info:first-child {
                margin-bottom: 5px;
            }

            .product-line-info {
                .product-discount {
                    .regular-price {
                        font-weight: 400;
                        color: black;
                    }

                    .discount-amount,
                    .discount-percentage {
                        background-color: #D0111A;
                        border-radius: 4px;
                    }
                }

                .current-price {
                    .price {
                        color: black;
                        font-weight: 400;
                    }
                }
            }
        }

        .product-line-grid-third {
            .quantity {
                display: flex;
                flex-direction: column;
                justify-content: end;
                height: 100%;
                padding-bottom: 40px;

                .bootstrap-touchspin {
                    position: relative;
                    padding-left: 32px;
                    padding-right: 40px;
                }

                #quantity_wanted,
                .bootstrap-touchspin input.js-cart-line-product-quantity,
                .input-group-btn-vertical .btn {
                    border: none;
                    /*border-top: 1px #F3F3F3 solid;*/
                    /*border-bottom: 1px #F3F3F3 solid;*/
                }

                #quantity_wanted,
                .js-cart-line-product-quantity {
                    width: 60px !important;
                    height: 50px !important;
                    text-align: center;
                    margin-left: -1px;
                    font-size: 16px;
                    font-weight: 700;
                }

                .input-group-btn-vertical {
                    position: absolute !important;
                    left: 0;
                    display: flex !important;
                    gap: 59px;
                    z-index: 100;
                    transform: rotate(180deg);
                    border: 1px solid #E8E9EA;
                    border-radius: 8px;
                }

                .input-group-btn-vertical .btn {
                    height: 50px;
                    margin: 0 !important;
                }

                .input-group-btn-vertical .btn i {
                    top: 50%;
                    transform: translateY(-50%);
                    color: transparent;
                }

                .bootstrap-touchspin-up::before,
                .bootstrap-touchspin-down::before {
                    color: black;
                    font-size: 20px;
                    /*font-weight: 700;*/
                }

                .bootstrap-touchspin-up::before {
                    content: '+';
                }

                .bootstrap-touchspin-down::before {
                    content: '-';
                }

                /*.bootstrap-touchspin-up {*/
                /*    border-bottom-left-radius: 10px !important;*/
                /*    border-top-left-radius: 10px !important;*/
                /*}*/
                /*.bootstrap-touchspin-down {*/
                /*    border-top-right-radius: 10px !important;*/
                /*    border-bottom-right-radius: 10px !important;*/
                /*}*/

                .js-cart-line-product-quantity {
                    border-top: 1px solid #E8E9EA !important;
                    z-index: 1000;
                }
            }
        }

        .product-line-grid-right {

            .product-line-actions {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
                padding-top: 20px;
                padding-bottom: 40px;
            }

            @media screen and (max-width: 576px) {
                .product-line-actions {
                    padding: 0;

                    .cart-line-product-actions {
                        position: absolute;
                        top: -250%;
                        right: 0;
                    }
                }
            }

            .price {
                align-items: end;
                margin-top: auto;
                .product-price {
                    font-weight: bold;
                }
            }
        }
    }

    .blockreassurance_product_elem {
        /*border-top: 1px solid #E8E9EA;*/
        padding-top: 16px;

        .item-product {
            margin-right: 25px;
        }
    }
}

.input-group.focus {
    outline: 3px solid #EB6909;
    border-radius: 4px;
}

.form-control {
    color: #211F1F;
}

.custom-radio #field-id_gender-3 {
    width: 16px;
    height: 16px;
}

.custom-radio #field-id_gender-3,
#field-id_gender-2 {
    width: 16px;
    height: 16px;
}

.form-control-comment {
    padding-top: 5px;
}


.page-authentication {
    #wrapper {
        background: rgb(251, 244, 237);
        background: linear-gradient(180deg, rgba(251, 244, 237, 1) 348px, rgba(255, 255, 255, 1) 0);
        min-height: 522px;
    }
}

/* .ce-product-variants__label {} */

/* Rollover */
.special-decorations-white a {
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    position: relative;
}

.special-decorations-white a:hover {
    color: white;
    position: relative;
    text-decoration: none !important;
}

.special-decorations-white a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.6s ease;
}

.special-decorations-white a:hover::after {
    width: 100%;
}

.special-decorations a {
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    position: relative;
    text-underline-offset: 4px !important;
}

.special-decorations a:hover {
    color: white;
    position: relative;
    text-decoration: none !important;
}

.special-decorations a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #EB6909 !important;
    transition: width 0.6s ease;
}

.special-decorations a:hover::after {
    width: 100%;
}

.active-filters-container a.PM_ASResetSearch {
    padding: 0;
    width: fit-content;
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    position: relative;
    text-underline-offset: 2px !important;
}

.active-filters-container a.PM_ASResetSearch:hover {
    color: white;
    position: relative;
    text-decoration: none !important;
}

.active-filters-container a.PM_ASResetSearch::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #000000 !important;
    transition: width 0.6s ease;
}

.active-filters-container a.PM_ASResetSearch:hover::after {
    width: 100%;
}

section.elementor-element.elementor-element-08740a1.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.elementor-section.elementor-top-section .special-decorations.elementor-widget-text-editor {
    padding: 20px 0 0 0 !important;
}

div#actualite_product .swiper-wrapper {
    align-items: stretch !important;
}


div#actualite_product .swiper-wrapper .elementor-image-box-description {
    min-height: 126px !important;
}

div#actualite_product .swiper-wrapper .elementor-image-box-content p:nth-child(3) {
    justify-content: flex-end !important;
}

button.btn.btn-primary.add-to-cart.add-to-cart-desktop[disabled]:hover {
    background: #000 !important;
}

.page-product .old-product *:hover,
.page-product #loyalty a:hover,
.page-product #produit-livraison a:hover {
    color: #eb6909 !important;
}

/* checkbox */
#PM_ASForm_1 input[type="checkbox"] {
    display: none;
}

#PM_ASForm_1 input[type="checkbox"]+label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 20px;
}


#PM_ASForm_1 input[type="checkbox"]+label::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 1px #000000;

}


#PM_ASForm_1 input[type="checkbox"]:checked+label::before {
    background-color: #eb6909;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgb(0 0 0);
}

#PM_ASForm_1 input[type="checkbox"]:checked+label::after {
    content: '';
    position: absolute;
    left: 0px;
    visibility: hidden;
    border: solid #fff;

    border: 1px solid #eb6909;
}

#PM_ASForm_1 input[type="checkbox"]+label:hover::before {
    box-shadow: 0 0 0 1px #eb6909;
    border: 2px solid #ffffff;
}

/* checkbox */
/* select */
#PM_ASForm_1 select:active,
#PM_ASForm_1 select:focus,
#PM_ASForm_1 select:focus-within,
#PM_ASForm_1 select:focus-visible {
    border: 1px solid #E3DAD1 !important;
    outline: none !important;
    outline-color: #E3DAD1 !important;
    outline-width: 1px !important;
}

/* select */

#product .produit-livraison-container {
    padding-bottom: 14px;
}

/* contact */

.custom-button-contact a:hover {
    background: #EB6909 !important;
    transition: background 200ms ease !important;
}

/* contact */


#category, #module-pm_advancedsearch4-searchresults .pagination .js-search-link{
    color: #211F1F;
    font-family: Gotham;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 12px;
    /* text-align: center; */
}

.product-miniature .thumbnail-container {
    padding: 10px 32px 32px 32px !important;
    border: 1px solid #E8E9EA;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 0;
}

.thumbnail-container .product-description {
    padding: 0px !important;
}
.extra-informations .variant-links
{
    display: flex;
    margin-left: 0px !important;
    padding: 0;
    min-height: 14px;
    top: 0;
}

.elementor-toggle .elementor-tab-content {
    padding: 0px;
    border-bottom: 1px solid #d4d4d4;
}

.elementor-tab-content ol, .elementor-tab-content ul, .elementor-widget-text-editor ol, .elementor-widget-text-editor ul {
    list-style: revert;
    padding-left: 28px;
}

.elementor-tab-content p:not(#e), .elementor-widget-text-editor p:not(#e) {
    padding-bottom: 14px;
}

.block-promo .promo-code p {
    color: inherit;
}

.cart-grid-right .promo-discounts .cart-summary-line .label .code {
    color: #EB6909;
    font-size: 15px;
}

.block-promo .promo-code .separator{
    background-color: #F8D8C0;
    margin-top: 15px;
    margin-bottom: 20px;

}

/*@media screen and (min-width: 1200px) {
    body#addresses nav.breadcrumb {
      max-width: 42% !important;
    }
    body#addresses .container #main {
        max-width: 41%;
        margin: 0 auto !important;
        margin-top: 0px;
        display: block !important;
        margin-top: 50px !important;
      }
}*/



@media (max-width: 768px) {
    #product {
        .product-description {
            margin: 0;
        }
    }

    .elementor-html .elementor-widget-wrap, .elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
        display: block !important;
    }
    .blockreassurance_product {
        margin-top: 0px !important;
    }

    .reseaux_sociaux > .elementor-background-overlay {
        background-color: transparent !important;
        background-image: linear-gradient(180deg, #EC6C09 41%, rgba(236, 108, 9, 0) 79%),url('/img/large-illustration-reseaux-mobile.png') !important ;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover !important;
        opacity: 1 !important;
        transition: background 0.3s, border-radius 0.3s, opacity 0.3s !important;
    }
}

.js-product.product{
    width: 332px !important;
    /*height: 487px !important;*/
}

.pagination .next {
    float: right;
    color: #211F1F;
    font-family: Gotham;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 12px;
}
.pagination .previous {
    float: left;
    color: #211F1F;
    font-family: Gotham;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 12px;
}


article.product-miniature {
    & .thumbnail-container {
      & .thumbnail-top {
        & .extra-informations {
          & .variant-links {
            padding-left: 3px !important;
          }
        }
      }
    }
  }

  #products .products, .featured-products .products, .product-accessories .products {
    margin-left: 0px !important;
  }