/*
* Purpose: 	provide 1 code base for universal css styles shared between applications with
* 			bootstrap deployed and those without bootstrap deployed using flex-box to establish grid standards
*/


/*
* ====================>CSS VARIABLES for future use<====================
* IMPORTANT NOTE: At this time (12/11/2018) CSS Variables are still not supported by Internet Explorer but Microsoft is in the
* process of replacing Edge with a new browser that is Chromium based and may be looking to abandon Internet Explorer.
* Also 30% of our active ClaimConnect users (past 6 months) are still using Internet Explorer.
*/
:root {
	--primary-border-thickness: 1.45px;
	
	/*colors*/
	--ui-darkest-blue: #3D5872;
	--ui-dark-blue: #1960A8;
	--ui-light-blue: #3498DB;
	--ui-lighter-blue: #B3D8F2;
	--ui-dark-gray: #808080;
	--ui-light-orange: #E23F0C;
	--ui-light-green: #41AE42;
}

/*
* ====================>ALL APP CLASSES<====================
*/
html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background: #ffffff;
}


/*
* ====================>MULTI-PURPOSE HELPER CLASSES<====================
*/

#header.headerBackgroundColor {
	background-color: #0071f2;
}

/*
* =====>CONTENT TEMPLATE<=====
* provides elements access to the flex-box grid system for positioning it's own sub-elements
* prescribes 1 centralized width setting for all content across the site
* prescribes consistent centering of all content across the site
* recycle these classes across higher level content elements to grant flex-box gridding to adjacent elements
* IMPORTANT: couple with helper classes to use other flex-box parent attributes
*/
.universalContentTemplate {
	font-family: "Open Sans", "Titillium Web", Geneva, Sans-Serif !important;
	font-size: 1rem;
	margin-left: auto;
	margin-right: auto;
	width: 992px;
}

.universalContentTemplateHeader {
	width: 100%;
}

.secondaryFont {
	font-family: "Libre Baskerville", Serif;
}

/* replaces #leftcol */
.universalFlexRow .universalLeftColumn {
	width: 227px;
}

/* replaces #centercol = .universalContentTemplate width - .universalLeftElement width */
.universalFlexRow .universalRightColumn {	
	margin-left: auto;
	width: 765px;
}

.appsTemplate {
	margin-bottom: 5rem;
	margin-top: 2rem;
}

.universalFlexColumn {
	display: flex;
	flex-direction: column;
}

.universalFlexRow {
	display: flex;
	flex-direction: row;
}

.universalColumns {
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.universalColumns .twoColumns {
	flex: 0 1 46%;
	margin-bottom: 1rem;
}

.universalColumns .twoColumnsLargeRight:nth-child(1) {
	flex: 0 1 29%;
	margin-bottom: 1rem;
}

.universalColumns .twoColumnsLargeRight:nth-child(2) {
	flex: 0 2 67%;
	margin-bottom: 1rem;
}

.universalColumns .twoColumnsLargeLeft:nth-child(2) {
	flex: 0 1 29%;
	margin-bottom: 1rem;
}

.universalColumns .twoColumnsLargeLeft:nth-child(1) {
	flex: 0 2 67%;
	margin-bottom: 1rem;
}

.universalColumns .threeColumns {
	flex: 0 1 29%;
	margin-bottom: 1rem;
}

.universalColumns .threeColumnsLargeLeft:nth-child(1) {
	align-self: center;
	flex: 0 1 47%;
}

.universalColumns .threeColumnsLargeLeft {
	flex: 0 1 20%;
}

.universalColumns .fourColumns {
	flex: 0 1 20%;
	margin-bottom: 1rem;
}

.universalColumns .fiveColumns {
	flex: 0 1 17%;
	margin-bottom: 1rem;
}

.universalColumns .sixColumns {
	flex: 0 1 15%;
	margin-bottom: 1rem;
}

.universalColumns .centerSelfVertical {
	align-self: center;	
}

.universalFlexRow .flexRowPulledRight,
#columns .universalFlexRow .flexRowPulledRight {
	margin-left: auto;
}

.universalFlexRow .flexRowPulledLeft,
#columns .universalFlexRow .flexRowPulledLeft {
	margin-right: auto;
}

.universalFlexColumn .flexColumnPulledDown, 
#columns .universalFlexColumn .flexColumnPulledDown {
	margin-top: auto;
}

.universalFlexColumn .flexColumnPulledUp, 
#columns .universalFlexColumn .flexColumnPulledUp {
	margin-bottom: auto;
}

.flexCenter {
	justify-content: center;
	align-items: center;
	align-content: center;
}

.universalFlexRow .flexLeft {
	justify-content: flex-start;
}

.universalFlexRow .flexRight {
	justify-content: flex-end;
}

.flexImage {
	flex-basis: 20%;
	text-align: center;
}

.flexWrap {
	flex-wrap: wrap;
}

.columnBtn {
	align-self: center;
	height: 50px;
	margin-top: auto;
}



/*
* =====>BOOTSTRAP 3 CLASSES<======
* bootstrap is not available prelogin
* provides copies of some bootstrap classes for use prelogin
*/
.universalContentTemplate .bg-warning {
	background-color: #FCF8E3;
	border-radius: 15px;
	padding: 15px;
}

.universalContentTemplate .bs-callout {
	padding: 20px;
	margin-bottom: 3rem;
	border: 1px solid #EEE;
	border-left-width: 5px;
	border-radius: 3px;
}

.universalContentTemplate .bs-callout-warning {
	border-left-color: #aa6708;
}

.universalContentTemplate .bs-callout h4 {
	border-top: none;
	margin-top: 0;
	margin-bottom: 5px;
}

.universalContentTemplate .bs-callout-warning h4 {
	color: #aa6708;
}

/*
* =====>TEXT HELPER CLASSES<=====
* provides a centralized location for text helper classes including font-sizes, etc.
*/
.largerFont, .mainContent p.largerFont {
	font-size: 2rem;
	line-height: 2.12rem;
}

.mainContent p.largerFont.moreMargin {
	margin: 0 0 2.5rem 0;
}

.largeFont, .mainContent p.largeFont {
	font-size: 1.67rem;
	line-height: 2rem;
}

.mainContent p.largeFont.moreMargin {
	margin: 0 0 2.5rem 0;
}

/*
* =====>AFFECT HELPER CLASSES<=====
* provides a centralized location for special affect changes including underlines, etc.
*/
.underline {
	text-decoration: underline;
}

