
@font-face {
	font-family: 'book';
	src: url('/fonts/book.eot'); /* For Internet Explorer 6+ */
	 ;
}
@font-face {
	font-family: 'book';
	src: url('/fonts/book.ttf'); /* For non-IE browsers */
	 ;
}
@font-face {
	font-family: 'book';
	src: url('/fonts/book-bold.eot'); /* For Internet Explorer 6+ */
	font-weight: bold ;
}
@font-face {
	font-family: 'book';
	src: url('/fonts/book-bold.ttf'); /* For non-IE browsers */
	font-weight: bold ;
}
@font-face {
	font-family: 'book';
	src: url('/fonts/book-italic.eot'); /* For Internet Explorer 6+ */
	font-style: italic ;
}
@font-face {
	font-family: 'book';
	src: url('/fonts/book-italic.ttf'); /* For non-IE browsers */
	font-style: italic ;
}

/* default 0 paddings */
html,
body,
form {
	padding: 0px ;
	margin: 0px ;
}

/* general font sizing */

body {
	font: inherit;
	line-height: inherit;
	color: inherit;
}

body,
input,
select,
textarea,
button {
	/*font-family: 'Mulish', arial, helvetica, sans-serif ;*/
		font-family: 'Mulish' ;
	font-size: 15px ;
	line-height: 1.25; /* should never change */
	color: #000000;
}

p,
.par,
.spaced {
	margin: 15px 0px; /* top and bottom padding should match font-size */
}

p,
.par,
blockquote,
ul,
ol,
menu,
.lh {
	line-height: 1.75; /* set general line height if different than standard (no units is multiplied by font size) */
}

/*
button {
	line-height: inherit;
}
*/

/* set heading styles - always set top and bottom margins */
h1, h2, h3, h4, h5, h6 {
	text-transform: uppercase;
}


h1 {
	font-family: 'Mulish' ;
	font-size: 3em ;
	font-weight: bold ;
	letter-spacing: -.03em ;
	color: #f70325 ;
	margin-top: 15px;
	margin-bottom: 15px;
}

h2 {
	font-family: 'Mulish' ;
	font-size: 2em ;
	font-weight: bold ;
	letter-spacing: -.03em ;
	color: #f70325 ;
	margin-top: 15px;
	margin-bottom: 15px;
}

h3 {
	margin-top: 15px;
	margin-bottom: 15px;
}

h3,
.form_label,
.name,
.inline_h,
.h {
	font-family: 'Mulish' ;
	color: #f70325 ;
	font-size: 1.3em ;
	font-weight: bold ;
	letter-spacing: -.03em ;
}

h4 {
	font-size: 1.5em;
	margin-top: 11px;
	margin-bottom: 0px;
}

h5 {
	font-size: 1.25em;
	margin-top: 11px;
	margin-bottom: 0px;
}

h6 {
	margin-top: 11px;
	margin-bottom: 0px;
}

.inline {
	display: inline;
}


/* set anchor styles */
a,
a:link {
	color: #f70325;
}

a:active,
a:visited {
	color: #f70325;
}

a:hover {
	color: #3a3533;
}

/* default table properties */
table {
	border-collapse: collapse ;
}

tr {
	vertical-align: middle;
}

/* default image properties */
img {
	;
	border-collapse: separate; /* for ie9 */
	max-width: 100%;
	height: auto;
}

/* hr styles */
hr {
	margin: 6px 0px;
	padding: 0px;
	border: none;
	border-top: solid 2px #000;
}

input,
textarea {
	box-sizing: border-box;
}

/*	template styles	*/

body {
	background: #fff ;
}

.body {
	margin: 0px; /* never change cos of ie6 */
	padding: 0px;
	position: relative;

	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.shadow_holder {
	/*background: url(/images/demo/holder_shadow.png) center top no-repeat; */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	border-collapse: separate;
	padding-top: 10px;
}

.banner {
	/*background: url(/images/demo/logo_bg.png);*/
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) , rgba(255, 255, 255, 0.5) );
	padding: 20px;
}

.nav_holder {
	background: #de0221;
}

.content_width {
	max-width: 980px;
	margin: auto;
}

.content_bg {
	background: #ffffff;
}

.content_padding {
	padding: 5px 20px ;
}

.content_table {
	width: 100%;
}

.content_table td {
	padding: 0px;
}

.content_table_side {
	vertical-align: top;
	width: 250px;
}

.content_table_content {
	vertical-align: top;
}

/* nav styles */

.sf-menu {
	display: flex;
	flex-wrap: wrap;
		justify-content: flex-start;
}

.sf-menu li {
	}

.sf-menu li ul {
	width: 200px;
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
	border-collapse: separate;
}

a.button_a,
a.button_a:link,
a.button_a:active,
a.button_a:visited {
	/*display: block ;*/
	font-family: 'Mulish' ;
	color: #ffffff ;
	text-decoration: none ;
	font-size: 14px ;
	font-weight: bold ;
	text-align: center ;
	padding: 5px 8px;
	/* border-left: 1px solid #615d5b ; */
	/* border-right: 1px solid #3A3533 ; */
	text-transform: uppercase;

	display: block;
	position: relative;
	transition: .25s ease-out;
}

a.button_a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: #f70325 ;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform .25s ease-out;
}

a.button_a:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

a.button_a:hover {
	color: #f70325 ;
	}

@media (max-width: 980px) {
	a.button_a:hover {
		color: #ffffff ;
	}
}

/* nav sub */

a.button_b,
a.button_b:link,
a.button_b:active,
a.button_b:visited {
	font-family: 'Mulish' ;
	font-size: 16px ;
	font-weight: normal ;
	text-decoration: none ;
	color: #fff ;
	background: #f70325 ;
	padding: 2px 12px ;
}
a.button_b:hover {
	background: #de0221 ;
}

/* footer styles */

.foot,
.foot a:link,
.foot a:active,
.foot a:visited {
	color: #ffffff ;
	text-decoration: none ;
}
.foot a:hover {
	text-decoration: underline ;
}

.footer_form {
	width: 100%;
	box-sizing: border-box;
	padding: 1.5rem 1rem;
	background-color: #f0f0f0;
}

/* link_white */

a.link_white,
a.link_white:link,
a.link_white:active,
a.link_white:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_white:hover {
	text-decoration: underline ;
}

/* nav */

.nav {
	margin: 0px;
	padding: 0px;
	overflow: visible;
	list-style: none;
	list-style-image: none;
	clear: both;
}

.nav li {
	display: block; /* inline-block for HTML < 5 */
}


.nav li a {
	display: block ;
}

.nav li {
	width: 100%; 
	margin: 0px;
	padding: 0px;
	position: relative;
}

