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: 0px solid;
  transition: all 0.2s linear;
  text-transform: none;
  font-size: 20px;
  font-weight: 400;
  position: relative;
	color: #F6FAF8 !important;
	            box-shadow: 5px 5px 5px #aaa;
			border-radius: 10px;
}
.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;
	filter: brightness(0) saturate(100%) invert(100%) sepia(11%) saturate(337%) hue-rotate(67deg) brightness(100%) contrast(96%);
}
.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: 0px;
  border-bottom: 0px;
  border-right: 0px;
  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 */
