﻿/* Variables */
:root {
	--main-bg-color: #FFFFFF;
	--content-size: 1140px;
	--font-color: #000000;
	--primary-color: #E5ECF6;
	--secondary-color: #9DD1CF;
	--secondary-color-darker: #85b5b4;
	/*--third-color: #92bbd7;*/
	--third-color: #eec061;
	--fourth-color: #92bbd7;
	--fourth-color-darker: #7da7c4;
	--feature-color: #EBEBEB;
	--logo-blue: #539ccf;
	--logo-orange: #f6981e;
	--content-font-size: 18px;
	--header-font-family: Oxygen, "Open Sans", Sans-Serif;
	--header-font-size: 32px;
}

/*Sitewide*/
html {
	scroll-behavior: smooth;
}

body, #formWrapper {
	background-color: var(--main-bg-color);
	min-height: 100vh;
	min-width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* Aligns items to the start of the container */
	margin: 0;
}

#flexContainer {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}


* {
	font-size: var(--content-font-size);
	line-height: 1.6;
}

p {
	font-family: var(--content-font-family);
	color: var(--font-color);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

body a {
	font-family: var(--content-font-family);
	color: var(--logo-blue);
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--header-font-family);
	color: var(--font-color);
	margin: 0;
	padding: 0;
	line-height: 1.6;
	font-weight: bold;
}

#aspnetForm {
	max-width: 100% !important;
	overflow-x: hidden !important;
}

#MainContent h1, #TitleWrapper h1 {
	font-weight: bold;
	text-align: center;
	padding: 50px 0;
	margin-bottom: 50px;
	border-bottom: 5px solid var(--secondary-color);
	color: var(--font-color);
	font-size: var(--header-font-size);
}

#PageWrapper {
	margin: auto;
	max-width: var(--content-size);
	flex: 1;
	width:100%;
}

#MainContent {
	max-width: var(--content-size);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.splitContainer {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	width: var(--content-size);
}

.splitTitle {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: var(--content-size);
}

	.splitTitle img {
		height: 150px;
	}

	.splitTitle h1 {
		line-height: 1.6;
		margin-bottom: 0;
	}

.btn.btn-primary {
	background-color: var(--secondary-color);
	border: none;
	opacity: 1.0;
	width: auto;
	margin: 20px 0;
	color: #666;
	font-weight: bold;
	transition: 0.3s ease-in-out;
}

	.btn.btn-primary:hover, .btn.btn-primary:active {
		background-color: var(--secondary-color-darker);
	}

	.btn.btn-primary:focus {
		background-color: var(--secondary-color-darker);
		border-color: var(--secondary-color);
		box-shadow: 0 0 0 0.2rem var(--secondary-color);
	}
	
/*Navbar*/
.navButton {
	display: flex;
	width: 100%;
	justify-content: center;
}

#LoginStatusView {
	font-size: small;
	padding: 5px;
	text-align: left;
}

.navbar {
	width: 100%;
	background-color: var(--primary-color) !important;
}

a.navbar-brand {
	display: flex;
	margin-right: .5rem;
}

.navbar a {
	color: var(--font-color);
	font-weight: bold;
	font-size: 18px;
	opacity: 0.7;
	transition: .2s ease-in-out;
}

	.navbar a:hover {
		color: black;
		opacity: 1;
	}

.navbar-nav {
	align-items: center;
}

.mr-auto .nav-item {
	border-left: 1px solid rgba(0, 0, 0, .1);
}

#navLanguageDropdown {
	display: flex;
	align-items: center;
	padding: 5px;
}

#navLanguageDropdown i {
	padding: 0 5px;
}

#navAccountLinks a {
	padding: 15px;
}

i {
	padding: 0 5px;
}


/*.dropdown:hover > .dropdown-menu {
	display: block;
}*/

/*Homepage*/
.carousel img {
	max-width: 100%;
}

#HomepageTitle {
	background-color: var(--primary-color);
	font-weight: bold;
	font-size: var(--header-font-size);
	text-align: center;
	vertical-align: middle;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#HomepageTitle h1 {
	border-bottom: none;
	padding: 0;
	margin: 0;
}

