@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  background: #000000;
  color: #c4c4c4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background: #000000;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
  pointer-events: none;
  z-index: 9998;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 255, 65, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

input, select, button, textarea {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  border-radius: 0 !important;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

@keyframes blink-cur {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes pulse-g {
  0%, 100% {
    box-shadow: 0 0 4px rgba(0, 255, 65, 0.35);
  }
  50% {
    box-shadow: 0 0 14px rgba(0, 255, 65, 0.75), 0 0 30px rgba(0, 255, 65, 0.25);
  }
}
@keyframes pulse-r {
  0%, 100% {
    box-shadow: 0 0 4px rgba(255, 49, 49, 0.35);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 49, 49, 0.75), 0 0 30px rgba(255, 49, 49, 0.25);
  }
}
@keyframes pulse-a {
  0%, 100% {
    box-shadow: 0 0 4px rgba(255, 187, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 187, 0, 0.75), 0 0 30px rgba(255, 187, 0, 0.25);
  }
}
@keyframes flicker {
  0%, 92%, 100% {
    opacity: 1;
  }
  93% {
    opacity: 0.82;
  }
  95% {
    opacity: 1;
  }
  98% {
    opacity: 0.9;
  }
}
@keyframes slide-in {
  from {
    transform: translateX(-6px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bar-fill {
  from {
    width: 0 !important;
  }
}
@keyframes warn-flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.grid-top {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
  margin-bottom: 8px;
}

.grid-analytics {
  margin-bottom: 8px;
}

.grid-bottom {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
}

.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  border-bottom: 1px solid #282828;
  background: #050505;
  margin-bottom: 8px;
  position: relative;
}
.hdr::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, #00ff41, transparent);
  opacity: 0.5;
}

.hdr__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hdr__emoji {
  font-size: 18px;
  line-height: 1;
}

.hdr__title {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.65), 0 0 18px rgba(0, 255, 65, 0.25);
  animation: flicker 9s infinite 3s;
}

.hdr__version {
  font-size: 9px;
  color: #383838;
  letter-spacing: 2px;
  align-self: flex-end;
  margin-bottom: 2px;
}

.hdr__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.hdr__time {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  color: #00d4ff;
  letter-spacing: 5px;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.65), 0 0 18px rgba(0, 212, 255, 0.25);
  line-height: 1;
}
.hdr__time::after {
  content: "█";
  font-size: 18px;
  animation: blink-cur 1s step-end infinite;
  margin-left: 3px;
  opacity: 0.7;
}

.hdr__date {
  font-size: 10px;
  color: #686868;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.panel {
  border: 1px solid #1c1c1c;
  background: #050505;
  position: relative;
}
.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.panel--weekly::before {
  background: #00cc33;
}
.panel--session::before {
  background: #00a8cc;
}
.panel--analytics::before {
  background: #cc9500;
}
.panel--chart::before {
  background: #8822cc;
}
.panel--log::before {
  background: #00a8cc;
}

.panel__hdr {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-bottom: 1px solid #1c1c1c;
  background: #0b0b0b;
}

.panel__icon {
  font-size: 13px;
}

.panel__title {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #686868;
  text-transform: uppercase;
  flex: 1;
}

.panel__badge {
  font-size: 11px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border: 1px solid #363636;
  color: #686868;
  text-transform: uppercase;
  white-space: nowrap;
}
.panel__badge--good {
  color: #00ff41;
  border-color: #00cc33;
  background: #001a09;
  animation: pulse-g 2.2s ease-in-out infinite;
}
.panel__badge--warn {
  color: #ffbb00;
  border-color: #cc9500;
  background: #221700;
  animation: pulse-a 2s ease-in-out infinite;
}
.panel__badge--danger {
  color: #ff3131;
  border-color: #cc2525;
  background: #200808;
  animation: pulse-r 1.6s ease-in-out infinite;
}
.panel__badge--info {
  color: #00d4ff;
  border-color: #00a8cc;
  background: #001e26;
}

.panel__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfg-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cfg-label {
  font-size: 12px;
  color: #686868;
  letter-spacing: 1px;
  white-space: nowrap;
}

