/*********** PAGE ***********/
#toggleContainer {
	margin: auto;
	width: 100%;
	text-align: center;
}
html {
	height: 100%;
	width: 100%;
}
body {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.profileButton, .linkButton {
	color: white;
	text-decoration: none;
}
a {
	text-decoration: none;
}
.notesHolder a, .notesHolder a:visited, .productContentBox a, .productContentBox a:visited, .blogLayoutZone a, .blogLayoutZone a:visited, .blankDisplay a, .blankDisplay a:visited {
	color: white;
}
.dropbtn a:visited{
	color: black;
	text-decoration: none;
}
.hidden{
	display: none;
}

/* Fixes issue with unwanted white space above superscripts */
sup {
	line-height: 50%;
}
.menuBackDrop {
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	background-color: black;
	z-index: 101;
	opacity: .5;
}
.sectionTitle {
	font-size: 24pt;
	font-weight: 700;
	margin: 0 0 0 1%;
	text-transform: uppercase;
	display: none;
}

.sectionHrDivider {
	border: 0;
	height: 2pt;
	margin-top: 0;
	width: 100%;
	background-image: linear-gradient(to right, rgba(39, 79, 32, 0.75), rgba(39, 79, 32, 0.375), rgba(39, 79, 32, 0));
	display:none;
}
/*********** BREAD CRUMBS *********/
#breadCrumbContainer a {
	color: var(--primary-color);
}
#breadCrumbContainer {
	margin-left: 5%;
	margin-top: 10px;
	margin-bottom: 10px;
}
/*********** HEADER ***********/
#generalHeader {
	background-color:var(--secondary-color);
	color: white;
	display: flex;
	justify-content: center;
}
#profileHeader {
	display:flex;
	align-items: center;
	justify-content: space-between;
	padding: 5vmin 4vmin 5vmin 4vmin;
}
#generalContainer {
	display: flex;
	flex-direction: row;
	width: 95%;
	justify-content: space-between;
	height: 50px;
	align-items: center;
}
#profiles {
	height: 100%;
	display: flex;
}
#blackBarButtons {
	height: 100%;
	display: flex;
}
.profileButton {
	padding: 0 15px;
	display: flex;
	height: 100%;
	align-items: center;
	text-transform: uppercase;
	font-size: 14px;
}
.linkButton {
	padding: 0 15px;
	display: flex;
	height: 100%;
	align-items: center;
	font-size: 14px;
}
.selectedProfile {
	background-color: var(--primary-color);
}
header {
	position: fixed;
	width: 100%;
	top: 0;
	transition: top 0.3s ease-in-out;
	background: white;
	z-index: 100;
	display: flex;
	flex-direction: column;
}
.nav-up {
	top: -25%;
}
#logo {
	display: block;
	font-size: 0;
}
#smallLogo {
	display: none;
	font-size: 0;
}
.headerLogo {
	height: 50px;
	margin-bottom: -5px;
}
nav {
	display: flex;
	width: 100%;
}
.menuLinkHolder {
	display: flex;
	flex-grow: 1;
	margin: 0% 10% 0% 10%;
	transition: opacity 0.3s ease-in-out;
	align-items: center;
}
.dropdown {
	flex-grow: 1;
	position: relative;
}
.dropbtn {
	color: black;
}
.dropbtn  a {
	color: inherit;
	font-size: 13pt;
	cursor: pointer;
	padding: 1vmin;
	display: block;
	text-transform: uppercase;
	font-weight: 500;
}
.dropbtn a:not([href]) {
	cursor: default;
}
.dropdown-content {
	width: 100%;
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	z-index: 101;
	box-shadow: 0px 10px 10px 0px rgba(51,51,51,0.6);
}
.dropdown-content a {
	color: black;
	padding: 1vmin;
	display: block;
	font-size: 10pt;
	font-weight: 400;
	text-transform: capitalize;
}
.dropdown-content a:hover {
	background-color: #f1f1f1;
	font-weight: bold;
	text-decoration: underline;
}
.dropdown-content a:focus-within {
	background-color: #f1f1f1;
	font-weight: bold;
}
.dropdown-content span:hover {
	background-color: #f1f1f1;
	font-weight: bold;
}
.dropdown-content span:focus-within {
	background-color: #f1f1f1;
	font-weight: bold;
}
.dropdown:hover .dropdown-content {
	display: table;	
	white-space: nowrap;
}
.dropdown:focus-within .dropdown-content {
	display: table;
	white-space: nowrap;
}
.dropdown:hover .dropbtn{
	background-color: #f9f9f9;
	color: black;
}
.dropdown:focus-within .dropbtn {
	background-color: #f9f9f9;
	color: black;
}
.buttonLink {
	flex-grow: 1;
	text-align: center;
	z-index: 100;
}
.buttonLink a {
	color: white;
	text-decoration: none;
	background-color: #9b5d37;
	padding: 2vmin;
	white-space: nowrap;
	border: 2px outset #ad6b43;
	z-index: 100;
}
.buttonLink a:hover {
	cursor: pointer;
	background-color: #714528;
}
@keyframes openMainMenu {
	from {
		max-height: 0px;
	} to {
		max-height: 100%;
	}
}
@keyframes openSubMenu {
	from {
		right: 0%;
		opacity: 0;
	} to {
		right: calc(40% + 1px);
		opacity: 1;
	}
}
.openMainMenu {
	animation-name: openMainMenu;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
.openSubMenu {
	animation-name: openSubMenu;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.hamburgerIcon {
	display: none;
}
.arrow {
	border: solid black;
	margin-left: 1vmin;
	align-self: center;
	border-width: 0 .5vmin .5vmin 0;
	padding: .8vmin;
}
.rightArrow {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.leftArrow {
	transform: rotate(135deg);
	position: absolute;
	left: 1%;
	margin-right: 2vmin;
	-webkit-transform: rotate(135deg);
}
.searchHolder {
	height: 45px;
	width: 45px;
	position: relative;
}
/*********** CONTENT ***********/
.imgClickSpan{
	width: 100%;
	height: 100%;
	display: inline-block;
	position: absolute;
	left: 0;		
	top: 0;
}
.imageATag{
	width: 100%;
	height: 100%;
	display: inline-block;
}
.websiteContent {
	flex: 1 0 auto;
	width: 100%;
	min-height: 90vmin;
	margin: calc(95px + 12vmin) 0 0vmin 0;
}
.desc {
	font-size: 32pt;
	font-weight: bold;
}
img.elementIndexImg {
	width: 100%;
	flex-shrink: 0;
}
.cmsContainer{
	position: fixed;
	left: 2vmin;
	bottom: 2vmin;	
	display: flex;
	flex-direction: column;
	color: white;
	background-color: gray;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 1000;
	background: rgba(190,190,190,.65);
}
.widgetTitle{
	color: black;
	font-weight: 700;
}
.cmsLink{
	padding: .5vmin;
	background-color: #6d2a2a;
	border-radius: 5px;
	margin: 1vmin;
	cursor: pointer;
	color:white;
}
.cmsLinkDisplay{
	display:inline-block;
}
#custom_chat {
	box-shadow: 3px 3px 10px 0px rgba(51,51,51,0.6);
	right: 4.5vmin;
	position: fixed;
	z-index: 100;
	background-color: var(--primary-color);
	font-size: 18px;
	color: #fff;
	bottom: -100px;
	text-align: center;
	padding: 1vmin;
	cursor: pointer;
	border-color: #fff;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-radius: 10px;
	display: flex;
}
#chat_text {
	vertical-align: middle;
}
#chat_icon{
	vertical-align: middle;
}
#custom_chat:focus{
	background-color: rgb(71,143,71);
}
#livechat-compact-container {
	display: none;
}
.activeBackground {
	background-color: var(--primary-color);
}
.fullScreenView {
	display: none;
	position: absolute;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	z-index: 9999;
	background: rgba(50, 50, 50, 0.9);
}
.fullScreenImage {
	max-height: 100vh;
	max-width: 100%;
	min-width: 1px; /* Allows proper re-sizing in IE */
}
.fullScreenClose {
	position: absolute;
	top: 20px;
	right: 40px;
	padding: 5px;
	color: white;
	cursor: pointer;
	font-size: 16pt;
	font-weight: bold;
	background: rgba(50, 50, 50, .6);
	z-index: 1;
}
.fullScreenClose:hover {
	color: #e8e8e8;
}
.fullScreenHoverText {
	display: none;
	background-color: #757575;
	position: absolute;
	width: 100%;
	text-align: center;
	padding: 2px 0px;
	border-radius: 3px;
	color: white;
	left: 0;
	bottom: 0;
	transform: translateY(110%);
}
.fullScreenHoverText::after {
	content: " ";
	position: absolute;
	bottom: 95%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #757575 transparent;
}
.fullScreen:hover .fullScreenHoverText {
	display: inline;
}
#trackingId {
	display: none;
}

