.prodList{
	display: grid;
  	grid-template-columns: 33.3333333% 33.3333333% 33.3333333%;
  	grid-gap: 15px;
}

.prodList .col{
	border: 1px solid #cecece;
}

.prodList .item{
	display: inline-block;
	width: 100%;
	margin: 0 0 20px 0;
}

.prodList .item .image{
	width: calc(100% - 20px);
	display: inline-block;
	text-align: center;
	padding: 5px 5px 5px 5px;
	margin: 0 10px 15px 10px;
	position: relative;
}

.prodList .item .image .cell{
	height: 225px;
}

.prodList .item .image img{
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
}

.prodList .descWrap{
	padding: 0 20px;
}

.prodList h3 {
    padding: 0;
    margin: 0;
}

.prodList h6 {
    margin: 5px 0;
    padding: 0;
}

.loaderOverlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: none;
}

.loaderPopup{
	display: none;
	width: 54px;
	background: #fff;
	height: 54px;
	position: fixed;
	z-index: 10001;
	text-align: center;
	left: calc(50% - 27px);
	top: calc(50% - 27px);
	padding: 10px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 45px -12px rgba(0,0,0,0.75);
 	-moz-box-shadow: 0px 0px 45px -12px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 45px -12px rgba(0,0,0,0.75);
}

.loaderPopup img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.cartNotice{
	display: none;
	width: 100%;
}

.cartNotice p{
	padding: 8px 15px;
    margin: 5px 0;
    background: #81C784;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    color: #1B5E20;
}
.cartNotice a{
	color: #1B5E20;
	font-weight: 600;
}

.cartNotice.red p{
  background: #c78181;
  color: #fff;
}


/* Responsive */
@media only screen and (max-width: 767px) {

	.prodList{
	  	grid-template-columns: calc(50% - 5px) calc(50% - 5px);
	  	grid-gap: 10px;
	}

	.prodList .item .image .cell{
		height: auto;
	}

	.prodList .item .image{
		padding: 5px 5px 5px 5px;
		margin: 0 10px 0 10px;
	}

	.prodList h3 {
	    font-size: 0.7em;
	}
	.prodList h6 {
	    font-size: 0.5em;
	}

	.prodList .descWrap{
		padding: 0 10px;
	}

}

@media screen and (min-width: 767px) and (max-width: 1024px) {

	.prodList{
	  	grid-template-columns: calc(50% - 5px) calc(50% - 5px);
	  	grid-gap: 10px;
	}

	.prodList .item .image .cell{
		height: auto;
	}

	.prodList .item .image{
		padding: 5px 5px 5px 5px;
		margin: 0 10px 0 10px;
	}

	.prodList h3 {
	    font-size: 1em;
	}
	.prodList h6 {
	    font-size: 0.7em;
	}

	.prodList .descWrap{
		padding: 0 10px;
	}

}

@media screen and (min-width: 1025px) and (max-width: 1350px) {

	.prodList h3 {
	    font-size: 1.2em;
	}
	.prodList h6 {
	    font-size: 1em;
	}

}


/*
I wanted to go with a mobile first approach, but it actually lead to more verbose CSS in this case, so I've gone web first. Can't always force things...

Side note: I know that this style of nesting in SASS doesn't result in the most performance efficient CSS code... but on the OCD/organizational side, I like it. So for CodePen purposes, CSS selector performance be damned.
*/
/* Global settings */
/* Global "table" column settings */
.product-image {
  float: left;
  width: 20%;
}

.product-details {
  float: left;
  width: 37%;
}

.product-price {
  float: left;
  width: 12%;
}

.product-quantity {
  float: left;
  width: 10%;
}

.product-removal {
  float: left;
  width: 9%;
}

.product-line-price {
  float: left;
  width: 12%;
  text-align: right;
}

/* This is used as the traditional .clearfix class */
.group:before, .shopping-cart:before,
.column-labels:before,
.product:before,
.totals-item:before,
.group:after,
.shopping-cart:after,
.column-labels:after,
.product:after,
.totals-item:after {
  content: "";
  display: table;
}

.group:after, .shopping-cart:after,
.column-labels:after,
.product:after,
.totals-item:after {
  clear: both;
}

.group, .shopping-cart,
.column-labels,
.product,
.totals-item {
  zoom: 1;
}

/* Apply clearfix in a few places */
/* Apply dollar signs */
.product .product-price:before,
.product .product-line-price:before,
.totals-value:before {
  content: "$";
}

