/* sass --watch public/scss:public/css */
.faqs-q {
  position: relative;
  margin-bottom: 2em;
}
.faqs-a {
  height: 0;
}
.faqs-a p {
  pointer-events: none;
  position: relative;
  top: -20px;
  opacity: 0;
  transition: all 0.3s;
}
.faqs-q--open .faqs-a {
  height: auto;
}
.faqs-q--open .faqs-a p {
  top: 0;
  opacity: 1;
  pointer-events: all;
}
.faqs-expander {
  display: block;
  position: absolute;
  right: 1em;
  top: 1em;
  height: 20px;
  width: 20px;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-color: #7A40FF;
  transform: rotate(135deg);
  transform-origin: 70% 30%;
  transition: all 0.3s;
}
.faqs-q--open .faqs-expander {
  transform: rotate(-45deg);
}
.faqs h3 {
  display: inline-block;
  padding-right: 3em;
  cursor: pointer;
  margin: 0.6em 0;
}
.faqs p {
  text-align: justify;
  margin-top: 0.2em;
}
.faqs-switch {
  display: flex;
  flex-direction: row;
  height: 60px;
  max-width: 460px;
  position: relative;
  margin: 40px 0;
  font-weight: bold;
  outline: solid 1px #7A40FF;
  cursor: pointer;
}
.faqs-switch-option {
  width: 50%;
  line-height: 60px;
  vertical-align: middle;
  text-align: center;
  z-index: 1;
  color: #7A40FF;
  transition: all 0.3s;
}
.faqs-switch-option:hover {
  color: white;
}
[data-selected=artists] .faqs-switch-option[data-option=artists], [data-selected=hirers] .faqs-switch-option[data-option=hirers] {
  color: white;
}
.faqs-switch-thumb {
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7A40FF;
  transition: all 0.3s;
}
[data-selected=hirers] .faqs-switch-thumb {
  left: 50%;
}
.faqs-body {
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 30px;
  transition: all 0.5s;
}
.faqs-body--show {
  z-index: 2;
  opacity: 1;
  top: 0;
}

/*# sourceMappingURL=faqs.css.map */
