body {
	/* font-family: Arial; 
	 color: #211a1a; */
	font-size: 0.9em;
}

#shopping-cart {
	margin: 40px;
}

#product-grid {
	margin: 40px;
}

#shopping-cart table {
	width: 100%;
/*	background-color: #F0F0F0; */
}

#shopping-cart table td {
/*	background-color: #FFFFFF; */
}

.txt-heading {
	color: #211a1a;
	border-bottom: 1px solid #E0E0E0;
	overflow: auto;
}

#btnEmpty {
	// background-color: #ffffff;
	border: #d00000 1px solid;
	padding: 5px 10px;
	/* color: #d00000; */
	float: right;
	text-decoration: none;
	border-radius: 3px;
	margin: 10px 0px;
}

/* added */
#btnOrder {
	/* background-color: #2ba805; */
	/*border: #d00000 1px solid;*/
	padding: 5px 10px;
	/* color: #000000; */
	float: right;
	text-decoration: none;
	border-radius: 3px;
	margin: 10px 5px 10px 0px;
	animation-name: greenglowing;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
}

@keyframes greenglowing {
    0% {
        background-color: #2ba805;
        box-shadow: 0 0 5px #2ba805;
		color: #000000;
       }
    50% {
        background-color: #49e819;
        box-shadow: 0 0 20px #49e819;
		color: #f0f0f0;
      }
    100% {
        background-color: #2ba805;
        box-shadow: 0 0 5px #2ba805;
		color: #000000;
      }
}

.btnAddAction {
    padding: 5px 10px;
    margin-left: 3px; /* previously: 5px */
/*    background-color: #efefef;
    border: #E0E0E0 1px solid;
    color: #211a1a; */
    float: right;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

#product-grid .txt-heading {
	margin-bottom: 18px;
}

.product-item {
	float: left;
	background: #ffffff;
	margin: 30px 30px 0px 0px;
	border: #E0E0E0 1px solid;
	width: 300px;
	height: 300px;
}

.product-container {
	width: 250px;
	height: 155px;
	background-color: #FFF;
	padding: 2px;
	/* border: solid #eee 1px; */
	margin: 5px auto;
	position: relative;
}

.product-image {
	max-width: 250px;
	max-height: 155px;
	width: auto;
	height: auto;
	cursor: zoom-in;
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clear-float {
	clear: both;
}

/*
.demo-input-box {
	border-radius: 2px;
	border: #CCC 1px solid;
	padding: 2px 1px;
}
*/

.tbl-cart {
	font-size: 0.9em;
}

.tbl-cart th {
	font-weight: normal;
}

.product-title {
	min-height: 43px;
	margin-bottom: 20px;
}

.product-price {
	float:left;
	margin-right: 2px;
}

.cart-action {
	float: right;
}

.product-quantity {
    padding: 5px 10px;
    border-radius: 3px;
    border: #E0E0E0 1px solid;
    margin: 0px 5px;
}

.product-tile-footer {
    padding: 15px 15px 0px 15px;
    overflow: auto;
}

.cart-item-image {
	width: 30px;
    height: 30px;
    border-radius: 50%;
    border: #E0E0E0 1px solid;
    padding: 5px;
    vertical-align: middle;
    margin-right: 15px;
}
.cart-content {
	text-align: center;
	clear: both;
	/* margin: 38px 0px; */
	margin: 8px 0px;
}

/* order */

* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

.container {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}

  input[type=text].order, input[type=tel].order, input[type=email].order {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

label {
  margin-bottom: 10px;
  display: block;
}

.radio-container {
  height: 48px;
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 16px;
  vertical-align: baseline;
}

.radio-button-wrapper {
  margin-right: 20px;
  white-space: nowrap;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.btn {
  background-color: #04AA6D;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.btn:hover {
  background-color: #45a049;
}

a {
  color: #2196F3;
}

hr {
  border: 1px solid lightgrey;
}

span.price {
  float: right;
  color: grey;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    flex-direction: column; /* column-reverse */
  }
  .col-25 {
    margin-bottom: 20px;
  }
}
