/*AEM CSS Repository*/

/* Apply weight/color to text when set in RTE*/
.guideContainerNode .red {
	color: #E21121;
}
.guideContainerNode .bold {
	font-weight: bold;
}

/*highlight text blurb
.guideTextDraw.guideStaticText {
	background-color: #FFFFAA;
}*/

/******************ReCATPCHA*****************************/
/* Move recaptcha badge to the left side */
.grecaptcha-badge {
	width: 70px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
	left: 4px !important;
}
.grecaptcha-badge:hover {
	width: 256px !important;
}

/******************Form Fields*****************************/

/*Form Field Bottom Border Color
.dropDownList select, input, select, textarea, .guideScribble img, .afTermsAndConditions
{
    border-bottom: 3px solid #515151;
}*/

/*Form Dropdown Field Area Size Control*/
.dropDownList select{
    height: 3.1rem;
    /* border-bottom: 3px solid #515151; */
}

/*Make font-weight bold for all form labels*/
.guideFieldLabel label {
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 2px;
}

/*italicize and resize all short descriptions*/
.guideFieldDescription.short p {
	font-size: 16.5px;
	color: #595959;
	font-style: italic;
	margin-top: 1px;
	margin-bottom: 2px;
}

/* wrap long text for checkbox and radio options */
.guideCheckBoxGroupItems .afCheckBoxItem {
	width: auto;
}

.guideRadioButtonGroupItems .afRadioButtonItem {
	width: auto;
}

/*increase visability of agreement text for terms & conditions components*/
.guide-tnc-checkbox .guideWidgetLabel label {
	color: black;
	font-weight: bold;
}

/*align check box and agreement text for terms & conditions components*/
.guideWidgetLabel.right label, .guideWidgetLabel.left label {
	line-height: 3rem;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

/*Make text white on Description Pop-up*/
.tooltip P {
	color: white !important;
}

/*Hide the Description Pop-up
tooltip.bottom.fade.in {
	display:none !important;
}*/

/******************************** Header/Footer Override **********************************/

/** Remove the "X" from the searchbar that displays when it shouldn't (temporary) **/
@media only screen and (max-width : 768px) {
	button.cmp-agency-header__mobile-nav {
		width: 25px;
		height: 20px;
		overflow: hidden;
	}
}

@media only screen and (min-width : 769px) {
	.container--padding-left-right .cmp-container {
		padding: 0px;
	}
	.header-navigation .container--header-navigation {
		border-top: 0px !important;
	}
	.header-navigation {
		border-top: solid 1px #FFFFFF;
	}
	.container--header-navigation {
		width: 1200px;
	}
	.fa-times.cmp-search-input__search-icon__close {
		display: none !important;
	}
	/*** Fix the page width on forms pages (header/footer) ***/
	.container--padding-left-right {
		width: 1170px;
	}
}

/****************************** Button Control ***************************/

/*round the corners of the all buttons*/
.guideContainerNode button:not(.af-icon-button), .guideContainerNode input[type='button'] {
	border-radius: 5px;
}

/*round the corners of the buttons in the form toolbar only
.afToolbarButton .guidebutton button:not(.af-icon-button) {
	border-radius: 5px;
}*/

/*set color of text & bckground of Reset button*/
.resetBtn:hover{
	color:#FFFFFF;
	background:#0839AD;
}
.resetBtn{
	color:#005180;
	background:#FFDC00;
}

/******************************** Tab Control ******************************/

/*add decoration before top level nav. list items*/
.tab-navigators > li > a.guideTopNavIcon::before {
	content: '>>';
	font-weight:bold;
}

/*make top level nav text bold*/
.tab-navigators > li > a.guideTopNavIcon{
	font-weight:bold;
}

/*Tab Font Color*/
.guideVerticalTabbedPanelLayout .tab-navigators>li>a.guideTopNavIcon{
	color: #757575;
}

/*SELECTED Tab Font Color and Underline Color*/
.guideVerticalTabbedPanelLayout .tab-navigators>li.active>a.guideTopNavIcon, 
.guideVerticalTabbedPanelLayout .tab-navigators-vertical .tab-navigators-vertical li.active>a.guideTopNavIcon, 
.guideVerticalTabbedPanelLayout .tab-navigators>li.stepped.active>a.guideTopNavIcon, 
.guideVerticalTabbedPanelLayout .tab-navigators-vertical .tab-navigators-vertical li.stepped.active>a.guideTopNavIcon, 
.guideVerticalTabbedPanelLayout .tab-navigators>li.active>a.guideTopNavIcon:hover, 
.guideVerticalTabbedPanelLayout .tab-navigators-vertical .tab-navigators-vertical li.active>a.guideTopNavIcon:hover{
	color: #111111;
	border-color: #111111;
}

/****************************** Mobile Controls ********************************/

/***************** Toolbar Buttons ***********/

@media (max-width: 767px) {
	.afToolbarButton .guidebutton button .iconButton-icon {
		display: none!important;
	}
	.afToolbarButton .guidebutton button .iconButton-label {
		display: block!important;
	}
	.afToolbarButton .guidebutton button.submit {
		margin-right: 1!important;
	}
}

/*Keep toolbar at bottom of form in mobile view*/
@media (max-width: 767px) {
	.guideToolbarNode {
		position: inherit;
	}
}

