
/*RESET
********************************************************/

ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, img,
header, footer, nav, section, article, figure, figcaption {
	margin:0;
	padding:0;
	border: 0;
}

ul {
	list-style:none;
}

/* Get rid of weird looking buttons on iphone */
input[type="button"], input[type="submit"], input[type="text"], input[type="password"]{
	-webkit-appearance: none!important;
	border-radius: 0;
}

/*EARTHWORM GRID
********************************************************/

/*clear floats*/

.container:before,
.container:after,
.row:before,
.row:after,
.col:before,
.col:after {
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
}
.container:after,
.row:after,
.col:after {
	clear: both;
}

/*containers*/

.container {
	width: 100%;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*rows*/

.row {
	width: 100%;
	max-width: 100%;
	padding: 0 5px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.row.fullwidth {
	max-width: 100%;
	padding: 0;
}

.row.nomargin {
	margin-top: 0;
}

/*columns*/

.col {
	float: left;
	width: 100%;
	position: relative;
	padding: 0 5px;
	margin-top: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.col.group {
	padding: 0;
	margin: 0;
}

.col > .inner {
	display: block;
}

.row.fullwidth .col {
	padding-left: 0;
	padding-right: 0;
}

.row.nomargin .col {
	margin-top: 0;
}

.right {
	float: right;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

/*images*/

img {
	width: 100%;
	height: auto;
}

.copy img {
	width: auto;
	max-width: 100%;
}

.sidebar .copy {
	font-size: 14px;
	line-height: 21px;
	color: #839591;
}


/*GENERAL STYLES
********************************************************/

html,
body {
	height: 100%;
}

body {
	background-color: #fff;
	font-family: 'Open Sans', Arial, sans-serif;
	color: #2f373b;
	font-size: 16px;
}

input,
select,
textarea,
button {
	font-family: 'Open Sans', Arial, sans-serif;
}

a {
	color: #db5800;
}

a:visited {
	color: #db5800;
	opacity: 0.6;
}

a:hover,
a:active {
	color: #66bbcc;
}

.contentWrap {
	padding-top: 50px;
}

/*slick buttons*/

.slick .slick-prev,
.slick .slick-next {
	position: absolute;
	top: 50%;
	margin-top: -24px;
	display: inline-block;
	width: 50px;
	height: 70px;
	text-indent: -5000px;
	transition: .5s all ease;
	cursor: pointer;
	border-radius: 0;
	border: 0;
	background: transparent;
	padding: 0;
}

.slick .slick-prev {
	left: 10px;
}

.slick .slick-next {
	right: 10px;
}

.slick .slick-prev:hover,
.slick .slick-next:hover {
	opacity: 1;
}

.slick .slick-prev:before,
.slick .slick-next:before {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #495d59;
	font-size: 70px;
	line-height: 70px;
	height: 70px;
	position: absolute;
	top: 0;
	text-indent: 0;
}

.slick .slick-prev:before {
	content:"\f104";
	left: 9px;
}

.slick .slick-next:before {
	content:"\f105";
	right: 9px;
}

/*slick dots*/

.slick-dots {
	position: absolute;
	z-index: 20;
	bottom: 3px;
	left: 0;
	right: 0;
	text-align: center;
}

.slick-dots li {
	display: inline-block;
	margin: 0 3px;
}

.slick-dots button {
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	width: 12px;
	height: 12px;
	padding: 0;
	text-indent: -5000px;
}

.slick-dots .slick-active button {
	background: #fff;
}

/*buttons*/

.btn,
.btn:visited {
	display: inline-block;
	color: #fff;
	background: #db5800;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0 auto 0;
	padding: 10px 20px;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
	transition: .5s ease;
}

.btn.block,
.btn.block:visited {
	display: block;
	text-align: center;
}

.btn:hover,
.btn:active {
	color: #fff;
	opacity: .8;
}


.btn.fullwidth {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

.btn.outline,
.btn.outline:visited {
	color: #db5800;
	border: 1px solid #db5800;
	background: transparent;
}


/*TOOLTIPS
******************************************************/

#tooltip {
	text-align: center;
	color: #fff;
	background: #54630f;
	position: absolute;
	z-index: 100;
	padding: 4px 8px;
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.9;
}

#tooltip:after /* triangle decoration */ {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #54630f;
	content: '';
	position: absolute;
	left: 50%;
	bottom: -6px;
	margin-left: -6px;
}

#tooltip.top:after {
	border-top-color: transparent;
	border-bottom: 6px solid #54630f;
	top: -20px;
	bottom: auto;
}

#tooltip.left:after {
	left: 10px;
	margin: 0;
}

#tooltip.right:after {
	right: 10px;
	left: auto;
	margin: 0;
}


/*BACK TO TOP
********************************************************/

.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	z-index: 500;
	bottom: 40px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	background: #54630f; /*was #a8a80c*/
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
	border-radius: 50%;
	text-align: center;
}

.cd-top i, .down_arrow i, .down_arrow i:hover,
.cd-top i:hover {
	font-size: 24px;
	line-height: 24px;
	padding: 8px 0 0 0;
	color: #fff;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}

.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .5;
}

.no-touch .cd-top:hover {
	background-color: #e86256;
	opacity: 1;
}
.down_arrow {
	display: block;
	height: 40px;
	width: 40px;
	z-index: 50;
	position: relative;
	margin: -100px auto 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	background: #54630f; /*was #a8a80c*/
	background: rgba(168,168,12,0.8);
	border-radius: 50%;
	text-align: center;
}
/*.down_arrow.top {
	margin: 20px auto -30px;
}*/
@media only screen and (min-width: 768px) {
	.cd-top, .down_arrow {
		right: 20px;
		bottom: 80px;
		height: 60px;
		width: 60px;
	}
	.down_arrow {
		right: 0;
		display: none;
	}
	.down_arrow.top {
    margin: 40px auto -50px;
	}
	.cd-top i, .down_arrow i, .down_arrow i:hover,
	.cd-top i:hover {
		font-size: 38px;
		line-height: 38px;
		padding: 8px 0 0 0;
	}
	.down_arrow i {
		line-height: 46px;
	}
}



/*MESSAGES
********************************************************/

.alert {
	padding: 20px;
	margin-bottom: 20px;
	position: relative;
	background: #f5f4ed;
}

.alert:before,
.alert:after {
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
}

.alert:after {
	clear: both;
}

.alert .close {
	position: absolute;
	z-index: 10;
	top: 10px;
	right: 12px;
}

.alert .close i {
	font-size: 18px;
	float: none;
	opacity: .6;
	cursor: pointer;
}

.alert i {
	font-size: 32px;
	float: left;
}

.alert > div {
	float: left;
	padding: 2px 0 0 20px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.alert h3 {
	font-weight: 700;
	color: #0c241f;
	font-size: 22px;
	padding: 0 0 0;
}

.alert p {
	font-size: 14px;
	padding: 0 0 5px;
	margin: 0;
}

.alert.success i {
	color: #54630f; /*was #a8a80c*/
}

.alert.warning i {
	color: #db3a2c;
}

.alert.warning i.fa-check-circle-o:before {
	content:"\f06a";
}

.alert .btn {
	display: none;
}


/*SITE ENGINE SUBPAGES
******************************************************/

#wrap .siteEngineSubPages li {
	margin: 10px 0 0;
}

#wrap .siteEngineSubPages a {
	display: block;
	background: #ebe9dc;
	color: #0c241f;
	text-transform: uppercase;
	text-decoration: none;
	padding: 20px 10px 20px 60px;
	position: relative;
}

#wrap .siteEngineSubPages a:before {
	font-family: "FontAwesome";
	display: inline-block;
	font-size: 32px;
	width: 32px;
	height: 32px;
	font-weight: normal;
	font-style: normal;
	color: #54630f; /*was #a8a80c*/
	position: absolute;
	top: 15px;
	left: 15px;
	text-align: center;
}

#wrap .siteEngineSubPages #liSubPage_cart_mydetails a:before {
	content:"\f007";
}

#wrap .siteEngineSubPages #liSubPage_cart_processedOrders a:before {
	content: "";
	background: url("../images/layout/icon_bag_green_64.png") center center no-repeat;
	background-size: cover;
}

#wrap .siteEngineSubPages #liSubPage_cart_myWishlist a:before {
	content:"\f004";
}

#wrap .siteEngineSubPages #liSubPage_log-out a:before {
	content:"\f09c";
}

/*WYSIWYG, copy styles
******************************************************/

.content h2,
h1#pageTitle {
	font-size: 20px;
	line-height: 22px;
	color: #0c241f;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	border-top: 1px solid #dbd8c5;
	margin: 40px 10px 10px;
	padding: 20px 0 0;
}

.customOrder h2 {
	margin: 0 10px 0;
}

h1#pageTitle {
	margin-top: 10px;
}

h3#searchResults, h3#otherSearchResults {
	font-size: 20px;
	line-height: 22px;
	color: #0c241f;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0 10px 20px;
	padding: 5px 0 0;
}

.productDetail h2 {
	font-size: 18px;
	margin: 30px 10px 15px;
}

.accordion table,
.copy table {
	margin: 10px 0 20px;
	border-collapse: collapse;
	width: 100%;
}

