/* CSS Document */



/* The alert message box */
/*
.errormessage {
    padding: 20px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
	display:none;
}
*/
/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}
.errormessage {
    opacity: 1;
    transition: opacity 0.6s; /* 600ms to fade out */
}

.errormessage.show {
	display:block;
}



.cart,
.checkout {
	display: table;
    width: 100%;
	border-bottom:1px solid #ccc;
}

.checkout {
	width:auto;
	float: right;
}


.cart .row .image img,
.checkout .row .image img {
	width:75px;
	height:auto;
	border:1px solid #eee;
}


.cart .row,
.checkout .row {
	display:table-row;
}


.cart .row .cell,
.checkout .row .cell {
	display:table-cell;
	border-width: 1px;
	border-style:solid;
	border-color:#ccc;
	border-left-width: 0px;
    padding: 10px;
	border-bottom-width:0px;
	vertical-align:middle;
}
.cart .row .cell:first-child,
.checkout .row .cell:first-child
{
	border-left-width: 1px !important;
}

.cart .quantity .qtyless,
.cart .quantity .qtymore {
	background: #ccc;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
	cursor:pointer;
}

.cart .quantity .number {
	margin:0 10px;
}

.cart .price .strike,
.product .strike
 {
	text-decoration:line-through;
	color:red;
}







.cart .quantity .qtyless:hover,
.cart .quantity .qtymore:hover {
	background-color:#aaa;

}

.Ecommerce .product img {
	max-width:100%;
	border:0;
}

.Ecommerce button {
	float:none;
}

.Ecommerce .col1of4 {
	width:25%;
	display:inline-block;
	vertical-align:top;
}


.message.bad, .message.good {
    margin: 10px 0;
    clear: left;
	width:auto;
	display: inline-block;
	max-width:none;
	border: 1px solid #ccc;
	border-radius: 3px;
    padding: 5px 10px;
}


.message.bad {
    background-color: #f9d0d0;
    border-color: #cf0000;
    color: #b80000;
}

.message.good {
   background-color: #ecf9d0;
   border-color: #8fbe00;
}

.EcommerceProduct .strike {
  font-size: 25px;
  margin: 0;
  text-decoration: line-through;
  color: red;
}

.EcommerceProduct .strike + .price {
  margin-top: -20px;
}



#Form_EcommerceAccountModificationForm_customerror { display:none; }
