

.dd-cart {
  width:340px;
  padding:15px;
  overflow: inherit;
  background:#FFF;
  position:absolute;
  top:70px;
  right:0;
  transition:all .5s;
  z-index:9999;
  text-align:left;
  border:1px solid #eee;
  border-top:none;
	max-height: none !important;
  visibility: hidden;
  opacity:0;

  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  -mox-box-shadow: 0 5px 10px rgba(0,0,0,0.1);

  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.cart-link:hover .dd-cart {
  visibility: visible;
  opacity:1;
  top:50px;
}



.dd-cart .dd-item {
  width:100%;
  clear:both;
  margin-bottom:15px;
  position:relative;
}

.dd-cart .image {
  width:100px;
  display:inline-block;
}

.dd-cart .image a {
  height:auto !important;
}

.dd-cart .content {
  width:200px;
  display:inline-block;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
  -moz-transform:translateY(-50%);
}

.dd-cart .title {
  display:block;
  margin-left:10px;
}

.dd-cart .title a {
  line-height:normal !important;
  padding:0 !important;
  height:inherit !important;
  color:#939393 !important;
}

.dd-cart .price {
  display:block;
  margin-left:10px;
  font-weight: 600;
  margin-top: 5px;
  font-size: 14px;
  text-transform: none;
}

.dd-cart .dd-footer {
  display:block;
  margin-top:10px;
}

.dd-cart .dd-footer .btn {
  width: 100%;
  text-align: center;
  height:45px;
  line-height:34px;
}
