/* Custom Game UI Button Styling */
:root {
  --game-accent: #7c3aed; /* Deep Violet (Success + Vision) */
  --game-hover: #ec4899;  /* Venus-powered Pink */
  --game-text: #fff;

  --btn-green-light: #a3e635; /* Energetic lime */
  --btn-green-dark: #4d7c0f;  /* Grounded olive */

  --btn-red-light: #f87171;   /* Soft warning red */
  --btn-red-dark: #991b1b;    /* Deep karmic Mars red */

  --btn-blue-light: #60a5fa;  /* Calm blue */
  --btn-blue-dark: #1d4ed8;   /* Royal blue */

  --btn-yellow-light: #fde68a; /* Sun wealth */
  --btn-yellow-dark: #facc15;  /* Golden amber */

  --btn-dark-light: #2a3f6c; /* muted indigo-blue */
  --btn-dark-dark: #101b30;  /* deep cosmic/navy blue */

  --btn-text: #fff;
}



body {
	background: linear-gradient(180deg, #1a1a40 0%, #0e0e20 100%);
  color: #e8e8ff;
	font-family: 
	"Segoe UI",      /* Windows */
	"Candara",        /* Windows fallback */
	"Trebuchet MS",   /* Cross-platform, stylish */
	"Verdana",        /* Very readable */
	"Geneva",         /* macOS */
	"Noto Sans",      /* Android */
	sans-serif;       /* Fallback */
}

header{
	height:5rem;
	background:#11111133;
}

main{
  margin-bottom: 5rem; 
}
footer{
	/*bottom:0;*/
	/*position: fixed;*/
	width:100%;
}

/* Generic styles */

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 columns for mobile */
  gap: 1rem;
}

@media (min-width: 768px) {
  .language-grid {
    grid-template-columns: repeat(6, 1fr); /* 6 columns for tablets and up */
  }
}
.language-option a{width:100%; font-size: 0.5em;}
.language-option span{ font-size: 3em;}


.max-900{max-width:900px;margin:0 auto;}
.m-5{margin:5px;}
.center{text-align: center;}
.fa-solid {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4)!important;
}
.v-align{display: flex; justify-content: center; align-items: center;}

/* Backgrounds */

