/* Product */
.product-block {
	position: relative;
}

.product-block .cart:hover .options {
	display: block
}

.product-block .cart:hover ~ .action {
	position: static;
}

.product-block .action {
	position: relative;
	z-index: 333;
}

.product-block .bottom > div {
	position: relative;
}

.product-block .options {
	width: calc(100% - 100px);
	height: 39px;
	text-align: center;
	color: #fff;
	background: #ca1a28;
	overflow: hidden;
	position: absolute;
	top: 20px;
	left: 50px;
	z-index: 111;
	display: none;
}

.product-block .options label {
	font-size: 16px;
	display: inline-block;
	cursor: pointer;
	padding: 8px 4px;
}

.product-block .options label:hover {
	color: #333;
}

.product-block .options label span {
	display: none;
}

/* Mini Cart */
#responsive-cart {
	position: relative;
	cursor: pointer;
}

#responsive-cart .pull-right-abs {
	position: absolute;
	top: 0;
	right: 0;
}

.mini-cart-open .mini-cart {
	right: 0;
	display: block !important;
}

.mini-cart-open #mini-cart-backdrop {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}

.mini-cart .table-fix {
    max-height: 54%;
    overflow-y: auto;
	overflow-x: hidden;
}
.mini-cart .table {
  	background-color: #fff; white-space: inherit;
}

.mini-cart {
	max-width: 600px;
	width: 100%;
	height: 100%;
	background-color: #fff;
	padding-bottom: 20%;
	position: fixed;
	top: 0;
	right: -600px;
	z-index: 99999;
	color: #000;
	padding:  0 15px;
	display: none;
}

.mini-cart h2 {
  width: 100%;
  display: inline-block;
  vertical-align:  top;
}

.mini-cart i,
.mini-cart span {
	-webkit-transition: all .3s ease-out;
    -moz-transition: 	all .3s ease-out;
    -o-transition: 		all .3s ease-out;
    transition: 		all .3s ease-out;
}

.mini-cart .heading {
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

.mini-cart .heading i {
  position: relative;
  top: 0;
}

.mini-cart h2 span,
.mini-cart td span {
	color: #000 !important;
}

.mini-cart td i {
	font-size: 16px !important;
	font-weight: normal !important;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
}


.mini-cart .heading:hover span,
.mini-cart .heading:hover i,
.mini-cart td i:hover {
   color: #ca1a28 !important;
}

.mini-cart td.image {
	width: 10%;
	padding-left: 0;
}

.mini-cart td.product {
	width: 40%;
}

.mini-cart td.quantity {
	width: 20%;
	text-align: center;
}

.mini-cart td.total {
	width: 15%;
	font-size: 16px;
	text-align: center;
}

.mini-cart td.remove {
	width: 5%;
	text-align: right;
	padding-right: 0;
}

.mini-cart .mini-cart-bottom {
	width:  100%;
	position: relative;
	left: 0;
	bottom: 0%;
	padding: 0 15px;
}

.mini-cart .buttons a ~ a {
	float: right;
}

.mini-cart .quantity > div > *{
	display: inline-block;
}

.mini-cart .quantity i,
.mini-cart .remove i {
	cursor: pointer;
}

.mini-cart .quantity .form-control {
	width: 40px;
	text-align: center;
	margin: 0 6px;
}

/* Responsive */
@media (max-width: 767px) {
	.mini-cart-open #mini-cart-backdrop  {
		display: none !important;
	}

	.mini-cart .table-fix {
	    max-height: 40% !important;
	   }

	.mini-cart table.first td {
		border: none;
		vertical-align: top;
		display: inline-block;
		margin-left: -4px;
	}
	
	.mini-cart table.first tr ~ tr td.image,
	.mini-cart table.first tr ~ tr td.product  {
		border-top: 1px solid #ebebeb !important;
	}

	.mini-cart td.image {
		width: auto;
	}

	.mini-cart td.product {
		width: 60%;
	}

	.mini-cart td.quantity {
		width: 40%;
		padding-left: 0;
		text-align: left;
	}

	.mini-cart td.total {
		width: 50%;
		text-align: left;
	}

	.mini-cart td.remove {
		width: 10%;
	}

	.mini-cart .buttons > div ~ div {
  		margin-top: 10px;
  	}
}