.homepageCard.card {
	width: 330px;
	min-height: 500px;
	background-color: var(--primary-color);
	margin: 50px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 15px;
}

	.homepageCard.card .card-header {
		background-color: var(--secondary-color);
		text-align: center;
		font-size: var(--header-font-size);
		border-radius: 15px 15px 0 0;
	}

.homepageCard i {
	font-size: 100px;
	text-align: center;
	opacity: 0.7;
	padding: 40px 0 20px;
}

.homepageCard.card .card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	text-align: center;
	min-height: 350px;
}

	.homepageCard.card .card-body p.card-text {
		flex: 1;
		margin-top: 20px;
	}

.homepageCard .splitContainer {
	width: auto;
	flex-direction: row;
	flex-wrap: nowrap;
}

	.homepageCard .splitContainer div {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

.homepageCard:not(:first-child) {
	flex: 1;
	margin-left: 3rem;
}

#carouselExampleIndicators.carousel .carousel-item img {
	max-height: 500px;
	object-fit: cover;
	object-position: center;
}

/*Login*/
.loginCard {
	width: 450px;
	box-shadow: 3px 3px 5px #ccc;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
	padding: 30px;
}

	.loginCard h2 {
		margin-bottom: 2rem;
	}

	.loginCard .form-check {
		display: flex;
		align-items: center;
	}

		.loginCard .form-check input {
			align-items: center;
			margin-right: 5px;
		}

		.loginCard .form-check label {
			margin-bottom: 0;
		}

.nav-toggle .active {
	display: none;
}

/*Footer*/
#PageFooter {
	background-color: var(--secondary-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	text-align: center;
	padding-top: 50px;
	margin-top: 50px;
}

.footerLink {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.footerLink a {
	color: var(--font-color);
	font-size: 20px;
	padding: 10px;
	font-weight: bold;
	opacity: 0.6;
	transition: opacity .3s ease-in-out;
}

.footerLink a:hover {
	color: var(--font-color);
	text-decoration: none;
	opacity: 1.0;
}

#footerBottom {
	background-color: var(--secondary-color-darker);
	width: 100%;
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#footerBottom img {
	height: 80px;
	margin-bottom: 50px;
	margin: 10px;
	opacity: 0.6;
}

#NTRCLogo img{
	height: 110px;
	opacity: 1;
	margin-top: -10px;
}

#footerBottom p {
	opacity: 0.9;
	font-size: small;
	width: 90%;
}

/*Badges*/
.resourceDownloadSection {
	display: flex;
	align-items: center;
	justify-content: center;
}

.resourceDownloadSection a {
	width: auto;
	margin: 0;
}

.allBadges {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin: auto;
	max-width: var(--content-size);
}

.badgeSection {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	margin: auto;
	flex-wrap: wrap;
	padding: 50px 0 !important;
	border-bottom: 2px solid rgba(0,0,0, .3);
}

.EHDIPALScard {
	font-weight: bold;
}

.linkableCodeBlock {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 40px;
	background-color: #eee;
	overflow: auto;
	border-left: 6px solid #f6981e;
	max-height: 750px;
	min-width: 400px;
}

	.linkableCodeBlock pre {
		font-family: monospace;
		margin-bottom: 0;
		display: flex;
		align-items: center;
		font-size: 100%;
		flex: 1;
	}

	.linkableCodeBlock::-webkit-scrollbar {
		width: 12px;
	}

	.linkableCodeBlock div {
		display: flex;
		width: 100%;
		align-items: center;
	}

		.linkableCodeBlock div button {
			padding: 10px;
			transition: color .5s, background-color .5s;
			border: none;
			color: #111;
			font-size: 15px;
			font-weight: bold;
			letter-spacing: 1px;
		}

		.linkableCodeBlock div p {
			padding: 10px;
			flex: 1;
			margin: 0;
		}

/*Locate a Facility*/
.disclaimer {
	background-color: var(--feature-color);
	margin: 40px 0;
	padding: 20px;
	text-align: center;
}

	.disclaimer h5 {
		font-weight: bold;
	}

	.disclaimer div {
		text-align: left;
		margin: 20px;
		font-size: var(--content-font-size);
	}

.disclaimer2 {
	background-color: #549ad0;
	margin: 20px 0;
	padding: 15px;
}

.disclaimer2 span {
	font-size: 22px !important;
	text-align: center;
}

.disclaimer2 button {
	font-size: 22px !important;
	text-align: center;
}

