#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: 15px;
        }
    }

    .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: 1rem 0 1rem 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: 40px !important;
                    height: 50px !important;
                    text-align: center;
                    margin-left: -1px;
                    font-size: 20px;
                    font-weight: 700;
                }
                .input-group-btn-vertical {
                    position: absolute !important;
                    left: 0;
                    display: flex !important;
                    gap: 42px;
                    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;

                .product-price {
                    font-weight: bold;
                }
            }
        }
    }

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

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