.sb-icon-search {
	margin-left: 100px;
}
/*********** NOTE CSS ***********/
.noteTypeTitle {
	font-size: 3em;
	text-align: center;
}
.noteTypeDesc {
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.notesHolder {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}
.noteBox {
	display: flex;
}
.noteImg {
	width: auto;
	position: relative;
}
.noteImg img {
	width: fit-content;
}
.invisible {
	visibility: hidden;
}

/*********** FOOTER ***********/
footer {
	width: 100%;
	bottom: 0;
	background: var(--secondary-color);
	color: white;
}

#logoSection {
	background: rgb(40,40,40);
	padding: 5vmin 0 5vmin 30vmin;
}

.footerBar {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	padding: 10vmin 0;
}
.footerLink {
	flex-grow: 1;
	font-size: 10pt;
	text-align: left;
	color: white;
	list-style-type: none;
	padding: 0;
	margin: 3vmin 0 0 0;
}
.footerLink a {
	color: white;
}
.footerLinkHeading {
	color: white;
	font-size: 12pt;
	text-transform: uppercase;
}
.footerLinkHeading:hover {
	text-decoration: underline;
}
.footerLinkHeading:not([href]) {
	cursor: default;
	text-decoration: none;
}
.footerLink a:hover {
	text-decoration: underline;
}
.footerLink button {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
}
.footerLink button:hover {
	text-decoration: underline;
}
.socialBar {
	margin-bottom: 4vmin;
	display: flex;
	justify-content: center;
}
.socialLink {
	font-size: 15pt;
	padding: 6px;
	border-radius: 30px;
}
.socialIcon {
	color: white;
}
.footerLogo {
	position: relative;
	display: inline;
	vertical-align: middle;
}
.copyrightNotice {
	position: relative;
	text-align: center;
	font-size: 11pt;
	background: rgb(40,40,40);
	display: inline;
	color: white;
	margin-left: 6vmin;
}
.mobileSpacer{
	display: none;
}