.accordion table th,
.accordion table td,
.copy table th,
.copy table td {
	margin: 10px 0;
	border: 1px solid #dbd8c5;
	padding: 5px 3px;
	font-size: 13px;
	line-height: 16px;
}

.accordion table th,
.copy table th {
	background: #f5f4ed;
	color: #495d59;
	font-weight: 400;
}

.copy h3 {
	font-size: 24px;
	line-height: 24px;
	color: #54630f; /*was #a8a80c*/
	font-weight: 300;
	margin: 20px 0 10px;
}

.copy p {
	margin: 10px 0;
}

.copy ul {
	margin: 10px 0;
}

.copy ul li {
	position: relative;
	padding: 0 0 0 15px;
}

.copy ul li:before {
	content:"\f111";
	font-family: FontAwesome;
	color: #54630f; /*was #a8a80c*/
	font-size: 8px;
	position: absolute;
	top: 7px;
	left: 0;
}


/*SOCIAL NAV
*****************************************************/

.footer .socialNavList {
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: center;
}

.share .socialNavList {
	text-align: left;
}

.box .share {
	margin-top: 10px;
}

.socialNavList li {
	padding: 0 10px 10px 0;
	display: inline-block;
}

.share .socialNavList li {
	padding: 0 5px 0 0;
	display: inline-block;
}

.socialNavList li a {
	width: 48px;
	height: 48px;
	display: inline-block;
	text-indent: -5000px;
	text-align: left;
	position: relative;
	transition: .5s all ease;
	color: #fff;
	background: #54630f; /*was #a8a80c*/
	border: 1px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50%;
}

.share .socialNavList li a {
	width: 24px;
	height: 24px;
	color: #54630f;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.socialNavList li a:before {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	font-size: 22px;
	line-height: 22px;
	display: inline-block;
	position: absolute;
	top: 13px;
	left: 14px;
	text-indent: 0;
	transition: .3s all ease;
	color: #fff;
}

.share .socialNavList li a:before {
	top: 0 !important;
	left: 0 !important;
	color: #54630f;
}

/*hover*/

.socialNavList li a:hover {
	color: #54630f; /*was #a8a80c*/
	background: #fff;
}

.socialNavList li a:hover:before {
	color: #54630f; /*was #a8a80c*/
}

/*icons*/

.socialNavList li.navtwitter a:before {
	content: "\f099";
}
.socialNavList li.navfacebook a:before {
	content: "\f09a";
	left: 16px;
}
.socialNavList li.navlinkedin a:before {
	content: "\f0e1";
}
.socialNavList li.navyoutube a:before {
	content:"\f16a";
	left: 12px;
}
.socialNavList li.navflickr a:before {
	content: "\f16e";
}
.socialNavList li.navrss a:before {
	content: "\f09e";
}
.socialNavList li.navpinterest a:before {
	content:"\f231";
}
.socialNavList li.navgoogle a:before,
.socialNavList li.navgoogleplus a:before {
	content: "\f0d5";
}
.socialNavList li.navinstagram a:before {
	content:"\f16d";
}
.socialNavList li.navemail a:before {
	content:"\f0e0";
	font-size: 20px
}


/*FORMS
********************************************************/

.newsletterForm input[type="text"] {
	width: 100%;
	border: 0;
	padding: 10px;
	margin: 10px 0 0;
	font-size: 16px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.newsletterForm button {
	border: 1px solid #fff;
	background: rgba(255,255,255,0.2);
	padding: 8px 35px;
	margin: 10px 0 0;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.formHolder {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	padding: 20px 10px 30px;
	background: #ebe9dc;
}

.formHolder.white {
	padding: 10px 0 0;
	background: #fff;
}

.general legend,
.formHolder h3 {
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	color: #0c241f;
	padding: 20px 0 0 10px;
}

.general legend a {
	text-transform: none;
	font-size: 13px;
}

.general .note {
	font-size: 13px;
	font-style: italic;
	opacity: 0.7;
}


.general .group {
	margin-top: 15px;
}

.general.small .group {
	margin-top: 10px;
}

.general .group .col {
	margin-top: 0;
}

.general.small .col {
	padding-left: 5px;
	padding-right: 5px;
}

.general .group:before,
.general .group:after {
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
}

.general .group:after {
	clear: both;
}

.general .explainer {
	font-size: 16px;
	padding-bottom: 10px;
	font-style: italic;
}

.general label,
.general .label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #495d59;
	padding-top: 5px;
	padding-bottom: 5px;
}

.general label.sr-only {
	height: 0;
	margin: 0;
	padding: 0;
	text-indent: -5000px;
}

.general label.inline,
.general .label.inline {
	display: inline;
}

.general input[type="text"],
.general input[type="number"],
.general input[type="password"],
.general input[type="email"],
.general select,
.general textarea {
	border: 1px solid #bac4cf;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 40px;
	padding: 5px;
	font-size: 14px;
	font-family: sans-serif;
	color: #384350;
	background: #fff;
	border-radius: 0;
}

.general select {
	color: #999;
}

.general textarea {
	height: 80px;
}

.general input[type="checkbox"] {
	display: inline-block;
	margin-top: 5px;
}

.general button,
.general input[type="submit"] ,
.general input[type="button"] {
	display: inline-block;
	padding: 0 25px;
	margin: 0;
	height: 40px;
	text-decoration: none;
	border: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	color: #fff;
	background: #db5800;
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0 auto 0;
	font-weight: 400;
	border: 1px solid #fff;
	cursor: pointer;
	transition: .5s ease;
}

.general button.fullwidth,
.general input[type="submit"].fullwidth,
.general input[type="button"].fullwidth {
	width: 100%;
}

.general button:hover {
	opacity: .8;
}

/*checkout forms*/

.general .expiryMonth {
	width: 65%;
}

.general .expiryYear {
	width: 35%;
}


/* ======================================================================================================================================================================================
update class */
.formHolder a {
	color: #839591;
}
.general button.big {
	height: 50px;
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-top: 30px;
	padding: 0;
	min-width: 220px;
}

.general button.big:hover{
	background: #54630f; /*was #a8a80c*/
}

.general button.big i {
	line-height: 50px;
}
.help-block {
	font-size: 13px;
	text-align: left;
}
.Login .formHolder {
	margin-bottom: 30px;
}
.Login .general legend {
	font-weight: normal;
	text-align: center;
	width: 100%;
	font-size: 20px;
	text-transform: uppercase;
	padding-left: 0;
}
.group.radio input {
	margin-right: 10px;
}
.group.radio label {
	font-size: 15px;
}
.group.radio li {
  font-size: 13px;
  list-style: inside;
  margin-left: 25px;
  color: #839591;
}

/* ======================================================================================================================================================================================
End update class */
.inline button,
.inline input[type="submit"] {
	margin: 0;
}
.general button i {
	padding-left: 5px;
}


/*HEADER
********************************************************/

.header {
	background: #54630f url('../images/layout/snowflakeBannerBorder_mobHeader.png') center top repeat-x;
	height: 50px; /*height same as top padding on #canvas*/
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	transition: left .5s ease, z-index .5s ease;
}

.searchOpen.header {
	z-index: 500;
}

.menuOpen .header {
	left: 85%;
}

.nothome .header {
	border-bottom: 1px solid #ebe9dc;
}

.header .logo {
	display: inline-block;
	position: absolute;
	z-index: 300;
	left: 50%;
	margin-left: -55px;
	top: 10px;
}

.header .logo img {
	display: block;
	height: auto;
	width: 110px;
}

.header .toggle {
	display: inline-block;
}

.header .toggle .fa,
.topNavList >li >a .fa {
	font-size: 22px;
	color: #fff;
	width: 50px;
	height: 50px;
	padding-top: 13px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,0.2);
}

.header .toggle .fa:before {
	opacity: 0.8;
}

.header .toggle:hover .fa:before {
	opacity: 1;
}

/*MAIN NAVIGATON
*********************************************************/

/*slide out menu*/
#wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
}

#canvas {
	width: 100%;
	height: 100%;
	position: relative;
	left: 0;
	/*-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);  */
	-webkit-transition: .5s ease all;
	transition: .5s ease all;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.menuOpen #canvas {
	/*-webkit-transform: translateX(85%);
	transform: translateX(85%);
	-webkit-transform: translate3d(85%, 0, 0);
	transform: translate3d(85%, 0, 0);*/
	left: 85%;
}

.slideOutMenu {
	width: 85%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: -85%;
	background: #0c241f;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: .5s ease;
	overflow-y: auto;
}

.menuOpen .slideOutMenu {
	left: 0;
}

.slideOutMenu .close {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 50px;
	height: 49px;
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	cursor: pointer;
	padding: 5px 0 0 20px;
	opacity: 0.5;
}

/*main nav*/

.header .mainNav {
	display: none;
}

.mainNavList {
	border-top: 1px solid rgba(255,255,255,0.1);
}