.glassy {
  background: rgba(255, 255, 255, 0.15); /* semi-transparent background */
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;

  /* Glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */

  /* Optional extras */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.bg-mystic {
  background: linear-gradient(135deg, #3a0ca3, #7209b7);
}

.bg-fire {
  background: linear-gradient(135deg, #ff6a00, #ff0000);
}

.bg-aqua {
  background: linear-gradient(135deg, #00c2ff, #005eff);
}

.bg-nature {
  background: linear-gradient(135deg, #2e8b57, #4caf50);
}

.bg-shadow {
  background: linear-gradient(135deg, #0f0f1b, #2a2a40);
}

.bg-electric {
  background: linear-gradient(135deg, #d4ff00, #00ffd5);
}

.bg-ice {
  background: linear-gradient(135deg, #a3d5ff, #72c0ff);
}

.bg-light {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.bg-earth {
  background: linear-gradient(135deg, #8d6e63, #5d4037);
}

.bg-arcane {
  background: linear-gradient(135deg, #ff0099, #493240);
}


/* Text colours */
.bulk-text {
  opacity: 0.95;
  transition: opacity 1s ease;
  font-weight: bold;
  background-size: 100%;
  background-repeat: no-repeat;
  background-clip: text;
  background-image: linear-gradient(90deg, #8b5cf6, #ec4899 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.bulk-red {
  background-image: linear-gradient(90deg, #f97316, #dc2626 90%);
}
.bulk-green {
  background-image: linear-gradient(90deg, #22c55e, #16a34a 90%);
}


/* Fixed panels */
.panel {
  position: fixed;
  width: 10rem;
  height: 5rem;
  background: linear-gradient(135deg, #2e2e4d, #1a1a2e);
  color: #fff;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #9f5f80;
}
.panel-auto {width: auto!important;}

@media (max-width: 468px) {
  .panel-small {width: 5rem;}
  .hidden-mobile{display: none;}
  .beautiful-text{font-size: 1.5rem!important;}
}

.panel-left-top {
  top: 0;
  left: 0;
  border: none;
  border-right: 2px solid #6a4c93;
  border-bottom: 2px solid #6a4c93;
  border-radius: 0 0 1rem 0;
}

.panel-right-top {
  top: 0;
  right: 0;
  border: none;
  border-left: 2px solid #6a4c93;
  border-bottom: 2px solid #6a4c93;
  border-radius: 0 0 0 1rem;
}

.panel-left-bottom {
  bottom: 0;
  left: 0;
  border: none;
  border-top: 2px solid #6a4c93;
  border-right: 2px solid #6a4c93;
  border-radius: 0 1rem 0 0;
}

.panel-right-bottom {
  bottom: 0;
  right: 0;
  border: none;
  border-top: 2px solid #6a4c93;
  border-left: 2px solid #6a4c93;
  border-radius: 1rem 0 0 0;
}

.panel-stats {
  background: linear-gradient(135deg, #8d6e63, #5d4037);
  color: #fff;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px #9f5f80;
}


/* Buttons */

button,
[type="submit"],
button:where(.secondary),
a[role="button"] {
  background: linear-gradient(145deg, var(--game-accent), var(--game-hover));
  color: var(--game-text);
  border: none;
  border-radius: 1.5em;
  padding: 0.75em 2em;
  font-weight: bold;
  font-family: 'Quicksand', 'Segoe UI', sans-serif;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5); /* Purple glow */
  transition: all 0.3s ease-in-out;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

button:hover,
[type="submit"]:hover,
a[role="button"]:hover {
  background: linear-gradient(145deg, var(--game-hover), var(--game-accent));
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.8); /* Pink hover glow */
}


.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.btn-small{padding: 0.3rem 0.6rem;font-size: 0.9em;font-weight: 400;}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-green {
  background: linear-gradient(145deg, var(--btn-green-light), var(--btn-green-dark));
  color: var(--btn-text);
}
.btn-red {
  background: linear-gradient(145deg, var(--btn-red-light), var(--btn-red-dark));
  color: var(--btn-text);
}
.btn-blue {
  background: linear-gradient(145deg, var(--btn-blue-light), var(--btn-blue-dark));
  color: var(--btn-text);
}
.btn-yellow {
  background: linear-gradient(145deg, var(--btn-yellow-light), var(--btn-yellow-dark));
  color: #000; /* Yellow buttons look better with dark text */
}
.btn-dark {
  background: linear-gradient(145deg, var(--btn-dark-light), var(--btn-dark-dark));
  color: var(--btn-text);
}





.frame {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  background-color: #000;
}

.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.background {
  background-image: url('run.png');
  z-index: 1;
  filter: blur(3px) brightness(0.8);
}

.foreground {
  background-image: url('run.png');
  z-index: 2;
  mix-blend-mode: normal;
}



/* Bulkins widget box */

.bulk-box {
  border-radius: 16px;
  padding: 0.75rem;
  background: linear-gradient(145deg, #1b1b2f, #2e2e4d); /* dark mystical tones */
  box-shadow: 0 4px 18px rgba(98, 0, 238, 0.3); /* magical glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  height: auto;
}

.bulk-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(138, 43, 226, 0.5);
  border-color: #b27fff;
}

.grid-bulk {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 1rem;
}

.grid-bulk .ico-xl i {
  font-size: 4rem;
  color: #b27fff;
}

.grid-bulk article {
  /*background: rgba(255, 255, 255, 0.06);*/
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  font-family: 'Cinzel', serif; /* medieval/fantasy font */
  color: #e0d8ff;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(128, 0, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-bulk article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #8e2de2, #4a00e0, #6a0dad); /* mystic purple gradient */
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: 0;
}

.grid-bulk article:hover {
  box-shadow: 0 0 20px rgba(128, 0, 255, 0.4), 0 0 30px rgba(128, 0, 255, 0.25);
  transform: translateY(-6px);
}

.grid-bulk article img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 3px solid #b27fff;
  z-index: 1;
  position: relative;
}

.grid-bulk article h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.25rem;
  color: #f3e9ff;
  z-index: 1;
  position: relative;
}

.grid-bulk article p.stats {
  font-size: 0.85rem;
  color: #ddbaff;
  margin: 0.25rem 0;
  line-height: 1.4;
  z-index: 1;
  position: relative;
}

.grid-bulk article i {
  display: block;
  font-size: 1.2rem;
  color: #b27fff;
  margin-bottom: 0.5rem;
  z-index: 1;
  position: relative;
}

.grid-bulk article .tools{
  position: relative;
}

.grid-bulk article.tone-fire::before {
  background: linear-gradient(135deg, #e25822, #c0392b, #ff4500);
}
.grid-bulk article.tone-fire {
  box-shadow: 0 0 12px rgba(255, 69, 0, 0.3);
}
.grid-bulk article.tone-fire:hover {
  box-shadow: 0 0 24px rgba(255, 69, 0, 0.5);
}

.grid-bulk article.tone-toxic::before {
  background: linear-gradient(135deg, #76ff03, #64dd17, #aeea00);
}
.grid-bulk article.tone-toxic {
  box-shadow: 0 0 12px rgba(124, 252, 0, 0.3);
}
.grid-bulk article.tone-toxic:hover {
  box-shadow: 0 0 24px rgba(173, 255, 47, 0.5);
}

.grid-bulk article.tone-ice::before {
  background: linear-gradient(135deg, #00c6ff, #0072ff, #1e90ff);
}
.grid-bulk article.tone-ice {
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.3);
}
.grid-bulk article.tone-ice:hover {
  box-shadow: 0 0 24px rgba(135, 206, 250, 0.5);
}

.grid-bulk article.tone-earth::before {
  background: linear-gradient(135deg, #7b5e3b, #5a432e, #a0522d);
}
.grid-bulk article.tone-earth {
  box-shadow: 0 0 12px rgba(160, 82, 45, 0.3);
}
.grid-bulk article.tone-earth:hover {
  box-shadow: 0 0 24px rgba(205, 133, 63, 0.5);
}

.grid-bulk article.tone-shadow::before {
  background: linear-gradient(135deg, #222, #111, #000);
}
.grid-bulk article.tone-shadow {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.grid-bulk article.tone-shadow:hover {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
  .grid-half {
    display: flex;
  }
  .grid-half article{
    font-size: 0.9em;
  } 
  .grid-half article .ico-xl i{
    font-size: 3em;
  } 
  .grid-half article h2{
    font-size: 1.3em;
  } 
  .grid-half article h3{
    font-size: 1.1em;
  }
}

@media (max-width: 468px) {
  .grid-half article{
    width: 48%;
    font-size: 0.6em;
  } 
  .grid-half article .ico-xl i{
    font-size: 2em;
  } 
  .grid-half article h2{
    font-size: 1.1em;
  } 
  .grid-half article h3{
    font-size: 1em;
  }       
}



/* Classes to change text colour based on intensity 0-100 */
.in-100 { color: #3cb043 !important; }
.in-90  { color: #4ea941 !important; }
.in-80  { color: #6ca832 !important; }
.in-70  { color: #89a32a !important; }
.in-60  { color: #a38e27 !important; }
.in-50  { color: #b37c24 !important; }
.in-40  { color: #c7681e !important; }
.in-30  { color: #d44c1d !important; }
.in-20  { color: #c5341c !important; }
.in-10  { color: #95271c !important; }
.in-0   { color: #701f18 !important; }



/* Animation panel */

.stat-box {
  width: 10rem;
  height: 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1f2e, #2e2e4d);
  background-size: 300% 300%;
  animation: boxBg 10s ease infinite;
  position: fixed;
  color: #fff;
  font-family: "Arial", "Helvetica", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.35);
}

@keyframes boxBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shimmer overlay */
.stat-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Content inside the panel */
.stat-box-content {
  z-index: 1;
  text-align: center;
}

.stat-box p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.stat-box small {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0;
  font-family: "Georgia", "Garamond", "Times New Roman", serif;
}




/* Modal */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.modal-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary, #333);
}

.btn-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease-in-out;
}

.btn-close:hover {
  color: #e00;
}


dialog.modal .modal-body{
  max-height: 60vh!important;
  overflow: scroll;
}

label {
  transition: color 0.3s ease;
}

/* Glow text */
.glow-text {
  color: #fff;
  font-weight: bold;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 5px #fff,
                 0 0 10px #0ff,
                 0 0 20px #0ff,
                 0 0 30px #0ff;
  }
  50% {
    text-shadow: 0 0 1px #fff,
                 0 0 2px #0ff,
                 0 0 4px #0ff,
                 0 0 8px #0ff;
  }
}


/* Normal image frames */
.image-frame img{
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.lead-frame img{
  border: 3px solid rgba(155, 55, 155, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 255, 0.4);
}

/* Royal Frame Combined */
.royal-frame {
  position: relative;
  display: inline-block;
  padding: 0.1rem;
  border-radius: 35%;
  background: linear-gradient(145deg, #ffd700, #b8860b);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  animation: flareGlow 4s infinite ease-in-out;
  overflow: hidden;
  z-index: 1;
}

.royal-frame img {
  border-radius: 35%;
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ::before = Pulse Glow Effect */
.royal-frame::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 28px;
  background: linear-gradient(130deg, rgba(255,215,0,0.6), rgba(255,255,255,0.2));
  filter: blur(8px);
  opacity: 0.6;
  animation: flarePulse 3s infinite alternate;
  z-index: 0;
}

.royal-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 35%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 215, 0, 0.8),
    transparent 25%,
    transparent 100%
  );
  animation: rotateGlare 3s linear infinite;
  z-index: 1;
  filter: blur(3px);
  mask-image: radial-gradient(closest-side, white 95%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side, white 95%, transparent 100%);
  pointer-events: none;
}

@keyframes flareGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
  }
}

@keyframes flarePulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes rotateGlare {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* Bulkin Actions */

.bulkin-actions i{
  font-size: 1.7em;
}
.bulkin-actions button{
  width: 3rem;
  height:3rem;
  border-radius: 50%;
  padding:0;
}
.bulkin-actions .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bulkin-actions .actions .action {
  flex: 1 1 calc(12% - 0.5rem); /* 3 per row minus gap */
  min-width: 50px; /* optional */
}

.chat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}
.chat-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-image i{
  margin-bottom: 40px;
  position: absolute;
}      
.chat-bubble {
  position: relative;
  background: #f0f0f0;
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 350px;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.chat-bubble::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 47%; 
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #f0f0f0;
}
.chat-bubble h5 {
  color: #2d4975 !important;
}

.chat-bubble-tiny{
  width:100% !important;
  font-size:0.7em;
  color:#343434;
  margin:0 auto;
}
.chat-bubble-big{
  width:100% !important;
  font-size:1em;
  color:#343434;
  margin:0 auto;
}
.chat-bubble-anime {
  background: #fff;
  color: #000;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: scale(0.8);
  opacity: 0;
  animation: chat-popIn 0.6s ease-out forwards;
  margin-top:1em;
}
@keyframes chat-popIn {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }
  60% {
    opacity: 0.5;
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.chat-bar {
  width: 70%;
  max-width: 250px;
  margin-top: 10px;
  min-height: 10px;
}

.bg-0   { background-color: #ff0000; } 
.bg-10  { background-color: #ff3300; }
.bg-20  { background-color: #ff6600; }
.bg-30  { background-color: #ff9900; }
.bg-40  { background-color: #ffcc00; }
.bg-50  { background-color: #ffff00; }
.bg-60  { background-color: #ccff00; }
.bg-70  { background-color: #99ff00; }
.bg-80  { background-color: #66ff00; }
.bg-90  { background-color: #33ff00; }
.bg-100 { background-color: #00ff00; } 

@keyframes sparkUp {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-100px) scale(0.8); }
}
.spark-icon {
  position: absolute;
  animation: sparkUp 1.5s ease-out forwards;
  pointer-events: none;
  z-index: 999;
}


/* Widgets */

.widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.widgets div {
  width: calc(32% - 0.5rem);
  box-sizing: border-box;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed 4 per row */
  gap: 0.5rem;
  padding: 0.3em;
  max-width: 1400px;
  margin: auto;
}

.widget-grid-duo {
  grid-template-columns: repeat(2, 1fr);
}

.widget-grid-trio {
  grid-template-columns: repeat(3, 1fr);
}

.widget {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 0.1em;
  text-align: center;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.widget:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.widget i {
  font-size: 1.2em;
  margin-top: 0.1em;
  color: #ffda6c;
}

.widget .number {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0;
}

.widget .label {
  font-size: 0.6em;
  opacity: 0.85;
  letter-spacing: 0.5px;
  margin-bottom: 0.1em;
}

@keyframes widgetFlash {
  0%   { background-color: rgba(255, 255, 255, 0.2); }
  50%  { background-color: rgba(255, 255, 255, 0.4); }
  100% { background-color: rgba(255, 255, 255, 0.2); }
}

.widget-flash {
  animation: widgetFlash 0.6s ease-in-out;
}