.disclaimerbutton {
	background-color: #549ad0;
}

.checkB {
	margin: 10px;
}

	.checkB label {
		position: relative;
		margin-left: 10px;
	}

.bulletedList {
	font-family: var(--content-font-family);
	color: var(--font-color);
	line-height: 1.6;
	margin: 20px 0;
}

.bulletedLinks {
	font-family: var(--content-font-family);
	color: var(--font-color);
	line-height: 1.6;
	font-size: var(--content-font-size);
}

	.bulletedLinks li {
		font-size: var(--content-font-size);
		padding: 10px 0;
	}

.table.table-bordered td {
	padding: 1rem;
}

.facilityCard {
	margin-top: 10px;
	border: 2px solid #9DD1CF;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

	.facilityCard .facilityDetailsWrapper {
		flex: 0.6;
		display: flex;
		justify-content: center; 
	}

	.facilityCard input[type="checkbox"],
	.facilityCard label {
		cursor: pointer;
	}


	.facilityCard h4 {
		font-weight: bold;
		color: black;
		margin: 0 50px;
	}

	.smarttool_selector {
		flex: 0.1;
		padding: 10px 0px 10px 10px;
	}

		.smarttool_selector span {
			display: flex;
			flex-direction: row;
			align-items: center;
			justify-content: center;
		}

		.smarttool_selector label {
			margin-bottom: 3px;
		}

		.smarttool_selector input {
			margin: 10px;
		}

	.facilityCard .facilityDetails {
		padding: 25px 25px 25px 0px;
		text-align: center;
		max-width: 85%; 
	}

		.facilityCard .facilityDetails span:first-child {
			font-weight: bold;
		}

.FacilityHeader {
	background-color: var(--secondary-color);
	border: none;
	opacity: 1.0;
	width: auto;
	margin: 20px 0;
	color: #666;
	font-weight: bold;
	transition: 0.3s ease-in-out;
}

.imgApprovedStar {
	position: absolute;
	right: 18%;
	top: 35%;
	transform: translateY(-50%);
	max-width: 50px;
	max-height: 50px;
	vertical-align: middle;
}

.EHDIApprovedDescImg {
	max-width: 95px;
	max-height: 95px;
	margin-right: 2.5%;
}

.EHDIApprovedDescFlex {
	display: flex;
	align-items: center;
}

.ApprovedText {
	position: absolute;
	max-width: 120px;
	font-size: 17px;
	font-weight: bold;
	right: 13.5%;
	top: 53%;
}


/*Family Resources*/
.QandA {
}

	.QandA .card {
		border: none;
		border-radius: 0;
		border-left: 12px solid var(--secondary-color);
		margin-bottom: 30px;
		flex-basis: 100%;
	}

	.QandA .card2 {
		border: none;
		border-radius: 0;
		border-left: 12px solid var(--third-color);
		margin-bottom: 30px;
		flex-basis: 100%;
	}

		.QandA .card2 .card-body {
			padding-bottom: 5px !important;
		}

	.QandA .card3 {
		border: none;
		border-radius: 0;
		border-left: 12px solid var(--fourth-color);
		margin-bottom: 30px;
		flex-basis: 100%;
	}

.QandA .card-body {
	padding: 35px;
	background-color: var(--main-bg-color);
}

		.QandA .card-body div {
			padding: 25px 0;
		}

	.QandA .card-header {
		background-color: var(--feature-color);
	}

		.QandA .card-header button, .QandA .card-header a {
			font-weight: bold;
			font-size: 20px;
			color: var(--font-color);
			text-align: left;
			width: 90%;
			user-select: text;
		}

	.QandA .btn.btn-link i {
		font-size: var(--header-font-size);
		position: absolute;
		right: 25px;
		top: 22px;
		transition: 0.25s ease-in-out;
	}

	.QandA .btn.btn-link.collapsed i {
		transform: scaleY(-1);
	}

	.QandA p {
		margin: 1rem 0;
	}

	.QandA .link_description {
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: center;
		opacity: 1;
		margin-left: 30px;
	}

		.QandA .link_description a {
			font-weight: bold;
			padding-right: 20px;
			width: 30%;
			color: var(--logo-blue);
		}

		/*.QandA .link_description:only-child a:only-child {
			width: 100%;
		}*/
		
		.QandA .link_description p {
			width: 70%;
			margin-top: 0;
			margin-bottom: 0;
		}

		.QandA .link_description .hostname {
			font-size: calc(var(--content-font-size) - 2px);
		}

	.QandA ul {
		list-style: none;
		padding: 0;
	}

	.QandA li {
		margin-bottom: 1rem;
		list-style-position: outside;
		font-family: var(--content-font-family);
		color: var(--font-color);
		margin-left: 70px;
	}

		.QandA li i {
			color: var(--logo-orange);
			margin-left: -40px;
			padding-right: 24px;
			padding-left: 0;
		}


.returnButton {
	display: flex;
	justify-content: center;
	border-top: 1px solid lightgray;
	margin-top: 10px;
	padding-top: 10px;
}

	.returnButton i {
		margin-right: 10px;
	}


#glossary a {
	font-weight: bold;
	color: var(--logo-blue);
}

