/* Stylesheet */

/** #2c2e38 **/
.stars {
  background: url(/content/image/Backgrounds/blue-clouds.webp) 0 0 repeat, url(/content/image/Backgrounds/black-shapes.webp) 0 0 repeat, url(/content/image/Backgrounds/stars-2.webp) 0 0 repeat;
  animation: twinkles 120s linear infinite;
}

.stars-only {
  background: url(/content/image/Backgrounds/black-shapes.webp) 0 0 repeat, url(/content/image/Backgrounds/stars.webp) 0 0 repeat;
  animation: twinkles-only 120s linear infinite;
}

.stars-big,#gallery-viewer {
  background: url(/content/image/Backgrounds/black-shapes.webp) 0 0 repeat, url(/content/image/Backgrounds/stars-bg-3.webp) 0 0 repeat;
  animation: twinkles-only 120s linear infinite;  
}

@keyframes twinkles {
  0% { background-position: 0 0, 0 0, 0 0 }
  100% { background-position: 1280px 960px, 640px 480px, 0 0 }
}

@keyframes scrolls {
  0% { background-position: 0 0; }
  100% { background-position: 100px 0; }
}

@keyframes twinkles-only {
  0% { background-position: 0 0, 0 0 }
  100% { background-position: 640px 480px, 0 0 }
}

.toast-body { color: #111 !important }