* {
	box-sizing: border-box;	
}

*:focus {
	outline: none !important;
	outline-width: none;
    box-shadow: none;
}

html, body {
	font-size: 16px;
	font-family: "Red Hat Display", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 140%;
	-webkit-text-size-adjust: none;
}

.invisible {
	display: none !important;
}

.phone_screen {
	display: none;
}

.no_bottom_padding {
	padding-bottom: 0px !important;
}

#privacy_settings {
	display: none;
}

header {
	position: sticky;
	top: 0; 
	grid-area: header;
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	grid-template-areas: "logo nav tokens buttons";
	border-bottom: 0px solid #cecece;
	align-content: center;
	align-items: center;
	color: #9f9c9c;
	background-color: white;
	justify-self: center;
	width: 100%;
	z-index: 20;
	padding: 0px 30px;
	height: 55px;
}

header logo {
	display: grid;
	grid-area: logo;
	object-fit: contain;
	align-content: center;
	justify-self: start;
	max-height: 100%;
	color: #51bb7b;
}

header logo img {
	width: 300px;
	display: grid;
}

header nav {
	grid-area: nav;
	list-style-type: none;
	align-content: center;
	justify-self: start;
	justify-content: start;
    text-transform: uppercase;
}

.nav_mobile {
	display: none;
}

.menu_icon {
	display: none;
	grid-area: buttons;
	justify-self: center;
	align-self: center;
	padding: 0px 5px;
	cursor: pointer;
}

header nav li {
	display: inline-block;
	padding: 0 10px;
	font-size: 1em;
	font-weight: 490;
}

header .buttons {
	display: grid;
	grid-area: buttons;
	justify-self: end;
	justify-items: right;
	grid-template-columns: auto auto;
	align-content: center;
	column-gap: 10px;
}

header .tokens {
	display: flex;
	grid-area: tokens;
	align-content: center;
	justify-self: end;
	cursor: pointer;
	font-weight: 401;
}

header .tokens .icon {
	height: 30px;
}

header nav a {
	text-decoration: none;
	color: inherit;
	opacity: 0.6;
	transition: 0.3s;
}

header nav a button:active {
	opacity: 1;
}

header nav a {
	color: #000000;
}

header nav a.active, header nav a:hover {
	opacity: 1;
	color: #000000;
}  

header button:hover {
	opacity: 1;
}

header a button {
    color: #FFFFFF;
   	background-color: #2F2E7E;
	justify-self: left;
	font-size: 1em;
	margin: 5px 0px;
}

header button {
	font-family: "Red Hat Display", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	border: none;
    padding: 8px 25px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 1.25rem;
	height: fit-content;
}