.flipHorizontal {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.hide {
	display:none;
}

/*
* =====>COLOR HELPER CLASSES<=====
* provides a centralized location for color elements including fonts, underlines, overlines, etc.
*/

/*
* UI DARKEST BLUE #3D5872
*/
.uiDarkestBlueTxt {
	color: #3D5872;
}

/*
* UI DARK BLUE #1960A8
*/
.uiDarkBlueTxt {
	color: #1960A8;
}

/*
* UI DARK GRAY #E3E5E8
*/
.uiDarkGrayTxt {
	color: #E3E5E8;
}

/*
* UI DARKEST GRAY #555658
*/
.uiDarkestGrayTxt {
	color: #555658;
}

/*
* UI LIGHT BLUE #3498DB
*/
.uiLightBlueTxt {
	color: #3498DB;
}

/*
* UI LIGHT GRAY #AFAFAF
*/
.uiLightGrayTxt {
	color: #AFAFAF;
}

/*
* UI LIGHTER BLUE #B3D8F2
*/
.uiLighterBlueTxt {
	color: #B3D8F2;
}

/*
* UI LIGHT GREEN #41AE42
*/
.uiLightGreenTxt {
	color: #41AE42;
}

/*
* UI LIGHT ORANGE #E23F0C
*/
.uiLightOrangeTxt {
	color: #E23F0C;
}

/*
* PAYCONNECT GREEN #058011
*/
.pfsGreenTxt {
	color: #058011;
}


/*
* =====>FEATUREBOX ELEMENT CLASSES<=====
* provides a centralized location for sizing elements
*/
.mainContent a.featureBox, .mainContent a.featureBox:hover {
	color: inherit;
	text-decoration: none;
}

.featureBoxSpacer {
	padding: 1rem;
}

.featureBox {
	border: 1.45px solid #B1B2B4;
	border-radius: 15px 15px 3px 30px;
	padding: 1rem 1rem 2rem 1rem;
	position: relative;
}

.featureBoxSelfSized {
	box-sizing: border-box;
	height: 100%;
	padding: 1rem;
}

.featureBox50 {
	height: 50px;
}

.featureBox75 {
	height: 75px;
}

.featureBox100 {
	height: 100px;	
}

.featureBox150 {
	height: 150px;
}

.featureBox175 {
	height: 175px;
}

.featureBox200 {
	height: 200px;
}

.featureBox225 {
	height: 225px;
}

.featureBox250 {
	height: 250px;
}

.featureBox275 {
	height: 275px;
}

.featureBox300 {
	height: 300px;
}

.featureBox325 {
	height: 325px;
}

.featureBox350 {
	height: 350px;
}

.featureBox375 {
	height: 375px;
}

.featureBox400 {
	height: 400px;
}

.featureBox450 {
	height: 450px;
}

.featureBox500 {
	height: 500px;
}

.featureBox550 {
	height: 550px;
}

.featureBox600 {
	height: 600px;
}

.featureBox650 {
	height: 650px;
}

.featureBox700 {
	height: 700px;
}

.featureBox a {
	text-align: center;
}

.featureBoxFill {
	background-image: linear-gradient(to bottom right, #EDEFF1, #FBFCFC);
	border: none;
}

.featureBtn:hover, .featureLoginBtn:hover, .featureInfoBtn:hover, .featureRegLoginBtn:hover,
.featureCallbackBtn:hover {
	/*background-image: linear-gradient(to bottom right, #3498DB, #FFF);*/
	border: 1.45px solid #3498DB;
	/*box-shadow: inset 1px 1px 7px 0 #AFAFAF;*/
	/*color: #3498DB;*/
	/*border-radius: 0 100% 0 0;*/
	/*background-color: rgba(52, 152, 219, 0.25);*/
}

.featureBtn:hover::after, .featureLoginBtn:hover::after, .featureInfoBtn:hover::after, .featureRegLoginBtn::after,
.featureCallbackBtn::after {
	bottom: 1rem;
	font-weight: 800;
	position: absolute;
}

.featureBtn:hover::after {
	content: 'Learn More';
}

.featureInfoBtn:hover::after {
	content: 'Request Info';
}

.featureCallbackBtn:hover::after {
	content: 'Request Callback';
}

.featureLoginBtn:hover::after {
	content: '\f2f6 \ Log In';
	float: left;
	font-family: 'Font Awesome 5 Free', 'Open Sans';
	font-weight: 900;
	padding-right: 0.15rem;
}

.featureRegLoginBtn:hover::after {
	content: 'Enter Login Information';
	font-size: 0.85rem;
}

.featureImg img {
	height: auto;
	width: 50%;
}


/*
* =====>MORE INFO FLY OUTS<=====
* provides a centralized location for more info fly out styling
*/
.mainContent div.existingCustomerMoreInfo {
	position: relative;
}

.mainContent a.moreInfoFlyOut {
	text-decoration: none;
}

.mainContent div.moreInfoFlyOut {
	background-color: #F1F2F3;
	border-radius: 12px 5px 12px 5px;
	box-shadow: 3px 4px 4px 0 #787979;
	display: none;
	height: auto;
	padding: 1rem;
	position: absolute;
	right: 25px;
	top: 1.75rem;
	width: 350px;
	z-index: 2;
}

.mainContent div.activeInfo {
	display: block;
}

/*
* =====>BUTTON CLASSES<=====
* provides a centralized location for button styling
*/
.universalBtn {
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	margin-bottom: 0;
	padding: 12px;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 0.1s ease-in-out 0s;
	vertical-align: middle;
	white-space: nowrap
}

.universalBtn.btnPrimary,
#columns .universalBtn.btnPrimary {
	background-color: #1960A8;
	border: 1px solid #165493;
	color: #ffffff;
}

.universalBtn.btnPrimary:hover,
#columns .universalBtn.btnPrimary:hover {
	color: #ffffff;
	background-color: #0D3054;
	border: 1.25px solid #09243F;
}

.universalBtn.btnGhost,
#columns .universalBtn.btnGhost {
	background-color: transparent;
	border: 1.25px solid #1960A8;
	color: #165493;
}

.universalBtn.btnGhost:hover,
#columns .universalBtn.btnGhost:hover {
	background-color: #1960A8;
	border: 1.25px solid #165493;
	color: #ffffff;
}

.universalBtn.btnDisabled,
#columns .universalBtn.btnDisabled {
	background-color: #E3E5E8;
	border: 1.25px solid #B1B2B4;
	color: #8C8C8D;
	opacity: 0.5;
}

.universalBtn.btnDisabled:hover,
#columns .universalBtn.btnDisabled:hover {
	cursor: not-allowed;
}

.universalBtn span.appleLogo::before {
	content: '\f179';
	font-family: FontAwesome,'Font Awesome 5 Brands';
}

.universalBtn span.appStoreLogo::before {
	content: '\f36f';
	font-family: FontAwesome,'Font Awesome 5 Brands';
}

.universalBtn span.googlePlayLogo::before {
	content: '\f3ab';
	font-family: FontAwesome,'Font Awesome 5 Brands';
}

.universalBtn span.windowsLogo::before {
	content: '\f17a';
	font-family: FontAwesome,'Font Awesome 5 Brands';
}

div.snapshotDCI .universalBtn span.appStoreLogo::before,
div.snapshotDCI .universalBtn span.googlePlayLogo::before {
	content: '';
}

span.arrowCircleLeft::before {
	content: '\f0a8';
	font-family: FontAwesome,'Font Awesome 5 Free';
}

span.arrowCircleLeft.AF5::before {
	font-weight: 900;
}

span.arrowCircleRight::before {
	content: '\f0a9';
	font-family: FontAwesome, 'Font Awesome 5 Free';
}

span.arrowCircleRight.AF5::before {
	font-weight: 900;
}

span.dashboardIcon.AF4::before {
	content: '\f0e4';
	font-family: FontAwesome;
}

span.externalLink.AF4::before {
	content: '\f08e';
	font-family: FontAwesome;
}

span.externalLink.AF5::before {
	content: '\f35d';
	font-family: 'Font Awesome 5 Free';
}

span.homeIcon::before {
	content: '\f015';
	font-family: FontAwesome, 'Font Awesome 5 Free';
}

span.homeIcon.AF5::before {
	font-weight: 900;
}

span.signIn.AF4::before {	
	content: '\f090';
	font-family: FontAwesome;
}

span.signIn.AF5::before {	
	content: '\f2f6';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}



/*
* =====>LIST HELPER CLASSES<=====
*/
ul.default,
ol.default {
	display: block;
	margin-top: 1rem;
	margin-bottom: 1rem;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}

ul.default {
	list-style-type: disc;
}

ol.default {
	list-style-type: decimal;
}

ul.default li,
ol.default li {
	display: list-item;
}

ul.default li {
	list-style: disc;
	margin-left: 0;
}

ol.default li {
	list-style: decimal;
}

ul.listLink,
ol.listlink {
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0.5rem;
	padding: 0;	
}

ul.listLink li,
ol.listlink li {
	list-style: none;
	padding-bottom: 0.25rem;
	margin-left: 0;
}

ul.listLink li a,
ol.listLink li a {
	font-weight: inherit;
}

li.pointWithSubs {
	border-bottom: 1.745px solid #B1B2B4;	
}

ul.subPoints li,
ol.subPoints li {
	margin-left: 60px;
}

