<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#HomePageHeader-Container {
	width: 100%;
	float:left;
	border-top:1px solid #000000;
}

#HomePageHeader-MiddleContainer {
	width:100%;
	margin:0 auto;
	display:grid;
	/* Width of columns different widths 15% 15% 15% / if it is same with use repeat(5(no of columns),1fr) */
	grid-template-columns: 14% 22% 28% 22% 14%;
	/* Gap in between products */
	grid-column-gap: 0px;
	float:left;
	height: 110px;
}

#HomePageHeader-LogoContainer {
	grid-column-start: 3;

}

#HomePageHeader-LeftContainer {
	grid-column-start: 2;
	padding-top:40px;
}

#HomePageHeader-RightContainer {
	grid-column-start: 4;
}

.HomePageHeader-text {
	font-family:'Open Sans', sans-serif;
	font-size: 11px;
	color: #444444;
	font-weight: 600;
}

#RightOuter {
float:right;
text-align:right;
margin-top: 30px;
}

#CartIcon {
float:left;
margin-right:10px;
}

#CartButton {
float:left;
background-color: #191919;
width:130px;
height:37px;
font-size:14px;
font-weight:600;
color:#FFFFFF;
font-family: 'Open Sans', sans-serif;
text-align:center;
padding-top: 13px;
}

.HomePageHeader-Search{
	border: 1px solid #eeeeee;
	width: 140px;
	height: 48px;
	margin: auto;
margin-left: 10px;
float:left;
}

.HomePageHeader-SearchBox {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 11px;
	color: #BABABA;
	border:none;
	border-right:1px solid #EEEEEE;
	width: 100px;
    height: 45px;
text-transform: uppercase;
}

.HomePageHeader-SearchGraphic {
	float:right;
	margin: 15px 10px 0px 0px;
}

#HomePageHeader-NavContainer {
	width:100%;
	margin:0 auto;
	display:grid;
	/* Width of columns different widths 15% 15% 15% / if it is same with use repeat(5(no of columns),1fr) */
	grid-template-columns: 10% 80% 10%;
	/* Gap in between products */
	grid-column-gap: 0px;
	float:left;
background-color: #FFFFFF;
border-top: 1px solid #EEEEEE;
}

@media only screen and (max-width: 1440px) { 
#HomePageHeader-MiddleContainer {
	grid-template-columns: 2.5% 32.5% 30% 32.5% 2.5%;
}
#HomePageHeader-NavContainer {
grid-template-columns: 2.5% 95% 2.5%;
}

#CartButton {
width: 110px;
}
}

@media only screen and (max-width: 950px) { 
.HomePageHeader-Search{
	width: 100px;
margin-left: 5px;
}
#CartButton {
width: 90px;
}

.HomePageHeader-SearchBox {
	width: 60px;
}

.HomePageHeader-text {
	font-size: 10px;
}
}</pre></body></html>