body {
  font-family: urbane-rounded,sans-serif;
  font-weight: 500;
  font-style: normal;
}

#notifications {
  position: fixed;
  bottom: 0;
  right: 0;

  width: 100%;
  max-width: 400px;

  margin: 10px;
}

#notifications > div {
  background-color: #f77c00;
  border: 1px solid #000000;
  border-radius: 3px;
  padding: 5px;
  margin-top: 5px;
}

header {
  background-color: #f70000;
  border-bottom: 10px solid #000;
}

header #logo {
  height: 45px;
  padding: 5px;
}

header ul#nav {
  list-style-type: none;
  padding-inline-start: 0;
}

header ul#nav li,
header #sessionData div {
  margin: 0 5px;
}

header,
header a {
  text-decoration: none;
  color: #fff;
}

#giveawaysPage h2 {
  margin-bottom: 2px;
}

.run_ted_buildDraw span.statusRunning,
.run_ted_buildDraw span.statusComplete {
  display: none;
}

.run_ted_buildDraw.running span.statusRunning {
  display: inline-block;
}
.run_ted_buildDraw.complete span.statusComplete {
  display: inline-block;
}

.notificationProgressBar {
  background-color: #f77c00;
  border: 1px solid #000000;
  position: relative;
  height: 25px;
  overflow: hidden;
}

.notificationProgressBar .notificationProgress {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  height: 100%;
}


.notificationProgressBar .notificationProgressPercentage {
  position: absolute;
  top:0;
  width: 100%;
  z-index: 1;
  line-height: 25px;
  text-align: center;
}



@keyframes showEntry-animate {
  0% {
    transform: scale(0) translateY(500px);
    opacity: 0;
  }
  50% {
    transform: scale(.5) translateY(250px);
    opacity: .5;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

#entrySpinner .entryItem.showEntry {
  animation: showEntry-animate .2s linear 0s 1 normal none;
  opacity: 1;
}
#entrySpinner .entryItem {
  opacity: 0;
  position: absolute;
  top: 0;
}

.entryItem-inner {
  background-color: #f70000;
  color: #fff;
  padding: 10px;
  font-size: 50px;
}


@keyframes hideEntry-animate {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  50% {
    transform: scale(.5) translateY(-250px);
    opacity: .5;
  }
  100% {
    transform: scale(0) translateY(-500px);
    opacity: 0;
  }
}

#entrySpinner .entryItem.hideEntry {
  animation: hideEntry-animate .2s linear 0s 1 normal none;
  opacity: 0;
  transform: scale(0);
}

a.run_ted_buildDraw {
  color: #f70000;
}