/*** Look & Feel v7 Standard Theme ***/

/********** LOGO CUSTOMIZATIONS ************************************************/

/*** Logo size adjustment ***/
/*   Assumes the image is 200% intended size to account for retina display */
.layout_logo { 
	height: 100%;
}
/*** Logo size adjustment -- narrow screen (mobile) ***/
@media screen and (max-width: 768px) {
  .layout_logo {
	max-width: 90%;
	height: auto;
  }
}
ul.legal-links {
    list-style-type: none;
}
.page-0 .layout_text.textNode:nth-child(4n),.page-0 .layout_text.textNode:nth-child(5n) {
   display: none;
}
.page-0 .layout_text.textNode:nth-child(2n) {
     margin-top: 10px;
}
/********** OPTIONAL: HEADER BACKGROUND COLOR & BORDER CUSTOMIZATION ***********/
/* header {
	background-color: #000000;
	border-bottom: none;
} */

/********** BACKGROUND COLOR CUSTOMIZATION *************************************/
html {
	background: #FFFFFF;
}
body {
	background: none;
}

/********** PROGRESS BAR CUSTOMIZATION *****************************************/
/*** Progress bar ***/
.progressbar_progressBarIndicator {
    background-color: #CC0000;
}
.progressbar_progressBar {
    background-color: #f4cccc;
    height: 6px;
    width: 100%;
    position: fixed;
    z-index: 10000;
}


/********** QUESTION & ANSWER HOVER & SELECTION COLOR CUSTOMIZATIONS ***********/

/*** Hover and Focus on the Question options ***/
.dropdown_dropdownSelector:focus, .dropdown_dropdownSelector:hover, .hasNoTouch .option_input:focus+.option_optionContainer, .hasNoTouch .option_input:hover+.option_optionContainer, .hasNoTouch .cellOption_input:focus+.cellOption_indicatorContainer, .hasNoTouch .cellOption_input:hover+.cellOption_indicatorContainer, .textarea_textareaContainer:hover, .textarea_textareaContainer_isFocused, .layoutListItem_layoutListItemContainer_hasHighlights:hover, .layoutListItem_layoutListItemContainer_hasHighlights:focus, .dropdown_dropdownListItem:hover, .dropdown_dropdownListItem:focus, .hasNoTouch .option_optionContainer:hover, .hasNoTouch .option_optionContainer_hasBoxShadow, .textField_textField:focus, .textField_textField:hover, .calendarTextfieldInput:hover, .calendarTextfieldInput:focus, .calendar_calendarIconContainer:focus, .calendar_calendarIconContainer:hover, .hasNoTouch .day_day:focus, .hasNoTouch .day_day:hover {
	box-shadow: 0 0 0 3px #1B6EC2;
}

/*** Selected rating grid buttons color  ***/
.indicatorCircle_circle_isSelected {
	background: #1B6EC2;
	/* color: #213144; */ /* Optional: Use darker font color when selected answer color is light */
}

/* Optional: Adjusts font color within grids for when a light highlight color is used */
/* .indicatorCircle_label_isSelected {
	color: #213144;
} */

/*** Selected vertical radio button (Choose One) color ***/
.indicatorRadio_indicatorRadioContainer_isSelected {
	border: 8.4px solid #1B6EC2;
}

/*** Selected checkbox (Choose Many) color ***/
.indicatorCheckbox_indicatorCheckboxContainer_isSelected {
	background: #1B6EC2;
	border: 2px solid #1B6EC2;
}   

/* Calendar Icon Primary Color */
.calendar_calendarIcon, .calendarDatePickerButton .calendar_calendarIcon {
	color: #1B6EC2;
}
.calendar_calendarIconContainer_isActive {
	background-color: #1B6EC2;
}

/* Calendar Icon Secondary Color (White) */
.calendar_calendarIconContainer_isActive .calendar_calendarIcon {
	color: #FFFFFF;
}

/* Optional: Dropdown Max Height Adjustment */
/* When setting max-height value, use a multiple of 55px, since that aligns to height of an individual list item */
/* .dropdown_dropdownList.dropdown_dropdownList_isActive {
    max-height: 330px; 
    padding: 3px; 
    overflow: auto; 
} */

/********** FONT CUSTOMIZATIONS ************************************************/

/* Adjusts color + font family of all text in the survey that are not links or error validations */
body {
    color: #213144;
    font-family: "Open Sans", Arial, sans-serif;
}

/* Optional: Dark Background & Light Body Text Color Combinations Only - Adjusts font color for text within selectable containers */
/* .dropdown_dropdownContainer, .calendarTitle_calendarTitleLabel, .weekdayHeaders_weekdayHeadersContainer, .layout_answer, .modal_modalContainer, .tooltip_tooltipContentContainer {
    color: #213144;
} */

/* Adjusts color + font family of all error validations */
.layout_globalErrorBlock, .validation_errorBlock {
    color: #E03131;
    font-family: "Open Sans", Arial, sans-serif;
}

/* Adjusts color + font family of all text in the survey are links */
a {
    color: #213144;
    font-family: "Open Sans", Arial, sans-serif;
}

/* Adjusts color + font family of all footer links within the survey */
.layout_footer .layout_legalLinks a {
    color: #213144;
    font-family: "Open Sans", Arial, sans-serif;
}

/* Recommended: Decrease Font Size on Mobile If Your Client is Optimizing for Response Rates Over Accessibility */
@media screen and (max-width: 768px) {
	/* Reduce Font Size on Question */
	.questionCaption {
	   font-size: 18px;
	   line-height: 1.2;
	   display: block;
	}

	/* Reduce Padding on Questions */
	.question_questionTitle {
font-size: 22px;
	   padding: 10px 0;
	}

	/* Reduce Padding on Text Blocks */
	.layout_text {
	   padding: 10px 0;
	}

	.layout_answers {
	  margin: 0 0 5px;
	}

	/* Reduce Font Size for Validation Block */
	.validation_validationBlock {
	   font-size: 15px;
	   padding-bottom: 5px;
	}

	/* Hide Longform Multiselect Message */
	.longform_multiSelectMessage {
	   display: none;
	}
}


/********** BUTTON CUSTOMIZATIONS **********************************************/

/*** Primary button background & font color customization - Includes Begin Survey, Next, and Finish ***/
/* Primary button - color upon display */
.button_button_isPrimary {
    background-color: #CC0000;
    color: #FFFFFF;
}

/* MW 5.3 Multiselect color */
.indicatorCheckbox_indicatorCheckboxContainer_isSelected {
  background: #CC0000;
  border: 2px solid #CC0000;
}

/* Primary button - colors upon hover & focus */
.button_button_isPrimary:focus, 
.button_button_isPrimary:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

/*** Secondary button background & font color customization - Back button only ***/
/* Secondary button - color upon display */
.button_button_isSecondary {
    background-color: #CC0000;
    color: #FFFFFF;
}
/* Secondary button - colors upon hover & focus */
.button_button_isSecondary:focus, 
.button_button_isSecondary:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

/* Optional: Adjust button shape to be rounded */
/* .button_button {
  border-radius: 100px;
} */