ul.subPointsL2 li,
ol.subPointsL2 li  {
	margin-left: 100px;
}


/*
* =====>ERROR PAGE HELPER CLASSES<=====
*/
#centercol h1.postloginErrorTitle,
#centercol h2.postloginErrorTitle {
	color: #000000;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}

#centercol h1.postloginErrorTitle {
	line-height: normal;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

#centercol .sections .section {
	font-weight: inherit;
	color: #000000;
	background-color: inherit;
	white-space: normal;
	padding-top: 0;
	padding-bottom: 0;
}

/*
* =====>SNAPPER CLASSES<=====
*/
.snapperFeature {
	margin-bottom: -10px;
	position: relative;
}

.snapperFeature.left {
	margin-left: 60px;
}

.snapperFeature.left img {
	-webkit-transform: scaleX(-1);
	transofrm: scaleX(-1);
}

.snapperFeature.right {
	margin-right: 60px;
	text-align: right;
}

.snapperFeature img {
	height: 90px;
	width: auto;
}

.snapperFeatureVW img {
	height: 300px;
	width: auto;
}

.snapperInFeatureBox img {
	float: right;
	height: 175px;
	margin-right: 20px;
	margin-top: -100px;
	width: auto;
}

h2.snapperPerch.pageTitle, .snapperPerch {
	border-top: 1.45px solid #B1B2B4;
	padding-top: 1rem;
}

.snapperHandy {
	height: 250px;
	width: auto;
}


/*
* =====>SPECIAL MARKETING RELATED CLASSES<=====
*/
.marketingAdvertisement, .freeAdvertisement {
	background-color: #3498db;
	background-image: linear-gradient(to bottom right, #215F89, #3498db);
	box-shadow: 1px 1px 4px 0 #CCC;
	color: #FFF;
}

.marketingAdvertisement {
	border-radius: 15px 30px 7px 30px;
	padding: 15px 20px;
	width: 95%;
}

.freeAdvertisement {
	border-radius: 50%;
	height: 5rem;
	padding: 10px;
	text-align: center;
	width: 5rem;
}

.mainContent .marketingAdvertisement h5, .mainContent .freeAdvertisement h5 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px #1960a8;
	text-transform: uppercase;
	width: 95%;
}

.mainContent .marketingAdvertisement p, .mainContent .freeAdvertisement p {
	width: 95%;
}



/*
* ====================>DXC PAGE LOCATION - TOP NAVIGATION AREA<====================
*/


/*
* =====>GRAY BAND BENEATH MAIN NAVIGATION<=====
* provides a gray band across the top of the page under the navigation elements above the blue band for contrast
*/
.navGrayBand {
	background-color: #FFFFFF;
	box-shadow: 0 1px 0 0 #AFAFAF;
	height: 88px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	z-index: 2;
}


/*
* =====>MAIN NAVIGATION<=====
* provides grid styling between the .topNavLoginElement and the .universalMenuElement
*/
.mainNavElement {
	justify-content: flex-start;
}

.mainNavElementHeader {
	justify-content: space-between;
	max-width: 100%;
	padding-inline: 2%;
}


/*
* =====>TOP NAV LOGO ELEMENT<=====
* provides grid styling for the left top navigation logo, login and sign up buttons
*/
.topNavLoginElement {					
	align-self: flex-start;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #FFFFFF;				
	height: 118px; /* should always match commonx.css #header */
}

div.logoElement {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 50px; /* should always match .navGrayBand + padding-top */
	padding: 16px 8px 0 8px;
}

.logoElement .logoImage {
	height: 55px;
	width: 132px;
	margin-top: -5px;
}

.navSeparatorElement::after {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #FFF;
	content: '|';
	font-size: 1rem;
	width: 6px;
}

.loginOrSignUpButtonsElement {
	align-self: center;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	font-size: 0.8125rem;
	/*font-weight: 500;*/
	justify-content: center;
	margin-bottom: 4px;
	margin-top: 24px;
	padding-right: 36px;
	text-align: center;
	text-transform: uppercase;
}

.loginOrSignUpButtonsElement a {
	align-self: center;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #FFFFFF;
	/*font-weight: 500;*/
	text-decoration: none;
	width: 75px;
}

.loginOrSignUpButtonsElement a span {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	text-align: center;
}

.loginOrSignUpButtonsElement a:hover, .loginOrSignUpButtonsElement a.active {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #FFFFFF;
	/*font-weight: 500;*/
	text-decoration: none;
}


/*
* =====>MENU<=====
* provides grid styling for the right navigation links both in the .navGrayBand and below it
*/
.universalMenuElement {				
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 34.25px;
	margin-bottom: 23.75px;
}

.universalMenuElement ul li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	margin-left: 0;
}


/*
* =====>TOP NAVIGATION<=====
* provides grid styling for the navigation links positioned in the .navGrayBand
*/
.universalMenuElement.mtpMenuElement {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	margin-bottom: 0;
}

.universalTopNav {
	align-items: flex-end;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #222123;	
	font-size: 0.875rem;
	/*font-weight: 500;*/
	height: 100%;
	text-transform: uppercase;
	width: 100%;
	margin-top: 23px;
}

.universalTopNav a {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.universalTopNav a:hover, .universalTopNav a.active {
	border-top: 1px solid #40484f;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: inherit;
	font-weight: inherit;
	padding-top: 3px;
}

.universalTopNav li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	line-height: 100%;
	list-style: none;
	padding-left: 8px;
	padding-right: 8px;
	text-align: center;
	width: 110px;
}

#partnerLogo {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	float: none;
	height: 15px;
	min-width: 200px;
	padding-right: 6.5px;
}

#partnerLogo h1 {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: inherit;
}

/*
* =====>PARTNER NAVS<=====
* provides special styiling for PID controlled partner navs including MTP ATN DDP HUM
*/


/*
* All Partners Shared
*/
.partnerTopColumn {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 59px; 
}

.partnerTopColumn .partnerWelcome {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #1960A8;
	font-size: 16px;
	min-height: 21px;
	padding-top: 16.5px;	
}

.partnerTopColumn .partnerWelcome .partnerPracticeName,
.ddpMenu .partnerPracticeName {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	font-size: 14px;
}

/*
* ATN = Aetna
*/
.universalContentTemplate .topNavLinks .atnWelcome img {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 16px;
	vertical-align: baseline;
	width: auto;
}

.universalContentTemplate .topNavLinks .atnMenu a {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #1960A8;
	text-decoration: none;
	font-weight: bold;
}

.universalContentTemplate .topNavLinks .atnMenu a:hover {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #1960A8;
	font-weight: bold;
}

.alignCenter {
	display: flex;
	align-items: center;
}

/*
* DDP = Delta Dental ERA Portal
*/
.ddpMenu {
	background-color: #FFF;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 88px;
	position: relative;
	z-index: 4;
}

.ddpMenu figCaption {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	font-size: 10px;
	margin: -10px 0 0 0;
	padding: 0;
	text-align: center;
}

#ddsNav figCaption {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	font-size: 10px;
	margin: -10px 0 0 0;
	padding: 0;
	text-align: center;
}

