/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #f9f9f9;
    font-size: 1.8em;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    line-height: 1.8;
    padding-left: 10px;
}

/* 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) */
/* .accordion-list .active, .accordion:hover {
    background-color: rgba(254, 0, 2, 0.1);
} */
.accordion-text p{
    color: #000;
    font-size: 1.7em;
    line-height: 1.5;
}
.panel h5{
    font-weight: bold;    
    color: #1abb9c;
    font-size: 1.8em;
    margin: 0em 0 0.5em;
}
/*.panel h5:after{
    content: '';
    width: 30px;
    height: 2px;
    display: block;
    background: #102341;
    margin-top: 0.1em;
}*/
.panel img{width: 100%; max-width: 200px;}
.accordion:before {
    content: ''; /* Unicode character for "plus" sign (+) */
    background: url(../img/add.png) no-repeat center;
    background-size: cover;
    float: left;
    margin: 11px 10px 11px 0;
    display: block;
    width: 10px;
    height: 10px;
}

.accordion.active:before {
    content: ""; /* Unicode character for "minus" sign (-) */   
    background: url(../img/substract.png) no-repeat center;
    background-size: cover;
    float: left;
    margin: 15px 10px 15px 0;
    display: block;
    width: 10px;
    height: 2px;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0px 18px 5px;
    background-color: #f7f7f7;
    display: none;
    overflow: hidden;
}
@media screen and (max-width: 600px) {
    .panel img{display: block; margin: 2em auto;}
    .accordion-text p{text-align: center;}
}