.fixed-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgba(0, 0, 0, .1);
    transform: translateY(100%);
    transition: .4s;
    z-index: 8008135;
}

    .fixed-order-bar.show {
        transform: translateY(0);
    }

    .fixed-order-bar-inner {
        display: flex;
        align-items: center;
        padding: 1em 0;
        margin: 0 auto;
        overflow: hidden;
    }

        .fixed-order-bar-inner > *:not(:last-child) {
            margin-right: 1em;
        }


        .fixed-order-bar__image-container {
            display: none;
            width: 50px;
            height: 50px;
            line-height: 50px;
        }

            .fixed-order-bar__image {
                max-width: 100%;
                max-height: 100%;
                margin: 0 auto;
                vertical-align: middle;
            }


        .fixed-order-bar__product-container {
        }

            .fixed-order-bar__product-container > *:not(:last-child) {
                margin-bottom: .5em;
            }

            .fixed-order-bar__product-name {
                font-weight: bold;
            }

            .fixed-order-bar__product-price {
            }


        .fixed-order-bar__order-container {
            margin-left: auto;
        }

            .fixed-order-bar__order-button {
            }

                .fixed-order-bar__order-button-icon {
                    fill: currentColor;
                    stroke: currentColor;
                    width: 1.16em;
                    height: 1em;
                }

                .fixed-order-bar__order-button-text {
                    display: none;
                    margin-left: .5em;
                }


@media only screen and (min-width: 768px) {

    .fixed-order-bar__image-container,
    .fixed-order-bar__order-button-text {
        display: initial;
    }
}