.gomst-wc-cart {
    padding: 4rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    .woocommerce-notices-wrapper,
    .wc-empty-cart-message {
        width: 100%;
    }
    .return-to-shop {
        display: none;
    }
    .woocommerce-cart-form.gomst-cart__form {
        width: 69%;
        display: flex;
        flex-wrap: wrap;
        border: 2px solid #808080;
        border-radius: 0.5rem;
        justify-content: flex-start;
        margin-bottom: 1.5rem;
        @media only screen and (max-width: 991px) {
            width: 100%;
        }
        .variation {
            text-align: left;
        }
        table {
            border: none;
            th, td, tr {
                border: none;
            }
        }
        a {
            color: #000;
            font-weight: 500;
        }
        .input-text {
            padding: 0.7rem 0.5rem !important;
            border-radius: 0.5rem;
            border: 2px solid #808080 !important;
        }
        .button {
            padding: 0.8rem 1rem;
            border-radius: 0.5rem;
            border: 2px solid #000;
            background: #000;
            color: #fff;
            font-size: 1rem;
            line-height: 1.2rem;
            font-weight: 500;
            transition: 0.3s;
            &:hover {
                background: #fff;
                color: #000;
            }
        }
    }
    .cart-collaterals {
        width: 29%;
        border: 2px solid #808080;
        border-radius: 0.5rem;
        justify-content: flex-start;
        padding: 1rem;
        h2 {
            font-size: 1.5rem;
            line-height: 2rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 1rem;
        }
        table {
            border: none;
            th, td, tr {
                border: none;
            }
        }
        @media only screen and (max-width: 991px) {
            width: 100%;
        }
        .cart_totals {
            float: none;
            width: 100%;
            a {
                color: #000;
            }
            .button {
                padding: 0.8rem 1rem;
                border-radius: 0.5rem;
                border: 2px solid #000;
                background: #000;
                color: #fff;
                font-size: 1rem;
                line-height: 1.2rem;
                font-weight: 500;
                transition: 0.3s;
                &:hover {
                    background: #fff;
                    color: #000;
                }
            }
        }
    }
    .wc-proceed-to-checkout {
        a.button,
        .button {
            padding: 0.8rem 1rem;
            border-radius: 0.5rem;
            border: 2px solid #000;
            background: #000;
            color: #fff;
            font-size: 1rem;
            line-height: 1.2rem;
            font-weight: 500;
            transition: 0.3s;
            &:hover {
                background: #fff;
                color: #000;
            }
        }
    }
}