.signup_button {
	background: linear-gradient(209deg, #2a9bd7 0%, #132092 100%);
	color: #FFFFFF;
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	opacity: 1;	
	transition: 0.3s;
	margin: 5px 0px;
	padding: 8px 25px;
}

.signup_button:hover {
	opacity: 1;
}

.account_button {
	justify-self: left;
	background: #132092;
	color: #FFFFFF;
	font-size: 1em;
	text-transform: uppercase;
	opacity: 1;
	transition: 0.3s;
}

.account_button:hover {
	opacity: 0.8;
}

.signout_button {
	background: #d7dbe5;
	color: #2f3236;
	font-size: 1em;
	text-transform: uppercase;
	opacity: 1;
	transition: 0.3s;
}

.signout_button:hover, .signup_button:hover {
	opacity: 0.8;
}

.signin_button:disabled {
	background-color: #DCDCDC;
	color: #666666;
	opacity: 1;
}

.signin_button {
	background: #132092;
	color: #FFFFFF;
	text-transform: uppercase;
	opacity: 1;
	transition: 0.3s;
}

.signin_button:hover {
	opacity: 0.8;
}

.signin_hero_button {
	width: fit-content;
	justify-self: center;
	background: linear-gradient(209deg, #2a9bd7 0%, #132092 100%);
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	opacity: 1;	
	transition: 0.3s;
	margin: 10px 0px;
}

.signin_hero_button:hover {
	opacity: 0.9 !important;
	transition: 0.3s !important;
}

.prefooter {
	align-self: end;
	--wp--preset--font-size--small: unset;
}

.footermenu {
	display: grid;
	grid-template-columns: repeat(3,1fr) auto;
	column-gap: 200px;
}

.footer_menu_items {
	display: grid;
	align-self: start;
	align-content: start;
}

.footercol {
	display: grid;
	width: 100%;
	justify-self: end;
	justify-content: start;
    justify-items: start;
	align-items: start;
	height: fit-content;
}

.footercol h2 {
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	line-height: 100%;
	color: black;
	margin: 0px;
	padding-top: 8px;
	padding-bottom: 10px;
}

.footercol3 {
	display: grid;
	background: url("/static/madeinusa.png") no-repeat;
	background-size: contain;
	width: 100px;
	min-height: 100%;
	justify-self: end;
	justify-content: start;
    justify-items: start;
	align-items: start;
	align-self: end;
}

footer {
	grid-area: footer;
	display: grid;
	width: 100%;
	justify-items: center;
	background: #e6e6e6;
	border-top: 1px solid #c7c7c7;
	box-shadow: inset 0px 2px 3px #c7c7c7;
	z-index: 2;
	min-height: 220px;
	padding-top: 10px;
}

.copyright {
	display: grid;
	justify-items: center;
	font-size: 14px;
	padding: 10px 0px 20px 0px;
	align-self: end;
	line-height: 100%;
	grid-row-gap: 10px;
}

footer a {
	color: #333333 !important;
	text-decoration: none;
	font-weight: 480;
	opacity: 1;
	line-height: 100%;
}

footer a:hover {
	opacity: 0.8;
}

footer a:visited {
	color: #595959 !important;
}

footer .footer_links {
	display: flex;
	column-gap: 20px;
	justify-content: center;
}

.navigate_mobile {
	display: none;
	justify-content: center;
	text-align: center;
	justify-self: center;
}
	
.navigate_full {
	display: inline;
	justify-content: center;
	justify-self: center;
	text-align: left;
	max-width: 600px;
}

.icon {
	height: 29px;
	justify-self: center;
}

.icon_hero {
	width: 80px;
	justify-self: center;
}

.icon_large {
	height: 120px;
	justify-self: center;
}

.element_holder {
	display: grid;
	grid-template-columns: auto auto;
	align-content: center;
	align-items: center;
	justify-content: center;
	grid-column-gap: 10px;	
	justify-self: center;
	padding-right: 10px;
}

.element_holder .icon {
	align-self: center;
	justify-self: center;
	color: white;
}

.element_holder .value {
	display: grid;
	align-content: center;
	justify-content: center;
	align-items: center;
	justify-items: center;
}

@media screen and (max-width: 1350px) {
	/* Header */
	header {
		padding-right: 10px;
		padding-left: 10px;
	}
	
	header logo img {
		width: auto;
		height: 25px;
	}
	
	header {
		width: 100%;
		height: 40px;
	}
	
	header a button, .signup_button {
		font-size: 12px;
		padding: 5px 10px;
	}
	
	.signin_hero_button {
		justify-self: center;
	}	

	.signup_start .signin_button, .signup_flow .next_button, .signup_flow .back_button {
		justify-self: end;
		font-size: 20px;
		text-transform: uppercase;
		margin: 25px 0px 10px 0px;
	}

	.navigate_mobile {
		display: inline;
		max-width: 80%;
	}
	
	.navigate_full {
		display: none;
	}
	
	footer {
		width: 100%;
	}
	
	.footermenu {
		column-gap: 30px;
	}
	
	.footercol {
		width: 100%;		
	}
			
	/* Header */
	
	header .tokens .icon {
		height: 20px;
	}
	
	header .tokens .element_holder {
		grid-column-gap: 5px;
	}
	
	header nav {
		display: none;
	}
	
	.menu_icon {
		display: grid;
		height: 18px;
		width: 35px;
	}
		
	ul.nav_mobile {
		position: fixed;
		display: none;
		width: 100%;
		z-index: 10;
		grid-template-columns: auto;
		justify-items: center;
		list-style-type: none;
		margin: 33px 0 0 0;
		padding: 20px 20px;
		font-size: 12px;
		grid-row-gap: 15px;
		background: #ffffff;
		border-top: 1px solid #ffffff;
		border-right: 1px solid #f3f3f3;
		border-bottom: 1px solid #f3f3f3;
		border-left: 1px solid #f3f3f3;
		border-radius: 0px 0px 6px 6px;
	}
	
	ul.nav_mobile.blog_menu {
		margin-top: 0px !important;
	}
	
	.nav_mobile button {
		width: 100%;
		margin: 0px;
	}
	
	.nav_mobile li {
		justify-items: center;
		width: 100%;		
		margin: 0px;
		border-bottom: 1px solid #f4f4f4;
		padding-bottom: 5px;
	}
	
	.nav_mobile li:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.nav_mobile a {
		opacity: 0.6;
		transition: 0.3s;
	    text-transform: uppercase;
		justify-self: center;
	}
	
	.nav_mobile a.menu_button {
		opacity: 1;
	}
	
	.nav_mobile a button:active {
		opacity:1;
	}
	
	.nav_mobile a {
		display: flex;
		justify-content: center;
		color: #000000;
	}
	
	.nav_mobile a.active, .nav_mobile a:hover {
		opacity: 1;
	}  
	
	header .buttons.signed_in {
		display: none !important;
	}		
}

@media screen and (max-width: 800px) {
	.navigate_mobile {
		max-width: 90%;
	}
	
	.not_phone_screen {
		display: none !important;
	}	
	
	.phone_screen {
		display: grid;
	}
}

@media screen and (max-width: 550px) {
	.icon {
		height: 20px !important;
	}
	
	.navigate_mobile {
		max-width: 100%;
	}
	
	.footermenu {
		padding-top: 20px;
		grid-column-gap: 20px;
	}
	
	.footermenu a {
		font-size: 12px;
	}
	
	.footermenu h2 {
		font-size: 14px;
	}
	
	.footercol3 {
		width: 50px;
		align-self: center;
	}	
}

@media screen and (max-width: 375px) {
	header logo img, .results_menu .logo {
		height: 16px;
	}
	
	.footercol3 {
		width: 40px;
		align-self: center;
	}
	
	.footermenu {
		grid-column-gap: 7px;
	}
	
}