﻿#ajaxloading, .cart {
    width: 100%;
    height: 100%;
    bottom: 0px;
    right: 0px;
    position: fixed;
    background-color: rgba(0,0,0,0.6);
    z-index: 999999;
    display: none;
}

    #ajaxloading img {
        width: 70px;
        height: 70px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -35px;
        margin-top: -35px;
    }

.cart {
}

#cart_content {
    overflow: auto;
    height: 324px;
    border: 1px solid #ebebeb;
    padding-top: 10px;
}

    #cart_content::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
    }

    #cart_content::-webkit-scrollbar {
        width: 10px;
        background-color: #F5F5F5;
    }

    #cart_content::-webkit-scrollbar-thumb {
        background-color: #F90;
        background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    }


    #cart_content .row {
        margin: 0px;
        border-bottom: 1px solid #ebebeb;
        padding: 10px 0px;
    }

        #cart_content .row:hover {
            background-color: #eee;
        }

        #cart_content .row:last-child {
            border-bottom: 0px;
        }

.cart_img {
    max-height: 60px;
    max-width: 100%;
}

.cart .cart_fix {
    position: fixed;
    width: 80%;
    left: 10%;
    top: 5%;
    background-color: white;
    padding: 30px !important;
    -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-radius: 4px;
}

.cart_count {
    text-align: left;
    border: 1px solid #bababa;
    padding: 10px;
    max-width: 70px;
    border-radius: 4px;
}

.text_center {
    text-align: center;
}

.cart_headtable {
    font-weight: bold;
    margin: 0px;
}

.cart_footer {
    padding-top: 30px;
}
.cart_delete_product {
    color:red;
    cursor:pointer;
}