.accordion {
    background-color: #b8b9cf;
    color: #444 !important;
    cursor: pointer;
    margin: 5px 5px 10px 5px;
    width: 100%;
    border: none !important;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.5s;
    line-height: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-wrap-mode: wrap;
    height: auto !important;
    padding: 10px 30px 10px 10px;
    border-radius: 5px !important;
    font-size: 1.5rem;
    font-weight: bold;
}

.accordion:focus{
    outline: none !important;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #444;
    float: right;
    margin-right: -25px;
    align-self: flex-end;
    position: absolute;
}

.acactive:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.accordion .title{
    font-weight: bold;
    margin-top: 3px;
}

.accordion .date{
    color: #952d0c;
    font-size: 1.2rem;
    margin-left: 10px;
    padding-top: 5px;
    font-weight: bold;
}

.acactive, .accordion:hover {
    background-color: #ccc; 
}

.panel {
    padding: 0 18px;
    background-color: #ffffff22;
    display: none;
    height: 0px;
    overflow: hidden;
    margin: -10px -2px 0px 8px;
    transition: height 0.5s ease-out;
}

.panel .map{
    height: 300px;
    margin-top: 10px;
    margin-bottom: 20px;
}
