div#BasketOverLay span.hasProducts { text-align: center; display: block; padding: 5px 10px 10px; color: black!important; }
div#BasketOverLay span.fa.fa-shopping-cart { display: none; }
div#BasketOverLay { border: none !important; margin-top: 0px !important; background: #00b4e9 !important; left: 0px !important; min-width: 100% !important; position: fixed !important; top: 0px !important;  z-index: 9999999999999 !important; }

div#BasketOverLay {
            /* for chrome and safari*/
            -webkit-animation-duration: 1s;
            -webkit-animation-name: slidein;

            /*for firefox*/
            -moz-animation-duration: 1s;
            -moz-animation-name: slidein;

              /* for opera*/
            -o-animation-duration: 1s;
            -o-animation-name: slidein;

              /* Standard syntax*/
            animation-duration: 1s;
            animation-name: slidein;
        }

        @-webkit-keyframes slidein {
            from {
                margin-top: -30px;
            }

            to {
                margin-top: 0px;
            }
        }

        @-moz-keyframes slidein {
             from {
                margin-top: -30px;
            }

            to {
                margin-top: 0px;
            }
        }
         @-o-keyframes slidein {
            from {
                margin-top: -30px;
            }

            to {
                margin-top: 0px;
            }
        }
          @keyframes slidein {
             from {
                margin-top: -30px;
            }

            to {
                margin-top: 0px;
            }
        }