/* sub nav */
.nav li ul {
	display: none;
	margin: 0px ;
	padding: 0px ;
	position: absolute;
	list-style: none;
	list-style-image: none;
}
.nav_horizontal li ul.button_sub_left {
	left: 0;
	top: 100%;
}
.nav_vertical li ul {
	left: 100%;
	top: 0;
}
.nav_horizontal li ul.button_sub_right {
	left: default !important; 
	right: 0;
	top: 100%;
}

.nav li:hover > ul {
	display: block;
	z-index: 3000;
}
.nav li ul li a {
	display: block;
}

/* sub-sub nav */
.nav li ul li ul {
	display: none;
}
.nav li ul li:hover ul {
	left: 100%;
	top: 0;
}


/* misc standard styles */

.twocol {
	/*overflow: hidden;*/
}

.twocol_left {
	float: left;
	box-sizing: border-box;
	width: 50%;
	padding-right: 10px;
}

.twocol_right {
	float: right;
	box-sizing: border-box;
	width: 50%;
	padding-left: 10px;
}

.twocol_left.twocol_border {
	border-right: solid 1px #de0221;
	padding-right: 20px;
}

.twocol_right.twocol_border {
	border-left: solid 1px #de0221;
	padding-left: 20px;
}

@media (max-width: 640px) {
	.twocol_left,
	.twocol_right {
		float: none;
		width: auto;
		padding: 0px !important;
		border: 0px !important;
	}
}

a.inverted {
	text-decoration: none;
}
a.inverted:hover {
	text-decoration: underline;
}

.float,
img.img_float,
p.img_float img {
	clear: right;
	float: right;
	margin: 15px 0px 15px 20px;
}

.float_left,
img.img_float_left,
p.img_float_left img {
	clear: left;
	float: left;
	margin: 15px 20px 15px 0px;
}

.footnote {
	font-style: italic;
	font-size: .8em;
}

.box {
	border: solid 1px #f5f1e5;
}

.box_h {
	border: solid 1px #ffffff;
	background-color: #f5f1e5;
	color: #ffffff;
	font-weight: bold;
	padding: 5px;
}

.box_h a {
	color: #ffffff;
}

.box_c {
	padding: 5px;
}

.gb {
	font-weight: bold;
	color: #666666;
	font-size: 1.1rem;
}

.google_info_win {
	font-size: 12px ;
	margin-top: 10px ;
	line-height: 1.5 ;
}

/* overlay */


.overlay_cont {
	position: relative;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
	border-collapse: separate;
	margin: 10px;
	border: solid 6px #d5d5d5;
	border-radius: 20px;
	background-color: #ffffff;
	padding: 0px 20px;
}

.overlay_cont h2 {
	text-shadow: 2px 2px .1em rgba(0, 0, 0, 0.2);
}

.overlay_close {
	display: block;
	position: absolute ;
	top: -9px;
	right: 14px;
	border: solid 1px #b5b5b5;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	background-color: #dddddd;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) , rgba(0, 0, 0, 0.1) );
	padding: 3px 6px;
	text-decoration: none;
	line-height: 1;
	color: #7f7f7f !important;
	text-shadow: 0px 0px .1em rgba(255, 255, 255, 1);
}

.overlay_close:hover,
.overlay_close:focus {
	background-color: #cacaca;
	border-color: #aaaaaa;
	color: #6a6a6a !important;
}

.proc_win {
	padding: 40px 75px;
	background-color: #eee;
	text-align: center;
}

.proc_win h2 {
	font-size: 26px;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 15px;
}

/* done box */


.done {
	margin-bottom: 15px;
	background-color: #fbe5e8;
	text-align: center;
	color: #de0221;
	border: solid 1px #de0221;
}

.done_standard,
.done_message {
	margin: 7.5px;
}

.done_message p {
	margin: 7.5px 0px;
}

.done_message > *:first-child {
	margin-top: 0px;
}
.done_message > *:last-child {
	margin-bottom: 0px;
}

.done_1 {

}
.done_0 {
	font-style: italic;
}

.done_1 .done_standard {
	font-weight: bold;
}

.done_0 .done_standard {
	font-weight: bold;
}

.done_message {

}

/* missing items box */

.missing {
	margin-bottom: 15px;
	background-color: #fbe5e8;
	padding: 7.5px;
	text-align: center;
	color: #de0221;
	font-size: 1.6em;
	border: solid 1px #de0221;
}

/* jquery */

.ui-datepicker {
	font-family: Verdana,Arial,Sans-Serif;
	font-size: 12px !important;
	font-weight: normal;
	z-index: 4000 !important;
}

img.ui-datepicker-trigger {
	cursor: pointer;
	position: relative;
	left: 0px;
	top: 3px;
}

.ui-autocomplete-loading {
	background: white url('/images/styles/ui-anim_basic_16x16.gif') right center no-repeat;
}

/* html5 style placeholder */

input.watermark {
	color: #888;
}

/* share this */

.shareThis, .addThis {
	float: right ;
	margin-left: 20px ;
	margin-bottom: 10px;
}

.shareThis a,
.shareThis a:link,
.shareThis a:active,
.shareThis a:visited,
.addThis a,
.addThis a:link,
.addThis a:active,
.addThis a:visited {
	text-decoration: none ;
	color: #1C6E35 ;
	font-size: 12px ;
}

.addThis a:hover,
.shareThis a:hover {
	text-decoration: underline ;
}

.addThis a,
.addThis a:link,
.addThis a:active,
.addThis a:hover,
.addThis a:visited {
	color: #FE6D4C ;
}

.top_search {
	border: 1px solid #e0e0e0 ;
	background: #fff ;
	padding: 5px 10px ;
	padding-left: 10px ;
}

.top_input {
	padding: 0px ;
	margin: 0px ;
	border: 0px ;
	background: #fff ;
	width: 100% ;
	position: relative ;
	color: #999 ;
}

#tooltip.tooltipText {
	border: 1px solid #111;
	background-color: #eee;
	padding: 5px;
	/*
	opacity: 0.85;
	*/
}

/* styled buttons */

.but {
	cursor: pointer;
	text-shadow: 0px 0px 2px rgba(178, 2, 27, 1);
	color: #ffffff !important;
	background-image: linear-gradient(to bottom, rgba(229, 51, 76, 1) , rgba(216, 39, 63, 1) );
	background-color: #e32842;
	border: solid 1px #c8021d;
	border-bottom: solid 1px #b1021a;
	border-radius: 3px;
	margin: 1px 0px;
	text-align: center;
	white-space: nowrap;
}

button.but {
	padding: 1px 6px ;
}

a.but {
	text-decoration: none;
	display: inline-block;
	padding: 1px 6px;
}

