/* Style the buttons that are used to open and close the accordion panel */
.faq-section-title {
    color: #ec6742;
}

.faq-accordion {
    background-color: #f8f8f8;
    /*color: #ec6742;*/
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-weight: bold;
  }

  /* 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) */
.faq-active, .faq-accordion:hover {
    /*background-color: transparent;*/
}

.faq-accordion:focus {
  outline: none;
}

/* Style the accordion panel. Note: hidden by default */
.faq-panel {
    padding: 0 0 0 15px;
    background-color: #f8f8f8;
    /*background-color: #f8f8f8;*/
    display: none;
    overflow: hidden;
    transition: max-height 1s ease-out;
}

.faq-accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

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

.faq-block {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: white;
}

.faq-section {
    margin-top: 20px;
    margin-bottom: 20px;
}