#faq > .__section-content {
  animation: unset;
}

#faq .__section-activator {
  bottom: 10px;
  right: 10px;
  position: fixed;
}

#faq .__section-activator[item-visible="false"] {
  display: none;
}

#faq .__section-activator > .__section-activator--button {
  cursor: pointer;
  width: 59px;
  z-index: 10;
}

#faq .__container {
  float: left;
  padding: 1rem;
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  display: flex;
}

#faq .__faq-content {
  margin: auto;
  max-width: 50rem;
  width: 100%;
}

#faq .__faq-content .__faq-content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#faq .__faq-content .__faq-content-title > h2 {
  font-size: 1.5rem;
}

#faq .__faq-content .__faq-content-close--button {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

#faq .__faq-content .__faq-content-body .__faq-content-body--item {
  border-bottom: 1px solid #e5e5e5;
}

#faq .__faq-content-body--item > .__faq-content-body--item-title {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 0.9rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
   padding-right: 20px;
}

#faq
  .__faq-content-body--item[item-visible="true"]
  > .__faq-content-body--item-title {
  border-bottom: 1px solid #03b5d2;
}
#faq
  .__faq-content-body--item[item-visible="true"]
  > .__faq-content-body--item-title {
  color: #03b5d2;
}

#faq .__faq-content-body--item-title:hover,
#faq .__faq-content-body--item-title:focus {
  cursor: pointer;
  color: #03b5d2;
}

#faq .__faq-content-body--item-title > .__faq-content-body--item-title-label {
  padding: 1em 1.5em 1em 0;
}

#faq .__faq-content-body--item-title > .__faq-content-body--item-title-icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

#faq
  .__faq-content-body--item-title
  > .__faq-content-body--item-title-icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

#faq
  .__faq-content-body--item-title
  > .__faq-content-body--item-title-icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

#faq
  .__faq-content-body--item[item-visible="true"]
  > .__faq-content-body--item-title
  > .__faq-content-body--item-title-icon::after {
  width: 0;
}

#faq .__faq-content-body--item > .__faq-content-body--item-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

#faq .__faq-content-body--item > .__faq-content-body--item-content > p {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 2em 0;
}

#faq
  .__faq-content-body--item[item-visible="true"]
  > .__faq-content-body--item-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