.but:hover {
	background-image: linear-gradient(to bottom, rgba(217, 49, 72, 1) , rgba(205, 37, 60, 1) );
	background-color: #d4253e;
}

.but:active,
.but:focus {
	background-color: #de0221;
	background-image: none;
}

.but[disabled] {
	border-color: #ca6774;
	background-image: none;
	background-color: #d77a87;
	text-shadow: none ;
	cursor: default;
}

/* checkbox buttons */


label.cb_but {
	display: inline-block;
	border: solid 1px #e84e63;
	border-radius: 3px;
	padding: 0px 6px;
	line-height: 1.5;

	background-image: linear-gradient(to bottom, rgba(253, 242, 244, 1) , rgba(253, 242, 244, 1) );
	color: #de0221;
}
label.cb_but:hover {
	background-image: linear-gradient(to bottom, rgba(246, 235, 237, 1) , rgba(243, 233, 234, 1) );
}

label.cb_but.cb_but_checked {
	background-image: linear-gradient(to bottom, rgba(229, 56, 80, 1) , rgba(224, 15, 44, 1) );
	color: #ffffff;
	text-shadow: 0px 0px 2px rgba(89, 1, 13, 1);
}

/* tabs */

a.tab,
a.tab:link,
a.tab:visited,
a.tab:active,
a.tab:hover {
	display: inline-block;
	background-image: linear-gradient(to bottom, rgba(222, 3, 33, 1) , rgba(222, 3, 33, 1) );
	padding: 5px 10px;
	border: solid 1px #de0221;
	text-decoration: none;
	color: white;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	margin: 0px;
}

a.tab:hover {
	background-image: linear-gradient(to bottom, rgba(247, 3, 37, 1) , rgba(247, 3, 37, 1) );
	border: solid 1px #f70325;
}

a.tab.tab_selected {
	background-image: linear-gradient(to bottom, rgba(247, 3, 37, 1) , rgba(247, 3, 37, 1) );
	border: solid 1px #f70325;
}

.tab_cont_cont {
	padding: 10px;
}

/* cmenu */


.cmenu {
	display: inline-block;
	position: relative;
	line-height: 1.25;
	letter-spacing: 0px;
}

.cmenu.cmenu_open {
	z-index: 1000000;
}

.cmenu .cmenu_button {
	display: inline-block;
	margin: 0px;
	padding: 2px 9px;
	border: solid 1px #969593;
	border-radius: 3px;
	background-image: linear-gradient(to bottom, rgba(244, 243, 239, 1) , rgba(234, 233, 230, 1) );
	outline: none;
	cursor: pointer;
	color: #4b4a49;
}

.cmenu .cmenu_button:hover {
	background-image: linear-gradient(to bottom, rgba(236, 235, 232, 1) , rgba(223, 222, 218, 1) );
}

.cmenu_drop {
	display: none;
	position: absolute;
	z-index: -1;
	min-width: 100%;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	border-collapse: separate;
	border: solid 1px #969593;
	background-color: #eae9e5;
	background-image: linear-gradient(to bottom, rgba(244, 243, 239, 1) , rgba(234, 233, 230, 1) 60px);
	padding: 6px;
	color: #de0221;
}

.cmenu_drop .cmenu_content {
	padding: 0px 6px;
	color: #000000;
}

.cmenu.cmenu_open .cmenu_drop {
	display: block;
}

.cmenu.cmenu_open .cmenu_button {
}

.cmenu.cmenu_down.cmenu_open .cmenu_button {
	border-bottom-color: #f3f2ee;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background-image: linear-gradient(to bottom, rgba(219, 218, 215, 1) , rgba(244, 243, 239, 1) );
}

.cmenu.cmenu_up.cmenu_open .cmenu_button {
	border-top-color: #eae9e5;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	background-image: linear-gradient(to bottom, rgba(234, 233, 230, 1) , rgba(199, 198, 195, 1) );
	background-position: center -1px;
}

.cmenu.cmenu_down .cmenu_drop {
	top: 100%;
	bottom: auto;
	margin-top: -1px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.cmenu.cmenu_down.cmenu_right .cmenu_drop {
	border-top-right-radius: 3px;
}

.cmenu.cmenu_down.cmenu_left .cmenu_drop {
	border-top-left-radius: 3px;
}

.cmenu.cmenu_up .cmenu_drop {
	bottom: 100%;
	top: auto;
	margin-bottom: -1px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}

.cmenu.cmenu_up.cmenu_right .cmenu_drop {
	border-bottom-right-radius: 3px;
}

.cmenu.cmenu_up.cmenu_left .cmenu_drop {
	border-bottom-left-radius: 3px;
}

.cmenu.cmenu_left .cmenu_drop {
	left: auto;
	right: 0px;
}

.cmenu.cmenu_right .cmenu_drop {
	left: 0px;
	right: auto;
}

a.cmenu_item {
	display: block;
	white-space: nowrap;
	padding: 2px 6px;
	vertical-align: baseline;
	line-height: 1.25;
	text-decoration: none;
	outline: none;
	color: #de0221;
}

a.cmenu_item:hover {
	background-color: #de0221;
	color: #faf9f5;
}

.cmenu hr {
	margin: 4px 0px;
}

.cmenu hr + hr {
	display: none;
}


/* responsive form */

.resp_form {
	max-width: 600px;
	margin: auto;
}

.resp_form input[type=text],
.resp_form input[type=password],
.resp_form textarea {
	width: 100%;
}

.resp_form button {
	border: 0;
	padding: 20px 30px;
	background-color: #f70325 ;
	color: white;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	transition: .25s ease;
}

.resp_form button:hover {
	background-color: #de0221 ;
}

/* COMMON STYLES (for site side only, generally doesn't change between sites) */

a img, 
a:link img, 
a:active img, 
a:visited img {
	border-style: solid;
	border-width: 1px; 
	border-color: #f70325;
}
a:hover img {
	border-color: #3a3533;
}

a img.no_border,
a:link img.no_border,
a:active img.no_border,
a:visited img.no_border,
a:hover img.no_border {
	border-width: 0px !important; 
}

textarea {
	resize: vertical;
}

input {
	margin: 2px; 
	margin-left: 0px; 
}

input[type="radio"], 
input[type="checkbox"] {
}

/* TinyMCE specific rules */


body.mceContentBody {
	background: #ffffff;
	padding: 20px; 
}

.mceContentBody a {
	color: #f70325 !important; /* Should match standard anchors; FF requires a important here for mceContentBody */
}

/*Misc Standard Styles*/

.w100 {
	width: 100%; 
}

.vat,
table.vat td,
tr.vat td {
	vertical-align: top; 
}

.vabl,
table.vabl td,
tr.vabl td {
	vertical-align: baseline; 
}

.vam,
table.vam td,
tr.vam td {
	vertical-align: middle; 
}

.tar {
	text-align: right; 
}

.important {
	color: #f83550;
}

.required {
	text-align: center;
	color: #f83550;
}

.even_row, 
.row_0 {
	background-color: #eeeeee;
}

.odd_row, 
.row_1 {
	background-color: #ffffff;
}

.good, 
.status1 {
	color: #f70325;
}

.bad, 
.status0 {
	color: #f83550;
}

table.form td {
	vertical-align: baseline; 
	text-align: left; 
}

table.form td.label {
	/*text-align: right; */
}

div.label {
	margin-top: 15px; 
}

div.field {
	margin-bottom: 15px; 
}


/* _table default styles */


/* general style */

/* fields */

.view_all {
	margin-top: 10px; 
	border-top: solid 0px #666666;
}

.name {
}

.date {
}

div.img_cont {
	clear: right;
	float: right; 
	margin: 0px 0px 10px 10px; 
}

.link {
	text-align: right; 
	clear: right; 
	font-size: 14px ;
}

.teaser {
	
}

/* list main */

table.list_cont {
	width: 100%; 
}

table.list_cont td {
	padding: 5px; 
	vertical-align: top;
	border-top: dotted 1px #666666;
}

table.list_cont tr:first-child td {
	border-top: 0px; 
}

td.img_cont {
	width: 1%; 
	text-align: center; 
}

div.list_item {
	padding: 10px 0px; 
	border-top: dotted 0px #666666;
	clear: both;
}

div.list_item:first-child {
	border-top: 0px; 
}

tr.list_item td {
	padding-top: 10px; 
	padding-bottom: 10px; 
}

table.hor_list_cont {
	width: 100%; 
}

td.hor_list_item {
	text-align: center; 
	vertical-align: top; 
	padding: 6px; 
	padding-bottom: 12px; 
}

table.hor_list_item {
	margin: auto; 
}

table.hor_list_item td {
	text-align: center; 
	vertical-align: middle; 
}
/* Edit Me */

a.edit_me {
	font-family: 'Mulish' ;
	opacity: 0.65; 
	display: block;
	position: fixed; 
	bottom: 0px;
	right: 10px; 
	box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.4);
	border-collapse: separate; 
	border-radius: 5px 5px 0px 0px; 
	border: solid 1px #e84e63; 
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) , rgba(232, 78, 100, 1) ); 
	padding: 8px 12px; 
	font-size: 3em; 
	font-weight: bold ;
	letter-spacing: -.03em ;
	text-decoration: none; 
	color: #de0221; 
}
a.edit_me:hover {
	opacity: 1; 
}

