.by-store{
    font-size: 12px;
}

.cubo9-loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}

.cubo9-loading-wheel {
    width: 20px;
    height: 20px;
    margin-top: -40px;
    margin-left: -40px;
    
    position: absolute;
    top: 50%;
    left: 50%;
    
    border-width: 30px;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
}

.cubo9-style-2 .cubo9-loading-wheel {
    border-style: double;
    border-color: #ccc transparent;
}

.order-status.status-processing {
    background: #0ac700;
    color: white;
    font-weight: bold;
}

.order-status.status-on-hold {
    background: #ffc146;
    color: white;
    font-weight: bold;
}

.order-status.status-completed {
    background: #7db7dd;
    color: white;
    font-weight: bold;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}


.subcategory-margin{
    margin-left: 30px;
}