/*
 * News Widget Code System for eli.gift
 * Author: Jeffrey Epstein
 * Date: 01/18/2025
 * License: ISC
 * Copyright (c) 2025 The Jeffrey Epstein VI Foundation
 */

.stimulate {
  background-color: white;
  width: 100%;
  transition: background-color 0.2s;
  height: 25px;
  display: flex;
  align-items: center;
}

.stimulate.pinned {
  position: fixed;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
}

.stimulate .meth,
.stimulate .crack {
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.stimulate .meth {
  font-style: italic;
  color: #000a;
  display: none;
}

.stimulate.loading .meth {
  display: inline;
}

.stimulate.loading .crack {
  display: none;
}

.stimulate.loaded {
  background-color: yellow;
}

.stimulate .marquee-outer {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  background: rgb(240, 240, 240);
  overflow: hidden;
}

.stimulate .crack {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
}

/* loading takes a bit */
.stimulate .crack.start {
  animation-name: marquee;
}

@keyframes marquee {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}