a.edit_me img {
	border: 0px;
}

@media (max-width: 640px) {
	a.edit_me {
		opacity: 1; 
		position: static;
		border-radius: 0px; 
		border-width; 0px;
		text-align: center; 
	}
}
/* paging links */

div.paging {
	margin: 15px 0px; 
}

div.paging_np {
	
}

div.paging_pages {
	margin-top: 7.5px; 
}

a.paging, 
a.paging:link, 
a.paging:active, 
a.paging:visited,
a.paging:hover {
	display: inline-block; 
	border: solid 1px #f70325; 
	border-radius: 5px;
	background-color: #f70f2f;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, .2) , rgba(247, 3, 37, 0.2) ); 
	padding: 5px 7.5px; 
	text-align: center;
	text-decoration: none; 
	color: #ffffff;
}

a.paging:hover {
	background-color: #f82744;
}

a.paging[disabled] {
	cursor: default; 
	border: solid 1px #ea3f57; 
	background-color: #ea485e; 
	background-image: none;
	color: #f0929f;
}

a.paging.paging_cur {
	border-width: 2px !important; 
	padding: 4px 6.5px !important; 
	font-weight: bold; 
	text-decoration: underline; 
}

/* PRODUCTS STYLES */

/* bread crumb */


.bcrumb a:link,
.bcrumb a:active,
.bcrumb a:visited {
	font-size: 0.9em;
	text-decoration: none;
}

.bcrumb a:hover {
	text-decoration: underline;
}

a.filter_bcrumb {
	display: inline-block;
	padding-right: 17px;
	background: url(/images/styles/remove_x_1.png) no-repeat right center ;
	text-decoration: none;
	font-size: 0.9em;
}

a.filter_bcrumb:hover {
	text-decoration: underline;
	background-image: url(/images/styles/remove_x_2.png) ;
}

/* generic */

.price {
	font-size: .9em;
	font-style: italic;
}

/* list */

.hor_img_cont a img {
	border-width: 1px;
}

/* category list */

div.cat_id.hor_list_cont {
	border: solid 1px #f5f1e5;
	background-color: #fafafa;
}

div.cat_id.hor_list_cont {
	width: 100%;
}

.cat_id .cat_id.hor_img_cont {
	/*background-color: #f5f1e5;
	border-radius: 5px;*/
}

/* product list */

.product .name {
	text-align: center;
}

.product .teaser {
	padding: 5px;
}


/* product detail */

div.prd_float_spaced {
	/*margin: -1px 0px;*/
	margin: 10px 0px;
}

div.prd_img_cont {
	border: solid 1px #f5f1e5;
	/*background-color: #eeeeee;*/
	background-image: linear-gradient(to bottom, rgba(251, 251, 251, 1) , rgba(242, 242, 242, 1) );
	border-radius: 10px;
}

/*
div.prd_float_spaced:first-child div.prd_img_cont {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

div.prd_float_spaced:last-child div.prd_img_cont {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
*/

.prd_img_main_cont {
	margin: auto;
}

table.prd_img_main_cont td {
	text-align: center;
	padding: 0px;
}

table.prd_img_add_cont {
	width: 100%;
	border-collapse: separate;
}

table.prd_img_add_cont td {
	text-align: center;
	padding: 0px;
	vertical-align: middle;
	/*
	border: solid 1px #f5f1e5;
	background-color: #eeeeee;
	border-radius: 3px;
	*/
}

table.prd_pdfs_cont {
	width: 100%;
}

table.prd_pdfs_cont td {
	text-align: center;
	vertical-align: top;
	padding: 3px;
}

.prd_pdfs_name {
	font-size: 10px;
}

.prd_id.form_label {
}

.product_flex {
	display: flex;
}

.product_flex-content {
	flex: 2;
	order: -1;
}

.product_flex-media {
	flex: 1;
	margin-left: 1rem;
}

@media (max-width: 980px) {
	.product_flex {
		display: block;
	}

	.product_flex-media {
		margin: 0;
	}
}

/* module */

