.footage-finder h2 {
  font-size: 18px;
}
.footage-finder .filter-panel .by-camera {
  background-color: #F6F7FC;
  border-radius: 10px;
  padding: 12px;
}
.footage-finder .filter-panel .by-camera .camera-list-section + .camera-list-section {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #d6d8e1;
}
.footage-finder .filter-panel .by-camera .camera-list-heading {
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footage-finder .filter-panel .mini-map {
  background-color: #F6F7FC;
  border-radius: 10px;
  padding: 12px;
}
.footage-finder .no-footage {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.download-btn {
  border-radius: 7px;
  background: var(--Red, #DD3632);
  color: var(--White, #FFF);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.download-btn:hover {
  color: #fff;
  background-color: #cc0000;
}

.incident-viewer {
  border-radius: 10px;
  border: 1px solid var(--Light-Gray, #D6D8E1);
  background: var(--Panel-Light-Gray-BG, #F6F7FC);
  padding: 12px;
}
.incident-viewer .incident-radio-container {
  display: flex;
  -ms-flex: inherit;
  -webkit-flex: inherit;
  flex: inherit;
  color: var(--Red, #DD3632);
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.incident-viewer .incident-radio-container .form-check {
  font-size: 16px;
  /*            .form-check-input {
      font-size: 20px;
  }*/
}
.incident-viewer .incident-radio-container .no-incident {
  margin-left: auto;
}
.incident-viewer .edit-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.incident-viewer .video-viewer-container {
  margin-bottom: 12px;
}
.incident-viewer .full-video {
  margin-bottom: 12px;
}
.incident-viewer .play-video-btn {
  border-radius: 7px;
  background: var(--Red, #DD3632);
  color: var(--White, #FFF);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.incident-viewer .download-recording-container {
  margin: 24px -12px -12px -12px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid var(--Light-Gray, #D6D8E1);
  background: var(--Light-Gray, #D6D8E1);
  padding: 13px;
}
.incident-viewer .metadata {
  display: flex;
  flex-direction: column;
  font-family: Poppins;
  flex-grow: 1;
}
.incident-viewer .metadata .metadata-row {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  padding: 6px 2px;
  border-bottom: 1px solid var(--Light-Gray, #D6D8E1);
}
.incident-viewer .metadata .metadata-row .metadata-label {
  color: var(--Dark-Gray, #55565A);
  width: 80px;
  min-width: 80px;
  font-weight: 700;
}
.incident-viewer .metadata .metadata-row .metadata-value {
  color: var(--Dark-Gray, #55565A);
}
.incident-viewer .metadata .metadata-row .metadata-value a {
  color: var(--Red, #DD3632);
  font-weight: 700;
}

.highlight {
  border-color: #0d6efd;
}

.video-viewer {
  display: flex;
  background: #D9D9D9;
  color: var(--Dark-Gray, #55565A);
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  aspect-ratio: 4/3;
  width: 100%;
}

.expander-container {
  display: flex;
  overflow: hidden;
  height: 0;
  transition: height 0.25s ease-in-out;
  -moz-transition: height 0.2s ease-in-out;
  -ms-transition: height 0.2s ease-in-out;
  -o-transition: height 0.2s ease-in-out;
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
}
.expander-container.expanded {
  height: 70px;
  transition: height 0.25s ease-in-out;
  -moz-transition: height 0.2s ease-in-out;
  -ms-transition: height 0.2s ease-in-out;
  -o-transition: height 0.2s ease-in-out;
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
}