/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .indicator {
     display: block;
     align-self: center;
     margin: 0 7px 0 0;
     width: 17px;
     height: 17px;
     border-radius: 17px;
     border: 5px solid;
 }

 .green {
     background-color: green;
     border-color: green;
 }

 .orange {
     background-color: orange;
     border-color: orange;
 }

 .red {
     background-color: red;
     border-color: red;
 }

 .incident-row {
     display: flex;
 }

 .incident-col {

 }

 .incident-logo {
     width: 75px;
     height: 75px;
     margin: 40px 15px 0 0;
 }

 .incident-title {
     display: flex;
     margin: 40px 0 0 0;
     padding: 0;
 }

 .incident-subtitle {
     display: block;
 }

 .no-shrink {
     flex-shrink: 0;
 }