/* Activate code after specifying where does each script load */
/*FAQ Section

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .panel Div{
      padding: 15px;
  }

  */
  

  /* Content 
.hidden-content {
    transition: max-height 0.5s ease, opacity 0.5s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.show {
    max-height: 100%; 
    opacity: 1;
}

.button-container {
    text-align: center;
    margin: 20px 0;
}

#toggleContent {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    color: #1abc9c; 
    font-size: 20px;
}


#toggleContent:before {
    
    margin-right: 5px;
}

#toggleContent.show-less:before {
    
}

*/