.flyout-action-bar {
    display: none;
}
.listing-flyout-action-bar {
    display: none;
}
.flyout-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    opacity: 0.4;
    z-index: 10;
    display: none;
}

.flyout {
    width: 300px;
    background: white;
    height: 100% !important;
    position: fixed;
    right: 0;
    top: 0;
    display: none;
    z-index: 20;
    box-shadow: 0 -2px 2px 2px rgba(0, 0, 0, 0.4);
    padding: 10px;
}

@media screen and (min-width: 992px) {
    /* This is needed to override inline styles added to the elements when animated by jQuery */
    .flyout-overlay, .flyout {
        display: none !important;
    }
}

@media screen and (max-width: 992px) {
    .flyout-action-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 1px 0 2px 2px rgba(0, 0, 0, 0.4);
        padding: 5px 0;
        font-size: 1.50em;
        z-index: 6;
    }
    .listing-flyout-action-bar {
        display: block;
    }
}