@charset "UTF-8";

/* Minimum Page Height */
html{
	min-height: 100vh;
	background-color: #282828;
}

/* ================== */
/* ~=| Typography |=~ */
/* ================== */

html, body {
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    line-height: 145%;
}
h1, .h1, h2, .h2, h3, .h3 {font-family: 'Oswald', Helvetica, Arial, sans-serif;}
h4, .h4, h5, .h5, h6, .h6 {font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;}
/* Font */
.font-oswald {font-family: 'Oswald', Helvetica, Arial, sans-serif;}
.font-source-sans-pro {font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;}
/* Sizes */
@media only screen { /* small */
	h1, .h1 {font-size: 2em;}
	h2, .h2 {font-size: 1.8em;}
	h3, .h3 {font-size: 1.6em;}
	h4, .h4 {font-size: 1.4em;}
	h5, .h5 {font-size: 1.2em;}
	h6, .h6 {font-size: 1em;}
	p, a {font-size: 1em;}
}
@media only screen and (min-width: 40.063em) { /* medium */
	h1, .h1 {font-size: 2.25em;}
	h2, .h2 {font-size: 2.025em;}
	h3, .h3 {font-size: 1.8em;}
	h4, .h4 {font-size: 1.575em;}
	h5, .h5 {font-size: 1.35em;}
	h6, .h6 {font-size: 1.125em;}
	p, a {font-size: 1em;}
}
@media only screen and (min-width: 64.063em) { /* large */
	h1, .h1 {font-size: 2.5em;}
	h2, .h2 {font-size: 2.25em;}
	h3, .h3 {font-size: 2em;}
	h4, .h4 {font-size: 1.75em;}
	h5, .h5 {font-size: 1.5em;}
	h6, .h6 {font-size: 1.25em;}
	p, a {font-size: 1em;}
}
/* Styles */
.bold {font-weight: 700;}
.italic {font-style: italic;}
.uc {text-transform: uppercase;}
.underline {text-decoration: underline;}
em {font-style:italic;}
sub, sup {
	font-size: .75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {bottom: -0.25em;}
sup {top: -0.5em;}

/* ============== */
/* ~=| Colors |=~ */
/* ============== */

/* Default */
html, body {color:#282828;}
/* Text */
.white {color: #fff;}
.light-gray, .light-grey {color: #ccc;}
.gray, .grey {color: #666;}
.dark-gray, .dark-grey {color: #282828;}
.black {color: #000;}
.orange {color: #ee7f13;}
.green {color: #2a710d;}

/* =============== */
/* ~=| Buttons |=~ */
/* =============== */

.theme-button{
	padding: 16px 24px;
	font-size: 18px;
	cursor: pointer;
}
/* Ripple Out */
@keyframes theme-button--ripple-out{
	100%{
		top: -12px;
		right: -12px;
		bottom: -12px;
		left: -12px;
		opacity: 0;
	}
}
.theme-button--ripple-out{
	display: inline-block;
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	transition-property: background-color, color;
	transition-duration: 0.25s;
}
.theme-button--ripple-out::before{
	content: '';
	position: absolute;
	border-width: 6px;
	border-color: #fff;
	border-style: solid;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition-property: border-color;
	transition-duration: 0.25s;
	animation-duration: 1s;
}
.theme-button--ripple-out:hover::before,
.theme-button--ripple-out:focus::before,
.theme-button--ripple-out.theme-button--animate::before{
	animation-name: theme-button--ripple-out;
}
.theme-button--ripple-out.theme-button--white-orange{
	color: #ee7f13;
	background-color: #fff;
}
.theme-button--ripple-out.theme-button--white-orange::before{
	border-color: #fff;
}
.theme-button--ripple-out.theme-button--green-white{
	color: #fff;
	background-color: #2a710d;
}
.theme-button--ripple-out.theme-button--green-white::before{
	border-color: #2a710d;
}
.theme-button--ripple-out.theme-button--orange-white{
	color: #fff;
	background-color: #ee7f13;
}
.theme-button--ripple-out.theme-button--orange-white::before{
	border-color: #ee7f13;
}
/* Disabled */
.theme-button--ripple-out.theme-button--disabled{
	background-color: #666;
	color: #ccc;
	cursor: not-allowed;
}
.theme-button--ripple-out.theme-button--disabled::before{
	border-color: #666;
}
.theme-button--ripple-out.theme-button--disabled:hover::before,
.theme-button--ripple-out.theme-button--disabled:focus::before{
	animation-name: none;
}
/**/
@media (max-width: 639px){
	.content-section__theme-button-wrapper > a{
		display: block;
		width: 100%;
		margin: 10px 0 !important;
	}
}

/* ================= */
/* ~=| Rip Strip |=~ */
/* ================= */

.rip-strip{
	position: absolute;
	width: 100%;
	left: 0;
	overflow: hidden;
}
.rip-strip__svg{
	width: 100%;
	height: 19px;
	min-width: 1920px;
	display: block;
}
.rip-strip--top-inside{
	top: -1px;
}
.rip-strip--bottom-inside{
	bottom: -1px;
}
.rip-strip--top-outside{
	bottom: calc(100% - 1px);
}
.rip-strip--bottom-outside{
	top: calc(100% - 1px);
}
.rip-strip--flip .rip-strip__svg{
	transform: scale(-1);
}
.rip-strip--white .rip-strip__svg{
	fill: #fff;
}
.rip-strip--dark-gray .rip-strip__svg{
	fill: #282828;
}

/* ============== */
/* ~=| Header |=~ */
/* ============== */

.header{
	background-color: #fff;
}
.header nav{
	margin-top: 20px;
	margin-bottom: 20px;
}
@media (max-width: 1023px){
	.header .logo{
		width: 100%;
		max-width: 300px;
	}
	.header nav{
		margin-top: 10px;
		margin-bottom: 0;
	}
}

/* =================== */
/* ~=| Hero Area |=~ */
/* =================== */

.hero-area{
	position: relative;
	padding: 140px 20px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.hero-area--home-page{
	padding-bottom: 150px;
}
.hero-area--recycling-process-page{
	margin-bottom: 50px;
}
.hero-area--product-page{
	padding-top: 200px;
	padding-bottom: 200px;
}
@media (max-width: 600px){
	.hero-area--product-page{
		padding-top: 100px;
		padding-bottom: 100px;
	}
}
.hero-area__h1{
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); 
}
.hero-area__h2{
	text-align: center;
	color: #fff;
}
.hero-area--home-page .theme-button{
	visibility: visible;
	opacity: 1;
	transition-property: visibility, opacity, background-color;
	transition-duration: 0.25s;
}
.hero-area--home-page .theme-button--disabled{
	visibility: hidden;
	opacity: 0;
}
.hero-area--home-page select{
	max-width: 300px;
	text-align: center;
}

/* ======================= */
/* ~=| Offerings Cards |=~ */
/* ======================= */

.offerings-section{
	position: relative;
	margin-bottom: 50px;
}
.offering-card{
	width: 100%;
	max-width: 400px;
	margin: auto;
	margin-top: -90px;
	margin-bottom: 20px;
}
@media (max-width:639px){
	.offerings-section .columns:nth-of-type(n + 2) .offering-card{
		margin-top: 0;
	}
}
.offering-card__image{
	width: 100%;
	padding-bottom: 50%;
	background-size: cover;
	background-position: center;
}
.offering-card__content{
	padding: 12px;
	text-align: center;
}
.offering-card__header{
	font-weight: 700;
	text-transform: uppercase;
}
.offering-card--orange{
	border-width: 1px;
	border-style: solid;
	border-color: #ee7f13;
	color: #fff;
	background-color: #ee7f13;
}

/* ======================= */
/* ~=| Content Section |=~ */
/* ======================= */

p a{
	color: #ee7f13;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-color: transparent;
	border-bottom-style: solid;
	transition-property: border-bottom-color;
	transition-duration: 0.25s;
}
p a:hover{
	color: #ee7f13;
	border-bottom-color: #ee7f13;
}
p a:visited{
	color: #ee7f13;
}
/**/
.content-section{
	padding-bottom: 50px;
}
.content-section__theme-button-wrapper > a{
	margin-left: 10px;
	margin-right: 10px;
}
/**/
.lower-content-wrapper--home-page{
	padding-bottom: 50px;
	background-image: url('/wp-content/uploads/2017/06/dumpster-scoop.png');
	background-size: auto 75%;
	background-position: 0 100%;
	background-repeat: no-repeat;
}
@media (max-width: 1600px){
	.lower-content-wrapper--home-page{
		background-size: auto 55%;
	}
}
@media (max-width: 1400px){
	.lower-content-wrapper--home-page{
		background-size: auto 45%;
	}
}
@media (max-width: 1200px){
	.lower-content-wrapper--home-page{
		background-image: none;
		padding-bottom: 0;
	}
}
/**/
.recycling-media-row img{
	margin-bottom: 9%;
	border: 1px solid #ee7f13;
}
.iframe-wrap{
	position: relative;
	width: 100%;
}
.iframe-wrap iframe{
	position: absolute;
	width: 100%;
	height: 100%;
}

/* ============================= */
/* ~=| Dumpster Product List |=~ */
/* ============================= */

.dumpster-list-section{
	margin: 40px 0;
}
.dumpster-list-item__image-wrapper{
	position: relative;
	width: 100%;
	padding-bottom: 60%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.dumpster-list-item__price{
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px;
	background-color: #333;
	color: #fff;
	font-weight: 700;
	text-transform: capitalize;
}
.dumpster-list-item__additional-price-info{
	font-size: 75%;
	font-weight: 400;
	line-height: 100%;
	opacity: 0.6;
}
.dumpster-list-item__button{
	margin-top: 10px;
}
.dumpster-list-item__horizontal-line{
	margin: 40px 0;
}
.dumpster-list-section > .row > .columns > .dumpster-list-item:last-child .dumpster-list-item__horizontal-line{
	display: none;
}

/* ============================= */
/* ~=| Bulk Material Product List |=~ */
/* ============================= */

.bulk-material-list-section{
	margin: 40px 0;
}
.bulk-material-list-item{
	position: relative;
}
.bulk-material-list-item__name-wrapper{
	margin-bottom: 10px;
}
.bulk-material-list-item__name{
}
.bulk-material-list-item__image{
	position: relative;
	width: 100%;
	padding-bottom: 60%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.bulk-material-list-item__price{
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px;
	background-color: #333;
	color: #fff;
	font-weight: 700;
	text-transform: capitalize;
}
.bulk-material-list-item__price-info{
	font-size: 75%;
	font-weight: 400;
	line-height: 100%;
	opacity: 0.6;
}
.bulk-material-list-item__hr{}

/* ======================== */
/* ~=| Dumpster Product |=~ */
/* ======================== */

.woocommerce-product-gallery{
	display: none;
}
.product-options{
	position: relative;
	margin-top: -75px;
	margin-bottom: 50px;
}
@media (max-width: 600px){
	.product-options{
		margin-top: 20px;
	}
}
.product-options .variations_form,
.product-options .product_title,
.product-options .price,
.product-options .product_meta{
	display: none;
}
.woocommerce-tabs{
	display: none;
}
.hidden-fields{
	display: none;
}
.invalid-field{
	box-shadow: 0px 0px 2px 1px #f00;
}
.product-option-card{
	border-width: 1px;
	border-color: #666;
	border-style: solid;
	background-color: #f1f1f1;
	margin-bottom: 20px;
	transition-property: border-color;
	transition-duration: 0.25s;
}
.product-option-card--complete{
	border-color: #2a710d;
}
.product-option-card__header{
	margin-top: 10px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 20px;
}
.product-option-card__fields{
	margin-top: 10px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 20px;
}
.product-option-card__field-note{
	padding: 10px;
	background-color: #ccc;
	color: #333;
}
.product-option-card__field-wrapper + .product-option-card__field-note{
	margin-bottom: 10px;
}
.product-option-card__field-note:empty{
	display: none;
}
.product-option-card__field-note a{
	color: #ee7f13;
	font-weight: 700;
}
.product-option-card__field-note p,
.product-option-card__field-note ul{
	margin-bottom: 0;
}
.product-option-card__price{
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	background-color: #666;
	color: #fff;
	font-weight: 700;
	transition-property: background-color;
	transition-duration: 0.25s;
}
.product-option-card--complete .product-option-card__price{
	background-color: #2a710d;
}
.dumpster-radio{
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	background-color: #fff;
	cursor: pointer;
	transition-property: background-color;
	transition-duration: .25s;
}
.dumpster-radio:hover{
	background-color: #fff;
}
.dumpster-radio.dumpster-radio__active{
	background-color: rgba(238,127,19,.65);
}
.dumpster-radio.too-small-dumpster{
	background-color: rgba(0,0,0,.05);
	cursor: not-allowed;
}
.dumpster-radio.too-small-dumpster:hover{
	background-color: rgba(0,0,0,.05);
}
.dumpster-radio__name,
.dumpster-radio__message,
.dumpster-radio__location,
.dumpster-radio__date{
	margin-bottom: 0;
	line-height: 150%;
}
.dumpster-radio .dumpster-radio__message{
	display: none;
	color: #a10000;
}
.dumpster-radio.too-small-dumpster .dumpster-radio__message{
	display: block;
}
/* Related Products*/
.related.products{
	display: none;
}
.related .products .add_to_cart_button{
	display: none;
}
.related .products .price::after{
	content: " / Day";
}

/* ======================= */
/* ~=| Cart / Checkout |=~ */
/* ======================= */

.woocommerce-cart-form__contents thead{
	background-color: #282828;
	color: #fff;
	font-family: 'Oswald', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
.woocommerce-cart-form__contents .product-price{
	display: none !important; /* Hide Price Column */
}
@media (min-width: 769px){
	.woocommerce-cart-form__contents .product-remove{
		width: 10%;
		text-align: center;
	}
	.woocommerce-cart-form__contents .product-remove .remove{
		display: inline-block;
	}
	.woocommerce-cart-form__contents .product-thumbnail{
		width: 20%;
		text-align: center;
	}
	.woocommerce-cart-form__contents .product-thumbnail img{
		width: 100% !important;
		max-width: 100px;
	}
	.woocommerce-cart-form__contents .product-name{
		width: 40%;
		text-align: left;
	}
	.woocommerce-cart-form__contents .product-quantity{
		width: 15%;
		text-align: center;
	}
	.woocommerce-cart-form__contents .product-subtotal{
		width: 15%;
		text-align: right;
	}
}
/**/
.woocommerce-cart-form__contents .product-name > a{
	color: #ee7f13;
	font-weight: 700;
	border-bottom-width: 1px;
	border-bottom-color: transparent;
	border-bottom-style: solid;
	transition-property: border-bottom-color;
	transition-duration: 0.25s;
}
.woocommerce-cart-form__contents .product-name > a:hover{
	border-bottom-color: #ee7f13;
}
.shop_table .product-name dt,
.shop_table .product-name dd{
	margin-bottom: 0 !important;
}
.woocommerce-cart-form__contents .product-quantity input{
	display: inline-block;
}
/**/
.woocommerce-cart-form__contents .actions{
	background: #282828;
	color: #fff;
}
/**/
.cart_totals h2{
	color: #2a710d;
	font-family: 'Oswald', Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button{
	background-color: #ee7f13;
	color: #fff;
	border-radius: 0;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover{
	background-color: #ee7f13;
}
.shop_table .cart-subtotal,
.shop_table .shipping{
	display: none;
}
/* Hide paypal on cart page */
.wc-proceed-to-checkout #wc_braintree_paypal_container{
	display: none;
}

/* ============== */
/* ~=| Footer |=~ */
/* ============== */

.footer{
	position: relative;
	padding: 40px 20px;
	color: #fff;
	background-color: #282828;
}
.footer p{
	margin: 0;
}
.footer a{
	color: inherit;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
}
.footer a:hover{
	border-bottom-color: initial;
}
.footer .separator-border{
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666;
}
@media (max-width: 1023px){
	.footer .separator-border{
		border-right-width: 0;
	}
}
.footer .copyright{
	font-size: 14px;
}







/* WC Button Override Green */
.woocommerce-message a.wc-forward,
.woocommerce-cart-form__contents .actions input[type="submit"]{
	background-color: #fff !important;
	color: #2a710d !important;
	border: 1px solid #2a710d !important;
	border-radius: 0 !important;
	transition-property: background-color, color !important;
	transition-duration: 0.25s !important;
}
.woocommerce-message a.wc-forward:hover,
.woocommerce-cart-form__contents .actions input[type="submit"]:hover{
	background-color: #2a710d !important;
	color: #fff !important;
}










.div-center{
	margin-left: auto;
	margin-right: auto;
}
.sitemap ul li{
	list-style-type: none;
}
.sitemap ul li a{
	text-transform: uppercase;
	color: #2a710d;
	font-size: 1.2em;
	font-weight: bold;
}
.sitemap ul li a:hover{
	color: #ee7f13;
	text-decoration: underline;
}
form#searchform.searchform div input#searchsubmit{
	color: #fff;
	background-color: #ee7f13;
	padding: 16px 24px;
	font-size: 18px;
	cursor: pointer;
	border: none;
	font-weight: bold;
	text-transform: uppercase;
}
.woocommerce-info{
	border-top-color: #2a710d;
	background-color: #ee7f13;
	color: #fff;
}
.woocommerce-info::before{
	color: #fff;
}
.woocommerce-MyAccount-navigation ul li{
	list-style-type: none;
}
.woocommerce-MyAccount-navigation ul li a{
	color: #fff;
	background-color: #2a710d;
	font-size: 1.2em;
	padding: 10px;
	text-transform: uppercase;
	margin-bottom: 3px;
	font-weight: bold;
	max-width: 250px;
	text-align: center;
	display: block;
}
.woocommerce-MyAccount-navigation ul li a:hover{
	background-color: #ee7f13;
}
#wc-stripe-new-payment-method {
  pointer-events: none;
}
.woocommerce-SavedPaymentMethods-saveNew{
	display:none !important;
}