/**
 * /assets/scss/partials/base/mixins.scss
 *
 * Let's define our universal mixins for use throughout the theme
 */
/**
 * Base text styles
 */
/**
 * Base button styles
 */
/**
 * Button reset
 */
/**
 * Label styles
 */
/**
 * Transitions
 */
.block-faq__toggle-question, .block-faq__toggle-question-icon {
  transition: all 0.2s ease-in-out;
}

/**
 * Placeholder Color
 */
/**
 * Media queries
 */
.block-faq {
  display: block;
  width: 100%;
}
.block-faq__toggle {
  width: 100%;
  position: relative;
  border-top: 1px solid #fff;
}
.block-faq__toggle-question {
  width: 100%;
  padding: 24px 48px 24px 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}
.block-faq__toggle-question:hover {
  color: var(--wp--preset--color--primary);
}
.block-faq__toggle-question-icon {
  position: absolute;
  right: 0px;
  top: 20px;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  background-image: url("../../assets/images/icons/faq-toggle.svg");
  background-size: cover;
}
.block-faq__toggle-question[aria-expanded=true] .block-faq__toggle-question-icon {
  transform: rotate(45deg);
}
.block-faq__toggle-answer {
  display: none;
  padding: 0 48px 24px 0;
}
.block-faq__toggle-answer p:last-child {
  margin-bottom: 0;
}