.cfg-inputs {
  display: flex;
  gap: 4px;
  align-items: center;
}

.inp {
  background: #111111;
  border: 1px solid #363636;
  color: #c4c4c4;
  padding: 4px 8px;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.4;
}
.inp:focus {
  border-color: #00a8cc;
  box-shadow: 0 0 3.6px rgba(0, 212, 255, 0.27), 0 0 8.4px rgba(0, 212, 255, 0.12);
}
.inp--select {
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23686868'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
}
.inp--num {
  width: 80px;
  text-align: right;
}
.inp--large {
  font-size: 20px;
  width: 72px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.inp-row {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.inp-suffix {
  color: #686868;
  font-size: 12px;
}

.btn {
  border: 1px solid #363636;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  transition: background 0.12s, border-color 0.12s, box-shadow 0.12s;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.98);
}
.btn--green {
  background: #171717;
  color: #00ff41;
  margin-left: auto;
}
.btn--green:hover {
  background: #001a09;
  border-color: #00cc33;
  box-shadow: 0 0 4.2px rgba(0, 255, 65, 0.315), 0 0 9.8px rgba(0, 255, 65, 0.14);
}
.btn--cyan {
  background: #171717;
  color: #00d4ff;
}
.btn--cyan:hover {
  background: #001e26;
  border-color: #00a8cc;
}
.btn--ghost {
  background: transparent;
  color: #383838;
  border-color: #1c1c1c;
  margin-left: auto;
}
.btn--ghost:hover {
  background: #200808;
  border-color: #cc2525;
  color: #ff3131;
}

.prog-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #686868;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prog-val {
  font-family: "Oswald", sans-serif;
  color: #c4c4c4;
}

.prog-track {
  height: 10px;
  background: #111111;
  border: 1px solid #1c1c1c;
  position: relative;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bar-fill 0.9s ease-out;
  position: relative;
}
.prog-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(1px);
}
.prog-fill--expected {
  background: #171717;
  border-right: 2px solid #363636;
}
.prog-fill--expected::after {
  display: none;
}
.prog-fill--actual {
  background: linear-gradient(90deg, #00cc33 0%, #00ff41 100%);
  box-shadow: 0 0 3px rgba(0, 255, 65, 0.225), 0 0 7px rgba(0, 255, 65, 0.1);
}
.prog-fill--session {
  background: linear-gradient(90deg, #00a8cc 0%, #00d4ff 100%);
  box-shadow: 0 0 3px rgba(0, 212, 255, 0.225), 0 0 7px rgba(0, 212, 255, 0.1);
}

.dual-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dual-bar__legend {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: #686868;
}
.dual-bar__legend b {
  color: #c4c4c4;
  font-weight: 600;
}

.dual-bar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  margin-right: 4px;
}
.dual-bar__dot.--plan {
  background: #ffbb00;
}
.dual-bar__dot.--actual {
  background: #00d4ff;
}

.dual-bar__track {
  height: 18px;
  background: #111111;
  border: 1px solid #1c1c1c;
  position: relative;
  overflow: visible;
  margin-top: 20px;
}

.dual-bar__elapsed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(187, 68, 255, 0.22);
  border-right: 2px solid #8822cc;
  transition: width 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.dual-bar__band {
  position: absolute;
  top: -1px;
  bottom: -1px;
  transition: left 0.5s ease, width 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.dual-bar__band.--under {
  background: rgba(0, 255, 65, 0.18);
  border-left: 2px solid #00cc33;
  border-right: 2px solid #00cc33;
  box-shadow: 0 0 1.8px rgba(0, 255, 65, 0.135), 0 0 4.2px rgba(0, 255, 65, 0.06);
}
.dual-bar__band.--over {
  background: rgba(255, 49, 49, 0.18);
  border-left: 2px solid #cc2525;
  border-right: 2px solid #cc2525;
  box-shadow: 0 0 1.8px rgba(255, 49, 49, 0.135), 0 0 4.2px rgba(255, 49, 49, 0.06);
}

.dual-bar__needle {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  transition: left 0.5s ease;
  z-index: 3;
}
.dual-bar__needle.--plan .dual-bar__needle-line {
  background: #ffbb00;
  box-shadow: 0 0 5px rgba(255, 187, 0, 0.7);
}
.dual-bar__needle.--plan .dual-bar__needle-label {
  color: #ffbb00;
  border-color: #cc9500;
  background: #221700;
}
.dual-bar__needle.--actual .dual-bar__needle-line {
  background: #00d4ff;
  box-shadow: 0 0 5px rgba(0, 212, 255, 0.7);
}
.dual-bar__needle.--actual .dual-bar__needle-label {
  color: #00d4ff;
  border-color: #00a8cc;
  background: #001e26;
}

.dual-bar__needle-line {
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dual-bar__needle-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  padding: 1px 5px;
  border: 1px solid;
  white-space: nowrap;
  pointer-events: none;
}

.dual-bar__scale {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #383838;
  margin-top: 3px;
}

.delta-box {
  border: 1px solid #1c1c1c;
  padding: 8px 16px;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  transition: border-color 0.3s, background 0.3s;
}
.delta-box--ahead {
  border-color: #cc2525;
  background: #200808;
}
.delta-box--ahead .delta-main {
  color: #ff3131;
}
.delta-box--ahead .delta-num {
  text-shadow: 0 0 8px rgba(255, 49, 49, 0.65), 0 0 18px rgba(255, 49, 49, 0.25);
}
.delta-box--behind {
  border-color: #00cc33;
  background: #001a09;
}
.delta-box--behind .delta-main {
  color: #00ff41;
}
.delta-box--behind .delta-num {
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.65), 0 0 18px rgba(0, 255, 65, 0.25);
}
.delta-box--neutral {
  border-color: #00a8cc;
  background: #001e26;
}
.delta-box--neutral .delta-main {
  color: #00d4ff;
}
.delta-box--neutral .delta-num {
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.65), 0 0 18px rgba(0, 212, 255, 0.25);
}

