@charset "utf-8";
/* CSS Document */

.static [data-faq-category-toggle="off"] + .faq-category {
  height: 0;
  overflow: hidden;
}

.static .faq-item {
  display: block;
  margin: 7px auto;
}

.static .faq-item .faq-q {
  padding: 15px 30px 15px 51px;
  border: 1px solid var(--clr-gray-mid);
  border-radius: 4px;
  margin: 0;
  background: var(--clr-white);
}

.static .faq-item .faq-q .faq-arrowbox--q {
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
}

.static .faq-q {
  color: var(--clr-third-black);
  font-size: 14px;
  display: block;
  position: relative;
  padding: 10px 30px 10px 51px;
  border: 1px solid var(--clr-gray-mid);
  border-radius: 4px;
  margin: 7px 0;
}

.static .faq-q:hover {
  cursor: pointer;
}

.static .faq-q .faq-arrowbox--q {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
}

.static .faq-a {
  position: relative;
  padding: 10px 10px 15px 48px;
  border: 1px solid var(--clr-gray-mid);
  border-radius: 0 0 4px 4px;
  border-top-width: 0;
  background-color: var(--clr-gray-lightest);
}

.static .faq-a p{
	margin: 0.5em 1em;
	line-height: 1.8}

.static .faq-a .faq-arrowbox--a {
  position: absolute;
  top: 10px;
  left: 10px;
}

.static .faq-a .static-l-links {
  margin: 0 auto 20px;
}

.static .faq-arrowbox--q, .static .faq-arrowbox--a {
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  border-radius: 4px;
  padding: 0 3px;
  text-align: center;
  position: relative;
  min-width: 30px;
  height: 22px;
  line-height: 22px;
  font-style: normal;
}

.static .faq-arrowbox--q:after, .static .faq-arrowbox--a:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border: 6px solid transparent;
  border-top-width: 6px;
  bottom: -11px;
}

.static .faq-arrowbox--q {
  background: var(--clr-third-black);
}

.static .faq-arrowbox--q:after {
  border-top-color: var(--clr-third-black);
}

.static .faq-arrowbox--a {
  background: var(--clr-prime);
}

.static .faq-arrowbox--a:after {
  border-top-color: var(--clr-prime);
}

.static [data-faq-toggle]:after {
content: '';
width: 10px;
height: 10px;
border: 0;
border-bottom: solid 3px var(--clr-third-black);
border-right: solid 3px var(--clr-third-black);
position: absolute;
top: 50%;
right: 15px;
margin-top: -8px;
transform: rotate(45deg);
}

.static .faq-item .faq-q[data-faq-toggle="on"] {
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 4px 4px 0 0;
}

.static .faq-item .faq-q[data-faq-toggle="on"]:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.static .faq-item .faq-q[data-faq-toggle="off"] + .faq-a {
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}
