.badge {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  height: 30px;
  padding: 5px 10px;
  font-weight: 700;
  text-transform: uppercase; }
  .badge .label {
    color: #ffffff; }
    .badge .label i {
      margin-right: 10px; }
  .badge.black {
    background-color: #000000; }
  .badge.green {
    background-color: #10cf3b; }
  .badge.red {
    background-color: #ed2323; }
  .badge.transparent {
    background-color: transparent; }
  .badge.short {
    height: 14px;
    width: 14px;
    line-height: 14px;
    vertical-align: middle;
    padding: initial; }

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1002; }
  .modal.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002; }
  .modal.display {
    position: fixed;
    background: #ffffff;
    border-radius: 16px 16px 16px 16px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.6);
    z-index: 1002;
    pointer-events: all;
    height: auto;
    width: auto;
    padding: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .modal.display .close {
      position: absolute;
      top: 13px;
      right: 18px;
      color: #4c5159;
      cursor: pointer;
      z-index: 1003; }
    .modal.display .text {
      position: relative;
      margin: 0 auto;
      color: #4c5159;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 24px;
      text-align: center;
      width: 70vw;
      max-width: 352px; }
  .modal.overlay {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001; }

.media-share-tray {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 12px; }
  .media-share-tray > .modal-embed-container {
    margin-left: 12px; }
  .media-share-tray > div > button {
    background: #11141a;
    border-radius: 12px;
    border: 1px solid rgba(77, 166, 255, 0.5);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    height: 40px;
    width: 100px;
    color: #8c8c8c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase; }
    .media-share-tray > div > button:hover {
      color: white; }

/* Style the list */
.tab-bar {
  display: flex;
  flex-direction: row;
  border-bottom: 1px #4c5159 solid;
  margin: 40px 24px 0 24px; }
  .tab-bar > .link {
    color: #aaadb3;
    display: inline;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
    height: 23px;
    letter-spacing: 0.8px;
    line-height: 16px;
    flex: 1; }
    .tab-bar > .link.active {
      color: #000000;
      pointer-events: none;
      cursor: default;
      border-bottom: 2px #000000 solid; }
    .tab-bar > .link:hover {
      color: #8d9299;
      border-bottom: 2px #8d9299 solid; }

.tooltip-parent {
  position: relative; }
  .tooltip-parent.show .tooltip {
    display: block; }

.tooltip {
  position: absolute;
  background: #4c5159;
  border: 1px solid #5bb4ff;
  color: white;
  font-size: 14px;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
  display: none; }

.tooltip:after,
.tooltip:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.tooltip.middle:after,
.tooltip.middle:before {
  left: 50%; }

.tooltip.left:after,
.tooltip.left:before {
  left: 0%; }

.tooltip.right:after,
.tooltip.right:before {
  left: 90%; }

.tooltip:after {
  border-color: rgba(7, 40, 51, 0);
  border-top-color: #4c5159;
  border-width: 8px;
  margin-left: -8px; }

.tooltip:before {
  border-color: rgba(0, 104, 136, 0);
  border-top-color: #5bb4ff;
  border-width: 9px;
  margin-left: -9px; }

.box-container {
  display: block;
  position: relative;
  padding-left: 24px;
  padding-right: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  margin: 0 8px 8px 0;
  /* Create a custom checkbox */ }
  .box-container .box-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    width: 0 !important; }
  .box-container .box-input:checked ~ .selected {
    background-color: #5bb4ff;
    border: 0px;
    box-shadow: none; }
  .box-container .box-input:checked ~ .selected:after {
    display: block; }
  .box-container .selected {
    position: absolute;
    top: 4px;
    left: 0;
    height: 16px;
    width: 16px;
    box-shadow: 0 0 1px #4c5159 inset; }
    .box-container .selected:after {
      content: "";
      position: absolute;
      display: none; }
  .box-container.checkbox .selected:after {
    left: 5px;
    top: 2px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .box-container.radio .selected {
    border-radius: 50%; }
    .box-container.radio .selected:after {
      top: 4px;
      left: 4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white; }

.size-options {
  display: flex;
  flex-direction: row;
  align-items: flex-start; }
  .size-options > .radio-buttons {
    display: flex;
    flex-direction: column; }
    .size-options > .radio-buttons > .radio {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .size-options > .radio-buttons > .radio > .tooltip-parent > .size-input {
        background: transparent;
        padding: 4px 8px 4px 8px;
        border-radius: 8px;
        border: 1px solid #8c8c8c;
        height: initial;
        width: 35px;
        margin: 0 4px;
        padding-right: 0; }

.video-settings-tab > #video-settings-tab {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  flex-direction: column;
  margin-left: 40px; }
  .video-settings-tab > #video-settings-tab > .grouped-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 28px; }
    .video-settings-tab > #video-settings-tab > .grouped-options.audio-option {
      margin-bottom: 14px; }
    .video-settings-tab > #video-settings-tab > .grouped-options > .title {
      color: black;
      font-size: 14px;
      font-weight: bold;
      line-height: 20px;
      width: 112px; }
    .video-settings-tab > #video-settings-tab > .grouped-options > .radio-button {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin: 0 40px 0 0;
      font-size: 14px;
      font-weight: normal;
      line-height: 23px;
      color: #8c8c8c; }
      .video-settings-tab > #video-settings-tab > .grouped-options > .radio-button.checked {
        color: #000; }

.badge {
  height: 12px; }
  .badge.live .bullet {
    background: #ed2323;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    margin-right: 7px; }
  .badge.live .text {
    font-size: 12px;
    font-weight: 900;
    height: 12px;
    letter-spacing: 1.2px;
    line-height: 12px;
    width: 31px; }

.modal.modal-embed {
  z-index: 10000; }
  .modal.modal-embed > .display {
    background: #ffffff;
    border-radius: 16px;
    width: 960px;
    padding: 40px;
    height: 773px; }
    .modal.modal-embed > .display > .close {
      background: rgba(0, 0, 0, 0.1);
      height: 40px;
      width: 40px;
      top: 24px;
      right: 40px;
      border-radius: 50%; }
      .modal.modal-embed > .display > .close > i {
        position: absolute;
        top: 45%;
        left: 50%;
        line-height: 0;
        transform: translate(-50%, -50%);
        font-size: 32px;
        font-style: normal; }
    .modal.modal-embed > .display > .text {
      margin: initial;
      width: 100%;
      height: 100%;
      max-width: initial;
      text-align: left;
      display: flex;
      flex: 1;
      flex-direction: column; }
      .modal.modal-embed > .display > .text > .copy-code-block {
        display: flex;
        align-items: baseline; }
        .modal.modal-embed > .display > .text > .copy-code-block > .tooltip-parent > input {
          border-radius: 6px;
          border: 1px solid rgba(76, 81, 89, 0.6);
          height: 18px;
          width: 480px;
          margin: 0 16px 24px 0;
          padding: 14px 16px;
          color: #aaadb3;
          font-size: 14px;
          font-weight: 700;
          line-height: 20px; }
        .modal.modal-embed > .display > .text > .copy-code-block > .tooltip-parent > #copy-code-btn {
          width: 152px;
          font-size: 14px;
          color: #ffffff;
          background: linear-gradient(45deg, #0072ff 0%, #5bb4ff 100%);
          border-radius: 24px;
          border: 0;
          font-family: -apple-system, BlinkMacSystemFont, sans-serif;
          font-size: 14px;
          font-weight: 800;
          height: 48px;
          cursor: pointer;
          text-transform: uppercase;
          border: none;
          outline: none; }
      .modal.modal-embed > .display > .text > .title {
        color: #000000;
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        margin-bottom: 4px; }
      .modal.modal-embed > .display > .text > .tos {
        color: #aaadb3;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        margin-bottom: 24px; }
        .modal.modal-embed > .display > .text > .tos > a {
          color: #22c9ff;
          margin: 0 5px; }
      .modal.modal-embed > .display > .text > .setup-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        flex: 1; }
        .modal.modal-embed > .display > .text > .setup-container > .iframe-preview-container {
          display: flex;
          flex: 1;
          flex-direction: column;
          height: 100%;
          max-width: 352px;
          margin-right: 24px; }
          .modal.modal-embed > .display > .text > .setup-container > .iframe-preview-container > .iframe-title {
            margin-bottom: 8px;
            font-size: 14px;
            line-height: 20px;
            color: #000000;
            font-weight: 800; }
            .modal.modal-embed > .display > .text > .setup-container > .iframe-preview-container > .iframe-title.link {
              color: #22c9ff;
              text-transform: capitalize; }
          .modal.modal-embed > .display > .text > .setup-container > .iframe-preview-container > .iframe-preview {
            display: flex;
            flex: 1;
            flex-direction: column;
            height: 100%;
            width: 100%; }
        .modal.modal-embed > .display > .text > .setup-container > .customization-container {
          margin-left: 24px;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start; }
          .modal.modal-embed > .display > .text > .setup-container > .customization-container > .customization-button {
            color: #22c9ff;
            font-size: 14px;
            font-weight: bold;
            height: 20px;
            line-height: 20px;
            background: none;
            text-transform: none;
            margin-bottom: 24px;
            outline: none;
            appearance: none;
            border: 0;
            cursor: pointer; }
          .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s;
            background: #f0f0f0;
            border-radius: 16px;
            box-sizing: border-box;
            flex: 1;
            width: 100%; }
            .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container.show {
              max-height: 500px; }
            .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup {
              display: flex;
              flex: 1;
              flex-direction: row;
              padding-top: 48px; }
              .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container {
                display: flex;
                flex: 1;
                flex-direction: column;
                height: 100%; }
                .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-title {
                  margin-bottom: 8px;
                  font-size: 14px;
                  line-height: 20px;
                  color: #000000;
                  font-weight: 800; }
                  .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-title.link {
                    color: #22c9ff;
                    text-transform: capitalize; }
                .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options {
                  display: flex;
                  flex: 1;
                  flex-direction: column;
                  height: 100%;
                  z-index: 1;
                  background: #f0f0f0;
                  border-radius: 16px;
                  padding: 0 40px 24px; }
                  .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > .title {
                    color: #000000;
                    font-size: 16px;
                    font-weight: 700;
                    margin-bottom: 8px;
                    line-height: 20px; }
                  .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options {
                    display: flex;
                    flex-direction: row;
                    align-items: baseline; }
                    .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options.main-section {
                      margin-top: 24px; }
                    .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .title {
                      color: #000000;
                      font-size: 14px;
                      font-weight: 700;
                      margin-bottom: 8px;
                      width: 100px; }
                    .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container {
                      margin: 0 8px 8px;
                      height: 25px; }
                      .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container > .tooltip-parent {
                        margin: 0;
                        width: fit-content;
                        display: inline-block; }
                      .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container > .tooltip-parent > .size-input,
                      .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container > .size-input {
                        background: transparent;
                        padding: 4px 8px;
                        border-radius: 8px;
                        border: 1px solid #8c8c8c;
                        height: initial;
                        width: 35px;
                        margin: 0 4px;
                        padding-right: 0; }
                      .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container > .link {
                        color: #22c9ff;
                        text-transform: capitalize; }
                      .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container.checkbox > .link {
                        margin-left: 5px; }
                      .modal.modal-embed > .display > .text > .setup-container > .customization-container > .tab-container > .iframe-setup > .iframe-options-container > .iframe-options > div > .grouped-options > .box-container.checkbox > .selected {
                        box-shadow: 0 0 2px #4c5159 inset; }

.badge {
  padding: 0; }
  .badge.verified.big {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 20px;
    width: 83px;
    display: flex;
    justify-content: space-evenly; }
    .badge.verified.big .verified-text {
      color: #ffffff;
      font-size: 10px;
      font-weight: 900;
      height: 12px;
      letter-spacing: 1px;
      line-height: 12px;
      width: 53px; }

.incident-video-stream {
  position: relative;
  width: 100% !important; }
  .incident-video-stream > .background {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #000000;
    overflow: hidden; }
    .incident-video-stream > .background > img {
      filter: blur(8px);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%; }
      .incident-video-stream > .background > img.hidden {
        opacity: 0; }
  .incident-video-stream .incident-video-stream-player,
  .incident-video-stream .incident-video-stream-player video {
    background: transparent;
    position: absolute;
    max-height: 450px;
    height: 100% !important;
    width: 100% !important; }
    @media only screen and (max-width: 880px) {
      .incident-video-stream .incident-video-stream-player,
      .incident-video-stream .incident-video-stream-player video {
        max-height: 387px; } }
  .incident-video-stream.fullscreen,
  .incident-video-stream .incident-video-stream-player.fullscreen,
  .incident-video-stream .incident-video-stream-player.fullscreen video {
    position: fixed;
    height: 100%;
    max-height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000; }
  .incident-video-stream #video-controls {
    position: absolute;
    bottom: -1px;
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    height: 60px;
    width: 100%; }
    .incident-video-stream #video-controls > .controls {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: absolute;
      bottom: 13px;
      width: 100%; }
      .incident-video-stream #video-controls > .controls > *:last-child {
        margin-right: 20px; }
    .incident-video-stream #video-controls.fullscreen {
      z-index: 1001;
      position: fixed;
      bottom: 0; }
  .incident-video-stream .badge.verified {
    top: 12px;
    left: 12px; }
  .incident-video-stream .badge.live {
    margin: 0 auto 0 20px;
    z-index: 1; }
  .incident-video-stream .play-button {
    cursor: pointer;
    display: block;
    margin-left: 20px;
    background: transparent; }
  .incident-video-stream .mute-button {
    cursor: pointer;
    margin-left: 20px;
    background: transparent; }
  .incident-video-stream .fullscreen-button {
    cursor: pointer;
    margin-left: 13px;
    background: transparent; }
  .incident-video-stream .download {
    cursor: pointer;
    margin-left: 13px;
    background: transparent; }
  .incident-video-stream .video-seek-slider {
    -webkit-appearance: none;
    margin: 0 0 0 13px;
    cursor: pointer;
    background: transparent;
    position: relative;
    flex: 1;
    height: 40px;
    width: calc(100% - 248px);
    display: flex;
    align-items: center;
    justify-content: center; }
    .incident-video-stream .video-seek-slider.fullscreen-disabled {
      width: calc(100% - 202px); }
    .incident-video-stream .video-seek-slider:focus {
      outline: none; }
    .incident-video-stream .video-seek-slider .track {
      width: 100%;
      height: 3px;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 1.3px;
      box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
      border: 0px solid #ed2323; }
    .incident-video-stream .video-seek-slider .thumb {
      position: absolute;
      -webkit-appearance: none;
      height: 16px;
      width: 2px;
      border-radius: 0px;
      background: #ed2323;
      box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
      border: 0px solid #ed2323; }

.download-app button,
.download-app .button,
.download-modal button,
.download-modal .button {
  border-radius: 24px;
  height: 48px;
  width: 80%;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 16px; }
  .download-app button.agree,
  .download-app .button.agree,
  .download-modal button.agree,
  .download-modal .button.agree {
    cursor: pointer;
    top: 152px;
    left: 32px;
    color: white;
    background: linear-gradient(45deg, #0072ff 0%, #5bb4ff 100%);
    border: none; }
  .download-app button.cancel,
  .download-app .button.cancel,
  .download-modal button.cancel,
  .download-modal .button.cancel {
    cursor: pointer;
    top: 212px;
    left: 32px;
    margin-top: 15px;
    color: white;
    background: linear-gradient(45deg, #1c2026 0%, #4c5159 100%);
    border: none; }

.download-app .modal.display a,
.download-modal .modal.display a {
  color: #22c9ff; }

.download-app .agreement-text,
.download-modal .agreement-text {
  margin-bottom: 26px; }

.loader {
  margin: 20% auto; }
  .loader img {
    margin: auto;
    display: block;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.title-bar {
  padding: 0 20px;
  margin-bottom: 19px; }
  .title-bar > h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 28px;
    margin: 0; }
  .title-bar > .date {
    color: #b3b3b3;
    font-size: 12px;
    font-weight: 900;
    height: 16px;
    letter-spacing: 0px;
    line-height: 16px; }
  .title-bar > .address {
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 20px; }

.updates-container {
  display: flex;
  flex-direction: column;
  padding-top: 12px; }
  .updates-container.fill {
    height: 100%; }
  .updates-container > .update {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 0 24px;
    position: relative; }
    .updates-container > .update:last-child {
      flex: 1; }
      .updates-container > .update:last-child > .info {
        flex: 1; }
    .updates-container > .update > .dot {
      height: 12px;
      width: 12px;
      background: #666666;
      border-radius: 50%;
      position: absolute;
      top: 0;
      left: 0; }
    .updates-container > .update > .info {
      padding: 0 12px 16px;
      border-left: 4px solid rgba(255, 255, 255, 0.05);
      margin-left: 4px; }
      .updates-container > .update > .info > .date {
        color: #8c8c8c;
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        margin-top: -3px; }
      .updates-container > .update > .info > .text {
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px; }