.prd_mod .name a,
.prd_list .name a,
.product .name a {
	text-decoration: none;
	transition: .35s ease;
}


.prd_mod .name a:hover,
.prd_list .name a:hover,
.product .name a:hover {
	color: #666666 ;
}

/* CART STYLES */

/* cart items */

.cart_id.list div.list_cont {
	border: solid 1px #de0221;
}

.cart_id.list table.list_cont td {
	vertical-align: baseline; 
	padding: 5px; 
}

.cart_id.list tr.list_item td {
	border-color: #de0221;
}

.cart_id.list tr.list_head td {
	background-color: #de0221;
	background-image: linear-gradient(to bottom, rgba(222, 3, 33, 1) , rgba(229, 53, 78, 1) );
	color: #ffffff;
	font-weight: bold;
}

.cart_id.list tr.list_head td {
	vertical-align: bottom; 
	border-bottom: solid 1px #de0221; 
}

.cart_id.list .prd_id {
	font-size: .7em;
}

.cart_id.list .quantity {
	width: 30px ; 
	font-size: .8em; 
	text-align: center; 
}

tr.cart_id.list .list_item td {
	background: #ffffff;
}

.cart_id.list .img_cont {
	/*padding: 2px !important; */
	vertical-align: top !important;
}

.cart_id.list .img_cont img {
	margin: 2px 0px; /* match input fields */
}

.cart_id.list .name_cont {
	font-size: 1.1em;
}

.cart_id.list .name_cont a {
	text-decoration: none; 
}
.cart_id.list .name_cont a:hover {
	text-decoration: underline; 
}

.cart_id.list .opt_cont {
	font-size: .8em; 
}

.cart_id.list .quantity_cont {
	text-align: center; 
	width: 1% ; 
	white-space: nowrap; 
}

.cart_id.list .remove_cont {
	text-align: center; 
	width: 1% ; 
	white-space: nowrap; 
	font-size: .9em; 
}

.cart_id.list .remove_cont a {
	text-decoration: none; 
}
.cart_id.list .remove_cont a:hover {
	text-decoration: underline; 
}

.cart_id.list .amount_cont {
	text-align: right; 
}

.cart_id.list .item_total_cont {
	text-align: right; 
}

.cart_id.list .opt_warning {
	color: #f83550;
	font-style: italic;
	font-size: .8em;
}

.cart_id.list .free_shipping_note {
	color: #f83550;
	font-size: .7em;
}

/* cart totals */

.cart_left {
	float: left; 
	box-sizing: border-box;
	width: calc(100% - 580px); 
	min-width: 300px;
	padding-right: 12px; 
}

.cart_totals {
	box-sizing: border-box;
	float: right; 
	width: 580px;
}

@media (max-width: 937px) {
	.cart_left {
		float: none; 
		width: auto; 
		padding-right: 0px; 
	}
	
	.cart_totals {
		float: none; 
		width: auto; 
	}
}

.cart_id.list .cart_cont {
	margin: 12px 0px;
	border: solid 1px #f19aa6;
	border-radius: 5px;
	background-image: linear-gradient(to bottom, rgba(254, 250, 251, 1) , rgba(253, 237, 239, 1) );
	padding: 6px 10px;
	color: #de0221;
}

.cart_id.list .cart_right {
	text-align: right; 
}

.cart_id.list .cart_cont .gb {
	color: #de0221;
}

.cart_id.list .cart_cont h2 {
	margin-top: 0px; 
	color: #de0221;
}

.cart_id.list .total_cont {
	text-align: right; 
	font-size: 1.2em;
	color: #de0221;
	
}

.cart_id.list div.checkout {
	text-align: right; 
	margin-top: 9px; 
}

button.checkout_button,
a:link.checkout_button,
a:active.checkout_button,
a:visited.checkout_button {
	cursor: pointer;
	display: inline-block;
	border: outset 2px #de0221;
	padding: 9px 15px; 
	/*background-color: #de0221;*/
	font-size: 16px; 
	font-weight: bold; 
	color: #ffffff; 
	text-decoration: none; 
	background-image: linear-gradient(to bottom, rgba(222, 3, 33, 0.8) , rgba(222, 3, 33, 1) ); 
}
button:hover.checkout_button,
a:hover.checkout_button {
	background-image: linear-gradient(to bottom, rgba(222, 3, 33, 1) , rgba(222, 3, 33, 1) ); 
}

/* Checkout Styles */

table.checkout {
	margin: auto;
}

table.checkout td {
	padding: 3px 3px 3px 0px;
}

table.checkout td {
	vertical-align: baseline; 
}

table.checkout td.label {
	text-align: right;
	font-weight: normal;
}

table.checkout td.label.label_top {
	padding-top: 5px; 
	vertical-align: top; 
}

/* total style */

table.totaler {
	width: 100%; 
	margin: 10px 0px; 
}

table.totaler td {
	padding: 1px 3px; 
	vertical-align: baseline; 
}

table.totaler tr.head td {
	color: #666666; 
	font-weight: bold ; 
	border-bottom: solid 1px #999999 ;
}

table.totaler tr.body td {
	border-bottom: solid 1px #f5f1e5 ;
}

table.totaler tr.body td a {
	text-decoration: none; 
}
table.totaler tr.body td a:hover {
	text-decoration: underline; 
}

table.totaler_totals {
	margin: 15px 0px 15px auto;
}

table.totaler_totals td {
	text-align: right;
}

table.totaler_totals td.label {
	color: #666666 ;
	text-align: left;
	padding-right: 10px;
	font-weight: bold;
	white-space: nowrap;
}

table.totaler_totals td.total {
	color: #666666;
	border-top: solid 1px #999999;
	font-size: 1.3em;
	font-weight: bold;
}

/* checkout steps */

.checkout_steps {
	margin-top: 15px; 
	font-size: 0px; 
}

.checkout_steps .checkout_step {
	display: inline-block; 
	margin-right: -1px; /* same as checkout_step border width */
	text-decoration: none; 
	color: #de0221;
	border: solid 1px #f5f1e5;
	padding: 3px 12px; 
	font-size: 15px; 
	background-color: #f8f8f8;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.04) , rgba(0, 0, 0, 0.04) );
}

.checkout_steps .checkout_step.checkout_on {
	background-color: #de0221;
	color: #f8f8f8; 
}

/* BLOGS STYLES */

/* generic */


/* list */


/* detail */


/* module */


/* comments */

/* for both site and cms (generally doesn't change between sites) */

/* server test check */

img.server_beta {
	position: fixed; 
	top: 0px; 
	right: 0px; 
	z-index: 4500; 
	cursor: help; 
}

