/* Minification failed. Returning unminified contents.
(19,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(22,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(47,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: transparent;
    color: #4a90e2;
    cursor: pointer;
    padding: 8px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active {
    color: var(--primary);
}
.current {
    color: var(--primary);
}
/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: transparent;
    display: none;
    overflow: hidden;
    border: none;
    box-shadow: none;
    margin-bottom:0px;
}
.accordion:after {
    font-size: 10px;
    content: '\25B6'; /* Unicode character for "plus" sign (+) */
    /*font-size: 14px;*/
    color: #4a90e2;
    float: left;
    margin-right: 5px;
    font-family: 'Open Sans', sans-serif;
}

.active:after {
    content: "\25BC"; /* Unicode character for "minus" sign (-) */
    font-size: 12px;
    color: var(--primary);
}