.mainNavList > li {
	position: relative;
	background: transparent;
	transition: .3s all ease;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mainNavList > li > a {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 12px 40px 12px 20px;
	margin: 0;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	font-weight: 400;
}

.mainNavList > li:hover,
.mainNavList > li a:active,
.mainNavList > li.onPath,
.mainNavList > li.open {
	background-color: rgba(255,255,255,0.1);
}

.mainNavList > li > .showSubNav {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	padding-top: 9px;
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	height: 100%;
	background: rgba(255,255,255,0.2);
	color: #fff;
	font-size: 22px;
	text-align: center;
	cursor: pointer;
	transition: .3s all;
	width: 40px;
}

.mainNavList > li.open > .showSubNav i:before {
	content: "\f068";
}

.mainNavList > li > .showSubNav:hover {
	background: rgba(255,255,255,0.3);
}

/*sub nav lists*/

.mainNavList .wrap {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 40px 0 0;
	max-height: 0;
	overflow: hidden;
	transition: all .5s;
}

.mainNavList .open .wrap {
	max-height: 1000px;
}

.mainNavList .sub-menu a,
.mainNavList .sub-menu a:hover {
	color: #fff;
	color: rgba(255,255,255,0.8);
	padding: 7px 10px 7px 20px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 300;
	display: block;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

/*.mainNavList .sub-menu li:last-child a {
	border-bottom: 0;
}*/

.mainNavList .sub-menu li:last-child {
	margin-bottom: 10px;
}

.mainNavList .sub-menu a:before {
	content: "\f105";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: inherit;
	font-size: 14px;
	position: absolute;
	top: 9px;
	right: 15px;
}

.slideOutMenu .mainNav .span6 {
	display: none;
}

.mainNavList h2 {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 0 5px 20px;
}


/*TOP NAVIGATION
*****************************************/

.topNav {
	float: right;
}

.topNavList.enhanced {
	display: none;
}

.topNavList > li {
	float: left;
	width: 50px;
	position: relative;
}

.topNavList > li > a {
	display: block;
	width: 50px;
	height: 50px;
	border-left: 1px solid rgba(255,255,255,0.2);
	text-indent: -5000px;
	text-decoration: none;
	opacity: 0.8;
}

.topNavList > li.navcart > a {
	text-indent: 0;
}

.topNavList > li.navcart > a span.text {
	display: block;
	text-indent: -5000px;
}

.topNavList > li span.counter {
	position: absolute;
	margin-left: 5px;
	top: 4px;
	right: 4px;
	background: #db5800;
	color: #fff;
	border-radius: 50%;
	padding: 3px 5px;
	font-size: 12px;
	line-height: 12px;
	min-width: 18px;
	text-align: center;
	box-sizing: border-box;
}

.topNavList > li > a:hover {
	opacity: 1;
}

.topNavList > li > a i {
	display: block;
	text-indent: 0;
	position: relative;
	top: -20px;
}

.topNavList > li.navcart > a {
	background: url('../images/layout/icon_bag_64.png') center center no-repeat;
	background-size: 22px 22px;
}

/*dropdowns*/

.topNavList ul {
	position: absolute;
	top: -5000px;
	right: 0;
	width: 200px;
}

.topNavList .open ul {
	top: 50px;
}

.topNavList ul a {
	display: block;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	padding: 12px 15px;
	border-top: 1px solid rgba(255,255,255,0.2);
	text-align: right;
	background: #54630f;
	opacity: 0.9;
}

.topNavList ul a i {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: 10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	color: #54630f;
	font-size: 14px;
	text-align: center;
	padding-top: 3px;
	opacity: 0.5;
}


/*SEARCH
******************************************/

.search {
	position: absolute;
	z-index: 350;
	top: -5000px;
	left: 0;
	right: 0;
	height: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	/*background: rgba(84,99,15,0.9);*/
	background: #54630f;
	opacity: 0;
	transition: opacity .5s ease;
}

.open.search {
	top: 0px;
	opacity: 1;
	transition: opacity .5s ease;
}

.search .toggleSearch {
	color: #9ba66a;
	font-size: 30px;
	font-weight: 300;
	text-decoration: none;
	position: absolute;
	top: 3px;
	right: 10px;
}

.search form {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px 50px 0 0;
}

.search input[type="text"] {
	border: 0;
	border-bottom: 1px solid #9ba66a;
	padding: 5px 10px;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	background: transparent;
	width: 100%;
}

.search input[type="text"]:focus {
	outline: none;
}

.search button {
	display: none;
	border: 0;
	padding: 5px 10px;
	color: #9ba66a;
	font-size: 20px;
	font-weight: 300;
	background: transparent;
	float: right;
}

.search ::-webkit-input-placeholder {
	color: #fff;
}
.search :-moz-placeholder {
	color: #fff;
}
.search ::-moz-placeholder {
	color: #fff;
}
.search :-ms-input-placeholder {
	color: #fff;
}

/*quick search results*/

#QuickSearch {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block !important;
	background: #f5f4ed;
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
}

#QuickSearch .inner {
	padding: 30px 20px 20px;
	max-height: 350px;
	overflow-y: auto;
}

#QuickSearch .col {
	width: 50%;
	padding: 0 10px 0;
}

#QuickSearch .btn {
	margin: 0 10px;
	clear: both;
}

/*FLASH
*************************************************/

.flash {
	background: #54630f; /*was #a8a80c*/
	color: #fff;
	text-align: center;
	padding: 6px 10px 6px;
	height: auto;
	transition: .5s ease;
	overflow: hidden;
	border-bottom: 1px solid #fff;
	position: relative;
	top: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0.9;
}

.flash.hide {
	visibility: hidden;
	opacity: 0;
	height: 0;
	padding: 0;
}

.flash a {
	display: block;
	text-decoration: none;
	color: #fff;
}

.flash h2 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
}

.flash p {
	text-transform: uppercase;
	font-weight: 300;
	opacity: 0.8;
	font-size: 14px;
	line-height: 14px;
}

.flash .close {
	position: absolute;
	z-index: 20;
	top: 0px;
	right: 0px;
	padding: 6px 10px;
	opacity: 0.5;
}


/*HOME PAGE BANNER
***********************************************/

