/*<meta conditions="1up-conditions.Plans" />*/

/* == Architecture styles for the Health Plan site and pages == */

html
{
	background: var(--white);
	scroll-behavior: smooth;
	height: 100%;
	margin: 0;
	box-sizing: border-box;
}

body
{
	color: var(--black);
	font-family: var(--body-font);
	mc-hyphenate: never;
	font-size: 16px;
	line-height: 1.5;
	height: 100%;
	margin: 0;
}

nav.title-bar
{
	padding: 10px 40px;
	line-height: inherit;
	display: block;
	min-height: 50px;
	max-height: 100px;
	background-color: var(--white);
	box-shadow: 1px 1px 3px var(--md-grey);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

header
{
	/* For the header element on the page that holds the logo and title */
	color: var(--dk-black);
	font-size: 1.9em;
	font-weight: 700;
}

header img
{
	/* Style for the header image */
	border: none;
	text-decoration: none;
	height: 70px;
	padding-right: 30px;
	vertical-align: middle;
}

.body-container
{
	/* Div for the main body container */
	flex: 1 1;
	padding-top: 0;
	padding-left: 0;
	background-color: var(--white);
	overflow: auto;
	scroll-behavior: smooth;
	transition: ease;
}

.central-dropdown
{
	/* Hides the MadCap Central log in option */
	display: none;
}

.left
{
	/* Div for the left navigation menu, which is fixed. */
	position: fixed;
	overflow: auto;
	width: 15%;
	top: 70px;
	min-width: 180px;
	padding: 10px 20px;
	margin: 0 30px 0 0;
	height: -webkit-fill-available;
	resize: horizontal;
	max-width: 375px;
	background-color: #f2f2f2;
	border-right: 3px solid #e6e6e6;
	border-image: linear-gradient(to bottom, #007980,#00bfbe,#afdce3,#fbbd97,#f15f27,#afbde1,#634da0) 1;
}

div.left div.sticky.sticky-menu
{
	margin-top: 10%;
	padding: 20px 0 0 0;
}

.right
{
	/* Div for the body content to make room at the right for the page menu box and at left for the left nav box */
	left: 20%;
	position: absolute;
	top: 12%;
	padding: 0px 340px 200px 30px;
}

.hidden
{
	/* Add this class to elements that need to be included in the output, but not shown */
	visibility: hidden;
}

input[type=search]:focus
{
	/* Specifies the border radius for the search box input highlighting */
	border-radius: 25px;
}

h5,
h6
{
	/* h5 and h6 are disabled in the stylesheet */
	mc-hidden: hidden;
}

div.footers
{
	width: 72%;
}

div.footers > div.footer-content > div:nth-child(2)
{
	/* Changes alignment for the copyright block in the plans builds */
	flex-grow: .5;
	vertical-align: middle;
	text-align: right;
	width: 50%;
	transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

ul.menu._Skins_page_menu.mc-component li > a:link
{
	color: var(--dk-grey);
}

ul.menu._Skins_page_menu.mc-component li > a.selected
{
	color: var(--link);
	font-weight: 700;
}

a:link:hover
{
	color: var(--hover);
	text-decoration-color: var(--hover);
}

.note
{
	background-repeat: no-repeat;
	background-position: 0px 30%;
	margin: 12px 5px 10px 10px;
	padding: 20px 10px 10px 65px;
	background-size: 40px;
	min-height: 55px;
	background-image: url(../Images/icons/note.svg);
}

@media only screen and (max-width: 1090px)
{
	.left
	{
		min-width: 80px;
	}

	.right
	{
		/* Div for the body content to make room at the right for the page menu box. Full width for mobile because the page menu box is hidden. */
		width: auto;
		padding: 10px 60px 260px 10px;
		left: calc(20% + 90px);
	}

	nav.title-bar
	{
		padding: 20px 0px 2px 0px;
	}

	.menu-box
	{
		display: none;
	}

	.footer
	{
		width: auto;
		text-align: center;
	}

	div.footers
	{
		width: 55%;
	}

	div.footers > div.footer-content
	{
		min-height: 30px;
		justify-content: center !important;
		width: auto;
	}

	div.footers > div.footer-content > div:nth-child(2)
	{
		/* Changes alignment for the copyright block in the plans builds */
		flex-grow: .5;
		vertical-align: middle;
		text-align: center;
		width: 50%;
		transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
	}

	header
	{
		font-size: 1.1em;
	}

	h1
	{
		font-size: 1.3em;
	}

	h2
	{
		font-size: 1.2em;
	}

	p
	{
		font-size: .9em;
		padding-top: 4px;
	}
}