#glossary a span {
	line-height: initial;
}

#glossary.table tr td, #glossary.table tr th {
	padding: 20px;
}

#glossary.table tr td {
	width: 70%;
}


.cardGrid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.linkCard {
	display: flex;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 5px #888;
	transition: .3s ease-in-out;
	border-radius: 5px;
	text-align: center;
	margin: 25px;
	max-width: 250px;
}

	.linkCard:hover {
		box-shadow: 0px 1px 7px #444;
	}

		.linkCard:hover h3 {
			opacity: 1;
			text-decoration: underline;
		}

	.linkCard img {
		width: 100%;
		border-radius: 5px 5px 0 0;
	}

	.linkCard > div {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 25px;
		width: 100%;
		border-top: 10px solid var(--secondary-color);
	}

		.linkCard h3 {
			font-weight: bold;
			transition: .3s ease-in-out;
			font-size: 26px;
		}

		.linkCard p {
			margin-bottom: 0;
			margin-left: 20px;
		}

#carousel .carousel-item img {
	max-height: 500px;
	object-fit: none;
	object-position: center;
}


/*Professional Resources*/
.PRButton {
	background-color: var(--fourth-color);
	border: none;
	opacity: 1.0;
	width: auto;
	margin: 20px 0;
	color: #000;
	font-weight: bold;
	font-size: 0.8em;
	transition: 0.3s ease-in-out;
	position: relative;
	z-index: 1;
}

	.PRButton:hover, .PRButton:active {
		background-color: var(--fourth-color-darker) !important;
	}

	.PRButton:focus {
		background-color: var(--fourth-color-darker) !important;
		border-color: var(--fourth-color);
		box-shadow: 0 0 0 0.2rem var(--fourth-color);
	}

.PRDiv {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

	.PRDiv:hover {
		overflow: initial;
		white-space: initial;
		text-overflow: initial;
	}

	.PRDiv.PRContent1 {
		font-size-adjust: .6 !important;
		padding: 10px 25px 10px 25px !important;
		margin: -25px 0px 0px -35px !important;
	}

	.PRDiv.PRContent2 {
		font-size-adjust: .6 !important;
		padding: 10px 25px 10px 25px !important;
		margin: 0px 0px 0px -35px !important;
	}

	.PRDiv.PRContent3 {
		font-size-adjust: .6 !important;
		background-color: #e4e4e4ff !important;
		padding: 10px 25px 10px 25px !important;
		margin: 0px 0px 0px -35px !important;
	}

/*Legacy*/
.style1 {
	padding: 5px;
	text-align: justify;
}

.style1New {
	padding: 10px;
	text-align: justify;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	/*font-size: calc(.7vw + 8px); */
	font-size: 20px;
}

.style2 {
	text-decoration: underline;
	font-size: inherit;
}

.style3 {
	color: red;
}

.ResourceLink {
	font-size: var(--content-font-size);
	font-weight: bold;
}

.members_list li {
	line-height: 2.0;
	margin: 10px 0;
}


/*Modal Popup*/
.modalBackground {
	background-color: gray;
	filter: alpha(opacity=70);
	opacity: 0.7;
}

.modalPopup {
	background-color: #F6F7FC;
	border-color: #569FD2;
	border-style: solid;
	border-width: 3px;
	font-size: 10pt;
	height: 90px;
	padding: 10px;
	width: 420px;
}

/*Survey*/
table label {
	margin-bottom: 0;
}

.radio {
	background: url(images/sprite_checkmark_alpha.png);
	clear: left;
	cursor: pointer;
	display: block;
	float: left;
	height: 20px;
	padding: 0 0 0 0;
	width: 20px;
	margin: 10px;
}

.checkbox {
	background: url(images/sprite_checkmark_alpha.png) -40px 0px;
	background-repeat: no-repeat;
	clear: left;
	cursor: pointer;
	display: block;
	float: left;
	height: 20px;
	padding: 0 0 0 0;
	width: 20px;
	margin: 10px;
}

.qContent {
	margin-bottom: 8px;
	margin-left: 18px;
	margin-top: 0px;
}

label {
	font-family: tahoma;
	vertical-align: middle;
	margin-bottom: 0;
}

.input checkbox { vertical-align: middle; }

.SurveyLabel {
	color: Red;
	font-size: xx-large;
}

.HiddenReportContainer{
	/*visibility: hidden;*/
}

.hidden-row {
	display: none;
}

.MoreInfoContainer {
	display: flex;
}

div.MoreInfoText {
	flex: 1;
	float: left;
}

.MoreInfoImg {
	float: right;
	padding-left: 5px;
	width: 80%;
}

div.MoreInfoBlurb span {
	display: none;
	width: 575px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 7px;
	position: absolute;
	z-index: 1;
	margin-left: 33px;
}

div.MoreInfoBlurb:hover span {
	display: inline-block;
}

/*Survey Checklist*/
.ChecklistTable table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
}