.banner {
	height: auto;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.bannerSlider img {
	display: block;
	transition: all .7s ease;
}

.bannerSlider a:hover img,
.bannerSlider a:active img {
	transform: scale(1.05);
}

.bannerSlider .text {
	position: absolute;
	z-index: 100;
	left: 0;
	right: 0;
	bottom: 35px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

.bannerSlider .text {
	bottom: 0;
	top: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	color: #fff;
}

.bannerSlider .text .inner {
	width: 100%;
}

.bannerSlider h2 {
	font-size: 50px;
	line-height: 50px;
	text-shadow: 0 0 24px rgba(0,0,0,0.5);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 800;
	color: #fff;
	padding-top: 40px;
}

.bannerSlider.feature h2 {
	font-size: 26px;
	line-height: 45px;
	width: 100%;
	padding-top: 0;
}

.bannerSlider.feature h2:before,
.bannerSlider.feature h2:after {
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	border-top: 1px solid #fff;
	margin: 0 auto 0;
}

.bannerSlider.feature h2:after {
	margin-top: 15px;
}

.bannerSlider.feature h2 i {
	font-style: italic;
	font-weight: normal;
	text-transform: none;
	font-family: Garamond, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
}

.bannerSlider.feature h2 span {
	display: block;
	font-size: 60px;
}

.bannerSlider .tagline {
	font-size: 20px;
	font-style: italic;
	font-family: Garamond, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
	text-shadow: 0 0 24px rgba(0,0,0,0.5);
	margin: 10px 0 0;
	color: #fff;
}

.bannerSlider .btn {
	background: transparent;
	margin: 15px 5px 0;
	transition: .5s ease;
	padding: 8px 12px 7px;
	border: 1px solid #fff;
}

.bannerSlider .btn:hover {
	background: rgba(0,0,0,0.4);
	color: #fff;
}

.bannerSlider .image {
	position: relative;
}

.bannerSlider .image:before {
	content: "";
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: transparent url('../images/layout/snowflakeBannerBorder_s.png') center center no-repeat;*/
	background-size: cover;
}


/*SIDEITEMS
*********************************************************/

.sideItemsList .col {
	width: 50%;
}

.sideItemsList .inner {
	position: relative;
	overflow: hidden;
}

.sideItemsList .inner:before {
	content: "";
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset 0 0 70px rgba(12,36,31,0.10);
}

.sideItemsList h2 {
	color: #0c241f;
	font-weight: 700;
	font-size: 14px;
	padding: 5px 0;
	text-align: center;
	text-transform: uppercase;
	background: rgba(255,255,255,0.5);
	position: absolute;
	z-index: 10;
	bottom: 20px;
	left: 0;
	right: 0;
}

.sideItemsList img {
	display: block;
	transition: all .7s ease;
}

.sideItemsList a:hover img {
	transform: scale(1.05);
}


/*ACCORDIONS
****************************************************/

.accordion h3 {
	margin: 5px 0 0 0;
	padding: 0;
	border: 0;
	font-weight: 400;
}

.accordion h3 a {
	display: block;
	position: relative;
	padding: 10px 10px;
	font-size: 14px;
	color: #495d59;
	text-decoration: none;
	background: #ebe9dc;
	text-transform: uppercase;
}

.accordion h3.hdLHS a {
	font-size: 16px;
	color: #fff;
	background: #54630f; /*was #a8a80c*/
}

.accordion h3 a:after {
	content: "+";
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: inherit;
	font-size: 20px;
	line-height: 20px;
	float: right;
	position: relative;
	top: 0;
}

.accordion h3.open a:after {
	content: "-";
	/*opacity: .5;*/
}

.accordion > div {
	padding: 10px 0 20px;
}

.accordion div.open {
	display: block !important;
}



/*FOOTER
**********************************************/

.footer {
	background: #54630f url('../images/layout/bgFooter.jpg') center bottom no-repeat;
	background-size: 100% auto;
	margin-top: 10px;
}

.nothome .footer {

}

.footer .accordion {
	margin-top: 0;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer .accordion h3 {
	margin-top: 0;
}

.footer .accordion h3 a {
	background: transparent;
	color: #fff;
}

.footer .accordion li {
	padding: 0 10px;
}

.footer .accordion li  a {
	display: block;
	color: #fff;
	font-size: 14px;
	position: relative;
	text-decoration: none;
	padding: 4px 10px 4px 15px;
}

.footer .accordion li a:before {
	content:"\f105";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: inherit;
	font-size: 14px;
	line-height: 14px;
	position: absolute;
	text-indent: 0;
	top: 7px;
	left: 0;
}

.footer h3 {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
}

.footer .newsletter {
	margin: 0 auto 0;
	max-width: 300px;
	padding: 0 30px;
}

.footer .bottom {
	margin: 20px 0 20px;
	color: #fff;
	font-size: 10px;
}

.footer .bottom a {
	color: #fff;
	text-decoration: none;
}

iframe[name="google_conversion_frame"] {
	height: 0 !important;
	position: absolute;
}


/*PATH
**********************************************************/

.path {
	margin: 10px 0 0;
	overflow: hidden;
}

.path ul {
	overflow: hidden;
}

.path li {
	float: left;
	padding: 0 6px 0 0;
}

.path li a {
	font-size: 11px;
	display: inline-block;
	color: #839591;
	text-decoration: none;
	text-transform: uppercase;
}

.path li.sel {
	background-image: none;
	padding-right: 0;
}

.path li a:hover,
.path li.sel a {
	text-decoration: none;
	color: #db5800;
}

.path li:after  {
	content: "/";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: inherit;
	font-size: 14px;
	padding-left: 12px;
	color: #b7c4c1;
}

.path li.sel:after {
	content: "";
}


/*****************************************************************

************************   SHOP STYLES   *************************

*****************************************************************/


/*PRODUCT LIST
*****************************************************************/

.productList {
	padding: 0 0 30px 0;
}

.productList li {
	width: 50%;
}

.productList li:nth-child(2n+3) {
	clear: left;
}

.productList a {
	display: block;
	text-decoration: none;
}

.productList h3 {
	color: #0c241f;
	font-size: 15px;
	line-height: 18px;
	font-weight: 400;
	margin: 10px 0 0 0;
}

.productList .price {
	font-size: 14px;
	color: #72918b;
	margin-top: 10px;
}


/*PRODUCT DETAIL
*****************************************************************/

/*image slider*/

.productDetail .productThumbSlider {
	height: 0;
	overflow: hidden;
}

.productImageSlider figure {
	padding: 5px 5px 0;
}

/*product info*/

div.brand {
	text-transform: uppercase;
	color: #839591;
	font-size: 12px;
	line-height: 12px;
	margin: 20px 0 0;
}


.productInfo h1.pageTitle {
	color: #0c241f;
	font-size: 24px;
	line-height: 24px;
	font-weight: 700;
	margin: 5px 0 0;
	padding: 0;
	border: 0;
}

.pos {
	color: #b7c4c1;
	font-size: 12px;
	line-height: 12px;
	margin: 10px 0 0;
}

.price {
	color: #495d59;
	font-size: 22px;
	line-height: 22px;
	font-weight: 300;
	margin: 20px 0 0;
}

p.productPosCode{
	color: #495d59;
	font-size: 12px;
	line-height: 12px;
}

.shipping {
	color: #db5800;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	margin: 10px 0 10px;
}


.orderShipToBillingAddressLabel{
	padding-left: 6px;
}

.rating {
	margin: 20px 0 0;
}

.rating a {
	text-decoration: none;
}

.stars li {
	display: inline-block;
	color: #f0c600;
	font-size: 20px;
	line-height: 20px;
}

/*add to cart*/

.addToCartForm {
	margin-top: 20px;
}

.attribute {
	margin-top: 15px;
}

.selectSizeList li {
	display: inline-block;
	padding: 4px 1px 0;
}

.selectSizeList a {
	display: block;
	color: #495d59;
	font-size: 14px;
	border: 1px solid #b7c4c1;
	text-decoration: none;
	min-width: 25px;
	padding: 3px 1px 3px;
	transition: .3s ease;
}

.selectSizeList a:hover,
.selectSizeList .sel a {
	background: #839591;
	color: #fff;
}

.selectColoursList li {
	position: relative;
	display: inline-block;
	margin: 0 2px;
	width: 25px;
	height: 25px;
	text-align: center;
}

.selectColoursList li.disabled {
	opacity: 0.3;
}

.selectSizeList li.disabled {
	opacity: 0.5;
}

.selectColoursList li.disabled:before {
	content: "/";
	font-weight: 400;
	font-size: 35px;
	line-height: 35px;
	color: #b7c4c1;
	display: block;
	position: absolute;
	z-index: 10;
	top: -4px;
	left: 8px;
	cursor: not-allowed;
	text-align: center;
}

.selectColoursList li.disabled a, .selectSizeList li.disabled a  {
	cursor: not-allowed;
}

.selectColoursList a img {
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	color: #495d59;
	font-size: 14px;
	border: 2px solid #b7c4c1;
	text-decoration: none;
	transition: .3s ease;
	overflow: hidden;
}

.selectColoursList a:hover img,
.selectColoursList .sel a img {
	border: 2px solid #0c241f;
}

.selectColoursList .disabled a:hover img,
.selectColoursList .disabled.sel a img {
	border: 2px solid #b7c4c1;
}

.selectColoursList a span {
	display: none;
	position: absolute;
	bottom: -20px;
	color: #fff;
	background: #54630f;
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.8;
	padding: 3px 6px;
	border-radius: 2px;
	z-index: 100;
}

.selectColoursList a span:before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -6px;
	top: -6px;
	border-bottom: 6px solid #54630f;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}

.selectColoursList .sel a span,
.selectColoursList a:hover span {
	display: inline-block;
}

.stockLevel {
	font-size: 14px;
	color: #839591;
	text-transform: uppercase;
	margin-top: 10px;
}

button.addToCart {
	font-weight: 300;
	font-size: 20px;
	padding: 12px 10px 20px;
	margin: 20px 0 0;
	height: auto;
}

button.addToCart img {
	width: 32px;
	height: 32px;
	position: relative;
	top: 5px;
	padding-right: 10px;
}

.powatag {
	text-align: center !important;
	margin: 10px 0 !important;
}

.addToWishList {
	margin-top: 15px;
}

.addToWishList a {
	font-size: 14px;
	color: #54630f; /*was #a8a80c*/
	text-decoration: none;
	text-transform: uppercase;
}

.addToWishList {
	padding-right: 5px
;}

.addToWishList.added i:before {
	content:"\f004";
}

/*product description, accordion*/

.productDescription,
.productDetail .accordion,
.productDetail .share {
	margin-top: 15px;
	font-size: 14px;
	line-height: 24px;
}
.productDescription p{
	margin:0 0 10px;
}

.productDetail .share {
	overflow: hidden;
}

.productDetail .accordion p {
	margin: 10px 0;
}

.productDescription ul {
	margin: 10px 0;
}

.productDescription ul li {
	position: relative;
	padding: 0 0 0 15px;
}

.productDescription ul li:before {
	content:"\f111";
	font-family: FontAwesome;
	color: #54630f; /*was #a8a80c*/
	font-size: 8px;
	position: absolute;
	top: 1px;
	left: 0;
}

/*REVIEWS
********************************************************/

.reviewsList {
	-webkit-columns: 1;
	-moz-columns: 1;
	columns: 1;
	margin-top: 20px;
}

.reviewsList > li {
	padding: 0 20px 30px;
}

.reviewsList blockquote {
	position: relative;
	margin-top: 10px;
	font-size: 14px;
	line-height: 24px;
}

.reviewsList blockquote:before,
.reviewsList blockquote:after {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #9ba66a;
	font-size: 40px;
	position: absolute;
	opacity: 0.2;
}

.reviewsList blockquote:before {
	content:"\f10d";
	top: -10px;
	left: 0;
}

.reviewsList blockquote:after {
	display: none;
	font-size: 22px;
	content:"\f10e";
	bottom: 10px;
	right: 20px;
}

.reviewsList blockquote cite {
	color: #0c241f;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	display: block;
	margin-top: 10px;
}
/* MODAL STYLE */
.fancy_modal {
	display: none;
	background: #F5F4ED;
	max-width: 800px;
	padding: 20px 15px;
	-webkit-box-shadow: 1px 1px 6px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    1px 1px 6px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         1px 1px 6px 0px rgba(50, 50, 50, 0.75);
}
.modal-sm {
	width: 100%;
	max-width: 450px;
}
.fancy_modal input {
	background: #fff;
}
.modal_header {
	display: block;
	overflow: hidden;
	margin-bottom: 10px;
}
.modal_header h2 {
	float: left;
	line-height: 40px;
	color: #DB5800;
  font-size: 20px;
  font-weight: 400;
}
.modal_header .close_modal {
	float: right;
	cursor: pointer;
	color: #F06623;
	line-height: 40px;
}
.fancy_modal label {
	font-size: 14px!important;
	color: #666;
	text-align: left;
	text-transform: uppercase;
}
.fancy_modal input {
	height: 30px!important
}
.fancy_modal input, .fancy_modal textarea {
	border-color: #F5DFD0!important;
	padding: 2px 5px;
	border-radius: 4px!important;
}
.fancy_modal .general .group {
	margin-top: 0;
	margin-bottom: 10px;
}
.fancy_modal .modal_footer {
	display: block;
	margin-top: 20px;
	overflow: hidden;
	text-align: right;
}
.fancy_modal .modal_footer .btn {
	display: inline-block;
}
/* MODAL STYLE */

/* TABS */


.tab-container {
	margin: 20px 0;
}
.tab-container ul.etabs {
	margin: 0;
	padding: 0;
	width: 100%;
	border-bottom: 2px solid #DB5800;
}

ul.etabs:before,
ul.etabs:after {
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
}
ul.etabs:after {
	clear: both;
}
.tab-container ul.etabs li {
	margin: 0 5px 0 0;
	padding: 0;
	background-image: none;
	border: 0;
	float: left;
}
.tab-container ul.etabs li:before {
	content: "";
	display: none;
}
.tab-container ul.etabs a {
	display: block;
	background: #54630F;
	text-decoration: none;
	padding: 15px 10px;
	color: #fff;
	font-size: 14px;
}
.tab-container ul.etabs .active a {
	background: #DB5800;
	color: #fff;
}
.tab-container {
	text-align: left;
}
.tab-container .copy {
	padding: 20px 5px;
	height: 130px;
	overflow: auto;
}
/* --- / tabs */

.personalised label {
	font-style: italic;
	display: block;
	margin: -10px 0 15px;
	color: #839591;
	font-size: 14px;
}

.hero_bar {
	text-align: right;
}
.hero_bar > div {
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	font-size: 11px;
	text-transform: uppercase;
	color: #83928D;
}
.hero_bar > div + div:before {
	content: "/";
	padding: 0 5px;
	color: #83928D;
}
.hero_bar a {
	color: #83928D;
	text-decoration: none;
}
.sorting a {
	width: 20px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	color: #83928D;
}

.sorting .fa {
	font-size: 12px;
	position: relative;
	top: -2px;
}

.row.grid {
	margin-top: 5px;
	padding: 0;
}
.row.grid:before,
.row.grid:after {
	display: table;
	content: " ";
}
.row.grid {
	margin-left: -5px;
  margin-right: -5px;
  width: auto!important;
  max-width: none!important;
}

.productsListing .span3:nth-of-type(2n+3) {
	clear: left;
}

.productsListing .box {
	margin-bottom: 20px;
	position: relative;
}


.brandsListing .span3:nth-of-type(2n+3) {
	clear: left;
}

.brandsListing .box {
	margin-bottom: 20px;
	position: relative;
}


.box a{
	text-decoration: none;
	text-align: left;
}
.box span {
	display: block;
	width: 100%;
	font-size: 16px
}
.box span.title {
	color: #000;
	margin: 5px 0;
}

.productsListing .box a img.img2 {
	display: none;
}

.productsListing .box span.description {
	display: none;
}


.brandsListing .box a img.img2 {
	display: none;
}

.brandsListing .box span.description {
	display: none;
}

#QuickSearch .box span.description {
	display: none;
}

.box .saleicon {
	width: auto;
}
.box span.price {
	font-size: 14px;
	margin: 0;
	font-weight: 400;
}

/*promos in product listing*/

.promo .badge {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #db5800;
	text-align: center;
	position: absolute;
	z-index: 20;
	top: -8px;
	left: -3px;
	width: 80px;
	height: 80px;
	padding: 0;
	border-radius: 50%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-ms-transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	transform: rotate(-10deg);
}

.productDetail .promo .badge {
	top: 0;
	left: 5px;
	width: 100px;
	height: 100px;
}

.promo.green .badge {
	background: #54630f; /*was #a8a80c*/
}

.promo.blue .badge {
	background: #00717d;
}

.promo .badge span {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	display: block;
}

.productDetail .promo .badge span {
	font-size: 15px;
}

.promo .price {
	color: #db5800;
}

.promo.green .price {
	color: #54630f; /*was #a8a80c*/
}

.promo.blue .price {
	color: #00717d;
}

.promo .price s {
	color: #495d59;
}


.pageNav h1,
.pageNav .pageSubTitle {
	display: none;
}

.pageNavList {
	margin-bottom: 30px;
}

.pageNav .pageNavList .subNavList1 .col.span6 {
	display: none;
}

.pageNavList a {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
	color: #495d59;
	text-decoration: none;
}
.pageNavList > li:hover > a,
.pageNavList .sel > a,
.pageNavList .sub-menu li:hover > a {
	color: #db5800;
}
.pageNavList .sub-menu {
	margin-bottom: 10px;
}

.pageNavList .sub-menu li {
	margin-left: 15px;
	position: relative;
}
.pageNavList .sub-menu li:before {
	content: "-";
	position: absolute;
	left: -10px;
	color: #495d59;
	top: -2px;
}

.pageNavList .sub-menu li a {
	margin-bottom: 5px;
	font-size: 13px;
}

/*GIFT VOUCHERS*/

#selectVoucherList {
	clear: both;
	display: block;
	margin-bottom: 12px;
	overflow: hidden;
}
#selectVoucherList li {
	float: left;
	position: relative;
	z-index: 2;
	width: 33.3333333333%;
}
#selectVoucherList li a {
	display: block;
	font-size: 14px;
	margin: 0 5px 5px;
	padding: 7px 3px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #bac4cf;
	color: #495d59;
	transition: .5s ease;
}
#selectVoucherList li:hover a {
	background-color: #54630f; /*was #a8a80c*/
  border: 1px solid #54630f; /*was #a8a80c*/
  color: #fff;
}
#selectVoucherList li.sel a {
  background-color: #54630f; /*was #a8a80c*/
  border: 1px solid #54630f; /*was #a8a80c*/
  color: #fff;
}
.voucher.subGroup span.label {
	text-align: left;
}
.addToCartForm .voucher > div {
	margin-bottom: 10px;
}
form.addToCartForm input.quantity {
	border: 1px solid #bac4cf;
}
form.addToCartForm input.quantity {
  color: #3e4957;
  display: inline-block;
  float: left;
  font-size: 13px;
  margin: 0px 10px 10px;
  padding: 5px 2px 4px 1px;
  text-align: center;
  text-decoration: none;
  width: 40px;
  height: 34px;
}
form.addToCartForm span.add, form.addToCartForm span.subtract {
	float: left;
	width: 20px;
}
form.addToCartForm span.add a {
  top: -3px;
}
form.addToCartForm span.add a, form.addToCartForm span.subtract a {
  color: #bac4cf;
  display: inline-block;
  font-size: 25px;
  font-weight: normal;
  position: relative;
  text-decoration: none;
  z-index: 1;
}
form.addToCartForm span.subtract a {
  top: -5px;
}
.offers {
	clear: both;
	width: 100%;
	float: none;
	overflow: hidden;
}
.offers > .cart_qty {
	display: inline-block;
	float: left;
	height: 40px;
	line-height: 34px;
	margin: 10px 0;
	vertical-align: middle;
}
.setselection {
	display: block;
	overflow: hidden;
	text-align: left;
}

