
.faq-content {
  margin: 0 auto;
}

.faq-question {

    padding: 30px 0;
    border-bottom: 1px dotted #000;

}

.panel-title {
  font-size: 24px; color:#000; font-weight:700; font-family: 'Poppins', sans-serif;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 60px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-family: 'Roboto Mono', monospace; letter-spacing: 0.5px; font-size: 13px; font-weight: 400;
  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;
  border: solid;

padding: 1px 10px;

border-radius: 50%;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  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;
}

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

.panel {
  display: none;
}