.e-loader
{
   background-image: url(../images/loader.gif);
   background-position: 50% 50%;
   background-repeat: no-repeat;
}

.e-loader-mini
{
   background-image: url(../images/loader_mini.gif);
   background-position: 50% 50%;
   background-repeat: no-repeat;
}

.basket-product
{
    cursor: pointer
}

.transfer-to-basket
{
    background-color: #f8b9b7;
    border: 2px dotted orange; 
}

.balance {
    background-image: url(../images/coins.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 32px;
    height: 28px;
    line-height: 28px;
    font-weight: bold;
}
.balance.locked {
    background-image: url(../images/safe.png);
}

.transaction-table {
    margin: 10px auto;
}
.transaction-table caption {
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
}


#basket-wrapper
{
    
}

    #basket-container
    {
        position: absolute;
        top: 0;
        right: 50px;
        width: 200px;
        height: 50px;
        background-color:#7b7b7b;
        color: white;
        border-radius: 0 0 5px 5px;
        border: 1px solid black;
    }
    
    #basket-container span
    {
        margin: 10px 2px 10px 6px;
    }
    
    #basket-container a
    {
        margin: 10px;
        color: white;
        text-decoration: none;
    }
    

.basket-actions-template
{
    width: 100px;
    position: relative;
}

    .basket-actions-template > *
    {
        position:absolute;
        cursor: pointer;
        display: inline-block;
        width: 20px;
        height: 20px;
    }
    
        .basket-actions-template > .up
        {
            top: -7px;
            left: 10px;
            background-image: url(../images/up.png)
        }

        .basket-actions-template > .down
        {
            top: 7px;
            left: 10px;
            background-image: url(../images/down.png)
        }

        .basket-actions-template > .remove
        {
            top: 0px;
            left: 40px;
            background-image: url(../images/remove.png)
        }
        
.basket-ico
{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-image: url(../images/basket.png);
}

    .basket-add
    {

        background-image: url(../images/basket_add.png)
    }
    
#payment-systems-list-wrap {
    width: 550px;
}

#payment-systems-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#payment-systems-list li {
    display: block;
    margin: 5px;
    padding: 10px;
    border: 1px solid silver;
    border-radius: 15px;
    cursor: pointer;
    background-color: white;
    font-size: 20px;
    position: relative;
}

    #payment-systems-list li:hover, #payment-systems-list li.active{
        border-color: orange;
    }
    #payment-systems-list li.disabled{
        background-color:#eee;
        opacity: 0.5;
        cursor: auto;
    }

    #payment-systems-list li.active{
        background-color:#fd9;
        font-weight: bold;
    }
    #payment-systems-list li img {
        width: 100px;
        border-radius: 10px;
        margin-right: 30px;
    }
    
    #payment-systems-list [data-error], #payment-systems-list [data-warning]{
        display: inline-block;
        width: 32px;
        height: 32px;
        cursor: pointer;
        background-image: url(../images/error.png);
        right:60px;
        top:42px;
        position:absolute;
    }
    
    #payment-systems-list .payment-system-error {
        background-image: url(../images/error.png);
    }

        
    #payment-systems-list .payment-system-warning {
        background-image: url(../images/warning.png);
        right:10px;
    }

    
    .popover.payment-list-alert {
        max-width: 400px;
        font-size: 11px;
    }
    
        .popover.payment-list-alert.error {
            background-color: #f2dede;
            border-color: #ebccd1;
            color: #a94442;
        }

            .popover.payment-list-alert.error .arrow {
                border-right-color: #ebccd1;
            }
            
                .popover.payment-list-alert.error .arrow:after {
                    border-right-color: #f2dede;
                }
            
        .popover.payment-list-alert.warning {
            color: #8a6d3b;
            background-color: #fcf8e3;
            border-color: #faebcc;
        }

            .popover.payment-list-alert.warning .arrow {
                border-right-color: #faebcc;
            }
            
                .popover.payment-list-alert.warning .arrow:after {
                    border-right-color: #fcf8e3;
                }