/** Slide cart **/
.slideout {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30em;
    background-color: #FFFFFF;
    border-left: 0.063em solid #f3f4f5;
    z-index: 6000;
    transform: translateX(100%);
    transition: transform 0.3s ease, width 0.3s ease;
    box-shadow: 1px 0 8px 0 rgba(0, 0, 0, 0.5);
}
/* Header */
.slideout-header {
    padding: 10px 20px;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.slideout-header .slideout-close {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: .1rem .4rem;
}
.slideout-header .slideout-close:hover,
.slideout-header .slideout-close:focus {
    color: #fff;
    text-decoration: none;
}
.slideout-header .slideout-close:focus {
    outline: auto 5px -webkit-focus-ring-color;
}
/* Content */
.slideout-content {
    border-top: 0.063em solid #bdc1c5;
    padding: 20px;
}
.slideout-content a {
    font-size: 14px;
    transition: color 0.3s ease;
}
/* Sections */
.slideout-section .section-title {
    font-size: 1.125em;
    text-transform: uppercase;
    margin: 0 0 1.563em 0;
    padding: 0;
}
.slideout-header .section-title {
    font-size: 1.125em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
.slideout-section .section-list {
    margin: 0;
}
.slideout-section .section-list .section-list-item {
    padding: 0 0 0.625em 0;
}
/* Slideout Mask
-----------------------------------*/
.slideout-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5999;
    background-color: #000000;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* Slideout Open
-----------------------------------*/
.slideout-open .slideout-mask {
    opacity: 0.7;
    visibility: visible;
}
.slideout-open .slideout {
    transform: translateX(0);
}

body.slideout-open {
    overflow: hidden;
}
/* Responsive
-----------------------------------*/
@media (max-width: 768px) {
    .slideout-open .slideout {
        width: 100vw;
    }
}

.cart-button {
    color: #fff;
    background-color: #cb3f2c;
    border-color: #cb3f2c;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 16px;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    display: inline-block;
}
.cart-remove {
    padding: .2rem .4rem;
}
.cart-button:hover {
    background-color: #e5554e;
    border-color: #e5554e;
    color: #fff;
}
.cart-button:disabled {
    opacity: .5;
}
.cart-button + .cart-button {
    margin-top: .5rem;
}

.cart-loading {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.8);
    display: none;
}

.cart-totals-message {
    font-weight: 400;
}
.cart-totals-message span.error {
    color: #842029;
}
.cart-totals-message span.success {
    color: #0f5132;
}

.cart-loading > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-block {
    display: block;
    width: 100%;
}

table.slideout-cart, table.slideout-cart td {
    border: none;
}
table.slideout-cart tr td:first-child {
    text-align: left;
    padding-left: 0;
}
table.slideout-cart tr td:last-child {
    padding-right: 0;
}
table.slideout-cart.cart-totals tr td:nth-child(2) {
    text-align: right;
}

.cart-item-name a:visited,
.cart-item-name a:active {
    color: rgb(0, 102, 204);
}

.loading-cart {
    text-align: center;
    padding: 50px;
}

.cart-totals input[type=text] {
    /*padding: .375rem .75rem;*/
    padding: 5px;
    margin: 0;
    line-height: 1.5;
    width: 100%;
}

.slideout-content .cart-item-thumbnail img{ width: 50px; height: 50px; }
.slideout-content .cart-item-quantity .input-text.qty.text{ width: 50px; }
.slideout-content .slideout-cart.cart-items tr{ vertical-align: middle }
.slideout-content .slideout-cart.cart-items tr td{ text-align: center; }
.cart-button.checkout{ background-color: #210DA5; border-color: #210DA5; }
.cart-button.checkout:hover { background-color: #2f15df; border-color: #2f15df; }
.slideout-cart.cart-totals .cart-remove-coupon { font-size: 12px; padding: 2px 5px 2px 5px; margin-left: 5px; }