.setselection .item {
	background: #f5f4ed;
	overflow: hidden;
	padding: 15px 10px 0;
	margin: 5px 0 0 0;
}

#wrap .setselection .itemtitle {
	width: 100%;
	display: block;
	font-size: 14px;
	line-height: 19px;
	text-align: left;
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: 400;
}
.setselection .price {
	float: left;
	margin-top: 6px;
	font-size: 14px;
}

.setselection .itemqty {
	margin-top: 5px;
	float: right;
}

.setselection .item label {
	display: inline;
}

form.addToCartForm .setselection input.quantity {
	width: 30px;
	height: 22px;
	position: relative;
	top: 1px;
}

form.addToCartForm .setselection span.add a {
    top: -2px;
}

.itemqty span {
  float: left;
  line-height: 26px;
  font-size: 12px;
  text-transform: uppercase;
}
/* cart */
table.cart {
	width: 100%;
	margin: 10px 0;
}
table.cart td.price.number {
	font-size: 16px;
	line-height: 16px;
	text-align: center;
}
table.cart a {
	color: #495d59;
	text-decoration: none;
}
table.cart th {
	font-size: 22px;
}
table.cart td, table.cart th {
	padding: 5px;
	border: 1px solid #ebe9dc;
	vertical-align: top;
	color: #495d59;
  font-weight: 300
}
table.cart tr.totals td {
	border: transparent;
	text-align: center;
	font-weight: bold;
}
table.cart th.details {
	text-align: left;
}
table.cart tr.totals td:not(.empty) {
	background: #DB5800;
	color: #fff;
}
table.cart .total.number {
	font-weight: bold;
	text-align: center;
}
table.cart input.text.quantity {
	width: 40px;
	text-align: center;
}
table.cart td.quantity {
	text-align: center;
}
table.cart td.quantity span a {
	display: inline-block;
	vertical-align: middle;
	font-size: 22px;
}
table.cart th.total.number,
table.cart th.price.number,
table.cart th.quantity{
	min-width: 15%;
}
table.cart .image {
	max-width: 90px;
}
.cart .buttons.top {
	clear: both;
	display: block;
	float: none;
}
.cart .buttons.top a {
	float: right;
	margin-bottom: 10px;
}
.cart .buttons .btn.grey {
	color: #495d59;
	background: #F5F4ED;
}
.cart .buttons .btn.checkout {
	float: right;
	color: #fff;
}