div.server_beta {
	display: none;
	border-bottom: solid 1px #96938D;
	background-color: #B3AFA8;
	padding: 5px 12px;
	font-family: arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #666;
	cursor: help;
	text-align: center; 
}

@media (max-width: 640px) {
	img.server_beta {
		display: none;
	}
	
	div.server_beta {
		display: block;
	}
}

/* print styles */

.print_only {
	display: none !important; 
}

@media print {
	
	.print_only {
		display: block !important;
	}
	
	.no_print {
		display: none !important; 
	}
	
	.container {
		width: 100% !important;
		margin: 0px !important;
		padding: 0px !important;
	}
	
	.content {
		margin: 0px !important;
		padding: 0px !important; 
		float: none !important;
	}
	
}

a.link_red:link,
a.link_red:active,
a.link_red:visited {
	color: #f70325 ;
	text-decoration: none ;
}
a.link_red:hover {
	text-decoration: underline ;
}
a.link_tan:link,
a.link_tan:active,
a.link_tan:visited {
	color: #F5F1E5 ;
	text-decoration: none ;
}
a.link_tan:hover {
	text-decoration: underline ;
}
a.link_gray:link,
a.link_gray:active,
a.link_gray:visited {
	color: #3A3533 ;
	text-decoration: none ;
}
a.link_gray:hover {
	text-decoration: underline ;
}
a.link_yellow:link,
a.link_yellow:active,
a.link_yellow:visited {
	color: #fedb05 ;
	text-decoration: none ;
}
a.link_yellow:hover {
	text-decoration: underline ;
}
a.link_redLt:link,
a.link_redLt:active,
a.link_redLt:visited {
	color: #f83550 ;
	text-decoration: none ;
}
a.link_redLt:hover {
	text-decoration: underline ;
}
a.link_redDk:link,
a.link_redDk:active,
a.link_redDk:visited {
	color: #de0221 ;
	text-decoration: none ;
}
a.link_redDk:hover {
	text-decoration: underline ;
}
a.link_tanLt:link,
a.link_tanLt:active,
a.link_tanLt:visited {
	color: #f7f3ea ;
	text-decoration: none ;
}
a.link_tanLt:hover {
	text-decoration: underline ;
}
a.link_tanDk:link,
a.link_tanDk:active,
a.link_tanDk:visited {
	color: #dcd8ce ;
	text-decoration: none ;
}
a.link_tanDk:hover {
	text-decoration: underline ;
}
a.link_grayLt:link,
a.link_grayLt:active,
a.link_grayLt:visited {
	color: #615d5b ;
	text-decoration: none ;
}
a.link_grayLt:hover {
	text-decoration: underline ;
}
a.link_grayDk:link,
a.link_grayDk:active,
a.link_grayDk:visited {
	color: #342f2d ;
	text-decoration: none ;
}
a.link_grayDk:hover {
	text-decoration: underline ;
}
a.link_yellowLt:link,
a.link_yellowLt:active,
a.link_yellowLt:visited {
	color: #fee236 ;
	text-decoration: none ;
}
a.link_yellowLt:hover {
	text-decoration: underline ;
}
a.link_yellowDk:link,
a.link_yellowDk:active,
a.link_yellowDk:visited {
	color: #e4c504 ;
	text-decoration: none ;
}
a.link_yellowDk:hover {
	text-decoration: underline ;
}
a.link_1:link,
a.link_1:active,
a.link_1:visited {
	color: #de0221 ;
	text-decoration: none ;
}
a.link_1:hover {
	text-decoration: underline ;
}
a.link_2:link,
a.link_2:active,
a.link_2:visited {
	color: #f70325 ;
	text-decoration: none ;
}
a.link_2:hover {
	text-decoration: underline ;
}
a.link_3:link,
a.link_3:active,
a.link_3:visited {
	color: #f83550 ;
	text-decoration: none ;
}
a.link_3:hover {
	text-decoration: underline ;
}
a.link_4:link,
a.link_4:active,
a.link_4:visited {
	color: #f5f1e5 ;
	text-decoration: none ;
}
a.link_4:hover {
	text-decoration: underline ;
}
a.link_5:link,
a.link_5:active,
a.link_5:visited {
	color: #999999 ;
	text-decoration: none ;
}
a.link_5:hover {
	text-decoration: underline ;
}
a.link_6:link,
a.link_6:active,
a.link_6:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_6:hover {
	text-decoration: underline ;
}
a.link_main_1:link,
a.link_main_1:active,
a.link_main_1:visited {
	color: #de0221 ;
	text-decoration: none ;
}
a.link_main_1:hover {
	text-decoration: underline ;
}
a.link_main_2:link,
a.link_main_2:active,
a.link_main_2:visited {
	color: #f70325 ;
	text-decoration: none ;
}
a.link_main_2:hover {
	text-decoration: underline ;
}
a.link_main_3:link,
a.link_main_3:active,
a.link_main_3:visited {
	color: #f83550 ;
	text-decoration: none ;
}
a.link_main_3:hover {
	text-decoration: underline ;
}
a.link_main_4:link,
a.link_main_4:active,
a.link_main_4:visited {
	color: #f5f1e5 ;
	text-decoration: none ;
}
a.link_main_4:hover {
	text-decoration: underline ;
}
a.link_main_5:link,
a.link_main_5:active,
a.link_main_5:visited {
	color: #999999 ;
	text-decoration: none ;
}
a.link_main_5:hover {
	text-decoration: underline ;
}
a.link_main_6:link,
a.link_main_6:active,
a.link_main_6:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_main_6:hover {
	text-decoration: underline ;
}
a.link_trim_1:link,
a.link_trim_1:active,
a.link_trim_1:visited {
	color: #f5f1e5 ;
	text-decoration: none ;
}
a.link_trim_1:hover {
	text-decoration: underline ;
}
a.link_trim_2:link,
a.link_trim_2:active,
a.link_trim_2:visited {
	color: #999999 ;
	text-decoration: none ;
}
a.link_trim_2:hover {
	text-decoration: underline ;
}
a.link_trim_3:link,
a.link_trim_3:active,
a.link_trim_3:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_trim_3:hover {
	text-decoration: underline ;
}
a.link_bg:link,
a.link_bg:active,
a.link_bg:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_bg:hover {
	text-decoration: underline ;
}
a.link_font:link,
a.link_font:active,
a.link_font:visited {
	color: #000000 ;
	text-decoration: none ;
}
a.link_font:hover {
	text-decoration: underline ;
}
a.link_gb:link,
a.link_gb:active,
a.link_gb:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_gb:hover {
	text-decoration: underline ;
}
a.link_heading:link,
a.link_heading:active,
a.link_heading:visited {
	color: #f83550 ;
	text-decoration: none ;
}
a.link_heading:hover {
	text-decoration: underline ;
}
a.link_anchor_1:link,
a.link_anchor_1:active,
a.link_anchor_1:visited {
	color: #f70325 ;
	text-decoration: none ;
}
a.link_anchor_1:hover {
	text-decoration: underline ;
}
a.link_anchor_2:link,
a.link_anchor_2:active,
a.link_anchor_2:visited {
	color: #f70325 ;
	text-decoration: none ;
}
a.link_anchor_2:hover {
	text-decoration: underline ;
}
a.link_anchor_3:link,
a.link_anchor_3:active,
a.link_anchor_3:visited {
	color: #3a3533 ;
	text-decoration: none ;
}
a.link_anchor_3:hover {
	text-decoration: underline ;
}
a.link_nav_1:link,
a.link_nav_1:active,
a.link_nav_1:visited {
	color: #f5f1e5 ;
	text-decoration: none ;
}
a.link_nav_1:hover {
	text-decoration: underline ;
}
a.link_nav_2:link,
a.link_nav_2:active,
a.link_nav_2:visited {
	color: #f5f1e5 ;
	text-decoration: none ;
}
a.link_nav_2:hover {
	text-decoration: underline ;
}
a.link_content:link,
a.link_content:active,
a.link_content:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_content:hover {
	text-decoration: underline ;
}
a.link_light:link,
a.link_light:active,
a.link_light:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_light:hover {
	text-decoration: underline ;
}
a.link_foot:link,
a.link_foot:active,
a.link_foot:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_foot:hover {
	text-decoration: underline ;
}
a.link_even:link,
a.link_even:active,
a.link_even:visited {
	color: #eeeeee ;
	text-decoration: none ;
}
a.link_even:hover {
	text-decoration: underline ;
}
a.link_odd:link,
a.link_odd:active,
a.link_odd:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_odd:hover {
	text-decoration: underline ;
}
a.link_good:link,
a.link_good:active,
a.link_good:visited {
	color: #f70325 ;
	text-decoration: none ;
}
a.link_good:hover {
	text-decoration: underline ;
}
a.link_bad:link,
a.link_bad:active,
a.link_bad:visited {
	color: #f83550 ;
	text-decoration: none ;
}
a.link_bad:hover {
	text-decoration: underline ;
}
a.link_important:link,
a.link_important:active,
a.link_important:visited {
	color: #f83550 ;
	text-decoration: none ;
}
a.link_important:hover {
	text-decoration: underline ;
}