.delta-mood {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.delta-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  animation: slide-in 0.25s ease;
}

.delta-num {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
}

.delta-sub {
  font-size: 10px;
  color: #686868;
  letter-spacing: 1px;
}
.delta-sub strong {
  color: #c4c4c4;
}

.week-timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tl-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #686868;
  letter-spacing: 1px;
}

.tl-track {
  height: 8px;
  background: #111111;
  border: 1px solid #1c1c1c;
  position: relative;
}

.tl-fill {
  height: 100%;
  background: linear-gradient(90deg, #001a09, #00cc33);
  transition: width 1s linear;
}

.tl-needle {
  position: absolute;
  top: -5px;
  width: 2px;
  height: 18px;
  background: #00ff41;
  box-shadow: 0 0 4.8px rgba(0, 255, 65, 0.36), 0 0 11.2px rgba(0, 255, 65, 0.16);
  transform: translateX(-50%);
  transition: left 1s linear;
}
.tl-needle::before {
  content: "▼";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: #00ff41;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.65), 0 0 18px rgba(0, 255, 65, 0.25);
}

.tl-ticks {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 11px;
  color: #383838;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.sess-countdown {
  text-align: center;
  padding: 4px 0;
  border: 1px solid #1c1c1c;
  background: #0b0b0b;
  position: relative;
  overflow: hidden;
}
.sess-countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #00a8cc;
}

.sess-countdown__time {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  color: #00d4ff;
  letter-spacing: 8px;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.65), 0 0 18px rgba(0, 212, 255, 0.25);
  line-height: 1;
  display: block;
  padding: 8px 0 0;
}
.sess-countdown__time.--expired {
  color: #ff3131;
  text-shadow: 0 0 8px rgba(255, 49, 49, 0.65), 0 0 18px rgba(255, 49, 49, 0.25);
  animation: pulse-r 1s ease-in-out infinite;
}

.sess-countdown__lbl {
  font-size: 8px;
  color: #383838;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding-bottom: 8px;
  display: block;
}

.sess-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.ss-item {
  background: #0b0b0b;
  padding: 4px 8px;
}

.ss-lbl {
  font-size: 11px;
  color: #383838;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ss-val {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #c4c4c4;
  letter-spacing: 1px;
  margin-top: 1px;
}