/* ======================================================================================================================================================================================
Update class css */
.checkout_header:before,
.checkout_header:after,
.checkout_header [id^="checkoutStep"]:before,
.checkout_header [id^="checkoutStep"]:after {
	content: "";
	display: table;
}
.checkout_header:after, .checkout_header [id^="checkoutStep"]:after {
	clear: both;
}
.checkout_header {
	display: block;
	width: auto;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.checkout_header [id^="checkoutStep"] {
	padding: 0;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 1px;
	position: relative;
	border-right: 1px solid #fff;
}
.checkout_header .tab {
	position: relative;
	display: block;
	padding: 5px;
	text-align: center;
	background: #f5f4ed;
	margin-bottom: 15px;
}

.checkout_header i {
	color: #54630f; /*was #a8a80c*/
}

.checkout_header .active i,
.checkout_header .closed i {
	display: none;
}
.checkout_header h2,
.summary_block h2 {
	color: inherit; /*should default from earthworm*/
	color: #495d59;
	text-align: center;
	font-weight: normal;
	cursor: default;
	text-transform: uppercase;
	line-height: 22px;
    border-top: none;
    margin: 0;
    padding: 0;
}

.summary_block h2 a {
	display: block;
	font-size: 13px;
	text-transform: none;
	margin-top: 5px;
}

.checkout_header h2 {
	font-size: 11px;
}

.checkout_header span,
.checkout_header p {
	display: none;
}
.tab_content {
	display: none;
}
.tab_content.active {
	display: block;
}
.checkout_header [id^="checkoutStep"].active .tab {
	background: #54630f; /*was #a8a80c*/
}
.checkout_header [id^="checkoutStep"].active .tab:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	margin: 0 auto;
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #54630f transparent transparent transparent; /*was #a8a80c*/
}
.checkout_header [id^="checkoutStep"].active h2,
.checkout_header [id^="checkoutStep"].active p {
	color:#fff;
}
#checkout .formHolder {
	background: #fff;
	padding: 0;
}
#checkout .formHolder legend {
	font-size: 20px;
	padding-left: 0;
	font-weight: normal;
	color: #495d59;
	text-transform: uppercase;
}
#checkout .formHolder label {
	font-size: 15px;
	font-weight: normal;
	line-height: 16px;
}
.required {
	color: #e40000;/*should default from earthworm*/
}
.formHolder .group.radio a {
	font-size: 12px;
	padding-left: 15px;
}
.formHolder .group.radio-inline p {
	font-size: 15px;
	margin: 10px 0;
}
.radio-inline .option {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
.radio-inline .option + .option {
	padding-left: 5px;
}
.radio-inline .option label {
	cursor: pointer;
}
.radio-inline .option input {
	display: block;
	margin: 0 auto;
}
.radio-inline img {
	width: auto;
}
.group.checkbox input[type=checkbox] {
	display:none;
} /* to hide the checkbox itself */
.group.checkbox input[type=checkbox] + label:before {
  font-family: FontAwesome;
  display: inline-block;
}
.group.checkbox input[type=checkbox] + label:before {
	content: "\f096";
} /* unchecked icon */
.group.checkbox input[type=checkbox] + label:before {
	letter-spacing: 10px;
} /* space between checkbox and label */
.group.checkbox input[type=checkbox]:checked + label:before {
	content: "\f046";
} /* checked icon */
.group.checkbox input[type=checkbox]:checked + label:before {
	letter-spacing: 10px;
} /* allow space for check mark */
.formHolder .group .contact {
	display: block;
	margin: 10px 0;
	font-size: 15px;
	color: #495d59;
	padding-left: 10px;
}
.checkout_header [id^="checkoutStep"] {
	width: 33.33%;
	float: left;
}
.summary_block {
 	float: left;
 	width: 100%;
 	margin-top: 20px;
 	-webkit-box-sizing: border-box;
 	-moz-box-sizing: border-box;
 	box-sizing: border-box;
}

.summary_block > .inner {
 	background: #ebe9dc;
 	padding: 30px 20px 25px;
 	width: 100%;
 	-webkit-box-sizing: border-box;
 	-moz-box-sizing: border-box;
 	box-sizing: border-box;
}

.summary_block > p {
	font-size: 14px;
	color: #495d59;
	margin-bottom: 20px;
}
.summary_block > ul {
  display: block;
  overflow: hidden;
  text-align: center;
}
.summary_block ul li {
	display: inline-block;
}
.summary_block ul li img {
	width: auto;
	max-width: 80px;
	height: auto;
}
.summary_block h2 {
	margin-bottom: 20px;
}

.paypal-button-widget {
	display: block;
	text-align: center;
	margin: 10px 0 0 0;
}

.summary_product {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}
.summary_product .summary_image {
	display: table-cell;
	vertical-align: top;
  width: 25%;
  min-width: 80px;
}
.summary_product .summary_image a {
	padding-right: 5px;
	display: block;
}
.summary_product .summary_prod {
	display: table-cell;
	vertical-align: top;
	width: 55%;
}
.summary_prod .title {
	font-size: 13px;
	color: #000;
}
.summary_prod span {
	display: block;
	font-size: 13px;
	line-height: 13px;
	color: #839591;
}
.summary_price {
	display: table-cell;
	vertical-align: top;
  width: 20%;
  min-width: 55px;
  text-align: right;
	font-size: 14px;
	color: #839591;
}
.orderTotal {
	display: block;
	overflow: hidden;
	border-bottom: solid 1px #e2dfd0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.orderTotal p {
	font-size: 14px;
	color: #839591;
	clear: both;
	margin-top: 5px;
}
.orderTotal p span {
	float: right;
}
.grandTotal {
	display: block;
	overflow: hidden;
	clear: both;
	color: #0c241f;
	font-size: 20px;
}
.grandTotal + .btn {
	margin-top: 30px;
}
.grandTotal span {
	float: right;
}
.promoCodeContainer p {
	font-size: 14px;
	color: #0c241f;
	margin: 15px 0;
	text-align: center;
}
.promoCodeContainer p a {
	color: #54630f;
}
.btn.inverse {
	color: #000;
	background: #cac7b6;
	border: 0;
}
.summary_block .contact span {
	display: block;
	margin: 0 auto 10px;
	text-align: left;
}
.summary_block .contact span i {
	color: #54630f; /*was #a8a80c*/
	padding-right: 5px;
}
.summary_block .contact span a {
	text-decoration: none;
	color: #495d59;
	font-size: 14px;
}
.cart_grid {
	display: block;
	overflow: hidden;
	margin-top: 0;
}
.cart_grid h2 {
	color: #495d59;
  cursor: default;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin: 0;
  padding-bottom: 20px;
}
.product_added {
	display: block;
	overflow: hidden;
	padding: 10px 0;
	border-top: solid 1px #e2dfd0;
}
.product_added > div {
	display: inline-block;
	vertical-align: top;
	float: left;
}
.product_added .prod_img {
	width: 35%;
}

.product_added .prod_img img {
	display: block;
}

.product_added .prod_desc,
.product_added .prod_opt,
.product_added .prod_price {
	width: 65%;
}

.product_added .prod_desc .title {
	font-size: 16px;
}
.product_added .prod_desc p {
	font-size: 13px;
	color: #839591;
}

.product_added .prod_opt {
	margin-top: 5px;
}

.product_added .prod_price {
	font-size: 15px;
	color: #0c241f;
	margin: 10px 0 0;
}
.product_added .prod_img a {
	display: block;
	padding-right: 20px;
}
.prod_opt .group {
	display: table-cell;
	width: 1%;
}
.prod_opt .group + .group {
	padding-left: 10px;
}
.prod_opt .group label {
	display: block;
	font-size: 12px;
	line-height: 22px;
	width: 100%;
}
.prod_opt .group select {
	width: 100%;
	height: 30px;
	line-height: 30px;
	border: solid 1px #e2dfd0;
	color: #b1bcba;
	font-size: 14px;
}
#checkout .col.span12.group h2 {
  border-top: 1px solid #dbd8c5;
  color: #0c241f;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  margin: 40px 10px 10px;
  padding: 20px 0 0;
  text-align: center;
  text-transform: uppercase;
}
.btn.btn_transparent {
 	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
 	color: #54630f;
}

