@import url('bs.css');
@import url('icons.css');

@font-face {
  font-family: 'Zalando Sans SemiExpanded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(font-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Zalando Sans SemiExpanded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(font.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bs-font-sans-serif: "Zalando Sans SemiExpanded"
}

[v-cloak] {
  display: none !important;
}

.container {
  max-width: 800px;
}

a {
  text-decoration: none;
}

td {
  white-space: nowrap;
}

.icon {
  width: 20px;
  height: 20px;
}

red-dot {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background-color: #FF5252;
  border-radius: 50%;
  animation: pulse 1.2s linear infinite;
  margin: 0 5px;
  box-shadow: 0 0 5px rgba(255, 82, 82, 1);
}

green-dot {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  animation: pulse 1.2s linear infinite;
  margin: 0 5px;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

@keyframes pulse {
  0%, 50%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  10% {
    transform: scale(1.5);
    opacity: .2;
  }
}

dots::after {
  content: '';
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
  0%   { content: ''; }
  33%  { content: '.'; }
  66%  { content: '..'; }
  100% { content: '...'; }
}

.alert-primary {
  --bs-alert-bg: #eef3ff;
  --bs-alert-border-color: #d6e2ff;
  --bs-alert-color: #084298;
}

.alert-secondary {
  --bs-alert-bg: #f4f5f7;
  --bs-alert-border-color: #e1e3e6;
  --bs-alert-color: #41464b;
}

.alert-success {
  --bs-alert-bg: #eaf7f0;
  --bs-alert-border-color: #cdeedd;
  --bs-alert-color: #0f5132;
}

.alert-danger {
  --bs-alert-bg: #fdeeee;
  --bs-alert-border-color: #f9d2d5;
  --bs-alert-color: #842029;
}

.alert-warning {
  --bs-alert-bg: #fff8e6;
  --bs-alert-border-color: #ffecb5;
  --bs-alert-color: #664d03;
}

.alert-info {
  --bs-alert-bg: #e8f6fb;
  --bs-alert-border-color: #cbe9f4;
  --bs-alert-color: #055160;
}

.alert-light {
  --bs-alert-bg: #f8f9fa;
  --bs-alert-border-color: #e9ecef;
  --bs-alert-color: #636464;
}

.alert-dark {
  --bs-alert-bg: #ececec;
  --bs-alert-border-color: #d3d3d4;
  --bs-alert-color: #141619;
}
