.faq-title{
    width: 100%;
}
.faq-outer-div{
    margin-top: 20px;
    background-color: white;
}

.panel-wrapper {
  position: relative;
}

.faq-button-wrapper{
  display: flex;
  justify-content: center;
}

.faq-button {
    background-color: #FCC22C;
    cursor: pointer;
    color: #333333;
    border: none;
    padding: 10px 20px 10px 20px;
    border-radius: 4px;
    margin: auto 0;

    position: absolute;
    bottom: -64px;
    z-index: 5;
    text-align: center;
}

.faq-button:hover{
    background-color: #ebb11d;
    color:#333333;
    text-decoration: none;
}

.faq-content {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height .5s ease;
  width: 100%
}
.faq-fade {
  background: linear-gradient(to bottom, transparent, white);
  height: 200px;
  margin-top: -200px;
  position: relative;

}

.faq-button#hide{
  display: none;
}