/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none; }

@keyframes pulse {
  25% {
    transform: scale(0.9); }
  75% {
    transform: scale(1.1); } }

@keyframes pulseReverse {
  25% {
    transform: scale(1.1); }
  75% {
    transform: scale(0.9); } }

@keyframes push {
  50% {
    transform: scale(0.8); } }

@keyframes pop {
  50% {
    transform: scale(1.2); } }

@keyframes pulseThenHide {
  0% {
    opacity: 0;
    transform: scale(0.9); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0); } }

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif; }

a {
  text-decoration: none;
  color: inherit; }

.main-content-wrapper {
  width: 100vw;
  display: flex;
  padding-top: 95px; }
  @media (min-width: 1100px) {
    .main-content-wrapper {
      padding-top: 0; } }

.main-content {
  background-color: #eaedf2;
  width: 100%; }
  @media (min-width: 1100px) {
    .main-content {
      width: calc(100% - 285px); } }

.page-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  padding: 56px 20px 10px 20px;
  background-color: #ffcc00;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 5; }
  @media (min-width: 1100px) {
    .page-title {
      position: relative;
      top: auto; } }

.inner-container {
  padding: 25px 20px; }

#toggle-menu {
  position: fixed;
  top: 60px;
  right: 20px;
  font-size: 22px;
  color: #fff;
  z-index: 10; }

.container {
  width: 100%;
  padding: 0 20px;
  position: relative; }

.flex-container {
  display: flex;
  flex-wrap: wrap; }

.align-center {
  align-items: center;
  justify-content: center; }

.space-between {
  justify-content: space-between; }

.flex-align-center {
  align-items: center; }

.flex-justify-center {
  justify-content: center; }

.flex-justify-end {
  justify-content: flex-end; }

.flex-space-between,
.flex-justify-space-between {
  justify-content: space-between; }

.flex-wrap {
  flex-wrap: wrap; }

.text-center {
  text-align: center; }

.mb-10 {
  margin-bottom: 10px; }

.fs-10 {
  font-size: 10px; }

.fs-14 {
  font-size: 14px; }

.m-left-5 {
  margin-left: 5px; }

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif; }

a {
  text-decoration: none;
  color: inherit; }

.main-content-wrapper {
  width: 100vw;
  display: flex;
  padding-top: 95px; }
  @media (min-width: 1100px) {
    .main-content-wrapper {
      padding-top: 0; } }

.main-content {
  background-color: #eaedf2;
  width: 100%; }
  @media (min-width: 1100px) {
    .main-content {
      width: calc(100% - 285px); } }

.page-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 38px;
  text-transform: uppercase;
  padding: 56px 20px 10px 20px;
  background-color: #ffcc00;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 5; }
  @media (min-width: 1100px) {
    .page-title {
      position: relative;
      top: auto; } }

.inner-container {
  padding: 25px 20px; }

#toggle-menu {
  position: fixed;
  top: 60px;
  right: 20px;
  font-size: 22px;
  color: #fff;
  z-index: 10; }

.site-navigation {
  width: 100%;
  background-color: #fff;
  height: 100vh;
  overflow: auto;
  padding: 15px 0;
  position: fixed;
  left: -100%;
  transition: 1s all ease-in-out;
  z-index: 8; }
  @media (min-width: 1100px) {
    .site-navigation {
      width: 285px;
      position: relative;
      left: auto; } }
  .site-navigation.showing {
    left: 0;
    transition: 1s all ease-in-out; }

.site-header__icon {
  height: 90px;
  margin: 20px auto;
  display: inline-block; }