.ChecklistTable table {
	margin: 10px;
}

.ChecklistTable td, .ChecklistTable th {
	border: 2px solid #dddddd;
	text-align: left;
	padding: 10px;
}

.SurveyCheckBoxes {
	/*background-color: #f4971f;
	color: white;*/
}

.ChecklistFooter p, .ChecklistFooter a {
	font-size: 10px;
}

/*Survey Progress Bar*/
.SurveyProgressBar {
	position: relative;
	width: 400px;
	height: 3em;
	background-color: transparent;
	border-radius: 1.5em;
	border: 4px solid black;
	color: black;
	margin-bottom: 25px;
	overflow: hidden;
}

.SurveyProgressBar::before {
	content: attr(data-label);
	display: flex;
	height: 100%;
	align-items: center;
	position: absolute;
	width: calc(var(--width, 0) * 1%);
	min-width: 2rem;
	border-radius: 0.5em;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	padding-top: 1px;
	z-index: 1;
	left: 0;
	background: linear-gradient(to right, darkgreen, lightgreen);
}

/*Progress bar*/
.ProgBar {
	color: #000000;
	font: bold x-small Arial, sans-serif;
	margin: 25px 15% 15px 15%;
	width: 70%;
}

.ProgBar TABLE { background: #CCCCCC; }

.ProgBar TD {
	border: 1px solid #CCCCCC;
	padding: 3px;
	vertical-align: middle;
}

.ProgBar TD.ProgTxt {
	background: #FFFFFF;
	margin: 0 3px 0 3px;
	padding: 3px 6px;
}

.BarArea {
	background: #CCCCCC;
	font-size: 12px;
	height: 10px;
	text-align: center;
}

.BarAreaText {
	position: relative;
	font-size: 18px;
	z-index: 1;
}

/*Warning message*/
.ValidErr {
	color: #CC0000;
	font: bold small Arial, sans-serif;
	margin: 0px 0 0px 0;
	text-decoration: none;
}

.ValidErr img {
	padding: 0 0 3px 2px;
	vertical-align: middle;
}

.ValidErrsum {
	background-image: url(images/icon_validation_error.gif);
	background-position: 252px 0px;
	background-repeat: no-repeat;
	color: #CC0000;
	font: bold small Arial, sans-serif;
	margin: 0px;
	text-decoration: none;
	width: 300px;
}

.ValidErr1 {
	color: #CC0000;
	font: bold small Arial, sans-serif;
	margin: 0px 0 0px 0;
	text-decoration: none;
}

.ValidErr1 img {
	padding: 5px 0 3px 2px;
	vertical-align: top;
}

.ValidErrsum1 {
	background-image: url(images/icon_validation_error.gif);
	background-position: 252px 0px;
	background-repeat: no-repeat;
	color: #CC0000;
	font: bold small Arial, sans-serif;
	margin: 0px;
	text-decoration: none;
	width: 300px;
}

abbr.noborder { border-bottom: 0; }

.RequiredMarker {
	color: #000000;
	float: left;
	font: bold x-large verdana;
	line-height: 1.0;
	text-align: center;
	width: 18px;
}

.qHeader {
	font-size: larger;
	font-weight: bold;
	padding-bottom: 0px;
	padding-top: 0px;
}

.pTitle {
	background: var(--feature-color);
	margin: 0px;
	padding: 10px;
	width: 100%;
}

/*Admin*/
input:read-only, textarea:read-only, select:read-only {
	background-color: #eee;
	border-color: #eee;
	color: #111;
}

	input:read-only:hover, textarea:read-only:hover, select:read-only:hover {
		cursor: default;
	}

.vertical_container {
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	align-self: center;
	height: 100%;
	min-height: 250px;
	text-align: center;
	position: relative;
}

	.vertical_container .label_container {
		display: flex;
		flex-direction: column;
		flex-grow: 1; 
		justify-content: space-between; 
	}

		.vertical_container .label_container .middle-container {
			display: flex;
			flex-direction: column;
			justify-content: center;
			flex-grow: 1;
			font-weight: normal !important;
		}

	.vertical_container span:first-child {
		font-weight: bold;
	}

	.vertical_container span:nth-child(2) {
		opacity: .9;
	}

	.vertical_container span:nth-child(4) {
		font-size: 16px;
	}

	.vertical_container a {
		font-weight: bold;
		margin: 10px 0;
	}

	.vertical_container .middle-container label,
	.vertical_container .middle-container span {
		font-weight: normal;
	}

	.vertical_container .label_container label,
	.vertical_container .label_container span {
		font-weight: normal;
	}




.pTitleR {
	background: var(--feature-color);
	border-color: var(--feature-color);
	border-style: solid;
	border-width: 1px;
	margin-top: 15px;
	padding: 10px;
	text-align: left;
	display: flex;
	align-items: center;
}

	.pTitleR img {
		margin: 2px 10px 0 10px;
	}

.pTitlehighlight {
	background: var(--feature-color);
	border-color: var(--feature-color);
	border-style: solid;
	margin-top: 15px;
	border-width: 1px;
	padding: 10px;
}

.FacilitiesProfileText {
	text-align: justify;
	padding: 25px;
}

#rawDataOptions {
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 5px solid var(--feature-color);
	padding: 25px;
}

