body {
	font-family: Arial;
	color: #211a1a;
	font-size: 0.9em;
}

#shopping-cart {
	margin: 40px;
}

#product-grid {
	margin: 0px 0px 40px 40px;
}

#shopping-cart table {
	width: 100%;
	background-color: #D9D9D9;
}

#shopping-cart table th {
	padding: 10px;
}

#shopping-cart table td {
	background-color: #FFFFFF;
	padding: 10px;
}

.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;
	transition-duration: 0.4s;
}
#btnEmpty:hover {
  background-color: #D00000; /* Red */
  color: white;
}

#btnCheckout{
	background-color: #ffffff;
	border: #1F9123 1px solid;
	padding: 5px 10px;
	color: #1F9123;
	float: right;
	text-decoration: none;
	border-radius: 3px;
	margin: 10px 0px;
	transition-duration: 0.4s;
}
#btnCheckout:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

.btnAddAction {
    padding: 5px 10px;
    margin-left: 5px;
    background-color: #000000;
    border: #E0E0E0 1px solid;
    color: #ffffff;
    float: right;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: 0.4s;
}

.btnAddAction:hover {
  background-color: #6C52E4; /* Green */
  color: white;
}

#product-grid .txt-heading {
	margin-bottom: 18px;
}

.product-item {
	float: left;
	background: #ffffff;
	margin: 30px 30px 0px 0px;
	/*border: #E0E0E0 1px solid;*/
	border-radius: 5px;
	-moz-box-shadow:    3px 3px 5px 6px #F0F0F0;
    -webkit-box-shadow: 3px 3px 5px 6px #F0F0F0;
    box-shadow:         3px 3px 5px 6px #F0F0F0;
}

.product-image {
	height: 155px;
	width: 250px;
	background-color: #FFF;
	position: relative;
}

.clear-float {
	clear: both;
}

@media screen and (max-width: 600px) {
        #shopping-cart {
        	margin: 10px;
        }
        
        #product-grid {
        	margin: 7px;
        }
        
        #shopping-cart table {
        	width: 100%;
        	background-color: #D9D9D9;
        }
        
        #shopping-cart table th {
        	padding: 10px;
        }
        
        #shopping-cart table td {
        	background-color: #FFFFFF;
        	padding: 10px;
        }    
            
            .product-item {
            float: middle;
        	background: #ffffff;
        	margin: 7px 7px 0px 0px;
        	border: #E0E0E0 1px solid;
        	width: 47%;
        }
        
        .product-image {
            
        	height: 100%;
        	width: 100%;
        	background-color: #FFF;
        	position: relative;
        }
        .product-price {
    	float:right;
        }
    	.product-quantity {
    	float:left;
    	margin-left: 20%;
        border-radius: 5px;
        border: #E0E0E0 1px solid;
        }
        .btnAddAction {
        margin-left: 12.5%;
        margin-bottom: 5px;
        margin-top: 5px;
        float: left;
    }
}

.demo-input-box {
	border-radius: 2px;
	border: #CCC 1px solid;
	padding: 2px 1px;
}

.tbl-cart {
	font-size: 0.9em;
}

.tbl-cart th {
	font-weight: bold;
}

.product-title {
	margin-bottom: 20px;
}

.product-price {
	float:left;
}

.cart-action {
	float: right;
}

.product-quantity {
    padding: 5px 10px;
    border-radius: 3px;
    border: #E0E0E0 1px solid;
}

.product-tile-footer {
    padding: 15px 15px 0px 15px;
    overflow: auto;
}

.cart-item-image {
	width: 60px;
    height: 60px;
    border-radius: 50%;
    border: #E0E0E0 1px solid;
    padding: 5px;
    vertical-align: middle;
    margin-right: 15px;
}
a.fixed-button
{
	position: fixed;
	right: 10%;
}
.topnav2 {
    box-sizing: border-box;
    overflow: hidden;
    background-color: #cfcfcf;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.topnav2 a {
    float: left;
    display: block;
    padding: 14px 16px;
      color: black;
      text-decoration: none;
      font-size: 17px;
}

.topnav2 a:hover {
  background-color: #3e3e3e;
  color: white;
}

.topnav2 a.active {
  background-color: #6C52E4;
  color: white;
}
.topnav2 .icon {
  display: none;
}
.topnav2 .search-container {
  float: right;
}

.topnav2 input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.topnav2 .search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav2 .search-container button:hover {
  background: #3e3e3e;
  color: white;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}
.flex-container > div {
  margin: 3px;
  padding: 3px 0;
}

@media screen and (max-width: 600px) {
  .topnav2 a:not(:first-child) {display: none;}
  .topnav2 a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav2.responsive {position: relative;}
  .topnav2.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
  }
  .topnav2.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .topnav2 .search-container {
    float: none;
  }
  .topnav2 a, .topnav2 input[type=text], .topnav2 .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav2 input[type=text] {
    border: 1px solid #ccc;  
  }
}

.product-image .btn {
  position: absolute;
  top: 18%;
  left: 15%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #808080;
  color: white;
  font-size: 15px;
  padding: 8px 10px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
}

.product-image .btn:hover {
  background-color: black;
}

.product-image .btn2 {
   top: 50%;
  left: 15%;
}