.module.basketstatus {
    position: relative;
    width: 150px;
    color: rgb(60,60,60);
    display: inline-block;
    height: 100%;
    background-color: rgb(217,0,54);
    font-size: .9em;
    font-weight: bold;
    }
.module.basketstatus .basket_status {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: white;
    }
.module.basketstatus .basket_status i {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    color: white;
    font-size: 3em;
    margin-bottom: 3px;
    }
.module.basketstatus .basket_status a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    color: white;
    }
.module.basketstatus:hover {
    background-color: rgb(249,28,33);
    }
.module.basketstatus.empty {
    display: none !important;
    }

/* 0-1024 */
@media only screen and (max-width:1024px) {
.module.basketstatus {
    font-size: .8em;
    width: 100px;
    }
.module.basketstatus .basket_status i {
    font-size: 2em;
    }
}

/* 0-640 */
@media only screen and (max-width:640px) {
.module.basketstatus {
    width: 64px;
    }
.module.basketstatus .basket_status .basketcount,
.module.basketstatus .basket_status .basketamount {
    display: none;
    }
.module.basketstatus .basket_status i {
    font-size: 2.4em;
    margin-top: -3px;
    }
}
