.faq-content {
  margin: 0 auto;
  max-width: 75%;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 20px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 4px 0 0 50px;
  display: block;
  cursor: pointer;
  font-weight: 300;
}

.panel-content {
  font-size: 16px;
  color: #666;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  /* z-index: -1; */
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 30px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  padding: 0;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

.top {
  justify-content: flex-start !important;
}

.w_70 {
  width: 70%;
}

.text-align-center {
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .faq-content {
    max-width: 95%;
  }
}