<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
*  @author    ThemeDelights
*  @copyright Since 2015 ThemeDelights. All Rights Reserved.
*  @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
.tdrealtimevisitor {
  position: relative;
  padding: 0 0 0 30px;
  line-height: 28px;
  margin: 20px 0 0;
}

.tdrealtimevisitor .icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  -webkit-animation: animated-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation: animated-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@-webkit-keyframes animated-pulse {
  50% {
    opacity: 0.6;
  }
}

@keyframes animated-pulse {
  50% {
    opacity: 0.6;
  }
}

.tdrealtimevisitor .count {
  font-weight: 600;
}
</pre></body></html>