.container {
	width: 100% ;
	max-width: 1200px ;
	margin: auto ;
	flex-grow: 1;
}

.container_header {
	width: 100% ;
	/* max-width: 1200px ; */
	margin: auto ;
	background-color: #000000 ;
}

a img {
	border: 0 !important ;
}

.top_container {
		padding: 5px;
	line-height: 0 ;
}

.nav_container {
		flex-basis: 45%;
	order: -1;
	/* margin-top: 20px ; */
	/* border-radius: 10px ; */
	/* padding: 0 10px ; */
}

.top_blurb {
	background: #342f2d ;
	color: #fff ;
	text-align: center ;
	padding: 10px ;
	border-bottom: 2px solid #f70325 ;
}

.testimonial {
	margin: 2rem 0px ;
		background: #f0f0f0 ;
	padding: 1px 16px ;
	font-weight: bold;
}

.testimonial blockquote {
	color: #de0221 ;
}

.test_photos {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.test_photos img {
	max-height: 30vh ;
	margin: 15px 5px;
}

.content_container {
	background: #fff ;
}

.bottom_container {
	font-family: 'Mulish' ;
	text-align: center ;
}

.directions {
	width: 100%;
}

.directions td {
	padding: 8px 12px ;
}

.directions tr:nth-child(even) {
	background-color: #fff ;
}
.directions tr:nth-child(odd) {
	background-color: #f0f0f0 ;
}

.directions thead tr {
	background: #000 !important ;
	color: #fff ;
	font-weight: bold ;
}

.name {
	margin: 5px 0 ;
}
.teaser {
	text-align: left ;
}

.buynow {
	border: 1px solid #ccc;
	padding: 1px 16px ;
	background: #f0f0f0 ;
}

.width {
		width: 400px;
}

.done {
	margin: 15px 0 ;
}

.top_search {
	background: #fff ;
	border: 0 ;
	padding: 0 ;
	border: 1px solid #3A3533 ;
}

.top_input {
	padding: 5px ;
	margin: 0px ;
	border: 0px ;
	font-size: 1.2em ;
	background: #fff ;
	width: 100% ;
	position: relative ;
	font-family: 'Mulish' ;
	color: #3A3533 ;
}

.top_box {
	margin-bottom: 20px ;
	border: 1px solid #3A3533 ;
	padding: 15px ;
	padding-bottom: 1px ;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) , rgba(255, 255, 255, 0.1) ) ;
}

.top_heading {
	font-family: 'Mulish' ;
	color: #fff ;
	font-size: 2em ;
	letter-spacing: -.03em ;
	font-weight: bold ;
}

.top_content {
	color: #fff ;
	text-align: center ;
}

.search_container {
	background: #f0f0f0 ;
	padding: 10px 20px ;
}

.top_cart {
		padding: 8px 5px 8px 16px;
	font-size: 1.8em ;
	font-family: 'Mulish' ;
	font-weight: bold ;
	}

.top_search_container {
	}

.top_search_container .search_bar {
	width: 250px;
	margin-left: auto;
}

.top_phone {
	font-size: 1.1rem ;
	font-family: 'Mulish' ;
	font-weight: bold ;
	color: #ffffff ;
	line-height:1 ;
	text-align: center ;
	text-transform: uppercase;
}

.top_phone a {
	text-decoration: none;
	color: #ffffff ;
}

.top_hours {
	font-size: 1.2em ;
	font-family: 'Mulish' ;
	color: #000 ;
	line-height:1 ;
}

.logo {
	/* float: left ; */
	flex-basis: 10%;
	text-align: center;
	display: block;
}

.top_info_holder {
	/* float: right ; */
	/* margin-top: 25px ; */
	flex-basis: 45%;
}


.product_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.product {
	flex-basis: 20%;
}

.product .image img {
	max-width: 80% ;
	height: 20vh ;
	object-fit: cover;
}

.product .image {
	text-align: center;
}