/*support details at top of checkout*/

.header .checkoutSupport {
	display: none;
}

.checkoutSupport {
	background: #f5f4ed;
	font-size: 14px;
	text-align: center;
	padding: 10px;
	margin: 10px 5px 0;
}

.checkoutSupport b {
	display: block;
	text-transform: uppercase;
}

.ppButton {
	width: 50%;
	display: block;
	margin: 15px auto 0;
}


/*MINI CART
************************************************************/

.miniCart {
	min-width: 300px;
	max-width: 320px;
	position: absolute;
	z-index: 400;
	top: -5000px;
	right: 0;
	opacity: 0;
	transition: opacity .5s ease;
	background: #fff;
	border: 1px solid #ebe9dc;
	border-top: 0;
}

li.open .miniCart {
	top: 40px;
	opacity: 1;
}

.miniCart:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	top: -1px;
	right: 15px;
	border-top: 10px solid #54630f;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.topNavList .miniCart .summary_block {
	background: #fff;
	max-height: 350px;
	overflow: auto;
	float: none;
	margin: 0;
	padding: 20px 10px 0;
}

.miniCart h2 {
	font-size: 20px;
	margin-bottom: 0;
}

.miniCart p {
	font-size: 12px;
	text-align: center;
	color: #839591;
}

.miniCart .summary_product {
	border-bottom: solid 1px #e2dfd0;
	padding: 0 10px 10px 10px;
}

.miniCart .summary_product:first-of-type {
	border-top: solid 1px #e2dfd0;
	padding-top: 14px;
}

.miniCart .buttons {
	padding: 10px 10px 0;
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* W3C */
}

.miniCart .buttons .btn {
	width: 48.5%;
	float: left;
	padding: 8px 0;
	font-size: 13px;
	margin-top: 0;
	margin-bottom: 10px;
}

.miniCart .buttons .btn.fullwidth {
	width: 100%;
}


.miniCart .buttons .btn:nth-child(1) {
	margin-right: 1.5%;
}

.miniCart .buttons .btn:nth-child(2) {
	margin-left: 1.5%;
}

.miniCart #miniCartEmpty {
	text-align: center;
	padding: 40px;
}


/*FILTERS
*********************************************************************/

.filterList {
	padding: 0 10px;
}

.sidebar .attribute {
	margin-top: 5px;
	padding: 0 10px;
}

.filterList a {
	display: block;
	position: relative;
	color: #495d59;
	font-size: 14px;
	text-decoration: none;
	padding: 5px 0;
	border-bottom: 1px solid #ebe9dc;
	transition: .5s ease;
}

.filterList a:hover {
	color: #0c241f;
}

.filterList .sel a {
	color: #db5800;
}

.filterList a i {
	position: absolute;
	z-index: 20;
	top: 8px;
	right: 0;
	font-size: 13px;
}

.filterList a i:before {
	transition: .5s ease;
}

.filterList a:hover i:before {
	content:"\f05d";
}

.filterList .sel a i:before {
	content:"\f058";
}


/*LOGIN ADD ON
************************************************************/


body#log-in #pageTitle {
	display: none;
}
/*general*/

#wrap .gdLogin_wrap {
	background: #ebe9dc;
	height: 73px;
	overflow: hidden;
	margin: 10px auto;
}

#wrap .gdLogin_wrap.open,
#wrap .gdLogin_wrap.reset {
	height: auto;
}

/*top*/

#wrap .gdLogin_top {
	text-align: center;
}

#wrap .gdLogin_top h3 {
	font-size: 20px;
	color: #000000;
	text-transform: uppercase;
	padding: 5px 0 20px;
	text-align: left;
	position: relative;
}

#wrap .gdLogin_top h3:after {
	content:"\f105";
	font-family: "FontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 26px;
	float: right;
	position: relative;
	top: 0;
}

#wrap .open .gdLogin_top h3:after {
	content:"\f107";
	top: 0;
}

#wrap .gdLogin_top p {
	display: none;
}

/*form*/

#wrap .gdLogin_group {
	margin: 0 0 10px;
	position: relative;
}

#wrap .gdLogin_wrap form label[for="gdloginUsername"],
#wrap .gdLogin_wrap form label[for="gdloginPassword"] {
	padding: 0;
	height: 0;
	text-indent: -5000px;
}

#wrap .gdLogin_wrap input[type="text"],
#wrap .gdLogin_wrap input[type="password"],
#wrap .gdLogin_wrap input[type="email"] {
	border: 1px solid #cac7b6;
	padding: 5px 5px 5px 10px;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	color: #839591;
	height: 50px;
}

#wrap .gdLogin_wrap input:focus[type="text"],
#wrap .gdLogin_wrap input:focus[type="password"],
#wrap .gdLogin_wrap input:focus[type="email"] {
	box-shadow: 0 0 7px rgba(219,88,0,0.5);
	border: 1px solid #cac7b6;
	outline: none;
}

#wrap .gdLogin_helper {
	display: none;
}

#wrap .gdLogin_wrap button {
	height: 50px;
	background: #db5800;
	font-family: 'Open Sans', Arial, sans-serif;
}

#wrap .gdLogin_wrap button.reset {
	margin-top: 10px;
	width: 48%;
}

#wrap .gdLogin_wrap button.cancel {
	margin-top: 10px;
	width: 48%;
	float: right;
	opacity: 0.5;
}

.forgotPassword {
	font-size: 14px;
	display: block;
	margin: 15px 0 0;
	text-align: center;
}

/*bottom*/

#wrap .gdLogin_bottom {
	text-align: center;
	margin: 20px 0 0;
}

#wrap .gdLogin_bottom p {
	font-size: 11px;
	font-style: italic;
	color: #888;
}

/*colours*/


#wrap .gdLogin_wrap.fail h3 {
	color: #df8021;
}
#wrap .gdLogin_wrap.fail input[type="text"],
#wrap .gdLogin_wrap.fail input[type="password"],
#wrap .gdLogin_wrap.fail input[type="email"] {
	border: 1px solid #df8021;
}
.fail #wrap .gdLogin_helper,
#wrap .gdLogin_wrap.fail button {
	background: #df8021;
}

#wrap .gdLogin_wrap.reset h3 {
	color: #94ae31;
}
#wrap .gdLogin_wrap.reset input[type="text"],
#wrap .gdLogin_wrap.reset input[type="password"],
#wrap .gdLogin_wrap.reset input[type="email"] {
	border: 1px solid #94ae31;
}
.reset #wrap .gdLogin_helper,
#wrap .gdLogin_wrap.reset button {
	background: #94ae31;
}

.gdLogin_wrap.create li {
	font-size: 13px;
	color: #839591;
	list-style-type: disc;
	margin-left: 42px;
	padding-left: 0;
}

.gdLogin_wrap.create li:before {
	content: "";
	display: none;
}


/*BLARNEY TRADE
*************************************************************************/

.banner.large {
	overflow: hidden;
}

.banner.large img {
	width: auto;
	height: 250px;
	float: right;
}

.banner.large h3 {
	position: absolute;
	z-index: 15;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	font-size: 16px;
	line-height: 32px;
	text-shadow: 1px 1px rgba(0,0,0,0.5);
	text-transform: uppercase;
	padding: 100px 0 0 20px;
	background: -moz-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0.5)), color-stop(50%,rgba(0,0,0,0.5)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0) 100%);
}

.banner.large h3 span {
	font-size: 25px;
}


/*BRANDS
********************************************************************/

h1.pageTitle,
h1#pagetitle {
	font-weight: 300;
	font-size: 26px;
	margin: 10px 0;
}

.statement {
	max-width: 960px;
	margin: 0 auto;
}

.statement p {
	font-size: 16px;
	line-height: 24px;
}

.btnFilters {
	margin-top: 15px;
}

.btnFilters .btn {
	padding: 6px 15px;
	font-size: 14px;
	margin: 10px 5px 0;
}

.azBig {
	margin: 10px auto 0;
}

.azBigList > li {
	overflow: hidden;
	border-bottom: 1px solid #ebe9dc;
	padding: 20px 0;
}

.azBigList .lead {
	color: #db5800;
	font-size: 36px;
	width: 20%;
	float: left;
}

.azBigList > li ul {
	float: left;
	width: 80%;
}

.azBigList > li li {
	box-sizing: border-box;
	width: 100%;
	float: left;
	padding: 5px;
	font-size: 14px;
	color: #b7c4c1;
}

.azBigList > li li a {
	color: #495d59;
	text-decoration: none;
}




















