html {
  scroll-behavior: smooth;
}

.spek-plugin-accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  margin-bottom: 0;
  padding: 10px 30px 10px 20px;
  border: 1px solid;
  transition: all 0.2s linear;
  text-transform: none;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}
.spek-plugin-accordion:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url('chevron-down.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.2s linear;
}
.spek-plugin-accordion:hover {
  opacity: 0.9;
}

.spek-plugin-accordion.active {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.spek-plugin-accordion.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.answer-panel {
  display: none;
  overflow: hidden;
  transition: all 0.2s linear;
  max-height: 0px;
  padding: 0px 20px;
  border-left: 1px;
  border-bottom: 1px;
  border-right: 1px;
  border-top: 0px;
  border-style: solid;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.answer-panel p {
  margin-bottom: 10px;
  font-size: 16px;
}
.answer-panel p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=spek-accordions-style.css.map */
