/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
#header .cart-body {
	display: none;
}
#left-column .blockcart .header {
	display: none;
}
.cart-body {
    padding: 12px 12px;
	box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
	background: #fff;
}
.cart-body li {
    margin-bottom: 6px;
}
.cart-body .product-quantity {
    float: left;
    margin-right: 6px;
}
.cart-body .product-quantity::after {
    content: " pezzi";
}
.cart-body .product-price {
    display: block;
    margin: 3px 0px;
	color: red;
	font-size: 125%
}
.cart-body hr {
    margin: 9px 0;
}

.grid-cart-btn {
    margin-bottom: 0px;
    display: block;
    width: 50%;
    margin-top: 5px;
	float: left;
}
.product-miniature {
	margin-bottom: 24px !important;
}

#scroll-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#scroll-top:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}