<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Theme */
/* Colors */
/* Sizes */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.smooth-Accordion {
  border-radius: 2px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.smooth-Accordion .smooth-Accordion-header {
  display: block;
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.87);
  font-size: 18px;
  line-height: 24px;
  padding: 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  position: relative;
}

.smooth-Accordion .smooth-Accordion-header.smooth-Accordion-last {
  border-bottom: 0;
}

.smooth-Accordion .smooth-Accordion-header::after {
    content: '';
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0) rotate(0deg);
    position: absolute;
    top: 16px;
    right: 16px;
    transition: transform 0.5s;
    background: url(../img/down-arrow.png) no-repeat center center;
    width: 16px;
    height: 24px;
    line-height: 16px;
}

.smooth-Accordion .smooth-Accordion-header.smooth-Accordion-open::after {
  transform: translate(0, 0) rotate(180deg);
}

.smooth-Accordion .smooth-Accordion-content {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.87);
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.smooth-Accordion .smooth-Accordion-content.smooth-Accordion-last {
  border-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
 

.blue.smooth-Accordion .smooth-Accordion-header {
    background: #2962FF;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}

.pink.smooth-Accordion .smooth-Accordion-header {
    background: #E91E63;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}

.cyne.smooth-Accordion .smooth-Accordion-header {
    background: #00BCD4;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}

.orange.smooth-Accordion .smooth-Accordion-header {
    background: #FF9800;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}

.grey-blue.smooth-Accordion .smooth-Accordion-header {
    background: #607D8B;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}

.purpal.smooth-Accordion .smooth-Accordion-header {
    background: #673AB7;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}</pre></body></html>