/***Design v7 - Serenity Theme ***/

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

/* Logo size adjustment */
/* Assumes the image has a 1000px width to account for retina display */
.layout_logo { 
	width: 50%;
}

/* Logo size adjustment -- narrow screen (mobile) */
@media screen and (max-width: 768px) {
  .layout_logo {
	width: 90%;
	height: auto;
  }
}

/********** PROGRESS BAR CUSTOMIZATION *****************************************/
/*** Progress bar ***/
.progressbar_progressBarIndicator {
	background-color: #0099D8;
height: 12px;
}

/* Progress bar background, or incomplete area */
.progressbar_progressBar {
    height: 12px;                  /* Height of the bar */
}

/********** HEADER CUSTOMIZATION ***********************************************/
/* Remove border separator between header and survey content */
header {
	border-bottom: none;
}

/********** BACKGROUND IMAGE CUSTOMIZATION *************************************/
html {
	background-color:white;
}

body {
	background: none;
}


/********** 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 #00A7B5;
}

/*** Selected rating grid buttons color  ***/
.indicatorCircle_circle_isSelected {
	background: #00A7B5;
	/* color: #000000; */ /*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: #000000;
} */

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

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

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

/* 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: #000000;
	/*font-family: Lora, serif;	*/
}

/* Darken font color for text within selectable containers */
.dropdown_dropdownContainer, .calendarTitle_calendarTitleLabel, .weekdayHeaders_weekdayHeadersContainer, .layout_answer, .modal_modalContainer, .tooltip_tooltipContentContainer {
	color: #000000;	
}

/* Adjusts color + font family of all error validations */
.layout_globalErrorBlock, .validation_errorBlock {
	color: #E03131;
	/*font-family: Lora, serif;*/
}

/* Adjusts color + font family of all text in the survey are links */
a {
	color: #000000;
	/*font-family: Lora, serif;*/
}

/* Adjusts color + font family of all footer links within the survey */
.layout_footer .layout_legalLinks a {
	color: #000000;
	/*font-family: Lora, serif;*/
}

/* Validation error text */
.validation_validationBlock {
    font-size: 14px;
    /*font-family: Lora, serif;*/
}
/* Global error message */
.layout_globalErrorBlock {
    font-size: 14px;
    /*font-family: Lora, serif;*/
    padding-bottom: 32px;   /* Font spacing */
}


/* 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 {
		 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: 14px;
		 padding-bottom: 5px;
	}

	/* Hide Longform Multiselect Message */
	.longform_multiSelectMessage {
		 display: none;
	}
	/* Reduce the size of the button */
	.indicatorCircle_circle_isSelected {
		transform: scale(1.5);
	}
}


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

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

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

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

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


.otherOptionTextfield_input {
margin-top:-5px
}