/* cart
==============================================================================*/

.cart, .cart-active {
  padding: 12px;
  position: absolute;
  top: 8px;
  right: 120px;
  width: 320px;
  }
  .cart-active {
    background: #FFF;
    -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow:    0px 3px 3px rgba(0, 0, 0, 0.75);
    box-shadow:         0px 1px 2px rgba(0, 0, 0, 0.75);
    z-index: 9999;
    }
.cart {
  height: 40px;
  overflow: hidden;
  }

.cart .flash.error,
.cart-active .flash.error {
  background-color: #F2DEDE;
  border-color: #EED3D7;
  color: #B94A48;
  border-radius: 4px 4px 4px 4px;
  padding: 15px;
  margin-bottom: 15px;
}
.top-wrap {
  position: relative;
  margin: -12px -12px 36px 0;
  }
.close-top a, .close-bottom, .cart .close-top a {
  background: url(/assets/gfx/shopping_cart/cart-icon_blue.png) 0 3px no-repeat;
  color: #0096d6;
  cursor: pointer;
  font-size: 12px;
  padding: 0 0 0 24px;
  width: 70px;
  }
  .close-top a {
    position: absolute;
    top: 3px;
    left: 0;
    }
  .close-bottom {
    margin: 0 0 -36px 0;
    }
  .close-top:hover, .close-bottom:hover {
    color: #454547;
    }
  .cart .close-top a {
    background: url(/assets/gfx/shopping_cart/cart-icon_white.png) 0 3px no-repeat;
    border-right: 1px solid #68c3ef;
    color: #FFF;
    }
    .cart .close-top span:hover a, .cart .summary:hover {
      cursor: pointer;
      }
.button-bottom {
  background: #68c3ef /* Old browsers */
  background: -moz-linear-gradient(top, #68c3ef 0%, #0096d6 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#68c3ef), color-stop(100%,#0096d6)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #68c3ef 0%,#0096d6 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #68c3ef 0%,#0096d6 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #68c3ef 0%,#0096d6 100%); /* IE10+ */
  background: linear-gradient(to bottom, #68c3ef 0%,#0096d6 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#68c3ef', endColorstr='#0096d6',GradientType=0 ); /* IE6-9 */
  border: 1px solid #0096D6;
  color: #FFF;
  float: right;
  font-size: 12px;
  padding: 3px 6px;
  }
  .button-bottom {
    border-right: none;
    border-bottom: none;
    margin: 12px -12px -12px 12px;
    }
  .button-bottom:hover {
    background: #0096d6; /* Old browsers */
    background: -moz-linear-gradient(top,  #0096d6 0%, #68c3ef 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0096d6), color-stop(100%,#68c3ef)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #0096d6 0%,#68c3ef 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #0096d6 0%,#68c3ef 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #0096d6 0%,#68c3ef 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #0096d6 0%,#68c3ef 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0096d6', endColorstr='#68c3ef',GradientType=0 ); /* IE6-9 */
    color: #FFF;
    }

.summary, .product, .cart input {
  color: #666;
  font-size: 12px;
  }
.summary {
  height: 18px;
  position: absolute;
  top: 3px;
  left: 111px;
  }
  .cart .summary {
    color: #FFF;
    }
.product {
  background: #FFF; /* Old browsers */
  background: -moz-linear-gradient(top,  #eeeeee 0%, #ffffff 15%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(15%,#ffffff)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #eeeeee 0%,#ffffff 15%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #eeeeee 0%,#ffffff 15%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #eeeeee 0%,#ffffff 15%); /* IE10+ */
  background: linear-gradient(to bottom,  #eeeeee 0%,#ffffff 15%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  border-top: 1px dotted #CCC;
  height: 55px;
  position: relative;
  }
  .product img {
    height: 25px;
    margin: 4px 12px 0 0;
    position: absolute;
    top: 10px;
    left: 0;
    width: 25px;
    }
  .product .product-name {
    font-size: 13px;
    height: 14px;
    line-height: 14px;
    overflow: hidden;
    position: absolute;
    top: 12px;
    left: 30px;
    width: 140px;
    }
  .product .product-category {
    font-size: 11px;
    color: #999;
    height: 14px;
    line-height: 14px;
    overflow: hidden;
    position: absolute;
    top: 28px;
    left: 30px;
    width: 140px;
    }
  .product .price {
    position: absolute;
    top: 10px;
    right: 0px;
    text-align: right;
    width: 80px;
    }
  .product form {
    display: inline;
    position: absolute;
    top: 9px;
    right: 86px;
    }
    .product form input {
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      border : 1px solid #CCC;
      color: #666;
      padding : 0 4px;
      width: 25px;
      }
      .product form label {
        font-size: 12px;
        color: #666;
        display: inline;
        line-height: 20px;
        }
  .options {
    /* position: absolute; */
    /* background: #ff6600; */
    display: block;


    }
  .product .options a.refresh {
    position: absolute;
    top: 30px;
    right: 120px;
    }
  .product .options a.delete {
    position: absolute;
    top: 30px;
    right: 98px;
    }
    .product .options a.refresh, .product .options a.delete{
      border: none;
      }
    .product .options a.refresh img, .product .options a.delete img {
      position: static;
      height: 12px;
      width: 12px;
      }
.total {
  border-top: 1px solid #CCC;
  color: #333;
  font-size: 12px;
  margin: 0 0 0 0;
  padding: 6px 0 2px 0;
  text-align: right;
  }
  .total .row {
    height: 20px;
    }
  .row .amount {
    font-weight: bold;
    float: right;
    width: 85px;
    }
.hint {
  background: #F0FEF0 url('/assets/gfx/shopping_cart/bulb.png') 4px 50% no-repeat;
  border: 1px solid #9F9;
  color: #555;
  font-size: 11px;
  line-height: 12px;
  margin: 12px 0 0 0;
  padding: 3px 5px 3px 28px;
  }