.ddpNavCover {
	background-color: #fff;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 88px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}


/*
* DDS = WebStudio
*/
.ddsMenu p.ddsWelcome {
	background-color: #2773AE;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #ffffff;
	font-size: 14px;
	height: 100%;
	min-width: 50px;
	padding: 0 4px;
}

.ddsMenu a.ddsActionBtn {
	background-color: #51A351;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #ffffff;
	font-size: 14px;
	height: 100%;
	padding: 0 4px;
	text-decoration: none;
}

.ddsPartnerWelcomeMargin {
	margin: 1em 0 0 0;
}


/*
* MTP = MetLife
*/
.mtpMenuElement .universalTopNav {
	align-items: flex-start;
	background-color: #fea311;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	/*met teal #62b2f5*/
	color: #FFF;
	font-size: 8.8px;
	height: 21px;
	margin-top: 30px;
}

.mtpHome {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: 95px;
}

.mtpMenuElement .universalTopNav .mtpHome li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpHome li a {
	background-image: url("/images/claims/nav/mtp/tabhome.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpHome li a:hover {
	background-image: url("/images/claims/nav/mtp/tabhome_on.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
}

.mtpElig {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: 156px;
}

.mtpMenuElement .universalTopNav .mtpElig li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpElig li a {
	background-image: url("/images/claims/nav/mtp/tabelig.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpElig li a:hover {
	background-image: url("/images/claims/nav/mtp/tabelig_on.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
}

.mtpView {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: 96px;
}

.mtpMenuElement .universalTopNav .mtpView li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpView li a {
	background-image: url("/images/claims/nav/mtp/tabviewclaims.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpView li a:hover {
	background-image: url("/images/claims/nav/mtp/tabviewclaims_on.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
}

.mtpMenuElement .universalTopNav li.mtpSubmit {
	background-image: url("/images/claims/nav/mtp/tabsubmitclaims_sel.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: 109px;
}

.mtpResource {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: 116px;
}

.mtpMenuElement .universalTopNav .mtpResource li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpResource li a {
	background-image: url("/images/claims/nav/mtp/tabresourcecenter.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpResource li a:hover {
	background-image: url("/images/claims/nav/mtp/tabresourcecenter_on.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
}

.mtpEducation {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: 147px;
}

.mtpMenuElement .universalTopNav .mtpEducation li {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpEducation li a {
	background-image: url("/images/claims/nav/mtp/tabconteducation.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	width: inherit;
}

.mtpMenuElement .universalTopNav .mtpEducation li a:hover {
	background-image: url("/images/claims/nav/mtp/tabconteducation_on.gif");
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
}


.mtpMenuElement .universalTopNav li {
	background-repeat: no-repeat;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 18px;
	padding: 0;
}

.mtpMenuElement .universalTopNav li a {
	background-repeat: no-repeat;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: inherit;
	display: block;
}

.mtpMenuElement .universalTopNav a:hover {
	background-color: #b5ddfd;
	border-top: none;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #62b2f5;
	padding-top: 0;
}

.alignEnd{
	display: flex;
	align-items: end;
}


/*
* =====>APPS SUBNAV<=====
* provides grid styling for the navigation links positioned in the the blue area below .navGrayBand
*/
.appsSubNav {
	align-self: center;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	height: 30px;
	justify-content: flex-start;
	margin-bottom: auto;
	padding-top: 30px;
}

.appsSubNav a {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #FFFFFF;
	display: block;
	font-size: 0.875rem;
	line-height: 100%;
	list-style: none;
	padding-top: 6px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 33%;
}

.appsSubNav a:hover, .appsSubNav a:active {
	box-shadow: 0 1px 0 0 #AFAFAF;
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: white;
	background-color: #3498DB;
}

div.userInfo {
	box-sizing: content-box; /* bootstrap override to equalize with non-bootstrap apps*/
	color: #222123;
	float: right;
	font-size: 13px;
	/*font-weight: 500;*/
	margin-top: 30px;
	width: 200px;
	z-index: 10;
}



/*
* ====================>DXC PAGE LOCATION - TOP MARKETING BANNER AREA<====================
*/


/*
*=====>JAVASCRIPT BASED BANNER<=====
* provides overall styling on the actual javascript banner object. for specific styles within the banner see dxci.common.wicket.marketing.bannerpanel.css
*/
.marketingBanner {
	align-content: flex-start;
	align-items: stretch;
	box-shadow: 1px 1px 4px 0 #CCC;
	justify-content: center;
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
	width: inherit;
}

.marketingBanner a:hover {
	text-decoration: none;
}

.marketingBanner ul {
	margin: 0 0 0;
}

.marketingBanner ul li {
	list-style: none;
	margin-left: 0;
}



/*
* ====================>DXC PAGE LOCATION - MAIN CONTENT SECTION<====================
*/


/*
* =====>GENERAL CONTENT STYLES<=====
* providers general style for the content on the DXC prelogin pages
*/

/*
* .mainContent provides styles for a variety of html elements that are both generated within html documents
* and inserted on the fly by Java code. it covers all elements below the .topBanner and above the .bottomFooter
*/

/*
* .mainContent general global styles
*/
.mainContent {
	min-height: 348px; /* required to keep the footer from floating at the bottom of the page */
}

/*
* a
*/
.mainContent a {
	color: inherit;
	text-decoration: none;
}

.mainContent a, .newsArticles p a {
	color: #1960A8;
}

.mainContent a.white {
	color: #FFF;
}

.mainContent a:hover, .newsArticles p a:hover {
	color: #3498DB;
	text-decoration: underline;
}

.mainContent a.white:hover {
	color: #FFFFFF;
	text-decoration: underline;
}


/*
* #breadcrumb
*/
.mainContent #breadcrumb {
	border: none;
	font-size: 0.8125rem;
	margin-bottom: 0.25rem;
}

.mainContent #breadcrumb li {
	line-height: 30px;
	padding-left: 0;
}

.mainContent #breadcrumb li:last-child::before {
	content: '\f3c5';
	float: left;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding-right: 0.15rem;
}

.mainContent #breadcrumb li a {
	background: none;
	color: #C7C8CB;
	padding: 0 4px 0 4px;
}

.mainContent #breadcrumb li a::after {
	content: '\f053';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.mainContent #breadcrumb li a:hover {
	color: #3498DB;
}

/*
* .centeredText
*/
.mainContent .centeredText {
	text-align: center;
}

/*
* .centeredObject
*/
.mainContent .centeredObject {
	margin-left: auto;
	margin-right: auto;
}

/*
* dd
*/
.mainContent dd dl {
	font-size: 1rem;
}

/*
* .extraSpace
*/
.mainContent .extraSpaceHalfRem {
	padding-bottom: 0.5rem;
}

.mainContent .extraSpace1Rem {
	padding-bottom: 1rem;
}


/*
* h
*/
.mainContent h1 {
	margin-bottom: 1rem;
}

.mainContent h2 {
	color: #1960A8;
	font-size: 2rem;
	line-height: 2.125rem;
}

.mainContent h3 {
	font-size: 1.5rem;
	line-height: 1.625rem;
	margin-bottom: 0.5rem;
}

.mainContent h4 {
	border-top: 1.45px solid #B1B2B4;
	font-size: 1.35rem;
	line-height: 1.625rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
}

.mainContent h4.borderless {
	border-top: none;
	font-size: 1.35rem;
	line-height: 1.625rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
}

.mainContent h4.naked {
	background-color: transparent;
	font-size: 1.35rem;
	line-height: 1.625rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0;
	padding-left: 0.75rem;
	padding-top: 0;
}

.mainContent h5 {
	font-size: 1.15rem;
	line-height: 1.275rem;
}

.mainContent h5.withH4Border {
	border-top: 1.45px solid #B1B2B4;
	font-size: 1.15rem;
	line-height: 1.275rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
}

.mainContent h6 {
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.525rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
	
}

.mainContent span.movedRight {
	float: right;
	padding-right: 1rem;
}

/*
* .indent
*/
.mainContent .indent {
	margin-left: 3rem;
}


/*
* ol
*/
.mainContent ol {
	display: block;
	list-style-type: decimal;
	margin-top: 1rem;
	margin-bottom: 1rem;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}


/*
* p
*/
.mainContent p {
	line-height: 1.625rem;
	padding: 0;
	margin: 0 0 1rem 0;
}


/*
* .pageTitle
*/
.mainContent .pageTitle {
	padding: 0;
	margin-bottom: 1rem;
}

/*
* .quote
*/
.mainContent p.quote {
	margin-bottom: 0;	
}

.mainContent p.quote::before, .mainContent blockquote.quote p:first-child::before {
	content: '\f10d';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding-right: 0.15rem;
}

.mainContent p.quote::after, .mainContent blockquote.quote p:last-child::after {
	content: '\f10e';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding-left: 0.15rem;
}


/*
* .rightJustifiedText
*/
.mainContent .rightJustifiedText {
	text-align: right;
}


/*
* .smallLink
*/
.smallLink {
	font-size: 75%;
}



/*
* .sections provides general styles for any content encompassed in html that resides below a
* Java created h2.pageTitle (if it exists) and above the .bottomFooter
*/
.sections {
	min-height: 300px;	
}


/*
* .section
*/
.section {
	margin-bottom: 3rem;
}


/*
* .sectionVideo & .sectionGallery/.sectionPartnerGallery
*/
.sectionVideo, .sectionPartnerGallery {
	align-items: center;
	background-image: linear-gradient(to bottom right, #EDEFF1, #FBFCFC);
	border-radius: 15px 30px 7px 30px;
	justify-content: center;
	margin-bottom: 2rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;	
	position: relative;
}

.sectionGallery {
	align-items: center;	
	background-image: linear-gradient(to bottom right, #EDEFF1, #FBFCFC);
	border-radius: 15px 30px 7px 30px;
	justify-content: center;
	margin-bottom: 2rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	position: relative;
}

.sectionGallery:hover::after {
	bottom: 1rem;
	content: 'Click to Enlarge';
	font-weight: 800;
	left: 1rem;
	position: absolute;
}

.sectionVideo:hover::after {
	bottom: 1rem;
	content: 'Watch and Learn';
	font-weight: 800;
	left: 1rem;
	position: absolute;
}

.sectionVideo img, .sectionGallery img {
	border: 1.45px solid #B1B2B4;
	height: auto;
	margin: 0.75rem;
	width: 200px;
	
}

.sectionVideo figure {
	text-align: center;
}

.sectionVideo figure figcaption {
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	margin-top: -0.75rem;
}

.sectionVideo .fiveColumns img, .sectionVideo .sixColumns img,
.sectionGallery .fiveColumns img, .sectionGallery .sixColumns img {
	width: 150px;
}

.sectionGallery .fiveColumns img.matchHeight {
	height: 100px;
	width: auto;
}

.sectionVideo img.videoThumbnail {
	width: 400px;
}

.sectionVideo img:hover, .sectionVideo img.videoThumbnail:hover,
.sectionGallery img:hover, .sectionGallery img.videoThumbnail:hover {
	box-shadow: 3px 4px 4px 0 #BEBFC1;
	
}

h4.sectionVideoTitle {
	background-color: transparent;
}

.sectionVideo .videoStyle {
	border: 1.45px solid #B1B2B4;
	box-shadow: 1px 1px 4px 0 #AFAFAF;
}


/*
* .sectionForm
*/
.sectionForm {
	background-image: linear-gradient(to bottom right, #EDEFF1, #FBFCFC);
	border-radius: 15px 30px 7px 30px;
	margin-bottom: 2rem;
	padding: 3rem 2rem 2.75rem 2rem;
	position: relative;
}

.section.sectionForm {
	color: #000000;
}

.sectionForm .formSingleColumn {
	flex: 0 1 90%;
}

.sectionForm .formTwoColumns:nth-child(1) {
	flex: 0 1 23%;
	margin-bottom: 1rem;
	text-align: left;
}

.sectionForm .formTwoColumns:nth-child(2) {
	flex: 0 2 75%;
	margin-bottom: 1rem;
	text-align: left;
}

.sectionForm div.contact-us-form-multiselects {
	margin-bottom: 2.5rem;
	width: 100%;
}

.sectionForm .contact-us-form-multiselects label.multiselect-label {
	display: block;
	font-size: 1rem;
	width: 100%;
}

.sectionForm .contact-us-form-multiselects input[type="checkbox"] {
	margin-bottom: 0.75rem;
	margin-right: 1%;
	text-align: left;
	vertical-align: middle;
}

.sectionForm .contact-us-form-multiselects label {
	display: inline-block;
	margin-bottom: 0.75rem;
	margin-right: 1%;
	text-align: left;
	vertical-align: middle;
	width: 45%;
}

.sectionForm .contact-us-form-multiselects input[type="text"].other-input {
	border: 1px solid rgb(204, 204, 204);
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.075) 0 1px 1px 0 inset;
	color: rgb(85, 85, 85);
	display: inline-block;
	font-family: "Open Sans", "Titillium Web", Geneva, Sans-Serif;
	font-size: 0.75rem;
	line-height: 1rem;
	padding: 4px 6px 4px 6px;
	transition-delay: 0s, 0s;
	transition-duration: 0.2s, 0.2s;
	transition-property: border, box-shadow;
	transition-timing-function: linear, linear;
	vertical-align: middle;
	width: 46%;
}

.sectionForm .formInputElement input, .sectionForm .formInputElement select,
.sectionForm .formInputElement textarea {
	border: 1px solid rgb(204, 204, 204);
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.075) 0 1px 1px 0 inset;
	color: rgb(85, 85, 85);
	display: inline-block;
	font-family: "Open Sans", "Titillium Web", Geneva, Sans-Serif;
	font-size: 0.75rem;
	line-height: 1rem;
	padding: 4px 6px 4px 6px;
	transition-delay: 0s, 0s;
	transition-duration: 0.2s, 0.2s;
	transition-property: border, box-shadow;
	transition-timing-function: linear, linear;
	vertical-align: middle;
	width: 100%;
}

.sectionForm .formInputElement select {
	height: 34px;
}

.sectionForm .formInputElement input, .sectionForm .formInputElement textarea {
	height: 24px;
}

.sectionForm .formInputElement textarea {
	min-height: 100px;
}

.sectionForm .formInputElement input:focus, .sectionForm .formInputElement select:focus,
.sectionForm .formInputElement textarea:focus {
	border-color: rgba(52, 152, 219, 0.8);
  	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(52, 152, 219, 0.6);
  	outline: 0 none;
}

.sectionForm label {
	display: inline-block;
}


/*
* =====>HOME PAGE CONTENT STYLES<=====
* provides special styles for the home/Home page only
*/
.homePageIntro {
	margin-top: 0.75rem;
}

.homePageIntro p {
	font-size: 1.5rem;
	line-height: 2rem;
}

.homePageServices p.serviceList {
	font-size: 1.35rem;
	line-height: 1.425rem;
}

.homePageServices p {
	font-size: 1.5rem;
	line-height: 1.75rem;
	text-align: left;
}

.homePageTestimonials {
	margin-bottom: 1rem;
}

.homePageTestimonials p.introSentence {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.testimonialFeatures {
	align-content: flex-start;
	align-items: flex-start;
	font-size: 1rem;
	justify-content: flex-start;
	line-height: 1.25rem;
	text-align: left;
	
}

.testimonialFeatures p.quoted {
	padding-top: 0.75rem;
	margin-bottom: -1.25rem;
}

.testimonialFeatures .testimonial {
	background-color: #E6E6E6;
	border-radius: 15px 7px 45px 7px;
	height: 150px;
	padding: 20px;
	width: 30%;
}

.testimonialFeatures .testimonial p:nth-child(1) {
	height: 80px;
}

.testimonialFeatures .testimonial:nth-child(1) {
	left: 0;
	margin-right: 8px;
}

.testimonialFeatures .testimonial:nth-child(2) {
	margin-left: 4px;
	margin-right: 4px;
}

.testimonialFeatures .testimonial:nth-child(3) {
	margin-left: 8px;
	right: 0;
}

.testimonialFeatureWithLink div {
	float: right;
}

.homePageNews {
	background-color: #555658;
	border-radius: 15px 15px 3px 3px;
	height: 145px;
	margin-bottom: 18px;
	padding: 12px 20px;
}

.homePageNews p {
	font-size: 1.5rem;
	margin-bottom: 0.25rem;
}

.newsYellowTxt {
	color: #F1C43D;
}

.animatedHeadline {
	height: 80px;
}

.newsWithLink {
	align-items: baseline;
	color: #FFFFFF;
}

.newsWithLink a:hover {
	color: inherit;
	text-decoration: underline;
}

.mainContent h1.latestHeadline {
	font-size: 1.75rem;
}


/*
* =====>EVENTS PAGE CONTENT STYLES<=====
* provides special styles for the home/Events page only
*/
.mainContent h2.days {
	border-bottom: 1.45px solid #B1B2B4;
	color: #000000;
	font-size: 2rem;
	font-weight: 200;
	margin-bottom: 1rem;
}

.event {
	margin-bottom: 3rem;	
}

.eventsGrid {
	align-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.eventMonth {
	background-color: #E3E5E8;
	border-radius: 15px 7px 30px 3px;
	margin-bottom: 1rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	text-align: center;
	text-transform: uppercase;
}

.location {
	text-transform: uppercase;
}

.month {
	align-self: flex-start;
	border-bottom: 1.45px solid #B1B2B4;
	flex: 0 1 32%;
	/* height: 450px; */
	margin-bottom: 1rem;
}


/*
* =====>TESTIMONIALS PAGE CONTENT STYLES<=====
* provides special styles for the home/Testimonials page only
*/
.entityButtons {
	justify-content: space-between;
	margin-top: 0.5rem;
	width: 640px;
}

.entityButtons a {
	color: #FFFFFF;
}

.quote {
	margin-bottom: 2rem;
}

.quoteButton {
	width: 28.25%;
}

.quoted {
	font-size: .75rem;
}

.quoteContent {
	border-top: 1.45px solid #B1B2B4;
	height: 100%;
	margin-top: 1rem;
	padding-top: 0.25rem;
	text-align: left;
}

.quotedText {
	font-size: 1rem;
}



/*
* =====>NEWS PAGE CONTENT STYLES<=====
* provides special styles for the home/News page only
*/
.newsArticles {
	align-items: flex-start;
	align-content: space-around;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 3rem;
}

.newsArticles .newsLeft {
	flex-basis: 20%;
}

.newsArticles .newsRight {
	flex-basis: 80%;
}

.newsArticles .newsRight .title {
	margin-bottom: 0.25rem;
}

.newsArticles .newsRight .story a:hover {
	color: #3498DB;
	text-decoration: underline;
}

.newsArticles .headline {
	border-top: 1.45px solid #B1B2B4;
	margin-bottom: 0.25rem;
	padding-bottom: 0.25rem;
	padding-top: 0.35rem;
}


/*
* =====>PARTNERS PAGE CONTENT STYLES<=====
* provides special styles for the partner/Partners page only
*/
.partnersBtns .universalBtn {
	width: 150px;
	margin-right: 8%;
}

.partnersLogos {
	align-self: center;
	flex-basis: 25%;
	height: 150px;
}

a.partnersLogos {
	justify-content: center;
}

.partnersLogos img {
	align-self: center;
	height: auto;
	width: 125px;
}

.partnersLogos img.square {
	height: 125px;
	width: auto;
}

.partnersLogos img.crossCheck {
	height: 50px;
	width: auto;
}


/*
* =====>FAQ PAGES CONTENT STYLES<=====
* provides special styles for the provider/faq/ClaimConnect and provider/faq/PayeConnect pages only
*/
.answersBank {
	position: relative;
}

.answersBank div, .questionsBank div {
	left: 0;
	display: none;
	position: absolute;
	top: 0;
}

.answersBank div.activeAnswer, .questionsBank div.activeQuestions {
	display: block;
	width: 100%;
}

.answersBank h4 {
	padding-left: 0.5rem;
	text-align: left;
}

.answersBank p {
	padding-left: 0.5rem;
	padding-right: 1rem;
}

.categoryBank {
	height: 70px;
	width: 100%;
}

.categoryBank.universalColumns {
	border-top: 1.45px solid #B1B2B4;
	margin-bottom: 0;
	padding-top: 1rem;
}

.categoryBank a.universalBtn {
	width: 85%;
}

.claimServices .questionsBank  {
	min-height: 200px;
}

.finServices .questionsBank  {
	min-height: 150px;
}

.claimServices .answersBank {
	min-height: 700px;
}

.finServices .answersBank {
	min-height: 425px;
}

.questionsBank {
	/*background-color: #F1F2F3;
	border-radius: 15px 15px 8px 30px;*/
	margin-bottom: 1rem;
	position: relative;
	padding: .25rem 1.25rem 0 .25rem;
}

div.questionsBank div {
	padding-left: 2rem;
	padding-top: 0.25rem;
}


/*
* =====>CONTACT PAGE CONTENT STYLES<=====
* provides special styles for the contact/Contact page only
*/
.contact .universalColumns {
	margin-bottom: 1rem;
}

.contact p {
	line-height: 1.725rem;
	margin: 0;
}

.mainContent .contact h1 {
	border-top: 1.45px solid #B1B2B4;
	margin-bottom: 0;
}

.contact p.extensions {
	font-size: 1.5rem;
	margin-top: auto;
}

.universalBtn.contactFormBtn {
	width: 175px;
}


/*
* =====>SERVICES PAGE CONTENT STYLES<=====
* provides special styles for the home/Services page only
*/
.allServices .titleLogo {
	height: 75px;
	width: auto;	
}

.allServices .universalColumns .threeColumns {
	margin-bottom: 3rem;
}


/*
* =====>PAYCONNECT MARKETING PAGE CONTENT STYLES<=====
* provides special styles for the provider/payconnect/MerchantProcessing page only
*/
.payconnectImages img {
	height: 100px;
	width: auto;
}

.payconnectImages figcaption {
	font-size: 0.70rem;
	font-weight: 600;
}


/*
* =====>ACTIVITY SNAPSHOT PAGE CONTENT STYLES<=====
* provides special styles for the snapshot/ActivitySnapshot page wicket:id="mobiles" and wicket:id="desktops"
*/
.snapshotDXC .dxcHidden {
	display: none;
}

.snapshotDXC .snapshotDownloads h1.red {
	color: #000;
	font-size: 1.35rem;
	line-height: 1.625rem;
}

.snapshotDXC .snapshotDownloadButtons div {
	display: inline-block;
	margin-right: 1rem;
}


/*
* =====>EHG FUND PAGE CONTENT STYLES<=====
* provides special styles for the fixed banner on all the EHG Fund pages
*/
.ehgFundFixedBanner {
	margin-top: 0.5rem;
}


/*
* =====>/PARTNERS/Partner_Name PAGES CONTENT STYLES<=====
*/
.partnerImages img {
	padding-left: 16px;
	padding-right: 16px;
}

.partnerConnector {
	font-size: 4rem;
}


/*
* =====>SPECIAL OFFERS PAGE CONTENT STYLES<=====
* provides special styles for the promo/SpecialOffersDefault page only
*/
.bannerOverlay {
	background-color: gainsboro;
	height: inherit;
	left: 0;
	opacity: 0.75;
	position: absolute;
	top: 0;
	width: inherit;
}

.bannerText {
	left: 0;
	position: absolute;
	text-align: center;
	top: 25%;
	width: 100%;
}

.bannerText h2 {
	color: #000000;
	font-size: 4.25rem;
	font-weight: 300;
	line-height: 5rem;
}

.specialOffersBanner {
	background-image: url('/images/banners/bundleBackground.png');
	/*background-blend-mode: overlay;
	background-color: gainsboro;*/
	background-position: center 70%;
	background-repeat: no-repeat;
	background-size: 992px;
	height: 300px;
	margin-bottom: 1rem;
	position: relative;
	width: 992px;
}

.specialOffersBannerSection {
	border-bottom: solid #B3D8F2 6px;
	margin-bottom: 2rem;
}



/*
* ====================>DXC PAGE LOCATION - BOTTOM FOOTER AREA<====================
*/


/*
* =====>UNIVERSAL FOOTER ELEMENT<=====
* providers typography and other basic visual styling for all footers
*/
.universalFooterElement {
	background-color: #0071f2;
	color: #FFFFFF;
	font-family: inherit;
	font-size: inherit;
	/*min-height: 300px;*/
	height: auto;
	position: relative;
	text-transform: none;
	width: 100%;
}

.universalFooterElement a {
	color: #FFFFFF;
	font-size: 0.8125rem;
	outline: none;
	text-decoration: none;
}

#footer .universalFooterElement a:hover {
	text-decoration: none;
}

.universalFooterElement a:hover {
	color: #FFFFFF;
	outline: none;
	text-decoration: none;
}

.universalFooterElement h1 {
	font-size: 1.5rem;
}

.universalFooterElement h2 {
	font-size: 0.95rem;
}

.universalFooterElement p {
	font-size: 0.8125rem;
}


/*
* =====>FOOTER 1 COLUMN<=====
* provides grid styling and typography overwrites for the lower-most footer element containing copyright information, important links, and site version info
*/

.footer1Column {
	border-bottom: 1px solid #FFFFFF;
	padding-bottom: 1rem;
	padding-top: 1.25rem;
	text-align: center;
}


/*
* =====>FOOTER 3 COLUMN<=====
* provides grid styling and typography overwrites for the lower-most footer element containing copyright information, important links, and site version info
*/

.footer3Column {
	align-items: stretch;
	line-height: 2.125rem;
	min-height: 75px;
	text-transform: uppercase;
}

.footer3Column a {
	font-size: 0.75rem;
	/*font-weight: 500;*/
	margin: 0;
}

.footer3Column p {
	font-size: 0.75rem;
	/*font-weight: 500;*/
	margin: 0;
}

.footer3Column p:nth-child(1) {
	flex-basis: 351px;
	margin-right: auto;
	text-align: left;
}

.footer3Column p:nth-child(2) {
	text-align: center;
}

.footer3Column p:nth-child(3) {
	margin-left: auto;
	text-align: right;
}

.mainNavElementHeader .universalTopNav .topNavDropdown {
	width: max-content;
}

/* Only affect this header's top nav */
.mainNavElementHeader .universalTopNav a {
	border-top: 0px solid transparent; /* maintain consistent height */
	padding-top: 10px;
}

/* Keep hover look consistent but prevent text jump */
.mainNavElementHeader .universalTopNav a:hover,
.mainNavElementHeader .universalTopNav a.active {
	padding-top: 10px; /* prevent upward shift */
}

/* Dropdown container */
.topNavDropdown {
	position: relative;
	text-align: center;
	width: 200px;
}

/* Main menu label */
.topNavDropdown > a,
.topNavDropdown > span {
	cursor: pointer;
	padding: 12px 18px;
	display: inline-block;
	color: #222123;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: relative;
}

.topNavDropdown > a:hover,
.topNavDropdown > span:hover{
	color: #0071f2;
}

/* Dropdown box */
.dropdownMenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	min-width: 200px;
	padding: 0; /* remove inner padding so hover covers entire width */
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	pointer-events: none;
	overflow: hidden; /* ensures background hover fills to edges */
}


/* Keep dropdown visible when hovering inside */
.topNavDropdown:hover .dropdownMenu,
.topNavDropdown .dropdownMenu:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto; /* Allow click and hover inside */
}

/* Dropdown items */
.dropdownMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.dropdownMenu li {
	text-align: left;
	width: 100%;
}

.dropdownMenu li a {
	display: block;
	width: 100%;
	color: #222123;
	padding: 10px 18px;
	text-decoration: none;
	font-size: 0.9rem;
	box-sizing: border-box;
}

/* Hover background fills entire row */
.dropdownMenu li :hover {
	background-color: #eaf2ff;
	color: #0071f2;
}

/* Optional arrow indicator */
.topNavDropdown:hover > a::after,
.topNavDropdown:hover > span::after{
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #fff;
	filter: drop-shadow(0 -1px 2px rgba(0,0,0,0.1));
}

.navWidth{
	width: 100%;
}

.universalTopNav .dropdownMenu ul li.dropdownItem {
	width: 100% !important;
	padding: 0 !important;
}

/* ========== HAMBURGER MENU STYLES ========== */

/* Hamburger Container */
.hamburgerMenuContainer {
	display: none;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.hamburgerMenuToggle {
	display: none;
}

.hamburgerButton {
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
}

.hamburgerIcon {
	width: 24px;
	height: 24px;
	display: block;
}

/* ========== BACKDROP OVERLAY ========== */
.hamburgerBackdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1000;
	cursor: pointer;
}

.hamburgerMenuToggle:checked ~ .hamburgerBackdrop {
	opacity: 1;
	visibility: visible;
}

/* ========== SIDE PANEL ========== */
.hamburgerSidePanel {
	position: fixed;
	top: 0;
	left: -280px;
	width: 260px;
	height: 100vh;
	background-color: #ffffff;
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
	transition: left 0.3s ease;
	z-index: 1002;
	overflow-y: auto;
}

.hamburgerMenuToggle:checked ~ .hamburgerSidePanel {
	left: 0;
}

/* Header */
.hamburgerHeader {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.hamburgerCloseButton {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.hamburgerCloseIcon {
	width: 20px;
	height: 20px;
	display: block;
}

/* ========== NAVIGATION ========== */
.hamburgerNav {
	width: 100%;
}

.hamburgerNavList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hamburgerNavList > li {
	border-bottom: none;
	list-style: none;
}

/* Top-level menu links */
.hamburgerNavLink {
	display: block;
	padding: 18px 22px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	transition: background-color 0.2s;
}

.hamburgerNavLink:hover {
	background-color: #f8f9fa;
}

/* ========== DROPDOWN MENU ========== */
.hamburgerNavDropdown {
	position: relative;
}

.hamburgerDropdownToggle {
	display: none;
}

.hamburgerDropdownLabel {
	width: 84%;
	margin-bottom: 0;
	text-align: left;
	padding: 18px 20px;
	background: none;
	border: none;
	font-size: 14px;
	color: #1a1a1a;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.hamburgerDropdownLabel:hover {
	background-color: #f8f9fa;
}

.hamburgerMenuText {
	flex: 1;
}

/* Arrow Icons */
.hamburgerArrowIcon {
	width: 16px;
	height: 16px;
	display: block;
	transition: opacity 0.2s;
}

.hamburgerArrowDown {
	opacity: 1;
}

.hamburgerArrowUp {
	opacity: 0;
	position: absolute;
	right: 22px;
}

/* Show up arrow when expanded */
.hamburgerDropdownToggle:checked ~ .hamburgerDropdownLabel .hamburgerArrowDown {
	opacity: 0;
}

.hamburgerDropdownToggle:checked ~ .hamburgerDropdownLabel .hamburgerArrowUp {
	opacity: 1;
	position: static;
}

/* Submenu */
.hamburgerSubMenu {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #f8f9fa;
}

.hamburgerDropdownToggle:checked ~ .hamburgerSubMenu {
	max-height: 800px;
}

.hamburgerSubMenu li a {
	display: block;
	padding: 14px 22px 14px 38px;
	color: #4a4a4a;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	transition: background-color 0.2s, color 0.2s;
	list-style: none;
}

.hamburgerSubMenu li a:hover {
	background-color: #e9ecef;
	color: #1a1a1a;
	list-style: none;
}

/* ========== DESKTOP MENU ========== */
.desktopMenu {
	display: block;
}

/* ========== RESPONSIVE BREAKPOINT ========== */
@media (max-width: 1300px) {
	.hamburgerMenuContainer {
		display: flex !important;
	}

	.desktopMenu {
		display: none !important;
	}
}

@media (min-width: 1301px) {
	.hamburgerMenuContainer,
	.hamburgerSidePanel,
	.hamburgerBackdrop {
		display: none !important;
	}
}

/* Scrollbar styling */
.hamburgerSidePanel::-webkit-scrollbar {
	width: 6px;
}

.hamburgerSidePanel::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.hamburgerSidePanel::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.hamburgerSidePanel::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

/* Default behavior for default partner */
.hamburger-menu-panel {
	display: none;
}

.nav-menu-panel {
	display: block;
}

/* For default partner on screens smaller than 1300px */
@media (max-width: 1299px) {
	 .hamburger-menu-panel {
		display: block !important;
	}

	.nav-menu-panel {
		display: none !important;
	}
}

/* For default partner on screens 1300px and larger */
@media (min-width: 1300px) {
	.hamburger-menu-panel {
		display: none !important;
	}

	.nav-menu-panel {
		display: block !important;
	}
}

/*
* =====>FOOTER 4 COLUMN<=====
* provides grid styling for the dxc specific mega footer
*/

.footer4Columns {
	border-bottom: 1px solid #FFFFFF;
	flex-direction: row;
	line-height: 1.375rem;
	margin: 0 auto 0 auto;
	padding-bottom: 4rem;
	text-align: left;
}

.footer4Columns div.footerColumn {
	flex: 1;
}

.footer4Columns h1, .footer4Columns h2, .footer4Columns h3:nth-child(1) {
	padding-top: 30px;
}

.footer4Columns p {
	margin: 0;
}

.importantLinks {
	align-items: center;
	justify-content: flex-start;
}

.importantLinks i {
	align-self: center;
	flex: 1;
	font-size: 0.95rem;
	max-width: 22px;
	padding-right: 3px;
	text-align: center;
}

.importantLinks a {
	align-self: center;
	flex: 3;
	font-size: 1rem;
	text-align: left;
	vertical-align: middle;
}

.socialMedia {
	flex: 0;
	margin-top: auto;
}

.socialMediaIcons a {
	align-items: center;
	font-size: 1.2rem;
	justify-content: flex-start;
	text-align: left;
}

.socialMediaIcons .fab {
	margin-right: 1rem;
}

.socialMediaIcons .fa-instagram {
	font-weight: 500;
}



/*
* ====================>REG APP STYLES<====================
*/


/*
* general
*/
.regContent {
	font-family: "Open Sans", "Titillium Web", Geneva, Sans-Serif !important;
	width: 992px;	
}


/*
* <a>
*/
.mainContent.regContent a {
	color: inherit;
	font-weight: normal;
	text-decoration: none;
}

.mainContent.regContent a:hover {
	color: #3498DB;
	font-weight: 500;
	text-decoration: underline;
}

.mainContent.regContent a.loginExperience:hover {
	color: inherit;
	text-decoration: none;
}

#centercol .mainContent.regContent a.universalBtn {
	font-family: "Open Sans", "Titillium Web", Geneva, Sans-Serif !important;
}


/*
* .alert-info (bootstrap override)
*/
#columns .mainContent.regContent .alert-info {
	text-align: center;
}


/*
* .btn
*/
.regContent .universalBtn.btnPrimary {
	color: #ffffff;
}


/*
* h
*/
#centercol .mainContent.regContent h1 {
	margin-bottom: 1rem;
}

#centercol .mainContent.regContent h2 {
	border-bottom: 1.45px solid #B1B2B4;
	color: #1960A8;
	font-size: 1.65rem;
	line-height: 1.975rem;
	text-align: center;
}

#centercol .mainContent.regContent h3 {
	font-size: 1.5rem;
	line-height: 1.625rem;
	margin-bottom: 0.5rem;
}

#centercol .mainContent.regContent h4 {
	background-color: #E3E5E8;
	color: #000000;
	font-size: 1.35rem;
	line-height: 1.625rem;
	margin-bottom: 0.5rem;
	padding-bottom: 0.25rem;
	padding-left: 0.75rem;
	padding-top: 0.25rem;
	text-align: center;
}


/*
* p
*/
#columns .mainContent.regContent p {
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0;
}


/*
* ul
*/
.regContent ul {
	display: block;
	font-size: 1rem;
    list-style-type: disc;
    margin: 0;
    padding-left: 40px;
}


/*
* login page
*/
.loginPage {
	min-height: 300px;
	position: relative;
}

.loginAnimatedArea {
	padding-top: 1.5rem;
}

.loginTabs .universalColumns {
	margin-bottom: 0;
}

.loginTabs .universalColumns .twoColumns {
	margin-bottom: 0;
}

.loginTabs .loginExperience {
	border: 1.45px solid #B1B2B4;
	border-radius: 25px 25px 0 0;
	font-size: 0.85rem;
	line-height: 50px;
}
.loginTabs .DentalXChangeLoginTitle {
	border: 0px solid #B1B2B4;
	font-size: 1.75rem;
	line-height: 50px;
}

.loginTabs .universalFlexRow .twoColumns {
	width: 50%;
}
.loginTabs .universalFlexRow .oneColumns {
	width: 100%;
}

.dxcLoginImageWrapper {
	width: 30px;
}

.regContent .featureActiveBtn {
	border: 1.45px solid #B1B2B4;
	border-bottom-color: transparent;
	border-radius: 25px 25px 0 0;
	font-size: 1.75rem;
}

#centercol .regContent div.section.loginTabs {
	margin-bottom: 0;
}

#centercol .regContent a h1 {
	font-size: 1.25rem;
}