#rawDataOptions label {
	margin-bottom: 0;
}

#rawDataOptions .checkbox, #rawDataOptions .radio {
	margin: 5px 10px;
}

#ctl00_cpMainContent_CheckBoxList1 td {
	padding: 10px;
}

	#ctl00_cpMainContent_CheckBoxList1 td span {
		display: flex;
		flex-direction: row;
		align-items: center;
	}

#ctl00_cpMainContent_CheckBoxList1 .checkbox {
	margin: 5px 10px;
}

#ctl00_cpMainContent_CheckBoxList1 label {
	margin-bottom: 0;
}

#divAccountTypeSelector {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 5px solid var(--feature-color);
	padding: 0 20px;
}

	#divAccountTypeSelector label {
		margin: 0;
	}

	#divAccountTypeSelector input {
		margin: 0 10px;
	}

.hover {
	background-color: #eee;
}

.SurveyTableAlterRow, .surveyw {
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0;
	margin-top: 7px;
	width: 100%;
}

.tdcss {
	border: 0px;
	padding-bottom: 3px;
	padding-top: 3px;
	text-align: left;
}

.even { background-color: #EEEEEE; }

.qOption {
	display: block;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	width: 20px;
}

#jqxgrid * {
	font-size: 13px;
}

.ui-dialog-titlebar-close {
	padding: 0 !important;
	width: 32px !important;
	height: 32px !important;
	background: none;
	border: none;
	margin: 0 !important;
	top: 24% !important;
}

	.ui-dialog-titlebar-close:after {
		content: '';
		width: 32px;
		height: 32px;
		display: inline-block;
		background-image: url(../Styles/Images/delete32.png);
		background-repeat: no-repeat;
	}

.otherbox {
	margin-left: 29px;
}