/* Body/Header stuff */
/*
body {
  padding: 0px 30px 30px 20px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 100;
}

h1 {
  font-weight: 100;
}

label {
  color: #aaa;
}
*/
.shopping-cart {
  margin-top: 0px;
}

/* Column headers */
.column-labels label {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid #cfa303;
}
/*
.column-labels .product-image,
.column-labels .product-details,
.column-labels .product-removal {
  text-indent: -9999px;
}
*/

/* Product entries */
.product {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #cfa303;
}
.product .product-image {
  text-align: center;
}
.product .product-image img {
  width: 100px;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
.product .product-details .product-title {
  margin-right: 20px;
  /*font-size: 36px;*/
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2em;
}

.product .product-details .product-title a{
  color: inherit;
  text-decoration: none;
}

.product .product-details .product-description {
  margin: 5px 20px 5px 0;
  line-height: 1.4em;
}

ul.lst{
  margin: 10px 0 10px 16px;
  padding:0;
}

ul.lst li{
  font-size: 18px;
  color: #93AA89;
  line-height: 1.2em;
}

.product .product-quantity input {
  width: 70px;
}

.quantity {
  position: relative;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

.quantity input[type=number]
{
  /*-moz-appearance: textfield;*/
  appearance: none; 
  -moz-appearance: none; 
  -webkit-appearance: none; 
  outline: none;
  border-radius: 0;
}

.quantity input {
  width: 45px;
  height: 42px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-right: 20px;
  text-align: center;
  border: 1px solid #3f672d;
  font-size: 16px;
  color: #3f672d;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #3f672d;
  width: 20px;
  text-align: center;
  font-size: 18px;
  line-height: 21px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #3f672d;
}

.quantity-button.quantity-down {
  position: absolute;
  bottom: 0;
  height: 50%;
}

.product .remove-product {
  border: 0;
  padding: 0;
  background: #3F672D url(../images/x.png) center no-repeat;
  background-size: 9px;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 9px;
}
.product .remove-product:hover {
  background-color: #a44;
}

/* Totals section */
.totals .totals-item {
  float: right;
  clear: both;
  width: 100%;
  margin-bottom: 10px;
}
.totals .totals-item label {
  float: left;
  clear: both;
  width: 50%;
  text-align: right;
  color: #93AA89;
}
.totals .totals-item .totals-value,
.totals .totals-item .meta-value {
  float: right;
  width: 50%;
  text-align: right;
}
.totals .totals-item-total {

}

.checkout {
  float: right;
  border: 0;
  margin-top: 20px;
  padding: 6px 25px;
  background-color: #6b6;
  color: #fff;
  font-size: 25px;
  border-radius: 3px;
}

.checkout:hover {
  background-color: #494;
}

.cs_disabled{
	pointer-events: none;
	opacity: 0.5;
}

.grecaptcha-badge { 
    visibility: hidden;
}

.disabled{
  opacity: 0.7;
  pointer-events: none;
}

#shipping-options {
    min-width: 100%;
    /*min-height: 50px;*/
}

#shipping-options.load{
      background: url(../images/load.gif) center no-repeat;
      min-height: 50px;
      margin-top: 30px;
}

#calcShipping{
  text-decoration: underline;
  cursor: pointer;
}

.finalize{
  padding: 40px 0;
}

.finalize h3{
  padding-left: 0;
  margin-left: 0;
}

.coupon_amount{
  display: block;
  font-size: 14px;
}
.coupon_code{
  display: block;
  font-size: 14px;
  font-style: italic;
}

/* Make adjustments for tablet */
@media screen and (max-width: 650px) {
  .shopping-cart {
    margin: 0;
    padding-top: 20px;
    border-top: 2px solid #CEA203;
  }

  .column-labels {
    display: none;
  }

  .product-image {
    float: left;
    width: 130px;
  }
  .product-image img {
    margin: 0 0 0 0;
  }

  .product-details {
    float: none;
    margin-bottom: 10px;
    width: auto;
  }

  .product-price {
    clear: both;
    width: 70px;
  }

  .product-removal {
    width: auto;
  }

  .product-line-price {
    float: right;
    width: 70px;
  }
}
/* Make more adjustments for phone */
@media screen and (max-width: 350px) {
  .product-removal {
    float: right;
  }

  .product-line-price {
    float: right;
    clear: left;
    width: auto;
    margin-top: 10px;
  }

  .product .product-line-price:before {
    content: "Item Total: $";
  }

  .totals .totals-item label {
    width: 60%;
  }
  .totals .totals-item .totals-value {
    width: 40%;
  }
}
