/* Basket ---------------------------- */
#header #cart {
    position: absolute;
    top: 34px;
    right: 380px;
    z-index: 25;
    min-width: 300px;
}
#header #cart .heading {
    float: right;
    position: relative;
    z-index: 1;
}
#header #cart .heading .bag {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 34px;
    width: 50px;
    background: #65C0FA url('../../image/layout/header/b_cart.png') right no-repeat;
    -webkit-border-radius: 0px 3px 3px 0px;
    -moz-border-radius: 0px 3px 3px 0px;
    -khtml-border-radius: 0px 3px 3px 0px;
    border-radius: 0px 3px 3px 0px;
}
#header #cart .heading .bag:hover {
    transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
}
#header #cart .heading a {
    float: right;
    color: #474747;
    height: 25px;
    text-decoration: none;
    padding: 7px 60px 0px 15px;
    border: 1px solid #E7E7E7;
    background: #FFF url('../../image/layout/search_bg.png') repeat-x;
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -khtml-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
}
#header #cart .heading a span {
    height: 9px;
    padding-right: 15px;
    background: transparent url('../../image/layout/arrow-down-white.png') 100% 50% no-repeat;
}
#header #cart .content {
    clear: both;
    display: none;
    position: relative;
    padding: 8px;
    min-height: 150px;
    border: 1px solid #E5E8EA;
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    background-color: #FFF;
}
#header #cart.active .bag {
    -webkit-border-radius: 0px 3px 0px 0px;
    -moz-border-radius: 0px 3px 0px 0px;
    -khtml-border-radius: 0px 3px 0px 0px;
    border-radius: 0px 3px 0px 0px;
}
#header #cart.active .heading a {
    -webkit-border-radius: 3px 3px 0px 0px;
    -moz-border-radius: 3px 3px 0px 0px;
    -khtml-border-radius: 3px 3px 0px 0px;
    border-radius: 3px 3px 0px 0px;
    border-bottom: none;
}
#header #cart.active .content {
    display: block;
    border-top: none;
}
.mini-cart-info table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 5px;
}
.mini-cart-info td {
    color: #000;
    vertical-align: top;
    padding: 10px 5px;
    border-bottom: 1px solid #EEEEEE;
}
.mini-cart-info .image { width: 1px }
.mini-cart-info .image img {
    border: 1px solid #EEEEEE;
    text-align: left;
}
.mini-cart-info .name small { color: #666 }
.mini-cart-info .quantity { text-align: right }
.mini-cart-info td.total { text-align: right }
.mini-cart-info .remove { text-align: right }
.mini-cart-info .remove img { cursor: pointer }
.mini-cart-total { text-align: right }
.mini-cart-total table {
    border-collapse: collapse;
    display: inline-block;
    margin-bottom: 5px;
}
.mini-cart-total td {
    color: #000;
    padding: 4px;
}
#header #cart .checkout {
    text-align: right;
    clear: both;
}
#header #cart .checkout a.button {
    cursor: pointer;
    color: #000000;
    line-height: 14px;
    font-size: 13px;
    font-family: 'Open Sans',Helvetica,Arial,Verdana,sans-serif;
    margin: 5px 0px 5px 10px;
    border-top: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    border-bottom: 2px solid #F27D00;
    border-left: 1px solid #DDDDDD;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}
#header #cart .checkout a.button {
    display: inline-block;
    text-decoration: none;
    padding: 5px 18px 5px 18px;
}
#header #cart .empty {
    padding-top: 50px;
    text-align: center;
}