@import url('https://fonts.googleapis.com/css2?family=Gwendolyn:wght@400;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #848484;
  --bs-gray-dark: #343a40;
  --bs-primary: #061d3f;
  --bs-secondary: #e5e5e5;
  --bs-success: #22baa0;
  --bs-info: #0dcaf0;
  --bs-warning: #f7c54e;
  --bs-danger: #f25463;
  --bs-light: #f8f8f8;
  --bs-dark: #222;
  --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

#preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2100;
  line-height: 0;
  width: 200px;
}

.keyboard {
  text-align: center;
}

.keyboard button {
  width: 80px;
  font-size: 24px;
  cursor: pointer;
  margin: 5px;
}

.keyboard button.double-width {
  width: 170px;
}

.keyboard button.quad-width {
  width: 340px;
}

.keyboard-numeric {
  margin-top: 60px;
}

.keyboard-qwerty {
  margin-top: 10px;
}

.cursor-hand {
  cursor: pointer;
}

#toolbar .btn,
#toolbar .btn-group,
#toolbar .btn-group .btn {
  display: inline-block;
  width: 105px !important;
  height: 105px !important;
  white-space: unset;
}

.card-cover {
  background-size: cover;
  height: 450px;
}

.card-cover:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.rounded-5 {
  border-radius: 1rem;
}

.text-shadow-1 {
  text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}

*/ Modal Auto Timeout */
.countdown-indicator {
  animation: subtlePulse 1.2s ease-in-out infinite alternate;
}
@keyframes subtlePulse {
  from { opacity: 0.9; transform: scale(1); }
  to { opacity: 0.7; transform: scale(0.95); }
}