.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: all 0.5s;
}
.accordion:hover, .active{
    background-color: #ccc;
}
.accordion::after{
    content: "\02795";
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
.active::after{
    content: "\2796";
}
.panel{
    padding: 0 10px;
    background-color: white;
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;
    width: 100%;
}
.panel-body {
    border-top-color: #EEEEEE;
}
.panel-body {
    padding: 15px;
}
.tab-content {
    color: #191919;
}
button, button:focus, button:hover {
    background-color: #FAFAFA;
    border-color: #EEEEEE;
}