/*LT IE8 We can not click radio/checkbox label to change the "checked" status
so we will make the cursor back to default */

.surveyw label {
	cursor: pointer;
	padding-left: 10px;
	margin-bottom: 0;
}

.surveyw1, .surveyw2, .surveyw3, .surveyw4 {
	border: 0px;
	margin-top: 7px;
	width: 100%;
}

.surveyw1 label, .surveyw2 label, .surveyw3 label, .surveyw4 label { display: none; }

.surveyw1 td {
	padding-left: 22%;
	text-align: center;
	width: 50%;
}

.surveyw2 td {
	padding-left: 11%;
	text-align: center;
	width: 25%;
}

.surveyw3 td {
	padding-left: 5%;
	text-align: center;
	width: 14.285%;
}

.surveyw4 td {
	padding-left: 5%;
	text-align: center;
	width: 12.5%;
}

.ValidationSummary {
	background-color: #FEEFB3;
	background-position: 12px 50%;
	border: 2px solid #ffd324;
	color: #9F6000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	margin: auto;
	padding: 2px 5px 2px 5px;
	text-align: left;
	width: 70%;
}

.ValidationSummary ul li { padding-bottom: 1px; }

.gvTextBreak {
	white-space: pre-wrap; /* css-3 */
	white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	white-space: pre;
	white-space: -hp-pre-wrap; /* HP Printers */
	white-space: pre-line;
	word-break: break-all;
	word-wrap: break-word;
	word-wrap: break-word; /* Internet Explorer 5.5+ */
	display: flex;
	justify-content: center;
	align-items: center;
}

.tdEmail {
	white-space: pre-wrap; /* css-3 */
	white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 */
	white-space: -o-pre-wrap; /* Opera 7 */
	white-space: pre;
	white-space: -hp-pre-wrap; /* HP Printers */
	white-space: pre-line;
	width: 120px;
	word-break: break-all;
	word-wrap: break-word;
	word-wrap: break-word; /* Internet Explorer 5.5+ */
}


.watermarked {
	background-color: #F0F8FF;
	border: 1px solid #BEBEBE;
	color: gray;
	height: 20px;
	padding: 2px 0 0 2px;
	width: 150px;
}

/* table level rules */

.yui-grid {
	border: solid 1px #7f7f7f;
	border-collapse: collapse;
	font-family: arial;
	font-size: small;
}


/* header column rules */

.yui-grid th {
	background: url(Images/sprite.png) repeat-x 0px 0px;
	border-color: #989898 #cbcbcb #989898 #989898;
	border-style: solid solid solid none;
	border-width: 1px 1px 1px medium;
	color: #000;
	padding: 8px 1px 8px 1px;
	text-align: center;
	vertical-align: bottom;
	white-space: nowrap;
}

.yui-grid th a {
	display: block;
	font-weight: normal;
	font-weight: bold;
	padding-right: 12px;
	text-align: center;
	text-decoration: none;
}

/* change the background image when the column is being sorted by */

.yui-grid th.sortasc, .yui-grid th.sortdesc { background: url(Images/sprite.png) repeat-x 0px -100px; }

/* change image if it is an asc sort */

.yui-grid th.sortasc a { background: url(Images/dt-arrow-up.png) no-repeat right 50%; }

/* change image if it is a desc sort */

.yui-grid th.sortdesc a { background: url(Images/dt-arrow-dn.png) no-repeat right 50%; }


/* data cell and data row rules */

.yui-grid td {
	border: solid 1px #cbcbcb;
	padding: 2px 2px 2px 2px;
}