#centercol .regContent .loginExperience h1 {
	margin-bottom: auto;
	margin-left: auto;
}

.connectsLogin, .payconnectLogin {
	position: relative;
}

.connectsLogin .regDXCSvcsLogo, .payconnectLogin .regPayMerchSvcsLogo {
	height: 100px;
	margin-bottom: 0.75rem;
	width: auto;
}

.payconnectLogin .regPayMerchSvcsLogo {
	background-image: url(/images/banners/finServices.png);
	background-position: -20px 0;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	width: 100px;
}

.payconnectLogin .payconnectSignUp {
	margin-top: 2rem;
}

.payconnectLogin .ampLogin, .payconnectLogin .disputeManagerLogin {
	margin-bottom: 1rem;
	margin-top: 1rem;
	width: 100%;
}

#centercol .mainContent.regContent .payconnectLogin .ampLogin h1
, #centercol .mainContent.regContent .payconnectLogin .disputeManagerLogin h1 {
	margin: 0;
}

.connectsLogin .productIcons,
.payconnectLogin .productIcons {
	margin-bottom: 1.5rem;
	margin-top: 0.75rem;
}

#columns .connectsLogin .newRegistration p {
	margin-bottom: 1.5rem;
}

.loginPanels {
	position: relative;
}

.loginPanels {
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	width: 97%
}

.loginPanels div#connectsLogin, .loginPanels div#payconnectLogin {
	display: none;
	width: 100%;
}

.loginPanels div#connectsLogin.activeLogin, .loginPanels div#payconnectLogin.activeLogin {
	display: block;
}

.loginPanels, .loginPanels label {	
	font-size: 0.85rem;
}

.loginPanels input[type="text"], .loginPanels input[type="password"] {
	font-size: 0.85rem;
	height: 1.5rem;
	width: 100%;
}

.registrationMarketing {
	margin-bottom: 1.5rem;
}

#columns .mainContent.regContent .registrationMarketing p,
#columns .mainContent.regContent .registrationMarketing ul,
#columns .mainContent.regContent .loginPanels .alternateEntry p {
	margin-bottom: 1rem;
}

/* Login panel input group stylings */
.login-input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #555;
	text-align: center;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 4px;
	display: flex;
	align-items: center;
	height: 26px;
	max-width: 40px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-inline-end: 0;
	min-width: 12px;
}

.login-input-group {
	display: inline-flex;
	width: 100%;
}

.login-input-group>input {
	height: 30px !important;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.loginBtn {
	padding: 12px 200px;
}

.universalBtn.btnPad11 {
	padding: 11px;
}