/*MEDIA QUERIES
**************************************************************************/
@media (max-width: 1024px) {
	.lev1.navwishlist {
		display: none!important;
	}
	.topNavList {
		float: right!important;
	}
	.topNavList.enhanced {
		display: block;
		float: left!important;
	}
	.topNavList.enhanced > .lev1:nth-child(2) {
		display: none;
	}
	.showSubNav {
		color: #db5800;
		opacity: 0.5;
    height: 50px;
    position: absolute;
    top: 0;
    width: 50px;
    z-index: 50;
    font-size: 20px;
    font-weight: bold;
    text-indent: 5px;
    background: none;
    visibility: visible;
	}
	.topNavList > li > a i {
		z-index: 51;
		color: #fff;
	}
	.down_arrow.top {
    margin: 0 auto 5px;
	}
}














@media (max-width: 768px) {

	.toggleTabs {
		display: block;
		background: #F5F4ED;
		height: 44px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		text-decoration: none;
		font-size: 16px;
		border-bottom: 1px solid rgba(255,255,255,0.5);
		color: #DB5800;
	}
	.toggleTabs span {
		display: block;
		float: left;
		padding: 10px 0 0 10px;
	}
	.toggleTabs i {
		float: right;
		width: 44px;
		height: 44px;
		text-align: center;
		font-size: 16px;
		border-left: 1px solid rgba(255,255,255,0.5);
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 14px 0 0 0;
	}
	.tab-container .copy.active, .tab-container .etabs{
		display: none!important;
	}
	.tab-container.open .copy.active, .tab-container.open .etabs{
		display: block!important;
	}

	.Login .formHolder {
		max-width: 310px;
	}
	.Login .text-right .formHolder {
		float: right;
	}

	#checkout .formHolder .group {
		margin: 0 -10px;
	}
	.promoCodeContainer .group {
		margin: 0 -5px;
	}
	.promoCodeContainer .group .col {
		padding: 0 5px;
	}
	/*
	.checkout_header h2 {
		font-size: 20px;
	}
	*/
	.summary_price {
    display: table-cell;
    width: 1%;
	}
	#checkout .col.span12.group h2 {
		margin: 40px 0 10px;
	}
	#checkout .productList {
		margin: 0 -10px;
		display: block;
		overflow: hidden;
	}
	.down_arrow {
		margin: 5px auto 0;
	}
/*
	.checkout_header .tab {
		padding: 5px 3px;
	}
	.checkout_header .tab span {
		float: right;
	}
	.checkout_header [id^="checkoutStep"] p {
		display: none;
	}
	.checkout_header [id^="checkoutStep"] h2 {
		font-size: 12px;
		text-transform: uppercase;
	}
	.checkout_header {
		margin: 0 -5px;
	}
	.checkout_header [id^="checkoutStep"] {
		padding: 0 5px;
	}
	*/
	.general > .group {
		margin-top: 0;
	}
	.general > .group > .col {
		margin-top: 0;
	}
	.summary_price {
		display: table-cell;
  	width: 20%;
	}

	#checkout .productList li.col.span3 {
    width: 50%!important;
	}

	.productsListing .col {
		width: 50%;
	}

	.brandsListing .col {
		width: 50%;
	}

	.down_arrow {
		top: 5px;
	}
}










@media only screen and (max-device-width : 1024px) {

	.mainNavList .col {
		padding: 0;
		width: 100%;
	}





}



@media only screen and (min-device-width : 767px) and (max-device-width : 1024px) {



	.menuOpen #canvas {
		left: 35%;
	}

	.slideOutMenu {
		width: 35%;
	}

	.menuOpen .header {
		left: 35%;
	}

	.toggleMainNav, .toggleTabs {
		display: none;
	}

	.span2.sidebar {
		width: 25%;
	}

	.span10.content {
		width: 75%;
	}

	#checkout .col {
		width: 100%;
	}
	.summary_product {
		border-bottom: solid 1px #e2dfd0;
		padding-bottom: 10px;
	}
	#checkout .productList li.col.span3 {
    width: 25%!important;
	}
	.sidebar.open .pageNavList {
		display: block;
		background: #F5F4ED;
		padding: 5px 10px;
	}
	table.cart,
	table.cart td,
	table.cart td.price.number {
		font-size: 14px;
	}
	.cart a {
		font-size: 13px;
	}
	table.cart a,
	table.cart .total.number {
		font-weight: 400;
	}
	table.cart th {
		font-size: 16px;
	}

	.productsListing .col {
		width: 33.333333333333%;
	}

	.productsListing .span3:nth-of-type(2n+3) {
		clear: none;
	}
	.productsListing .span3:nth-of-type(3n+4) {
		clear: left;
	}


	.brandsListing .col {
		width: 33.333333333333%;
	}

	.brandsListing .span3:nth-of-type(2n+3) {
		clear: none;
	}
	.brandsListing .span3:nth-of-type(3n+4) {
		clear: left;
	}

	.group.productDetail {
		margin-top: 15px;
	}

	.productDetail .span8 {
		width: 66.666666666666%;
	}

	.productDetail .span1 {
		width: 8.333333333333%;
		margin-top: 5px;
	}

	.productDetail .span8 {
		width: 66.666666666666%;
	}

	.productDetail .span3 {
		width: 25%;
	}

	.productDetail .productThumbSlider {
		height: auto;
	}

}









@media (max-width: 1199px) {
	.summary_price {
		display: block;
		width: 100%;
	}
	.down_arrow {
		margin: 0 auto;
		top: 10px;
		display: none;
	}
}











/* FEEDBACK
*********************/


a#feedbackLabel {
	position:fixed;
	z-index:11;
	top:30%;
	right:0;
	width: 38px;
	height: 98px;
	display: none;
}

#feedbackContainer {
	position:fixed;
	display:none;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:500000000;
	background:rgba(0,0,0,0.5);
}

#feedbackBox {
	position:absolute;
	width:320px;
	left:50%;
	margin-left:-170px;
	padding:10px;
	font-size:14px;
	background:#F4DFD1;
	border-radius:2px;
	top:50%;
	margin-top:-220px;
	box-shadow:0 0 15px rgba(0,0,0,0.25);
	border:1px solid #ECB6A0;
}

#closeFeedback {
	position:absolute;
	display:block;
	width:16px;
	line-height:16px;
	text-align:center;
	top:5px;
	right:5px;
	color:#C14F21;
	text-decoration:none;
	background:#FCF3ED;
	border:1px solid #ECB6A0;
	border-radius:3px;
}

#feedbackBox form {
	background:#FCF3ED;
	border:1px solid #ECB6A0;
	padding:10px;
}

#feedbackBox .tabs a {
	display:inline-block;
	color:#C14F21;
	text-transform:uppercase;
	padding:5px 10px;
	text-decoration:none;
	border:1px solid transparent;
	border-bottom:0;
}

#feedbackBox .tabs {
	margin-bottom:-1px;
}

#feedbackBox .tabs a.sel {
	background:#FCF3ED;
	border-color:#ECB6A0;
}

#feedbackBox form div {
	margin-bottom:10px;
	padding-top:10px;
	border-top:1px solid #F4DFD1;
	overflow:auto;
}

#feedbackBox form div:first-child {
	border-top:none;
	padding-top:0;
}

#feedbackBox form div:last-child {
	text-align:center;
	margin-bottom:0;
}

#feedbackBox .rating label {
	float:left;
	vertical-align:top;
	width:20%;
	font-size:10px;
	margin:0;
	padding:0;
	text-align:center;
}

#feedbackBox .rating label input {
	margin:0;
	padding:0;
}

#feedbackBox form input.text, #feedbackBox form textarea {
	width:286px;
	padding:5px;
	border:1px solid #F4DFD1;
	background:white;
	font-family:inherit;
}

#feedbackBox form input.btn {
	display:inline-block;
	border:none;
	color:white;
	text-transform:uppercase;
	border-radius:3px;
	background:#EE6630;
	padding:5px 10px;
}

#feedbackBox form#report {
	display:none;
}






@media (min-width: 768px) {
	a#feedbackLabel {
		display: block;
	}
}







div#shortDescription {
	margin-bottom:15px;
}
.lev3 {
	overflow: hidden;
}
.lev3 a {
	display: block;
	width: 100%;
	overflow: hidden;
}
.lev3 .sub-menu {
	display: block;
	width: 100%;
	padding-left: 20px;
	overflow: hidden;
}
.lev3 .sub-menu a {
	position: relative;
	display: block;
	width: 100%;
	color: #72918b;
}
.lev3 .sub-menu a:after {
	content: "-";
	float: left;
	padding: 0 4px;
}






.gdLogin_wrap.reset {
	max-width: 100%;
	width: 100%;
}

div#usernameForgotLoginContainer{
	display: none;
}














@media (max-width: 1023px) {
	.lev3 a:before {
		display: none;
	}
	.lev3 {
		position: relative;
	}
	.lev3 a {
		color: #fff;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.subnav-toggle {
    color: #fff;
    cursor: pointer;
    float: right;
    line-height: 36px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 40px;
    font-size: 20px;
    font-weight: bold;
    opacity: 0.5;
    text-indent: 5px;
    visibility: visible;
    border-left: solid 1px #fff;
    border-right: solid 1px transparent;
	}
	.lev3 .sub-menu {
		display: none;
	}
	.lev3.open .sub-menu {
		display: block;
		background: #465852;
	}
	.mainNavList .lev3 .sub-menu li:last-child {
		margin-bottom: 0px;
	}

}

