i a.selected {
  font-weight: bold;
  color: hsl(280, 100%, 75%);
}

.hidden {
  display: none;
}

.toc {
  margin-top: 1rem;
  text-align: center;
  font-size: 1em;
}
.toc li {
  display: inline-block;
}
.toc li a {
  text-decoration: underline;
}
.toc li a.selected {
  color: #d580ff;
}
.toc li a:hover {
  color: grey;
}
.toc li a.removeTag {
  color: black;
  text-decoration: none;
}
.toc li a {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
@media (min-width: 48em) {
  .toc {
    margin: 2rem 0 0;
  }
  .toc li {
    margin-right: 1em;
    margin-top: 0.2em;
    font-size: 1.5em;
  }
}

#action-flash {
  background: linear-gradient(to top, rgb(94, 165, 255), rgba(255, 255, 255, 0));
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6vh;
}
@media (min-width: 48em) {
  #action-flash {
    height: 3vh;
  }
}
#action-flash.fade-in {
  opacity: 0.5;
  transition: opacity 0.1s ease-in-out;
}
#action-flash.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.people a.internal {
  font-weight: bold;
}

.people a.external {
  padding-right: 13px;
  background: url("/img/external-link-ltr-icon.png");
  background-position: top right;
  background-repeat: no-repeat;
}

.project:first-child {
  margin-top: 2em;
}
.project {
  margin-top: 4em;
}
.project a.anchor {
  display: block;
  position: relative;
  top: -2rem;
  visibility: hidden;
}
.project h3 {
  display: inline;
}
.project .link-list {
  font-size: 0.8rem;
  display: inline-block;
}
.project .link-list div {
  display: block;
}
.project .title-bar {
  position: relative;
}
.project .status {
  display: block;
}
@media (min-width: 48em) {
  .project .status {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.project .tags {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  margin-left: 2rem;
  font-weight: bold;
}
.project .image {
  float: right;
  max-height: 250px;
  max-width: 250px;
}
.project ul .header {
  font-weight: bold;
  font-size: 1.2rem;
}
.project h5 {
  font-family: "Bebas Neue", Helvetica, Arial, sans-serif;
}

/* Tooltips - http://www.w3schools.com/howto/howto_css_tooltip.asp */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}
@media (min-width: 48em) {
  .tooltip-wrapper {
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  }
}

/* Tooltip text */
.tooltip-wrapper .tooltip {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 1s;
}

/* Tooltip arrow */
.tooltip-wrapper .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-wrapper:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

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