/* FAQ Toggle Styles */


.faq-toggle {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-toggle-text {
  margin-right: 10px;  
  font-weight:bold;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  border-radius:1em;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0; 
  bottom: 0;
  -webkit-transition: .4s;
  background:#ccc;
  transition: .4s;
  border-radius:1em;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius:1em;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #2196F3;
} 

.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 1px #2196F3;
}

.toggle-switch input:checked + .toggle-slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}


.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.2s ease-out,
    background 0.3s ease-out;
  padding:0 1em 1em;
  background:#fff;
  margin-top:1em;
  border-radius:.5em;
}

.faq-content.faq-open {
  max-height: 5000px;
}