/***Design v7 Standard Theme ***/

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

/*** Logo size adjustment ***/
/*   Assumes the image is 200% intended size to account for retina display */
.layout_logo {
    height: 30%;
    max-width: 30%;
}

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

    .anchor {
        font-size: 12px;
    }
}

.layout_mainHeader {
    padding: 32px 0;
    padding-top: 32px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

/********** 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: #FDCB4E;
}


/********** 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 #6d1f37;
}

/*** UN-Selected rating grid buttons color  ***/
.indicatorCircle_circle {
    /*     background: #EE7D80;
    border-radius: 52.625rem; */
    /* color: #000000; */
    /* Optional: Use darker font color when selected answer color is light */
}

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

/*** Selected rating grid buttons color  ***/
.cellOption_indicatorContainer_isNaOption>indicatorRadio_indicatorRadioContainer {
    background: #f0f0f0 !important;
    /* 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 #6d1f37;
}

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

/* Calendar Icon Primary Color */
.calendar_calendarIcon,
.calendarDatePickerButton .calendar_calendarIcon {
    color: #6d1f37;
}

.calendar_calendarIconContainer_isActive {
    background-color: #6d1f37;
}

/* 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;
    box-sizing: border-box;
} */

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

/* Adjusts color + font family of all text in the survey that are not links or error validations */
body {
    color: #000000;
    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: #000000;
} */

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

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

/* Adjusts color + font family of all footer links within the survey */
.layout_footer .layout_legalLinks a {
    color: #000000;
    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 {
        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 **********************************************/

.indicatorCircle_indicatorCircleContainer {
    position: relative;
    height: 100%;
    width: 100%;

    min-height: 3.5rem;
    line-height: 3.5rem;
    overflow: hidden
}


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

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

/*** Secondary button background & font color customization - Back button only ***/
/* Secondary button - color upon display */
.button_button_isSecondary {
    background-color: #f0f0f0;
    color: #000000;
}

/* Secondary button - colors upon hover & focus */
.button_button_isSecondary:focus,
.button_button_isSecondary:hover {
    background-color: #f0f0f0;
    color: #000000;
}

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