<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion .accordion-item {
  position: relative;
  background: transparent;
  background-clip: padding-box;
  padding: 0;
  border-bottom: 1px solid #efefef;
}

.accordion .accordion-item:last-child {
  border: 0;
}

.accordion button {
  position: relative;
  display: block;
  background: none;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 44px;
  color: var(--text-primary);
  text-align: left;
  font-size: 1.111rem;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
  transition: color 0.2s;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
}

.accordion button .icon::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='20' fill='%23FFFFFF' fill-opacity='0.99'/%3E%3Cpath d='M27.7443 16.0646L27.2202 15.5369C27.0552 15.3721 26.8358 15.2813 26.6012 15.2813C26.3668 15.2813 26.1471 15.3721 25.9822 15.5369L20.0036 21.5157L14.0181 15.5303C13.8534 15.3654 13.6337 15.2748 13.3993 15.2748C13.1649 15.2748 12.945 15.3654 12.7802 15.5303L12.256 16.0548C11.9147 16.3958 11.9147 16.9514 12.256 17.2925L19.3824 24.4445C19.5471 24.6092 19.7666 24.7253 20.0031 24.7253H20.0058C20.2403 24.7253 20.4598 24.6091 20.6245 24.4445L27.7443 17.3119C27.9092 17.1472 27.9997 16.9211 28 16.6867C28 16.4522 27.9092 16.2292 27.7443 16.0646Z' fill='%23171717' fill-opacity='0.7'/%3E%3C/svg%3E%0A");
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.accordion button:hover {
  color: var(--color-primary);
}

.accordion button[aria-expanded=true] {
  color: #000;
  transition: 0.3s;
}

.accordion button:hover .icon::before {
  rotate: 90deg;
  transition: 0.3s;
}

.accordion button[aria-expanded=true] .icon::before {
  rotate: 180deg;
  transition: 0.3s;
}

.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion .accordion-content p {
  color: var(--text-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 1.111rem 0;
}</pre></body></html>