/* Updates body font */
body {
  font-family: Slack-Lato,appleLogo,sans-serif;
}

/* Replaces old sidebar styled links */
.sidebar_menu h5 {
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 3px;
}

/* Aligns footer navigation to the left of the sidebar */
.footer_nav {
  margin: 0 !important;
}

/* Styles the signature all nice and pretty <3 */
#footer_signature {
  color:#e01e5a;
  font-size:.9rem;
  margin-top: 10px;
}

/* Fixes link hover state */
a:hover {
  text-decoration: underline;
}

/* Makes footer consistent */
footer {
  background-color: transparent;
  border: 0;
}

.responsive_table tbody ul {
  margin-left: 1rem;
}

@media only screen and (max-width: 640px) {
  .responsive_table {
    display: block;
  }

  .responsive_table thead {
    display: none;
  }

  .responsive_table tbody {
    display: block;
  }

  .responsive_table tr {
    border: 1px solid #007a5a;
    border-radius: 5px;
    display: block;
    margin: 15px 0;
    padding: 15px 25px;
  }

  .responsive_table tr:last-child {
    border-bottom: 1px solid #007a5a;
  }

  .responsive_table td {
    border-bottom: 1px dotted #ddd;
    display: block;
    padding: 10px 0;
    text-align: left;
  }

  .responsive_table td:first-child {
    padding-top: 5px;
  }

  .responsive_table td:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
  }

  .responsive_table td::before {
    color: #222;
    content: attr(data-heading);
    display: block;
    font-weight: bold;
    margin-right: 5px;
    height: 100%;
  }

}