.main-nav__link {
  display: block;
  text-decoration: none;
  color: #444;
  line-height: 75px;
  border-top: 1px solid #f1f1f1;
  padding: 0 20px;
  border-right: 4px solid transparent;
  transition: all 0.5s ease-in-out; }
  .main-nav__link--selected {
    border-right-color: #ffcc00; }
  .main-nav__link:hover {
    border-right-color: #2765c3; }

.chart-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.chart-box {
  padding: 20px;
  background-color: #fff;
  width: 100%;
  margin-bottom: 25px; }
  @media (min-width: 1100px) {
    .chart-box {
      min-width: 465px;
      width: 32%; } }

.chart-sub-title {
  font-size: 12px; }

.chart-box__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px; }

.ct-chart-donut .ct-label {
  fill: #fff; }

.button {
  display: inline-block;
  padding: 0 16px;
  font-size: 12px;
  line-height: 35px;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  text-decoration: none; }
  .button--primary {
    background-color: #ffcc00;
    color: #fff;
    border: 1px solid transparent; }
    .button--primary:hover {
      border: 1px solid #ffcc00;
      background: none;
      color: #ffcc00; }
  .button--outline {
    border: 1px solid #ffcc00;
    background: none;
    color: #ffcc00; }
    .button--outline:hover {
      background: #ffcc00;
      color: #fff; }
  .button--large {
    line-height: 50px;
    padding: 0 24px;
    font-size: 18px; }
  .button--submit {
    line-height: 36px;
    padding: 0 18px;
    font-size: 13px;
    text-transform: uppercase; }
  .button--danger {
    background-color: red;
    color: #fff;
    padding: 0 24px;
    font-size: 14px;
    line-height: 45px; }
  .button.disabled,
  .button :disabled {
    pointer-events: none;
    cursor: default;
    background-color: #ffe062;
    color: #efc800; }

.update-like .icon {
  animation: pulseReverse 0.3s linear 1; }

.update-like .icon.fa {
  color: #ffcc00;
  animation: pulse 0.3s linear 1; }

.no-animation {
  animation: none !important; }

.circle-image {
  height: 60px;
  width: 60px;
  overflow: hidden;
  border-radius: 50%; }
  .circle-image--md {
    height: 100px;
    width: 100px; }
  .circle-image--lg {
    height: 150px;
    width: 150px; }
  .circle-image--full {
    height: 300px;
    width: 300px; }
  .circle-image__item {
    max-width: 100%;
    height: auto; }

.four-oh-four .fof-bot {
  height: 30vh;
  margin-bottom: 50px;
  text-align: center;
  font-size: 16px;
  line-height: 24px; }
  .four-oh-four .fof-bot img {
    max-height: 200px;
    padding: 20px 0; }

.four-oh-four h2 {
  font-size: 32px;
  line-height: 45px;
  font-weight: 300;
  margin: 10px 0;
  text-transform: uppercase; }

.four-oh-four h5 {
  font-size: 16px;
  font-family: "Roboto", sans-serif; }

.four-oh-four h6 {
  font-size: 18px;
  line-height: 26px; }

.four-oh-four p {
  margin-bottom: 25px;
  font-weight: 300; }

.four-oh-four a {
  text-decoration: underline; }

#incident-report h3 {
  display: block;
  margin: 20px 0;
  font-family: "Roboto", sans-serif; }

#incident-report .reporting-link {
  display: block;
  border-bottom: 1px solid #f1f1f1;
  line-height: 45px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 20px; }
  #incident-report .reporting-link.button {
    text-align: center;
    max-width: 85%;
    margin: 25px auto 0; }

.tb-user {
  width: 100%;
  margin-bottom: 10px;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  @media (min-width: 1100px) {
    .tb-user {
      min-width: 200px;
      width: 23%;
      margin-right: 2%;
      margin-bottom: 2%;
      display: block;
      padding: 20px; } }
  .tb-user__image {
    height: 50px;
    width: 50px; }
    @media (min-width: 1100px) {
      .tb-user__image {
        height: 150px;
        width: 150px;
        margin: 0 auto 15px; } }
  .tb-user__usr {
    width: calc(100% - 120px); }
    @media (min-width: 1100px) {
      .tb-user__usr {
        margin: 10px 0;
        width: auto; } }
  .tb-user__handle {
    font-size: 14px;
    display: block;
    text-align: center;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-bottom: 5px; }
    @media (min-width: 1100px) {
      .tb-user__handle {
        font-size: 18px; } }
  .tb-user__name {
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #333; }
    @media (min-width: 1100px) {
      .tb-user__name {
        font-size: 12px; } }

.list-cta {
  display: block;
  text-align: center; }

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