@media print {

    body {
        background-color: white;
    }

    .print-hide {
        display: none;
    }
    
    .header {
        display: none;
    }

    .footer {
        display: none;
    }

    .main__breadcrumbs {
        display: none;
    }

    .main__title {
        display: none;
    }

    .cart-grid {
        flex-direction: column;
        background-color: white;
    }

    .cart-grid__cart {
        margin: 0;
        background-color: white;
    }

    .cart-grid__checkout {
        display: none;
    }

    .cart {
        box-shadow: none;
        background-color: white;
    }

    cart__item {
        background-color: white;
    }

    .cart-total {
        box-shadow: none;
        top: 0;
        position: static;
    }

    .cart-total__btn {
        display: none;
    }

    .cart__pic {
        display: none;
    }

    .cart__del {
        display: none;
    }

    .cart-total__text {
        display: none;
    }

    .cart-grid__sidebar {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .cart-total__main {
       max-width: 600px;
       display: block;
    }
}