﻿.accordion {
    background-color: #002E6D;
    color: #FEFFFF;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    /**/
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0px;
    position: relative;
    line-height: 25px;
}

    .active, .accordion:hover {
        /*background-color: #ccc;*/
        text-decoration-line: underline;
    }

    .accordion:after {
        content: '\002B';
        color: #FEFFFF;
        font-weight: bolder;
        float: right;
        margin-left: 5px;
    }

/*.active:after {
    content: "\2212";
}*/

.panel1 {
    padding: 0 18px;
    background-color: #eceff1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #ddd;
}

.accordion {
    background-color: #002e6d
}
