﻿/* Buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #eaeaea;
    color: #3a3a3a;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 14px;
    font-weight: bold;
}

.accPanel th {
    padding: 4px 8px;
    text-align: left;
    font-weight: normal;
}

.accPanel thead tr:first-child {
    border-top: none;
}

.accPanel tr {
    border-top: 1px solid #ccc;
    font-weight: bold;
    font-size: 16px;
}

.accPanel td {
    padding: 3px 6px;
}

/* Background color for the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ccc;
}

/* The accordion panel. Note: hidden by default */
.accPanel {
    padding: 2px 14px 6px 14px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: #1a5178;
}

/*Plus and Minus icons*/
.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}