@media (max-width: 980px) {
	.product_container {
		display: block;
	}

	.product .image img {
		max-width: 100% ;
		height: auto;
	}

	.top_container {
		padding: 0;
	}

	.top_info_holder {
		display: none !important;
	}

	.width {
		width: 100% ;
		min-width: 100% ;
	}

		.logo {
				display: none;
	}

	.logo_mobile {
		flex: 1;
	}

	.logo_mobile a img {
		max-height: 60px;
		vertical-align: middle;
	}

	.top_cart,
	.top_phone {
		font-size: 1.3em ;
	}

	.top_cart {
		padding: 8px 16px ;
	}

	.top_phone {
		padding-bottom: 1rem;
	}

	.float {
		float: none ;
		display: block ;
		margin: 15px 0 ;
		width: auto ;
	}

	.top_search_container {
		min-width: 100% ;
	}

	.top_search_container .search_bar {
		width: 100%;
		margin: auto;
	}


	.nav_container {
		padding: 0 ;
		border-radius: 0px !important ;
		background-color: #f70325 ;
	}

	.product {
		display: block ;
		width: 100% ;
		margin: 15px 0 ;
	}

	.desktop_only {
		display: none ;
	}

	.sf-menu {
		display: block;
		text-align: center;
	}

	.sf-menu ul {
		position: static !important;
		width: auto !important;
	}

	.sf-menu li {
		/*float: none !important;*/
		display: block !important;
	}

	.sf-menu li ul li a {
		/*width: auto !important; */
	}

	a.button_a {
		border-left: 0 !important  ;
		border-right: 0 !important ;
	}
	a.button_b {
		font-size: 16px !important;
		text-align: center;
		font-weight: bold !important;
	}
}

.social {
	margin-bottom: 10px ;
	text-align: center ;
}

.social img {
	height: 35px ;
}


.flex_cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.justify_end {
	justify-content: flex-end !important;
}

@media (max-width: 980px) {
	.flex_cont {
		display: block;
	}
}

.text_cen {
	text-align: center;
}

.object_fit_contain {
	object-fit: contain;
	width: 100%;
	height: 30vh;
}

.no_underline {
	text-decoration: none;
	transition: .35s ease;
}

.no_underline:hover {
	color: #666666 ;
}

.hover_underline {
	display: block;
	position: relative;
	transition: .25s ease-out;
	padding: 5px;
}

.hover_underline::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: #f70325 ;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform .25s ease-out;
}

.hover_underline:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.hover_underline:hover {
	color: #f70325 ;
}

.slider_cont {
	width: 100% ;
	height: calc(100vh - 110px);
	border: 0;
	position: relative;
	overflow: hidden;
}

.slider_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 110px);
	font-size: 3.5rem;
	color: white;
	text-shadow: 0 0 12px #3A3533 ;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
}

.slider_btn {
	font-size: 1.5rem;
	border: 2px solid white;
	padding: 15px 30px;
	transition: .35s ease;
	margin-top: 3rem;
}

.slider_btn:hover {
	background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 980px) {
	.slider_cont {
		height: 50vh;
	}

	.slider_text {
		height: 50vh;
		font-size: 1.4rem;
	}

	.slider_btn {
		font-size: 1.2rem;
		padding: 10px;
		margin-top: 2rem;
	}
}

@media (max-width: 594px) {
	.slider_cont {
		height: 30vh;
	}

	.slider_text {
		height: 30vh;
	}

	.slider_btn {
		margin-top: 5px;
	}
}

.hero_text {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 110px);
}

.hero-subtext {
	color: white;
	font-size: 2.5rem;
	margin-top: 0rem;
}


.hero_text h1 {
	color: white;
	text-shadow: 0 0 12px #3A3533 ;
	font-size: 3.5rem;
	margin-bottom: .2rem;
}

.page_imgs {
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: cover !important;
		height: calc(100vh - 110px);
}

.page_imgs p {
	color: white;
	text-shadow: 0 0 12px #3A3533 ;
	font-size: 1.1rem;
}

.notice_banner p {
	padding: 10px;
}

@media (max-width: 980px) {
	.page_imgs,
	.hero_text {
				height: calc(100vh - 209px);
	}

		
	.page_imgs p {
		font-size: 1rem;
	}
}

@media (max-width: 580px) {
	.page_imgs,
	.hero_text {
				height: 37vh;
	}

		
	.hero_text-home {
		height: auto;
	}

	.hero_text-home h1 {
		font-size: 2.5rem;
	}
	}

.footer_bg {
	background-color: #000000 ;
	padding: 2rem 0;
}

.ex_padding {
	padding: 2rem 0;
}


.hover_color {
	position: relative;
	margin: 0;
	display: block;
}

.hover_color::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 100%;
	background: rgba(213, 25, 32,.5);
	transition: all 350ms;
	z-index: 10;
}

.hover_color:hover::before {
	bottom: 0;
}

.hover_color img {
	margin-bottom: -5px;
	width: 100%;
	height: 500px;
	object-fit: cover;
	filter: brightness(40%);
}

.hover_color .hover_color-inner {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.hover_title {
    opacity: 1;
	position: absolute;
	z-index: 11;
	color: #ffffff ;
	font-size: 2rem;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-shadow: 0 0 12px #666666 ;
}

.hover_color a {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
}

@media (max-width: 980px) {
	.hover_color img {
		height: 300px;
	}

	.hover_title {
		font-size: 1.25rem;
	}

	.hover_color:hover::before {
		bottom: 100%;
	}
}

.search_input {
	text-align: center;
}

.search_input input {
	width: 600px;
	border: 2px solid #999999 ;
	padding: 10px;
}

.search_input button {
	padding: 10px 15px;
	border: 2px solid #f70325 ;
	background-color: #f70325 ;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: .25s ease;
}

.search_input button:hover {
	background-color: #de0221 ;
}

.responsive_nav_menu {
	display: flex ;
	justify-content: space-between;
	align-items: center;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	right: 0 ;
	z-index: 1000 ;
	background-color: #000000;
}

.responsive_nav_menu a {
	display: block ;
	color: white ;
	background: #000000;
	text-decoration: none ;
	font-size: 48px ;
	line-height: 48px ;
	text-align: center ;
	padding: 5px ;
	flex: 1;
}

.responsive_nav_menu .cart_mobile {
	flex: 1;
}

.nav_container {
	text-transform: uppercase;
  	display: none ;
	position: fixed ;
	top: 74px ;
	left: 0 ;
	right: 0 ;
	bottom: 0 ;
  	overflow-y: auto ;
	z-index: 1000 ;
}

@media (min-width: 981px) {
	.responsive_nav_menu {
		display: none ;
	}

 	.nav_container {
    	position: relative ;
    	top: 0 ;
    	display: block ;
	    overflow-y: visible;
	}
}

@media (max-width: 980px) {
	body {
		padding-top: 74px;
	}
}

.iframe_video iframe {
	width: 100%;
	height: 70vh;
}

@media (max-width: 1094px) {
	.iframe_video iframe {
		height: 55vw;
	}
}
