/*! https://www.vancheer.com 
 * Copyright (c) VANCHEERABO. All rights reserved. 
 * https://www.vancheer.com */

.basket {
    position: fixed;
    right: -320px;
    top: 0;
    bottom: 0;
    background: #353535;
    width: 320px;
    color: #fff;
    transition: right 300ms ease-in;
    z-index: 999;
}

.basket.active {
    right: 0;
}

.basket a {
    color: #fff;
}

.basket a:focus,
.basket a:visited {
    color: #fff;
    text-decoration: none;
}

.basket a:hover {
    color: #d7d7d7;
    text-decoration: none;
}

.basket a:active {
    color: #bababa;
    text-decoration: none;
}

.basket .close {
    color: #fff;
    font-size: 3rem;
    display: block;
    padding: 1rem 1.7rem;
    background: #353535;
    text-shadow: none;
    opacity: .8;
}

.basket .close:focus,
.basket .close:hover {
    color: #fff;
    opacity: 1;
}

.basket .price {
    margin-right: 2rem;
}

.basket .price small {
    color: #d7d7d7;
    font-size: 70%;
}

.basket .basket-header,
.basket .basket-footer {
    background: #272727;
}

.basket .basket-header {
    height: 50px;
}

.basket .basket-header h4 {
    padding: 1.5rem;
    margin: 0;
}

.basket .basket-body {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 105px;
    overflow: auto;
}

.basket .basket-body hr {
    margin-top: 0;
    border-top-color: #272727;
}

.basket .basket-body ul {
    list-style: none;
    margin: 0;
}

.basket .basket-body ul>li {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #3e3e3e;
}

.basket .basket-body ul>li:nth-child(even) {
    background: #262626;
}

.basket .basket-body ul>li.empty {
    padding: 1.5rem 1rem;
}

.basket .basket-body ul>li img {
    max-width: 100%;
    margin-bottom: 1rem;
}

.basket .basket-body ul>li h5 {
    font-size: 16px;
    margin-top: 0;
}

.basket .basket-body ul>li .tag-description {
    color: #d7d7d7;
}

.basket .basket-body ul>li .quantity-set {
    font-size: 16px;
    white-space: nowrap;
}

.basket .basket-body ul>li .quantity-set .quantity {
    margin: 0 4px;
}

.basket .basket-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.basket .basket-footer .total {
    margin-bottom: 2rem;
}

.navigation a.show-basket .active {
    color: #ca2026;
}

.btn-check-out {
    background: #ff6a00;
    display: block;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    border: none;
    width: 100%;
    text-decoration: none;
    margin-bottom: 1rem;
}

.btn-check-out:hover {
    color: #fff;
    text-decoration: none;
    background: #ea6100;
}

.btn-check-out:active {
    background: #d65900;
}

.checkout {
    margin-bottom: 3rem;
}

.checkout .checkout-header {
    margin: 4rem 0;
}

.checkout .checkout-header svg {
    width: 1.5rem;
}

.checkout .checkout-body {
    max-width: 960px;
    margin: 0 auto;
}

.checkout .panel-default>.panel-heading {
    background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
    background-color: #f5f5f5;
    border-color: #ddd;
}

.checkout .product-info .panel-body {
    padding-top: 0;
    padding-bottom: 0;
}

.checkout .product-info .basket-item {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.checkout .product-info .basket-item:nth-child(even) {
    background: #f5f5f5;
}

.checkout .product-info .tag-description {
    color: #5d5d5d;
}