<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/** 3.20 RD Audio Player */
.rd-audio {
  position: relative; }
  .rd-audio.muted .rd-audio-volume:before {
    content: ""; }
  .rd-audio.state-playing .rd-audio-play-pause:before {
    content: ""; }

.rd-audio-icon {
  font-size: 16px;
  color: #434345; }
  @media (min-width: 480px) {
    .rd-audio-icon {
      font-size: 18px; } }

.rd-audio-play-pause {
  position: relative;
  font-size: 20px; }
  .rd-audio-play-pause.has-controls {
    margin: 0 5px; }
    .rd-audio-play-pause.has-controls:after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 28px;
      height: 28px;
      content: '';
      border-radius: 50%;
      border: 2px solid rgba(67, 67, 69, 0.5);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  @media (min-width: 768px) {
    .rd-audio-play-pause {
      font-size: 24px; }
      .rd-audio-play-pause.has-controls {
        margin: 0 13px; }
        .rd-audio-play-pause.has-controls:after {
          width: 36px;
          height: 36px; } }

.rd-audio-progress-bar {
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 8px;
  cursor: pointer; }
  .rd-audio-progress-bar:before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    right: 0;
    background: #f5f5f5;
    content: ''; }
  .rd-audio-progress-bar .current {
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    z-index: 0; }
    .rd-audio-progress-bar .current {
      background: -moz-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
      background: -webkit-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
      background: -o-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
      background: -ms-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
      background: linear-gradient(90deg, #ffa200 0%, #84c450 100%); }
  @media (min-width: 480px) {
    .rd-audio-progress-bar {
      position: relative;
      width: 100%;
      top: 0; } }

.rd-audio-progress-bar-wrap {
  width: 60%;
  margin: 0 5px 0 15px; }
  @media (min-width: 480px) {
    .rd-audio-progress-bar-wrap {
      margin: 0 17px 0 18px;
      position: relative;
      width: 100%; } }

.rd-audio-controls {
  position: relative;
  z-index: 3;
  padding: 8px 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  will-change: opacity;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: .3s all ease; }
  .rd-audio-controls-left {
    white-space: nowrap;
    width: 20%; }
    .rd-audio-controls-left:before {
      content: '';
      display: inline-block;
      height: 100%; }
    .rd-audio-controls-left &gt; * {
      display: inline-block;
      vertical-align: middle; }
  .rd-audio-controls-right {
    width: 10%; }
  @media (min-width: 480px) {
    .rd-audio-controls {
      padding: 18px 10px; } }
  @media (min-width: 992px) {
    .rd-audio-controls {
      padding: 18px 30px; } }

.rd-audio-prev {
  transform: rotate(180deg); }

.rd-audio-volume {
  margin-right: 5px; }
  .rd-audio-volume-bar {
    position: relative;
    cursor: pointer;
    height: 8px;
    width: 80px; }
    .rd-audio-volume-bar:before {
      content: '';
      position: absolute;
      top: 3px;
      bottom: 3px;
      left: 0;
      right: 0;
      background: #f5f5f5; }
    .rd-audio-volume-bar .current {
      position: absolute;
      left: 0;
      top: 3px;
      bottom: 3px;
      width: 100%;
      z-index: 0; }
      .rd-audio-volume-bar .current {
        background: -moz-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
        background: -webkit-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
        background: -o-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
        background: -ms-linear-gradient(90deg, #ffa200 0%, #84c450 100%);
        background: linear-gradient(90deg, #ffa200 0%, #84c450 100%); }
  @media (min-width: 480px) {
    .rd-audio-volume {
      margin-right: 10px; } }

.rd-audio-volume, .rd-audio-volume-bar {
  display: none; }
  @media (min-width: 992px) {
    .desktop .rd-audio-volume, .desktop .rd-audio-volume-bar {
      display: block; } }

.rd-audio-title-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 10px;
  overflow: hidden;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left; }
  @media (min-width: 480px) {
    .rd-audio-title-wrap {
      position: absolute;
      bottom: 100%;
      left: 0;
      width: auto;
      margin: 0; } }
  @media (min-width: 768px) {
    .rd-audio-title-wrap {
      max-width: 70%; } }

.rd-audio-title-divider {
  display: none; }

.rd-audio-title-wrap .rd-audio-title, .rd-audio-title-wrap .rd-audio-author {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden; }

@media (min-width: 480px) {
  .rd-audio-title-wrap .rd-audio-title, .rd-audio-title-wrap .rd-audio-author, .rd-audio-title-wrap .rd-audio-title-divider {
    display: inline; } }

.rd-audio-time {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  font-size: 13px;
  font-style: italic; }
  @media (min-width: 480px) {
    .rd-audio-time {
      display: block; } }
  @media (min-width: 768px) {
    .rd-audio-time {
      top: auto;
      bottom: 100%; } }

.rd-audio-playlist-button {
  margin-left: 15px; }
  @media (min-width: 480px) {
    .rd-audio-playlist-button {
      margin-left: 20px; } }

.rd-audio-playlist-wrap {
  position: absolute;
  left: 0;
  bottom: 100%;
  right: 0;
  display: none;
  margin-bottom: -5px;
  padding-bottom: 5px;
  text-align: left;
  box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.15);
  background: #fff; }

.rd-audio-playlist-title {
  padding: 7px 18px;
  margin-bottom: 0;
  font-weight: 900;
  font-size: 13px;
  text-align: left;
  letter-spacing: .12em;
  border-bottom: 1px solid #d9d9d9;
  text-transform: uppercase; }

.rd-audio-playlist {
  list-style-type: none;
  padding-left: 0;
  max-height: 170px;
  overflow-y: auto; }
  .rd-audio-playlist li {
    position: relative;
    overflow: hidden;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    text-overflow: ellipsis;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s all ease; }
    .rd-audio-playlist li:before, .rd-audio-playlist li:after {
      content: " ";
      display: table; }
    .rd-audio-playlist li:after {
      clear: both; }
    .rd-audio-playlist li:before {
      font-family: 'Material Design Icons';
      display: inline-block;
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      margin-right: 10px;
      vertical-align: middle;
      content: "";
      opacity: .5; }
    .rd-audio-playlist li.playing, .rd-audio-playlist li.paused {
      background: #f7f7f7; }
    .rd-audio-playlist li.playing:before {
      content: '\f4d5';
      opacity: 1; }
    .rd-audio-playlist li:hover {
      background: #c4c4c4; }
    @media (min-width: 480px) {
      .rd-audio-playlist li {
        padding: 8px 70px 8px 18px; } }

.song-duration {
  position: absolute;
  right: 18px;
  font-style: italic;
  opacity: .5;
  display: none; }
  @media (min-width: 480px) {
    .song-duration {
      display: inline-block; } }</pre></body></html>