.yui-grid .altrow, .yui-grid .row .sort { background-color: #edf5ff; }

.yui-grid .altrow .sort { background-color: #dbeaff; }





/*Mobile*/
@media screen and (max-width: 1200px) {
	:root {
		--content-size: 912px;
		--header-font-size: 24px;
		--content-font-size: 18px;
	}

	.mr-auto .nav-item {
		border-left: none;
		padding: 5px 0;
	}

	.ml-auto .nav-item {
		padding: 5px 0;
	}

	.imgApprovedStar {
		right: 10%;
	}

	.ApprovedText {
		right: 4%;
		font-size: 16px;
	}
}

@media screen and (max-width: 912px) {
	:root {
		--content-size: 600px;
	}

	.splitTitle img {
		display: none;
	}

	.homepageCard.card {
		width: 276px;
		height: fit-content;
	}

	.homepageCard .splitContainer {
		flex-wrap: wrap;
	}

	#overviewTable {
		overflow-x: scroll;
	}

	.QandA .card-body {
		padding: 25px;
	}

	.PRDiv.PRContent1 {
		padding: 10px 25px 10px 25px !important;
		margin: -25px 0px 0px -25px !important;
	}

	.PRDiv.PRContent2 {
		padding: 10px 25px 10px 25px !important;
		margin: 0px 0px 0px -25px !important;
	}

	.PRDiv.PRContent3 {
		padding: 10px 25px 10px 25px !important;
		margin: 0px 0px 0px -25px !important;
	}

	.style1New{
		font-size: 16px;
	}

	.IndexDisplay {
		margin-left: 20px !important;
		padding-left: 0px;
		padding-right: 10px;
	}

	.smarttool_selector {
		flex: 0.1;
		margin-left: -50px;
	}

	.facilityCard .facilityDetails {
		flex: .85;
	}

	.imgApprovedStar {
		right: 3%;
		top: 50%;
	}

	.ApprovedText {
		visibility: hidden;
	}
}


@media screen and (max-width: 600px) {
	:root {
		--content-size: 85vw;
		--header-font-size: 24px;
		--content-font-size: 16px;
	}

	#HomepageTitle {
		width: 100vw;
		margin-left: -50vw;
		left: 50%;
	}

	#HomepageTitle .carousel-indicators,
	#HomepageTitle .carousel-control-prev,
	#HomepageTitle .carousel-control-next
	{
		display: none;
	}

	#HomepageTitle .splitTitle h1 {
		display: none;
	}

	.homepageCard.card {
		min-height: 450px;
		margin: 25px 0;
	}

	.homepageCard i {
		font-size: 75px;
	}

	.homepageCard.card .card-body {
		min-height: 0;
	}

		.homepageCard:not(:first-child) {
			flex: none;
			margin-left: 0;
		}
	
	.homepageCard.card .card-body h2 {
		font-size: var(--header-font-size);
	}

	.homepageCard .splitContainer {
		flex-wrap: wrap;
	}

	p {
		line-height: 1.8;
	}

	.loginCard {
		width: auto;
	}

	#carousel .carousel-item img {
		max-height: 250px;
		object-fit: cover;
		height: auto;
	}

	.QandA .card {
		border-left: none;
		border-top: 12px solid var(--secondary-color);
	}

		.QandA .card.PR {
			border-top: 12px solid var(--fourth-color);
		}

		.QandA .card.PR2 {
			border-top: 12px solid var(--third-color);
		}

	.QandA .card-body {
		padding: 15px;
	}

	.QandA p {
		text-align: justify;
	}

	.QandA .link_description {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		padding: 30px 0 !important;
		align-items: center;
		margin-left: 0;
	}

	.QandA .link_description p {
		width: 80%;
		text-align: center;
	}

	.QandA .link_description a {
		min-width: 300px;
		margin-bottom: 10px;
		width: 80%;
		text-align: center;
		padding-right: 0;
	}

	.facilityCard {
		flex-wrap: wrap;
	}

		.facilityCard h4 {
			width: 100%;
			text-align: center;
		}

		.facilityCard .facilityDetails {
			flex: 1;
			text-align: center;
			margin: 5px;
			padding: 5px;
		}

	.smarttool_selector {
		flex: .15;
		width: 100%;
		margin: 10px;
		margin-top: 50px;
		padding-top: 50px;
	}

	.imgApprovedStar {
		right: 75%;
		top: 20%;
	}

	.IndexDisplay {
		position: absolute;
		top: 40%;
		right: 20%;
	}

	#footerBottom img {
		height: 60px;
		margin-bottom: 30px;
	}

	.PRDiv.PRContent1 {
		padding: 10px 25px 10px 25px !important;
		margin: -25px 0px 0px -15px !important;
	}

	.PRDiv.PRContent2 {
		padding: 10px 25px 10px 25px !important;
		margin: 0px 0px 0px -15px !important;
	}

	.PRDiv.PRContent3 {
		padding: 10px 25px 10px 25px !important;
		margin: 0px 0px 0px -15px !important;
	}

	.style1New {
		font-size: 14px;
	}
}