


/* --- SOURCE FILE: /workspace/css/cart.css --- */


body{
    background-color: rgba(229, 229, 231, 0.05);
}
h2{
    font-size: 22px;
}

@media only screen and (min-width: 1220px) {
    .sidebar-nav {
        top: 56px;
    }
}

.cart-title{
    padding: 0 30px 0 40px;
    margin: 24px 0 0;
}
.page{
    margin: 12px 0;
    width: 100%;
    padding-bottom: 0;
}

.table {
    margin-bottom: 0;
}

.page h2 {
    color: inherit;
    padding: 30px 10px 10px;
}

.page.short {
    min-height: 10px;
}

.page-cover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 999;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-top: none;
}

.orderPage table td img {
    min-width: 60px;
    max-width: 80px;
    width: 100%;
}
.collapse-account{
    border: none;
    border-radius: 50px!important;
    padding-top: 9px;
    margin-top: -6px;
    outline: none!important;
    background-color: transparent;
}
.facebook-btn{
    background-size: 20px;
    padding: 0 20px;
    display: inline-block;
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 28px;
    border-radius: 0;
}

.price-cell {
    padding: 0 20px!important;
    vertical-align: middle!important;
    text-align: center!important;
    font-style: italic!important;
    font-size: 16px!important;
    white-space: nowrap!important;
}

.quantity-cell{
    vertical-align: middle!important;
    text-align: center!important;
}

.quantity-cell select{
    color: #333!important;
    font-size: 20px!important;
    border: 1px solid #689F38!important;
    outline: none!important;
    text-align: center!important;
    padding: 0 0 0 10px!important;
}

.remove-item {
    font-size: 11px;
    color: #ef6c00!important;
}

.helper{
    float: left;
    width: 100%;
}

.newPrice {
    color: inherit;
}

.checkbox .acord-label-unchecked,
.checkbox .acord-label-checked{
    display: none;
}


/* --- SOURCE FILE: /workspace/css/spinner.css --- */



#loading{
    display: none;
    z-index:100000;
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color: rgba(255,255,255,0.9);
}

#loadingContainer {
    display: inline-block;
    position: absolute;
    top:50%;
    left:50%;
    margin-top: -150px;
    margin-left: -75px;
    width: 150px; /* CONTAINERWIDTH */
    height: 150px; /* CONTAINERWIDTH */
}
#loadingMessage{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -85px;
    margin-left: -75px;
    width: 150px; /* CONTAINERWIDTH */
    text-align: center;
}
.spinningCircle {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0);
    border-top-color: 4px solid #E3F2FD;
    border-right-color: 4px solid #E3F2FD;
    -webkit-animation: single2 1568ms infinite linear;
    animation: single2 1568ms infinite linear;
}

@-webkit-keyframes single2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border-top-color: #E3F2FD;
        border-right-color: #E3F2FD;
    }
    50% {
        border-top-color: #1976D2;
        border-right-color: #1976D2;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        border-top-color: #E3F2FD;
        border-right-color: #E3F2FD;
    }
}

@keyframes single2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border-top-color: #E3F2FD;
        border-right-color: #E3F2FD;
    }
    50% {
        border-top-color: #1976D2;
        border-right-color: #1976D2;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        border-top-color: #E3F2FD;
        border-right-color: #E3F2FD;
    }
}