/*<meta />*/

@import url('./Variables.css');

@import url('./Header.css');

@import url('./HomeFooter.css');

@import url('./General.css');

@import url('./Tiles.css');

@import url('../promo-bar.css');

/*== Home Page General Styles ==*/

h1
{
	font-size: var(--text-h1);
	line-height: var(--line-height-h1);
	color: var(--navy);
	letter-spacing: var(--letter-spacing-title-l);
}

h2
{
	font-size: var(--text-h2);
	line-height: var(--line-height-h2);
	color: var(--navy);
	letter-spacing: var(--letter-spacing-title-s);
}

h3
{
	font-size: var(--text-h3);
	line-height: var(--line-height-h3);
	font-weight: 700;
	color: var(--navy);
	letter-spacing: var(--letter-spacing-title-s);
}

h4
{
	font-size: var(--text-h6);
	line-height: var(--line-height-h6);
	font-weight: 700;
	color: var(--navy);
}

p
{
	margin-bottom: 8px;
	margin-top: 8px;
}

.container
{
	max-width: calc(var(--max-width) - 160px );
	margin: auto;
	padding: 0 var(--space-width);
}

.waffle-pattern-light
{
	background: #ffffff url("../../Images/Web/Header.svg") no-repeat bottom;
	background-size: cover;
}

.navy
{
	background-color: var(--navy);
}

.forest
{
	background-color: var(--forest);
}

.cloud
{
	background-color: var(--cloud);
}

.light-cloud
{
	background-color: var(--light-cloud);
}

.light-forest
{
	background-color: var(--light-forest);
}

.off-canvas-content,
.off-canvas-content
{
	box-shadow: none;
}

/*== Sidenav ==*/

.sidenav-wrapper
{
	display: none;
}

.sidenav-wrapper ul ul.is-accordion-submenu	/*Removes the bottom border of the parent element when open*/
{
	margin-top: -1px;
	border-top: 1px solid var(--light-cloud);
	position: relative;
}

/*== Home page masterpage styles ==*/

.inner-wrap .main-section > .outer-row
{
	padding: 0;
	/*Overrides padding set in the skin*/
}

.body-container
{
	padding: 0;
	/*Overrides padding set in the skin*/
}

/*==Hero styles==*/

.docs-hero-banner-container
{
	min-height: 300px;
	display: flex;
	align-items: center;
}

.docs-hero-banner-row
{
	display: flex;
	flex-grow: 1;
	align-items: center;
}

/*==Hero search==*/

.hero-search-container
{
	padding: 1.875rem;
	background-color: #fff;
	border-radius: var(--radius-m);
	border: 1px solid var(--cloud);
	box-shadow: var(--shadow-light-l);
	/*box-shadow: .625rem .625rem 1.25rem rgba(0, 0, 0, 0.1);*/
}

.hero-search-form
{
	position: relative;
	display: flex;
	margin-top: -.5rem;
	margin-right: -.875rem;
}

.hero-search-form :where(.hero-search-input-field):focus
{
	outline: 2px solid var(--lime);
	outline-offset: -2px;
	border-radius: var(--radius-s);
}

.hero-search-form:after
{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: .8125rem;
	height: 2px;
	background-color: var(--lime);
}

.hero-search-form:focus-within:after
{
	content: none;
}

.hero-search-input-wrap
{
	position: relative;
	width: calc(100% + .875rem);
}

.hero-search-input-field
{
	padding: 1rem .875rem;
	width: calc(100% + .875rem);
	border: 0;
	font-size: .875rem;
	background-color: transparent;
	transform: translate(-.875rem);
	line-height: 1;
}

.hero-search-container button
{
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .75rem;
	background-color: transparent !important;
	border: 0;
	border-radius: .5rem !important;
	cursor: pointer;
	box-shadow: none !important;
}

button.hero-search-input-clear
{
	display: none;
	position: absolute;
	top: 50%;
	right: 0;
	width: 2.5rem;
	transform: translateY(-50%);
}

.hero-search--show-clear .hero-search-input-clear
{
	display: flex;
}

.hero-search-container .icon
{
	width: 100%;
	height: auto;
}

/*== Home Page Footer ==*/

.height-container-sidenav	/*Makes the footer stay at the bottom of the page*/
{
	padding-bottom: unset;
}

@media only screen and (max-width: 1023px)
{
	/*==Hero styles==*/

	.docs-hero-banner-row
	{
		flex-direction: column;
		padding-bottom: var(--space-height);
	}

	/*==Visibility classes==*/

	.hide-for-medium,
	.hide-for-medium-only,
	.show-for-small-only,
	.show-for-large-only,
	.show-for-large
	{
		display: none !important;
	}
}

@media only screen and (max-width: 639px)
{
	h1
	{
		font-size: 2.4em;
	}

	h2
	{
		font-size: 1.2em;
	}

	div.topic-hero
	{
		text-align: center;
	}

	/*==Hero styles==*/

	.docs-hero-banner-container
	{
		min-height: 250px;
		display: flex;
		align-items: center;
	}

	/*==Visibility classes==*/

	.hide-for-small-only,
	.show-for-medium-only,
	.show-for-large-only,
	.show-for-medium,
	.show-for-large
	{
		display: none !important;
	}
}

