:root {
  --hurry-up-font-size: 6em;
  --hurry-up-bar-color: rgba(255, 255, 240, 0.2);
  --hurry-up-base-color: rgba(255, 255, 240, 0.8);
  --hurry-up-glass-color: rgba(255, 255, 240, 0.3);
}

#hurry-up .window-content {
  background: transparent;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
}

#hurry-up .window-header {
  padding: unset;
  line-height: unset;
  border-bottom: unset;
  border-radius: 5px 5px 0 0;
  flex: unset;
  height: 10px;
  width: 100%;
  z-index: 100;
  background: url(/ui/denim-dark-090.png) repeat;
  background-blend-mode: screen;
  background-color: rgba(0, 0, 0, 1);
  color: transparent;
}

#hurry-up .hurry-up-timer-text {
  font-size: var(--hurry-up-font-size);
  color: var(--hurry-up-base-color);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .75));
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 1em;
  width: 100%;
  margin-top: -0.3rem;
  z-index: 20;
}

#hurry-up .hurry-up-timer {
  display: flex;
}

#hurry-up .main-window {
  display: flex;
}

#hurry-up .hurry-up-bar {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 5px;
  z-index: 10;
  height: 100%;
  background: var(--hurry-up-bar-color);
  transition: width 0.4s ease-out;
}

#hurry-up .blinking {
  animation: blinking-text 1s ease infinite;
}

@keyframes blinking-text {
  50% {
    opacity: 0%;
  }
}

#hurry-up.window-app.windowless {
  background: unset;
  box-shadow: unset;
}

#hurry-up .window-header.windowless {
  height: 0;
}

#hurry-up.window-app.windowless:hover {
  background: url(/ui/denim075.png) repeat;
  box-shadow: 0 0 20px var(--color-shadow-dark);
}

#hurry-up.window-app.windowless:hover > .window-header.windowless{
  height: 10px;
}