.sess-warn {
  background: #200808;
  border: 1px solid #cc2525;
  color: #ff3131;
  padding: 4px 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  animation: warn-flash 0.9s ease-in-out infinite;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #1c1c1c;
  border: 1px solid #1c1c1c;
}
@media (max-width: 1100px) {
  .analytics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ac {
  background: #0b0b0b;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  transition: background 0.15s;
}
.ac:hover {
  background: #111111;
}

.ac__icon {
  font-size: 20px;
  line-height: 1;
}

.ac__lbl {
  font-size: 11px;
  color: #383838;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ac__sub {
  font-size: 10px;
  color: #383838;
  letter-spacing: 0px;
}

.ac__val {
  font-family: "Oswald", sans-serif;
  font-size: 27px;
  color: #c4c4c4;
  letter-spacing: 1px;
  line-height: 1.1;
  transition: color 0.3s, text-shadow 0.3s;
}
.ac__val.ok {
  color: #00ff41;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.65), 0 0 18px rgba(0, 255, 65, 0.25);
}
.ac__val.warn {
  color: #ffbb00;
  text-shadow: 0 0 8px rgba(255, 187, 0, 0.65), 0 0 18px rgba(255, 187, 0, 0.25);
}
.ac__val.bad {
  color: #ff3131;
  text-shadow: 0 0 8px rgba(255, 49, 49, 0.65), 0 0 18px rgba(255, 49, 49, 0.25);
  animation: pulse-r 1.5s ease-in-out infinite;
}

.chart-wrap {
  position: relative;
  background: #050505;
  padding: 16px;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

canvas#history-chart {
  display: block;
  width: 100%;
  height: 180px;
}

.chart-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #383838;
  font-size: 11px;
  letter-spacing: 1px;
  background: #050505;
  pointer-events: none;
}
.chart-empty span:first-child {
  font-size: 18px;
}

.log-wrap {
  overflow-y: auto;
  max-height: 290px;
  scrollbar-width: thin;
  scrollbar-color: #363636 #050505;
}
.log-wrap::-webkit-scrollbar {
  width: 4px;
}
.log-wrap::-webkit-scrollbar-track {
  background: #050505;
}
.log-wrap::-webkit-scrollbar-thumb {
  background: #282828;
}

.log-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.log-tbl thead tr {
  background: #111111;
  border-bottom: 1px solid #282828;
}
.log-tbl thead tr th {
  padding: 5px 8px;
  text-align: left;
  color: #686868;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}
.log-tbl tbody tr {
  border-bottom: 1px solid #1c1c1c;
  transition: background 0.1s;
}
.log-tbl tbody tr:hover {
  background: #0b0b0b;
}
.log-tbl tbody td {
  padding: 5px 8px;
  color: #c4c4c4;
  font-size: 13px;
}

.log-empty td {
  text-align: center;
  color: #383838;
  padding: 40px !important;
  letter-spacing: 2px;
}

.btn-del-row {
  background: transparent;
  border: 1px solid #282828;
  color: #383838;
  font-size: 14px;
  line-height: 1;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.btn-del-row:hover {
  background: #200808;
  border-color: #cc2525;
  color: #ff3131;
}

.d-ahead {
  color: #ff3131;
}

.d-behind {
  color: #00ff41;
}

.d-flat {
  color: #00d4ff;
}

.footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 24px;
  border-top: 1px solid #1c1c1c;
  margin-top: 8px;
  font-size: 12px;
  color: #383838;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #050505;
}
.footer .footer__brand {
  color: #00ff41;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.65), 0 0 18px rgba(0, 255, 65, 0.25);
}
.footer .footer__sep {
  color: #363636;
}

@media (max-width: 920px) {
  .grid-top, .grid-bottom {
    grid-template-columns: 1fr;
  }
  .hdr__time {
    font-size: 20px;
  }
  .hdr__title {
    font-size: 13px;
    letter-spacing: 2px;
  }
}
@media (max-width: 500px) {
  .wrapper {
    padding: 4px;
  }
  .sess-countdown__time {
    font-size: 36px;
  }
  .ac__val {
    font-size: 18px;
  }
}

/*# sourceMappingURL=tracker.css.map */