.footerColumns {
	margin: 0 2.5vmin;
}

.footerLink li {
	margin: 0 0 1vmin 0;
}


/*********** RESPONSIVE ***********/	
@media only screen and
	(min-width : 641px) and
	(max-width : 1366px)
{
	.footerLink {
		text-align:center;
	}
	.footerBar{
		flex-wrap:wrap;
	}
	#logo {
		display: none;
	}
	#smallLogo {
		display: block;
	}
	.dropbtn a {
		font-size: 12pt;
	}
	.dropdown-content a {
		font-size: 10pt;
	}
	.desc {
		font-size: 12pt;
	}
	.socialLink{
		font-size: 15pt;
		padding: 5px;
	}
	
	
	
	
	.footerBar {
		display: grid;
		grid-template-columns: 25% 25% 25% 25%;
		grid-template-rows: 80% 20%;
		text-align:center;
		display: -ms-grid;
		-ms-grid-columns: 25% 25% 25% 25%;
		-ms-grid-rows: 80% 20%;
		
	}
	
	.menuSupportAndResources {
		grid-column: 3/4; 
		grid-row: 1/2;
		-ms-grid-column: 3;
		-ms-grid-column-span: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		
	}
	
	.menuInspiration {
		grid-column: 2/3;
		grid-row: 1/2;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
	}
	
	.menuAbout {
		grid-column: 4/5;
		grid-row: 1/2;
		-ms-grid-column: 4;
		-ms-grid-column-span: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
	}
	
	.menuProducts {
		grid-column: 1/2;
		grid-row: 1/2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
	}
	
	.menuContactUs {
		grid-column: 3/4;
		grid-row: 2/3;
		-ms-grid-column: 3;
		-ms-grid-column-span: 1;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
	}
	
	.menuFollowUs {
		grid-column: 2/3;
		grid-row: 2/3;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
	}
	
	.autoMargin{
		margin: auto;
	}
	
	#logoSection {
		display: flex;
		justify-content: space-around;
		padding: 5vmin;
	} 
}
@media only screen and
	(min-width : 641px) and
	(max-width : 1024px)
{
	.menuLinkHolder {
		margin: 0% 3% 0% 3%;
	}
	.dropbtn a {
		font-size: 10pt;
	}
	.headerLogo{
		height: 35px;
	}
}
@media only screen and
	(min-width : 0) and
	(max-width : 640px){
	header{
		width: 100%;
		padding: 0vmin;
	}
	.linkButton {
		font-size: 12pt;
	}
	.menuLinkHolder {
		justify-content: flex-end;
	}
	.dropdown {
		display: none;
	}
	.hamburgerIcon {
		display: flex;
	}
	.menuLinkHolder {
		margin: 0 3%;
	}
	.headerLogo {
		height: 35px;
	}
	img.hamburgerImg {
		height: 35px;
	}
	.hamburgerMenu {
		top: calc(40px + 3vmin);
	}
	.hamburgerSubMenu {
		top: calc(40px + 3vmin);
	}
	.searchHolder {
		height: 35px;
		width: 35px;
	}
	.desc {
		font-size: 14pt;
	}
	.sectionTitle {
		font-size: 17pt;
	}
	.hamburgerLink, .hamburgerSubLink {
		font-size: 10pt;
	}
	
	.footerBar {
		display: grid;
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto auto auto;
		display: -ms-grid;
		-ms-grid-columns: 50% 50%;
		-ms-grid-rows: auto auto auto auto;
		text-align: center;
		
	}
	.footerLink{
		text-align: center;
	}
	
	.menuSupportAndResources {
		grid-column: 2/3; 
		grid-row: 1/3;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
	}
	
	.menuInspiration {
		grid-column: 1/2;
		grid-row: 1/2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
	}
	
	.menuAbout {
		grid-column: 1/2;
		grid-row: 2/3;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
	}
	
	.menuProducts {
		grid-column: 1/2;
		grid-row: 3/4;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
	}
	
	.menuContactUs {
		grid-column: 2/3;
		grid-row: 3/4;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
	}
	
	.menuFollowUs {
		grid-column: 1/3;
		grid-row: 4/5;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
	}
	

	
	.autoMargin{
		margin: auto;
	}
	
	#logoSection {
		display: flex;
		justify-content: space-around;
		padding: 5vmin;
	}
}
/* Specific media query to display hamburger menu on large mobile phones in landscape view */
@media only screen and
	(min-width : 641px) and
	(max-width : 850px) and
	(orientation : landscape)
{
	.menuLinkHolder {
		justify-content: flex-end;
	}
	.dropdown {
		display: none;
	}
	.hamburgerIcon {
		display: flex;
	}
	.menuLinkHolder {
		margin: 0 3%;
	}
}
@media only screen and (max-width: 850px) {
	#generalContainer {
		justify-content: center;
	}
	#profiles {
		display: none;
	}
}
@media only screen and
	(min-width : 0px) and
	(max-width : 1366px) and
	(orientation : portrait)
{
	.menuLinkHolder {
		justify-content: flex-end;
	}
	.dropdown {
		display: none;
	}
	.hamburgerIcon {
		display: flex;
	}
	.menuLinkHolder {
		margin: 0 3%;
	}
}
@media only screen and
	(min-width : 0px) and
	(max-width : 640px) and
	(orientation : portrait){
	.footerBar{
		padding-bottom: 20vmin;
	}
	.footerLinkHeading {
		font-size: 11pt;
		font-weight: 900;
	}
	.footerLink {
		font-size: 10pt;
		text-align: center;
	}
	.footerLink li {
		margin: 5% 0;
	}
	.footerLogo {
		height: 30px;
	}
	.copyrightNotice {
		font-size: 7pt;
	}
	.socialBar {
		margin-bottom: 8vmin;
	}
	.footerColumns{
		margin: 2vmin 2.5vmin;	
	}
	#chat_text,
	#chat_space {
		display: none;
	}
	#custom_chat{
		border-radius: 50%;
		font-size: 30px;
		padding: 10px;
	}
}
/*  Allows 'Interior' and 'Exterior' text to be centered over banners for Mastercraft. IE was blowing up and displaying a tags as double height. */
/* TODO: Remove once IE dies */
_:-ms-fullscreen, :root .twoColumnImage a { 
	height: 100%; 
	}
_:-ms-fullscreen, :root .descCentered{ 
	top: calc(50% - 22pt); 
	}