@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap");

html,
body {
  font-family: 'Orbitron', sans-serif;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

p,
h1 {
  margin-top: 0;
}
h1 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 500;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.grid-container {
  display: grid;
  height: 100vh;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
  background-color: #000000;
  padding: 0.3rem 0.5rem;
  gap: 0.3rem;
}
.grid-item {
  background-color: #000000;
  border-radius: 8px;
  color: rgb(186, 26, 26);
  padding: 0.5rem;
}
.grid-item > div {
  height: 99%;
  overflow-y: hidden;
}
.grid-item.crime-filters {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 2;
  overflow-y: scroll;
}
.grid-item.crime-filters > div {
  height: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.grid-item.crime-filters::-webkit-scrollbar {
  display: none;
}
.grid-item.crime-total-share {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.grid-item.crime-map {
  grid-column-start: 7;
  grid-column-end: end;
  grid-row-start: 1;
  grid-row-end: 3;
}
.grid-item.crime-location {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
}
.grid-item.crime-category {
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 2;
  grid-row-end: 3;
}
.grid-item.crime-timeline {
  grid-column-start: 1;
  grid-column-end: end;
  grid-row-start: 3;
  grid-row-end: end;
}
label.btn {
  margin-bottom: 0.25rem;
}

.filter-label {
  font-size: 14px;
  color: #f34943;
  display: inline;
  vertical-align: text-bottom;
}
.text-green {
  color: #f34943;
}
.text-purple {
  color: #f34943;
}

.btn-check:checked + .btn-outline-success {
  color: #1e2742;
  background-color: #f34943;
  border-color: #f34943;
}
.btn-outline-success {
  color: #f34943;
  border-color: #f34943;
}
.btn-outline-success:hover {
  color: #1e2742;
  border-color: #f34943;
  background-color: #f34943;
}
.btn-check:checked + .btn-outline-danger {
  color: #f0f0f0;
  background-color: #f34943;
  border-color: #f34943;
}
.btn-outline-danger {
  color: #f34943;
  border-color: #f34943;
}
.btn-outline-danger:hover {
  color: #1e2742;
  border-color: #f34943;
  background-color: #f34943;
}
.btn-check:checked + .btn-outline-primary {
  color: #1e2742;
  background-color: #f34943;
  border-color: #f34943;
}
.btn-outline-primary {
  color: #f34943;
  border-color: #f34943;
}
.btn-outline-primary:hover {
  color: #1e2742;
  border-color: #f34943;
  background-color: #7d2323;
}
.dot-selected {
  fill: #f34943 !important;
  opacity: 1 !important;
}
