/*
    expedienteh.com
    cart.css
*/
@charset "utf-8";

/* mini cart */
.cart-brief {
    background-color: white;
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    display: block;
    left: auto;
    margin-top: 30px;
    opacity: 0;
    padding: 20px;
    right: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 280px;
    z-index: -99999;
}

.open .cart-brief  {
    background-color: white !important;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.cart-products {}

.cart-product {
    margin-bottom: 15px;
}

.cart-product .cart-image {
    display: block;
    float: left;
    margin-right: 15px;
    width: 65px;
}

.cart-product .cart-image a {
    display: block;
}

.cart-product .cart-image a img {
    width: 100%;
}

.cart-product .cart-info {
    overflow: hidden;
    padding-right: 20px;
    position: relative;
}

.cart-product .cart-info h5 {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.cart-product .cart-info h5 a {
    color: #666;
}

.cart-product .cart-info h5 a:hover {
    color: #3f3f3f;
}

.cart-product .cart-info p {
    margin: 0;
    font-size: 14px;
}

.cart-product .cart-info .cart-delete {
    line-height: 18px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.cart-product .cart-info .cart-delete i {
    display: block;
    font-size: 16px;
}

.cart-product .cart-info .cart-delete:hover {
    color: #3f3f3f;
}

.cart-totals {
    margin-bottom: 15px;
}

.cart-totals h5 {
    color: #666;
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}
.cart-totals h5 span {
    display: block;
    float: right;
}

.cart-bottom {
    text-align: center;
}
.cart-bottom a {
    background-color: #282828;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    height: 36px;
    line-height: 24px;
    padding: 7px 15px;
    text-transform: uppercase;
    width: 100%;
}

.cart-bottom a:hover {
    background-color: #3f3f3f;
}
