<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Visual styles for Startup Growth's accordions.
 */
.panel-group {
  margin: 25px 0;
}
.panel-group .panel {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.panel-default &gt; .panel-heading {
  background: transparent;
  color: #000000;
  font-size: 12px;
  padding: 0;
  outline: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 100%;
}
.panel-heading:hover {
  text-decoration: none;
  background: #3f3f3f;
  color: #fff;
}
.panel-title a {
  font-weight: 400;
  padding: 15px;
  display: inline-block;
  width: 100%;
}
.panel-title a.collapsed {
  color: #1e1e1e !important;
}
.panel-title a:hover {
  color: #fff !important;
  text-decoration: none;
}
.panel-title a i {
  padding-right: 10px;
  font-size: 20px;
}

/*accordions @colored regions*/
.colored-region .panel {
  background-color: transparent;
  color: #ffffff;
}
.colored-region .panel-title a,
.colored-region .panel-title a.collapsed {
  text-decoration: none;
  color: #ffffff!important;
}
.colored-region .panel-heading:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
</pre></body></html>