/*

    Idea from
    http://csswizardry.com/2013/04/shame-css/

    We all know that, no matter how hard we may try, sometimes
    we do need to use quick fixes, hacks and questionable techniques
    in our code. It happens, whether we like to admit it or not.

    This file is where any quick fixes, hacks will go.
    Please document as well as you can why you had to do
    the quick fix or hack.

    ========================================================================== */


/*  Overwrites hide-for-small display inherit !important on the
    Related Products section of the single product
    page.
*/
.related-products-container .store-credit {
    display: none !important;
}



/*  More cart drop down bugs with the f-dropdown default styles
    We should recreate the cart drop down with our own custom
    script
*/
#cart-drop.f-dropdown li a.prod-link {
    padding: 0;
    display: inline;
}



/* FIX FOR THE MANUAL POSTIONING OF THE ACCOUNT MENU */
@media only screen and (min-width: 979px) and (max-width: 1047px) {

    #account-drop.open {
        margin-left: 256px;
    }

}

