/**
 *
 * Styles for "excelAccordion" accordion.
 *
 * Name of the style is specified as a second className after "jsExcelAccordion" on the accordion container tag like so: <div class="jsExcelAccordion excelAccordion__style_new">
 * If you need different styles then add a copy of this style's code below and rename all the "excelAccordion__style_new" in it to something else, like: "excelAccordion__style_other_new".
 * And don't forget to specify the new style name as a second classname on the accordion container tag.
 *
 */





/**
 *
 *
 *
 * Styles for "excelAccordion__style_new" accordion.
 *
 *
 *
 */

.excelAccordion__style_new {
    font-family: "Open Sans",sans-serif;
}


/**
 * header
 */
.excelAccordion__style_new .ui-accordion-header {
    padding: 1rem 1.5rem;
    user-select: none;
    border-radius: 0;
    background: none;
    border: 2px solid #0095e9;
    color: #0074b6;
    margin: 0;
    line-height: 1.125rem;
    transition: background-color .1s linear;
}
.excelAccordion__style_new .ui-accordion-header:not(first-child) {
    margin-top: -2px;
}

.excelAccordion__style_new .ui-accordion-header::before {
    padding-right: 0.5rem;
    font-size: 1.25rem;
    display: inline-block;
    width: 0.875rem;
    content: "\002B";
    box-sizing: content-box;
}
.excelAccordion__style_new .ui-accordion-header.ui-state-hover,
.excelAccordion__style_new .ui-accordion-header.ui-state-active {
    background-color: #0095e9;
    color: #fff;
}


.excelAccordion__style_new .ui-accordion-header.ui-state-active::before {
    content: "\2212";
}
.excelAccordion__style_new .ui-accordion-header-icon {
    display: none;
}


/**
 * content
 */
.excelAccordion__style_new .ui-accordion-content {
    padding: 1.5rem;
    background-image: none;
    background-color: #f6f6f6;
    border: 0;
    border-radius: 0;
    line-height: 1.5rem;
}



