/* eocjsNewsticker v0.7.1 */

.eocjs-newsticker {
    padding: 10px 0;
    background-color: #eee;
    z-index: 100000;
  }
  
  .eocjs-newsticker .eocjs-newsticker-container {
    position: absolute;
    bottom: 0px;
    height: 24px;
    color: #fff;
    background-color: #000;
  }
  
  .eocjs-newsticker .eocjs-newsticker-one,
  .eocjs-newsticker .eocjs-newsticker-two {
    position: absolute;
    left: 0;
    top: 0;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    background-color: #000;
  }
  
  .eocjs-newsticker-loader {
    position: absolute;
    left: calc(50% - 10px);
    top: 2px;
    width: 20px;
    height: 20px;
    display: block;
    border: 3px solid #555555;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: eocjs-newsticker-spin .75s linear infinite;
  }
  
  @keyframes eocjs-newsticker-spin {
    to {
      transform: rotate(360deg);
    }
  }
  