.tw_alerts_website_tickers a {
  color: white !important;
}

.tw_alerts_website_tickers {
  position: fixed;
  background-color: #c0392b;
  padding: 10px;
  color: white;
  min-height: 42px;
  width: 100%;
  z-index: 999;
}

.scroll-text1 {
  height: 100%;
  overflow: hidden;
}

.scroll-text1 p {
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
  /* Starting position */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* Apply animation to this element */
  -moz-animation: scroll-lefts 20s linear infinite;
  -webkit-animation: scroll-lefts 20s linear infinite;
  animation: scroll-lefts 20s linear infinite;
  white-space: nowrap;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-lefts {
  0% {
    -moz-transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-lefts {
  0% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-lefts {
  0% {
    -moz-transform: translateX(100%);
    /* Browser bug fix */
    -webkit-transform: translateX(100%);
    /* Browser bug fix */
    transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
    /* Browser bug fix */
    -webkit-transform: translateX(-100%);
    /* Browser bug fix */
    transform: translateX(-100%);
  }
}

.tw_alerts_website_shortcode {
  background-color: #c0392b;
  padding: 16px;
  border-radius: 5px;
  font-size: 15px;
  line-height: 26px;
  max-height: 420px;
  overflow-x: hidden;
  overflow-y: auto;
}

.tw_alerts_website_shortcode a {
  color: white !important;
}

.blinking {
  -webkit-animation: blinkingText 1.2s infinite;
  animation: blinkingText 1.2s infinite;
}

@-webkit-keyframes blinkingText {
  0% {
    color: #fff;
  }

  25% {
    color: #A9A9A9;
  }

  50% {
    color: #696969;
  }

  75% {
    color: #A9A9A9;
  }

  100% {
    color: #fff;
  }
}

@keyframes blinkingText {
  0% {
    color: #fff;
  }

  25% {
    color: #A9A9A9;
  }

  50% {
    color: #696969;
  }

  75% {
    color: #A9A9A9;
  }

  100% {
    color: #fff;
  }
}

.pulsed {
  -webkit-animation: createBox 1.2s infinite;
  animation: createBox 1.2s infinite;
  color: white
}

@-webkit-keyframes createBox {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes createBox {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}


.glowing {
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
  color: white
}

@-webkit-keyframes glowing {
  0% {
    -webkit-box-shadow: 0 0 3px #222;
  }

  50% {
    -webkit-box-shadow: 0 0 40px #666;
  }

  100% {
    -webkit-box-shadow: 0 0 3px #222;
  }
}

@-moz-keyframes glowing {
  0% {
    -moz-box-shadow: 0 0 3px #222;
  }

  50% {
    -moz-box-shadow: 0 0 40px #666;
  }

  100% {
    -moz-box-shadow: 0 0 3px #222;
  }
}

@-o-keyframes glowing {
  0% {
    box-shadow: 0 0 3px #222;
  }

  50% {
    box-shadow: 0 0 40px #666;
  }

  100% {
    box-shadow: 0 0 3px #222;
  }
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 3px #222;
  }

  50% {
    box-shadow: 0 0 40px #666;
  }

  100% {
    box-shadow: 0 0 3px #222;
  }
}

.scroll-up {
  height: 100%;
  overflow: hidden;
}

.scroll-up p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  text-align: center;
  /* Starting position */
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  /* Apply animation to this element */
  -moz-animation: scrollup 5s linear infinite;
  -webkit-animation: scrollup 5s linear infinite;
  animation: scrollup 5s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes scrollup {
  0% {
    -moz-transform: translateY(100%);
  }

  100% {
    -moz-transform: translateY(-100%);
  }
}

@-webkit-keyframes scrollup {
  0% {
    -webkit-transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
  }
}

@keyframes scrollup {
  0% {
    -moz-transform: translateY(100%);
    /* Browser bug fix */
    -webkit-transform: translateY(100%);
    /* Browser bug fix */
    transform: translateY(100%);
  }

  100% {
    -moz-transform: translateY(-100%);
    /* Browser bug fix */
    -webkit-transform: translateY(-100%);
    /* Browser bug fix */
    transform: translateY(-100%);
  }
}