/*  Page styles  */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
}

a {
  text-decoration: none;
  color: #000; }
  
.cl { clear: both; }

.clpad {
  clear: both;
  margin-top: 10px;
  margin-bottom: 15px;	
 }

.back_link {
    font-weight: bold;
}

.back_link:hover {
    color: #740716; 
}

.popup_calc_container {
    display: none;
    background-color: rgba(0,0,0,0.85);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 20000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup_calc_container--show {
    display: flex;
}

.popup_calc_wrap {
    width: 40%;
    height: auto;
    min-height: 400px;
    min-width: 320px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 4%;
    transform: scale(0);
    position: relative;
    border: 5px rgb(124,7,23) solid;
}

.popup_calc_wrap--show {
    transform: scale(1);
}

.popup_calc_wrap--closebtn {
    position: absolute;
    top: -50px;
    right: 0px;
    color: #fff;
    font-size: 2.4em;
    height: 40px;
}

.popup_calc_wrap--closebtn:hover {
    color: #D8A82D;
    transform: scale(0.95);
}


/*************************************
	FORMS - NORMAL
*************************************/

.form_wrap {
	width: 50%;
}

.form-block {
	display: flex;
	flex-direction: column;
	background-color: #D5D5D5;
	width: 100%;
	height: auto;
	overflow: auto;
	border-radius: 5px;
	padding: 2%;
}

.form-block-nb {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	height: auto;
	padding: 1% 0%;
}

.form-block .form-title {
	width: 100%;
	font-size: 1.8em;
    color: #224757;;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 1em;
    letter-spacing: -1px;
    word-spacing: -1px;		
}

.form-block .form-row {
  width: 100%;
  padding: 5px 0px;	 
  display: flex;
  flex-direction: row;
}

.form-block .form-row:nth-child(even) {
	background: #CCC;
}

.form-block .form-row .form-label {
    color: #000;
    font-size: 1.2em;
	font-weight: 500;
	letter-spacing: -1px;
    width: 29%;
	text-align: right;
	padding-right: 1%;
}

.form-block .form-row .form-input {
    width: 70%;
}

.form-block .form-row .form-input input {
     font-size: 1.1em;
     border: thin solid #aaa;
	 border-radius: 5px;
	 background: #fff;
     padding: 5px 2%;
     width: 100%;
}

.form-block .form-row .form-input textarea {
     font-size: 1.1em;
     border: thin solid #aaa;
	 border-radius: 5px;
	 background: #fff;
     padding: 5px 2%;
     width: 100%;
  	 font-family: 'Open Sans', sans-serif;	
}

.form-block .form-row .form-input select {
     font-size: 1.1em;
     border: thin solid #aaa;
	 border-radius: 5px;
	 background: #fff;
     padding: 4px 2%;
     width: 100%;
}

.form-block-nb .g-recaptcha {
	width: 50%;
}

.form-block-nb .formbtn {
	width: 50%;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
    color: #fff;
    line-height: 1em;
    height: 76px;
    cursor: pointer;
    padding: 0;
    background-color: #740716;
	border-radius: 5px;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.form-block-nb .formbtn:hover {
		color: #fff;
		background: #000;
}

.form-block-nb  .formworking {
	display: none;
	width: 50%;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
	color: #fff;
	background: #000;
    line-height: 76px;
    height: 76px;
    cursor: pointer;
    padding: 0;
	border-radius: 5px;
}


.form-block .form-row .form-input input.invalid, .form-block .form-row .form-input select.invalid, .form-block .form-row .form-input textarea.invalid {
        background: #FFD4D5;
}

.form_comment {
	width: 100%;
	height: 70px;
}


/*************************************
	SOCIAL MEDIA
*************************************/
.social-media {
  font-family: socialIcons;
  font-size: 1.3em;
  list-style:none;
  color: #fff;
  width: 2.4em;
  border-radius: 10px 0px 0px 10px;
  border-top: 1px solid #888;
  border-left: 1px solid #555;	
  border-bottom: 1px solid #000;	
  background-color: #D8A82D;
  height: auto;
  padding: 0.7em;
  position: fixed;
  top: 25vh;
  right: 0px;
  z-index: 2000;	
  -webkit-box-shadow: -10px 4px 14px -9px rgba(0,0,0,0.71);
  -moz-box-shadow: -10px 4px 14px -9px rgba(0,0,0,0.71);
  box-shadow: -10px 4px 14px -9px rgba(0,0,0,0.71);
}

.social-media li a {
/*	float: left; */
	color: #000;	
	line-height: 1.5em;
}

.social-media li a:hover {
	color: #741418;
}

/*---------------------------------------------------------------------------------------------*/
/*-------------   GRIDS                                           -----------------------------*/
/*---------------------------------------------------------------------------------------------*/

.header {
	width: 100%;
	height: 150px;
	position: fixed;
	top: 0px;
	left: 0px;
	display: flex;
	flex-direction: column;
	z-index: 1000;
	background-color: rgba(0,0,0,0.6);
	border-top: 4px #DAA520 solid;
	color: #fff;
	-webkit-box-shadow: 2px 3px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 3px 14px 0px rgba(0,0,0,0.75);
	box-shadow: 2px 3px 14px 0px rgba(0,0,0,0.75);	
}

.header .top-band {
	height: 90px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}


.mobile_header {
	display: none;
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1000;
	justify-content: space-between;
	align-items: center;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ddaa27+0,8e6c15+100 */
    background: #ddaa27; /* Old browsers */
    background: -moz-linear-gradient(top,  #ddaa27 0%, #8e6c15 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ddaa27 0%,#8e6c15 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ddaa27 0%,#8e6c15 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddaa27', endColorstr='#8e6c15',GradientType=0 ); /* IE6-9 */
	color: #fff;
	-webkit-box-shadow: 2px 3px 14px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 3px 14px 0px rgba(0,0,0,0.75);
	box-shadow: 2px 3px 14px 0px rgba(0,0,0,0.75);	
}

.mobile_header .mobile_top_logo {
	width: 20%;
	margin: 6px 10px 0px;
}

.mobile_header .mobile_nav_btn {
	width: 30%;
	color: #fff;
	font-size: 3em;
	text-align: center;
	cursor: pointer;
}

.mobile_header .mobile_nav_btn:hover {
	color: #000;
}

.mobile_nav {
	display: none;
	top: -570px;
	left: 0px;
	padding-top: 10px;
	position: fixed;
	z-index: 500;
    width: 100%;
    height: auto;
	overflow: auto;
	padding-bottom: 25px;
	flex-direction: column;
	align-items: center;
	background-color: #CD9E24;
	color: #000;
	font-size: 1.2em;
	text-transform: uppercase;
}

.mobile_menu_item {
	line-height: 1.8em;
	border-bottom: 1px #8E6C15 solid;
}

.mobile_menu_item a {
	color: #000;	
	padding: 3px 12px;
	font-weight: 600;	
}

.mobile__item a:hover {
	background-color: #000;
	color: #fff;
	border-radius: 5px;
}

.mobile_header .mobile_topphone {
	width: 40%;
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: -1px;
    text-align: right;
    padding-right: 5%;
}

.nav {
	width: 100%;
	height: 60px;
	display: flex;	
	justify-content: space-between;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ddaa27+0,8e6c15+100 */
    background: #ddaa27; /* Old browsers */
    background: -moz-linear-gradient(top,  #ddaa27 0%, #8e6c15 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ddaa27 0%,#8e6c15 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ddaa27 0%,#8e6c15 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddaa27', endColorstr='#8e6c15',GradientType=0 ); /* IE6-9 */
}

.nav .menu_group_left {
	width: 40%;
	align-items: center;	
	display: flex;
	justify-content: flex-start;
	padding-left: 25px;
}

.nav .menu_group_right {
	width: 40%;
	align-items: center;	
	display: flex;
	justify-content: flex-end;	
	padding-right: 25px;	
}

.menu_item {
	width: auto;
	font-size: 1em;
	text-transform: uppercase;
	line-height: 45px;
	color: #000;
	margin-right: 0.5%;
}

.menu_item a {
	color: #000;	
	padding: 3px 12px;
	font-weight: 600;	
}

.menu_item a:hover {
	background-color: #000;
	color: #fff;
	border-radius: 5px;
}

.selected_menu {
	color: #fff !important;
	font-weight: 600 !important;
}

.top_left {
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: -1px;
	height: 90px;
	padding: 0px 5px 0px 25px;
}

.top_left .fas {
	margin-right: 5px;
}

.top_cart_contact {
	width: 40%;
	display: flex;
	justify-content: flex-end;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: -1px;
	height: 90px;
	padding: 25px;
}

.top_cart_contact .cart_btns {
	margin-right: 30px;
	padding-top: 8px;
}

.top_cart_contact .cart_btns .fas {
	margin-right: 10px;
	margin-left: 20px;	
}

.top_cart_contact .topphone {
	font-size: 2em;
	font-weight: 600;
	letter-spacing: -1px;
}


.top_logo {
	width: 20%;
	padding-top: 5px;
	z-index: 1100;	
}

/* Home Page */

.index-page_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	overflow: auto;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.index-page_container .home_page_wrap {
	width: 100%;
	height: 275px;
	margin: 110px 0%;
}

.index-page_container .home_page_wrap .home_page_content {
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 200px;
	padding: 0px 10%;
	display: flex;
	justify-content: space-between;
}


.index-page_container .home_page_wrap .home_page_content .page_content {
	width: 48%;
	padding: 15px 0%;
}

.index-page_container .home_page_wrap .home_page_content .page_content h1 {
	width: 100%;
	color: #000;
	margin-bottom: 10px;
}

.index-page_container .home_page_wrap .home_page_content .page_content .home_page_text, .index-page_container .home_page_wrap .home_page_content .page_content .home_page_text p {
	width: 100%;
	color: #fff;
}

.index-page_container .home_page_wrap .home_page_content .feature_product {
	width: 40%;
	background-color: #fff;
	border: 6px #47030C solid;
	height: 250px;
	margin-top: -30px;
	display: flex;
	justify-content: space-between;
	padding: 1%;
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 50%;
	height: 210px;
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail {
	width: 48%;
	height: 210px;
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail .product_name {
	color: #47030C;
	width: 100%;
	text-align: right;
	font-size: 1.6em;
	font-weight: 800;
	margin-top: 15px;	
	margin-bottom: 5px;
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail .product_cat {
	color: #CE9C1E;
	width: 100%;
	text-align: right;
	font-size: 1.4em;
	font-weight: 800;
	margin-bottom: 5px;	
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail .product_summary {
	color: #000;
	width: 100%;
	text-align: right;
	font-size: 0.8em;
	font-weight: 600;
	height: 70px;
	margin-bottom: 5px;		
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail .product_price {
	color: #000;
	width: 100%;
	text-align: right;
	font-size: 1.4em;
	font-weight: 800;
	margin-bottom: 10px;	
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail .detail_btn {
	width: 80%;
	margin-left: 20%;
	height: 30px;
	background-color: #E70725;
	border-radius: 5px;
	text-align: center;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
	line-height: 30px;
	cursor: pointer;
}

.index-page_container .home_page_wrap .home_page_content .feature_product .product_detail .detail_btn:hover {
	background-color: #000;
	color: #fff;
}

.index-page_container .feature_block_wrap {
	width: 100%;
	height: 590px;
	background-color: #fff;
	padding: 90px 10%;
	display: flex;
	justify-content: space-between;
}

.index-page_container .feature_block_wrap .order_box {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 55%;
	height: 360px;
	display: flex;
	flex-direction: column;
}

.index-page_container .feature_block_wrap .order_box .headline {
	text-align: center;
	font-size: 3em;
	font-weight: 800;
	letter-spacing: -1px;
	color: #fff;
	margin-top: 40px;
	margin-bottom: 40px;	
}

.index-page_container .feature_block_wrap .order_box .middle_block {
	height: 175px;
	display: grid;
	grid-column-gap: 5%;
	grid-template-columns: 55% 40%;
	grid-template-rows: 25% 75%;
	margin-left: 10%;
	margin-right: 10%;	
}

.index-page_container .feature_block_wrap .order_box .middle_block .text_block {
	background-color: rgba(255,255,255,0.5);
	width: 100%;
	border-radius: 5px;
	height: 150px;
	color: #000;
	font-weight: 600;
	font-size: 1em;
	line-height: 1.5em;
	letter-spacing: -1px;
	text-align: left;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 1;
	grid-row-end: 3;
	padding: 5%;
}

.index-page_container .feature_block_wrap .order_box .middle_block .subheadline {
	color: #CE9C1E;
	text-align: right;
	font-size: 2em;
	font-weight: 800;
	grid-column-start: 2;
	grid-column-end: 2;	
	grid-row-start: 1;
	grid-row-end: 1;
}

.index-page_container .feature_block_wrap .order_box .middle_block .subtext {
	color: #fff;
	font-weight: 700;
	letter-spacing: -1px;
	font-size: 1.5em;
	line-height: 1.4em;
	text-align: right;
	grid-column-start: 2;
	grid-column-end: 2;	
	grid-row-start: 2;
	grid-row-end: 2;
}

.index-page_container .feature_block_wrap .order_box .more_btn {
	margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: #E70725;
    text-align: center;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    line-height: 50px;	
	cursor: pointer;
}

.index-page_container .feature_block_wrap .order_box .more_btn:hover {
    background-color: #000;
    color: #fff;
    font-size: 1.2em;	
}

.index-page_container .feature_block_wrap .about_box {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 40%;
	height: 360px;
	display: flex;
	flex-direction: column;
}

.index-page_container .feature_block_wrap .about_box .headline {
	color: #000;
	font-size: 2em;
	letter-spacing: -1px;
	font-weight: 800;
	text-align: center;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;	
}

.index-page_container .feature_block_wrap .about_box .subheadline {
	color: #fff;
	font-size: 1.6em;
	font-weight: 800;	
	letter-spacing: -1px;
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
	line-height: 1.5em;
	text-shadow: 3px 3px 5px #000;
	
}

.index-page_container .feature_block_wrap .about_box .text_block {
	color: #38030A;
	font-size: 1.4em;
	letter-spacing: -1px;
	text-align: center;
	width: 100%;
	background-color: rgba(255,255,255,0.5);
	font-weight: 600;	
	padding: 15px;
	margin-bottom: 20px;
}

.index-page_container .feature_block_wrap .about_box .more_btn {
	margin-top: 20px;
    width: 100%;
    height: 50px;
    background-color: #E70725;
    text-align: center;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    line-height: 50px;
	cursor: pointer;
}

.index-page_container .feature_block_wrap .about_box .more_btn:hover {
    background-color: #000;
    color: #fff;
    font-size: 1.2em;
}

.index-page_container .testimonial_wrap {
	width: 100%;
	height: 275px;
	margin: 50px 0%;
    padding: 0px 20%;
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.index-page_container .testimonial_wrap .testimonial_block {
	width: 60%;
	height: 220px;	
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 20% 1fr 10%;
	grid-gap: 2%;
}

.index-page_container .testimonial_wrap .testimonial_block .headline {
	font-size: 2.5em;
	color: #fff;
	font-weight: 700;
	letter-spacing: -1px;
	width: 100%;
	justify-self: start;		
	align-self: center;	
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 1;
	grid-row-end: 1;	
}

.index-page_container .testimonial_wrap .testimonial_block .short_test {
	width: 100%;
	color: #fff;	
	justify-self: left;		
	align-self: center;	
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 2;
	grid-row-end: 2;
	display: flex;
	justify-content: space-between;
}

.index-page_container .testimonial_wrap .testimonial_block .short_test .testimonial {
	font-size: 1.1em;
	color: #fff;
	font-style: italic;
	font-weight: 500;
	letter-spacing: -1px;
	display: flex;
	align-items: center;
}


.index-page_container .testimonial_wrap .testimonial_block .name {
	font-size: 1em;
	color: #fff;
	font-weight: 500;
	letter-spacing: -1px;
	width: auto;
	justify-self: center;		
	align-self: center;	
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 3;
	grid-row-end: 3;	
}

.index-page_container .testimonial_wrap .test_photo {
	width: 35%;
	height: 220px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border: 1px #fff solid;
}

.map_wrap {
	width: 100%;
	height: 300px;
}

	/* Base Page */

.page_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	overflow: auto;
	min-height: calc(100vh - 270px);
	background-color: #979aa9;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	background-image: url("../images/newbg.jpg");
}

.page_wrap {
	width: 80%;
	height: auto;
	overflow: auto;
	min-height: 45vh;
	margin: 140px 10% 48px 10%;
	padding: 50px 1% 2% 1%;
	border-radius: 0px 0px 8px 8px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	-webkit-box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 2px 2px 1px rgba(0,0,0,0.25);	
}

.pagecontent {
	padding: 0% 1%;
	font-size: 1em;
	line-height: 1.4em;
	height: auto;
	overflow: auto;
	min-height: 40vh;
	padding-bottom: 10px;
}

.footer {
	width: 100%;
	height: 270px;
	display: flex;
	flex-direction: column;
}

.footer .graybar {
	height: 185px;
	width: 100%;
	background-color: #BF0B23;
	border-top: 3px solid #AD8319;
    padding: 0px 10%;	
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer .graybar .site_block {
	width: 30%;
	display: flex;
	flex-direction: column;
}

.footer .graybar .contact_block {
	width: 40%;
	display: flex;
	flex-direction: column;
	color: #fff;
	font-size: 0.9em;
	align-items: flex-end;
}

.footer .graybar .contact_block .companyname {
	font-size: 1.2em;
	font-weight: 700;
}

.footer .graybar .contact_block .address .fas, .footer .graybar .contact_block .phone .fas {
	margin-right: 5px;
	vertical-align: 0px;
}


.linkcolumn {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.linkcolumn a {
	width: 50%;
	color: #fff;
	font-size: 0.8em;
	line-height: 1.2em;
	font-weight: 300;
}

.linkcolumn a:hover {
	color: #000;
}


.footer .blackbar {
	background-color: #000;
	height: 85px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
}

.footer .blackbar .logo {
	width: 100%;
	height: 60px;	
}

.footer .blackbar .logo img {
	width: 10%;
	margin-top: -50px;
	margin-left: 45%;
}

.footer .blackbar .line {
	width: 100%;
	text-align: center;
	font-size: 0.7em;
	height: 20px;	
	color: #848484;
}

.footer .blackbar .line a {
	color: #848484;
}

.footer .blackbar .line a:hover {
	color: #fff;
}


.product_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.bc {
	width: 100%;
	font-size: 0.8em;
	color : #444;
    margin-bottom: 30px;
}

.bc a {
	color : #444;
}

.cat_summary_wrap {
    width: 100%;
    margin-bottom: 50px;
}

.subcat_block {
    width: 18%;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 300px;
    margin: 0px 1% 120px;
}

.subcat_image {
    width: 100%;
    height: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	border: 2px #000 solid;
    transform: scale(1);
    cursor: pointer;
    border-radius: 0px;
    margin-bottom: 20px;
}

.subcat_image:hover {
    transform: scale(0.95);
	border: 5px #740716 solid;
    border-radius: 5px;
}

.subcat_name {
	width: 100%;
	height: 50px;
    text-align: center;
	color: #740716;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1em;
}

.subcat_btn {
	width: 100%;
	cursor: pointer;
	height: 50px;
	background-color: #940215;
	color: #fff;
	border-radius: 5px;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 50px;
	text-align: center;
    margin-top: 20px;
}

.subcat_btn:hover {
	background-color: #000;
}

.product_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: auto;
    margin-bottom: 80px;    
}

.product_desc_image-container {
    width: 48%;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 450px;
}


.product_container_image {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 2px #000 solid;
    height: 450px;
}

.product_container_detail {
    width: 48%;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 450px;
}

.product_container_detail h1 {
    margin-bottom: 0px;
    border-bottom: 1px #ccc solid;
}

.product_container_detail--category {
    width: 100%;
    font-size: 0.8em;
}

.product_container_detail--sku {
    width: 100%;
    font-size: 1em;
    color: #000;
}

.product_container_detail--cost {
    width: 100%;
    font-size: 1.6em;
    color: #740716;
    font-weight: bold;
    margin: 10px 0px;
}

.calculator_block {
    width: 50%;
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 20px 0px;
}

.product_wrap .product_block {
	width: 100%;
	height: 330px;
	margin-bottom: 20px;
	display: grid;
	grid-column-gap: 2%;
	grid-template-columns: 30% 44% 22%;
	grid-template-rows: 100%;
	border-radius: 5px;
	border: 1px #ddd solid;
}

.product_wrap .product_block:nth-child(even) {
	background-color: #EfEfEf;
}

.product_wrap .product_block .product_image {
	width: 100%;
	height: 330px;
	border-right: 1px solid #ddd;
	grid-column-start: 1;
	grid-column-end: 1;
	grid-row-start: 1;
	grid-row-end: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.product_wrap .product_block .center_block {
	width: 100%;
	height: 330px;
	grid-column-start: 2;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 1;
	display: flex;
	flex-direction: column;
}

.product_wrap .product_block .center_block .product_name {
	width: 100%;
	font-weight: 700;
	font-size: 1.5em;
	text-align: left;
	margin-top: 10px;
    color: #4C040E;
	height: 1em;
}

.product_wrap .product_block .center_block .product_cat {
	width: 100%;
	font-weight: 700;
	font-size: 1em;
	text-align: left;
    color: #4C040E;
	height: 1em;
}

.product_wrap .product_block .center_block .product_sku {
	width: 100%;
	font-weight: 500;
	font-size: 0.8em;
	text-align: left;
    color: #000;
	margin-top: 5px;	
	height: 1em;
}

.product_wrap .product_block .center_block .product_desc {
	width: 100%;
	font-weight: 500;
	font-size: 0.9em;
	text-align: left;
    color: #444;
	margin-top: 10px;	
	height: 200px;
	line-height: 1.3em;
	overflow: hidden;
}


.product_wrap .product_block .calculator_block {
	width: 100%;
	height: 330px;
	padding: 8px 8px 0px 0px;
	grid-column-start: 3;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 1;
	display: grid;
	grid-column-gap: 2%;
	grid-row-gap: 2%;	
	grid-template-columns: 38% 40% 15%; 
	grid-template-rows: 8% 5% 8% 9% 9% 9% 15% 15% 10%; 
}

.calculator_block--row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    margin-bottom: 8px;
}

.calculator_block .priceline {
	color: #4C040E;
	align-self: center;	
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: -1px;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 4;	
	grid-row-start: 1;
	grid-row-end: 1;	
}

.calculator_block .salepriceline {
	background-color: #FF092A;
	padding: 0px 3px;
	color: #fff;
	align-self: center;	
	display: flex;
	justify-content: space-between;
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: -1px;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 4;	
	grid-row-start: 1;
	grid-row-end: 1;	
}


.calculator_block .calc_header {
	color: #675255;
	align-self: center;		
	font-size: 0.8em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 4;	
	grid-row-start: 2;
	grid-row-end: 2;	
}

.calculator_block .calc_label {
	color: #000;
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: bold;
	text-align: left;
    width: 45%;
    margin-right: 2%;
}

.calculator_block .format_select {
	color: #000;
	font-size: 1em;
	padding: 0px 2px;
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;	
    height: 30px;
    width: 62%;
}

.calculator_block .length_calc_label {
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 4;
	grid-row-end: 4;	
}

.calculator_block .length {
	color: #000;
	width: 30%;
	font-size: 1em;
	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;	
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .length_format {
	color: #000;
	font-size: 1em;
	width: 20%;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
    padding: 0px 5px;
}

.calculator_block .width_calc_label {
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 5;
	grid-row-end: 5;	
}

.calculator_block .width {
	color: #000;
	width: 30%;
	font-size: 1em;
	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;	
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .width_format {
	color: #000;
	font-size: 1em;
	width: 20%;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
    padding: 0px 5px;
}

.calculator_block .height_calc_label {
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 6;
	grid-row-end: 6;	
}

.calculator_block .height {
	color: #000;
	font-size: 1em;
	width: 30%;	
  	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .height_format {
	color: #000;
	font-size: 1em;
	width: 20%;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
    padding: 0px 5px;
}

.calculator_block .dia_calc_label {
	display: none;
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 4;
	grid-row-end: 4;	
}

.calculator_block .dia {
	color: #000;
	font-size: 1em;
	width: 30%;	
  	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .dia_format {
	color: #000;
	font-size: 1em;
	width: 20%;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
    padding: 0px 5px;
}

.calculator_block .depth_calc_label {
	display: none;
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 5;
	grid-row-end: 5;	
}

.calculator_block .depth {
	color: #000;
	font-size: 1em;
	width: 30%;	
  	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .depth_format {
	color: #000;
	font-size: 1em;
	width: 20%;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
    padding: 0px 5px;
}

.calculator_block .volume_calc_label {
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 7;
	grid-row-end: 7;	
}

.calculator_block .volume {
	color: #000;
	font-size: 1em;
	width: 30%;	
	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .volume_uom_label {
	color: #000;
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: bold;
	text-align: center;
    width: 18%;
    margin-right: 2%;
    line-height: 1em;
}

.calculator_block .ton_calc_label {
	color: #000;
	align-self: center;			
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: 500;
	text-align: right;
	grid-column-start: 1;
	grid-column-end: 1;	
	grid-row-start: 7;
	grid-row-end: 7;	
}

.calculator_block .ton {
	color: #000;
	font-size: 1em;
	width: 30%;	
 	padding: 0px 10px;	
	border-radius: 5px;
	background-color: #eee;
	border: 1px #bbb solid;
    height: 30px;
}

.calculator_block .ton_uom_label {
	color: #000;
	font-size: 1em;
	letter-spacing: -1px;
	font-weight: bold;
	text-align: center;
    width: 18%;
    margin-right: 2%;
}

.calculator_block .costline {
	color: #740716;
	font-size: 1.4em;
	font-weight: 700;
	letter-spacing: -1px;
	text-align: left;
    width: 100%;
    margin-top: 10px;
}

.category_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	overflow: auto;
}

.category_wrap .category_block {
	width: 30%;
	display: flex;
    flex-direction: column;
    align-items: center;
	min-height: 400px;
    height: auto;
	margin-bottom: 30px;
}

.category_wrap .category_block .cat_image {
	width: 100%;
	height: 280px;
	border: 2px #000 solid;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    transform: scale(1);
    cursor: pointer;
    border-radius: 0px;
}

.category_wrap .category_block .cat_image:hover {
    transform: scale(0.95);
	border: 5px #740716 solid;
    border-radius: 5px;
}

.category_wrap .category_block .cat_name {
	width: 100%;
	height: 50px;
    text-align: center;
	color: #740716;
	font-size: 1.8em;
	font-weight: 700;
	line-height: 50px;
    margin: 20px 0px;
}

.category_wrap .category_block .cat_desc {
	width: 100%;
	height: 120px;
	color: #675255;
	font-size: 0.9em;
	line-height: 1.2em;
}

.category_wrap .category_block .cat_btn {
	width: 70%;
	cursor: pointer;
	height: 50px;
	background-color: #940215;
	color: #fff;
	border-radius: 5px;
	font-size: 1.5em;
	font-weight: 500;
	line-height: 50px;
	text-align: center;
}

.category_wrap .category_block .cat_btn:hover {
	background-color: #000;
}



.location_wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: auto;
	overflow: auto;
}

.location_wrap .location_block {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: 400px;
	margin-bottom: 30px;
}

.location_wrap .location_block .map_container {
	width: 70%;
	border: 1px #444 solid;
	margin-right: 5%;
	height: 400px;
}

.location_wrap .location_block .desc_container {
	width: 30%;
	height: 400px;
	display: flex;
	flex-direction: column;
}

.location_wrap .location_block .image_photo {
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 20px;
}

.location_wrap .location_block .name {
	color: #740716;
	font-size: 1.5em;
	font-weight: 700;
	padding: 5px 0px;
}

.location_wrap .location_block .addressline {
	color: #675255;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.2em;
}

.location_wrap .location_block .phoneline {
	color: #675255;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5em;
}

.location_wrap .location_block .hoursline {
	color: #675255;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.2em;
}

.location_wrap .location_block .notesblock {
	color: #675255;
	font-size: 0.8em;
	font-weight: 500;
	line-height: 1em;
}


.contact_wrap {
	width: 100%;
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
	height: auto;
	overflow: auto;
}

.contact_wrap .left_block {
	width: 48%;
	height: auto;
	overflow: auto;
}

.contact_wrap .right_block {
	width: 48%;
	display: flex;
	flex-direction: column;
	height: auto;
	overflow: auto;
}


.contact_wrap .right_block .name {
	color: #740716;
	font-size: 1.5em;
	font-weight: 700;
	padding: 5px 0px;
}

.contact_wrap .right_block .addressline {
	color: #675255;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.2em;
}

.contact_wrap .right_block .contactline {
	color: #675255;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5em;
}

.contact_wrap .right_block .phoneline {
	color: #675255;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5em;
}

.contact_wrap .right_block .hoursline {
	color: #675255;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.2em;
}

.contact_wrap .right_block .map_container {
	margin-top: 25px;
	width: 100%;
	border: 1px #444 solid;
	height: 200px;
}


.topics_menu {
	width: 100%;
	background-color: #eee;
	height: auto;
	overflow: auto;
	border-radius: 5px;
	margin-bottom: 20px;
	margin-top: 30px;	
	padding: 1% 2%;	
}

.topics_menu a:hover {
	color: #327692;
}

.topics_menu ul, .topics_menu a {
	font-weight: 600;
	font-size: 1em;
	color: #444;
}


.topic-row {
	margin-bottom: 20px;
}

.faqlist {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-right: 5%;
}

.faqlist .faq-row {
	width: 100%;
	padding: 5px 2% 5px 2%;
	margin-bottom: 5px;
}

.faqlist .faq-row .faq-question {
	font-size: 1em;
	font-weight: 800;
	cursor: pointer;
}

.faqlist .faq-row .faq-question:hover {
	color: #9A720D;
	font-size: 1.1em;	
}

.faqlist .faq-row .faq-answer {
	display: none;
	width: 100%;
	padding: 5px 2% 5px 2%;
}

.faqlist .faq-row:nth-child(even) {
	background-color: #fff;
}

.faqlist .faq-row:nth-child(odd) {
	background-color: #eee;
}

.team_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	display: flex;
	flex-direction: column;
}

.team_wrap .team_block {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: auto;
	overflow: auto;
	margin-bottom: 15px;
}

.team_wrap .team_block .headshot {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 15%;
	height: 240px;
	border: 1px #000 solid;
}

.team_wrap .team_block .desc_block {
	width: 100%;
}

.team_wrap .team_block .small_desc_block {
	width: 82%;
}

.team_wrap .team_block .name {
	width: 100%;
	font-size : 1.6em;
	font-weight: 700;
	color: #D09E1E;
	letter-spacing: -1px;
	padding-bottom: 4px;
}

.team_wrap .team_block .title {
	width: 100%;
	font-size : 0.9em;
	font-weight: 500;
	font-style: italic;
	color: #4B4B4B;
	letter-spacing: -1px;
	padding-bottom: 4px;
}

.team_wrap .team_block .contact_line {
	width: 100%;
	font-size : 1em;
	font-weight: 700;
	color: #675255;
	padding-bottom: 4px;
	display: flex;
	justify-content: flex-start;
}

.team_wrap .team_block .contact_line .phone, .team_wrap .team_block .contact_line .email {
	margin-right: 20px;
}

.team_wrap .team_block .contact_line .fas, .team_wrap .team_block .contact_line .far {
	margin-right: 10px;
}

.team_wrap .team_block .bio {
	font-size: 1em;
	line-height: 1.2em;
	width: 100%;
	color: #675255;
}

.team_wrap .team_block .bio p {
	font-size: 1em;
	line-height: 1.2em;
}

.top_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: auto;
	overflow: auto;
}

.calc_btn {
	width: auto;
    cursor: pointer;
    padding: 0px 15px;
    height: 50px;
    background-color: #940215;
    color: #fff;
    border-radius: 5px;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 50px;
    text-align: center;
}

.calc_btn:hover {
    background-color: #000;
}

.calc_btn .fas {
    margin-right: 10px;
}

.gallery_container {
	width: 100%;
	display: flex;
	height: auto;
	overflow: auto;
	justify-content: space-between;
}

.gallery_menu {
	width: 15%;
	display: flex;
	height: auto;
	flex-direction: column;
	justify-content: flex-start;
}

.gallery_btn {
	width: 100%;
}

.gallery_btn_selected {
	width: 100%;
}

.gallery_list {
	width: 84%;
	display: flex;
	flex-wrap: wrap;
	height: auto;
}

/****************************************
	GALLERY
****************************************/
.gallery {
  width: 100%;
  text-align: center; }

.galthumb {
  display: inline-block;
  margin: 5px;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; }

.galimg {
  width: 23%;
  padding: 3px;
  height: 275px;
  background: #fff;
  margin: 10px 1%;
  -moz-box-shadow: 1px 2px 16px rgba(0, 0, 0, 0.63);
  -webkit-box-shadow: 1px 2px 16px rgba(0, 0, 0, 0.63);
  box-shadow: 1px 2px 16px rgba(0, 0, 0, 0.63);
  cursor: pointer;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  
  }

  .galimg:hover {
    background: #BF0B23; }

  .galimg img {
    max-width: none !important; }

.galimgblock {
  width: 100%;
  height: 100%;
  display: block; }
  .galimgblock div {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: none;
    color: #fff;
    font-family: 'Lato', sans-serif;
	font-weight: bold;
	font-size:14px;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle; }
    .galimgblock div:before {
      content: "";
      height: 100%;
      display: inline-block;
      vertical-align: middle; }
    .galimgblock div span {
      display: inline-block;
      max-width: 90%;
      margin: 0 5%; }


.guide-wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	border: 1px #C0C0C0 solid;
	border-radius: 5px;
	padding: 1%;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.guide-wrap-h1 {
    font-size: 1.4em;
    font-weight: 600;
    padding-bottom: 20px;
    letter-spacing: -1px;
    color: #740716;
    margin-left: 20px;
}

.guide-wrap-h1 .fas {
	font-size: 0.8em;
    vertical-align: 2px;
	margin-right: 10px;
}

.guide-desc {
    margin-left: 10px;
    width: 80%;
    font-size: 1em;
}

.guide-download {
	margin-left: 10px;	
	padding-top: 10px;	
	padding-bottom: 10px;
	font-size: 1.4em;
	font-weight: 700;
}

.guide-download:hover {
	color: #740716;
}


.guide-wrap .guide-section {
    width: 100%;
	display: flex;
	flex-direction: column;
}

.guide-wrap .guide-name {
	padding: 5px;
	
	
}

.guide-wrap .guide-name:nth-child(even) {
	
	background-color: #e0e0e0;
	
}

.guide-wrap .guide-name:nth-child(odd) {
	
	background-color: #f3f3f3;
	
}



.buy_sticky_btn {
	position: fixed;
	cursor: pointer;
	display: flex;
	padding: 20px 5px; 
	flex-direction: column;
	z-index: 5000;
	left: 0;
	top: calc(100vh - 170px);
	width: 180px;
	height: 170px;
	border-radius: 0px 10px 0px 0px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#daa520+0,6d5310+100 */
    background: rgb(218,165,32); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(218,165,32,1) 0%, rgba(109,83,16,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(218,165,32,1) 0%,rgba(109,83,16,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(218,165,32,1) 0%,rgba(109,83,16,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#daa520', endColorstr='#6d5310',GradientType=0 ); /* IE6-9 */
	-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
}


.buy_sticky_btn .topline {
	color: #440D0D;
	font-size: 0.9em;
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1em;
}

.buy_sticky_btn .midline {
	color: #000;
	font-size: 2.2em;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1em;
	margin: 15px 0px;
}

.buy_sticky_btn .bottomline {
	color: #fff;
	font-size: 1em;
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1em;
}

.quote_sticky_btn {
	position: fixed;
	cursor: pointer;
	display: flex;
	padding: 30px 20px; 
	flex-direction: column;	
	z-index: 5000;
	right: 0;
	top: calc(100vh - 170px);
	width: 180px;
	height: 170px;
	border-radius: 10px 0px 0px 0px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7c0717+0,3e040c+100 */
	background: rgb(124,7,23); /* Old browsers */
    background: -webkit-linear-gradient(rgba(124,7,23,1) 0%, rgba(62,4,12,1) 100%);
    background: -o-linear-gradient(rgba(124,7,23,1) 0%, rgba(62,4,12,1) 100%);
    background: linear-gradient(rgba(124,7,23,1) 0%, rgba(62,4,12,1) 100%); /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7c0717', endColorstr='#3e040c',GradientType=0 ); /* IE6-9 */
	-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
}

.quote_sticky_btn .topline {
	color: #fff;
	font-size: 1em;
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1em;
}

.quote_sticky_btn .midline {
	color: #fff;
	font-size: 2.2em;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1em;
	margin-top: 10px;
}
	
.quote_sticky_btn .bottomline {
	color: #fff;
	font-size: 2.2em;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1em;
}


.esale_wrap {
	width: 100%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.esale_wrap .esale_box {
	width: 30%;
	height: auto;
	overflow: auto;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
}

.esale_wrap .esale_box .esale_name {
	width: 100%;
	background-color: #740716;
	color: #fff;
	padding: 5px 2%;
	font-size: 1.4em;
	font-weight: 500;
	line-height: 1em;
	height: auto;
	overflow: auto;
	margin-bottom: 10px;
	border-radius: 5px 5px 0px 0px;
}

.esale_wrap .esale_box .esale_image {
	width: 100%;
	height: 350px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.esale_wrap .esale_box .esale_smallname {
	width: 100%;
	color: #000;
	padding: 5px 2%;
	font-size: 1em;
	line-height: 1em;
	font-weight: 800;
	height: auto;
	overflow: auto;
	margin: 10px 0px;
}

.esale_wrap .esale_box .esale_description {
	width: 100%;
	color: #444;
	padding: 5px 2%;
	font-size: 0.9em;
	line-height: 1.2em;
	height: auto;
	overflow: auto;
	margin-bottom: 10px;
}

.esale_wrap .esale_box .esale_price_wrap {
	width: 100%;
	padding: 5px 2%;
	color: #000;
	height: auto;
	overflow: auto;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	
}

.esale_wrap .esale_box .esale_price_wrap .esale_status {
	font-size: 1.2em;
	font-weight: 800;
	line-height: 1em;
	text-align: left;	
}

.esale_wrap .esale_box .esale_price_wrap .esale_price {
	font-size: 1.6em;
	font-weight: 800;
	line-height: 1em;
	text-align: right;	
}