div.toasts {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 100; }
  div.toasts div.toast {
    flex: 1;
    background-color: white;
    padding: .5rem 1rem;
    border-radius: 4px;
    margin-top: .5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    min-width: 25vw;
    text-align: center; }
    div.toasts div.toast.danger {
      background-color: #F44336;
      color: white; }
    div.toasts div.toast.warning {
      background-color: #FF9800; }
    div.toasts div.toast.success {
      background-color: #00E676; }

.toast-enter {
  opacity: 0;
  transform: translateY(-30px); }

.toast-enter.toast-enter-active {
  transform: translateY(0);
  opacity: 1;
  transition: all 500ms cubic-bezier(0.87, -0.41, 0.19, 1.44); }

.toast-leave {
  opacity: 1; }

.toast-leave.toast-leave-active {
  opacity: 0;
  transition: opacity 300ms ease-in; }

.tabs {
  display: flex;
  flex-direction: column;
  flex: 1; }
  .tabs .tab-list {
    display: flex;
    position: relative;
    margin-bottom: .5rem;
    background-color: #F5F5F5;
    border-bottom: 1px solid #ddd; }
    .tabs .tab-list .tab {
      padding: .5rem;
      width: 8rem;
      text-align: center;
      font-size: 1rem;
      color: #2196F3; }
      .tabs .tab-list .tab:hover {
        cursor: pointer; }
      .tabs .tab-list .tab.selected {
        color: #000; }
    .tabs .tab-list .tab:nth-child(1):hover ~ .underline {
      transform: translateX(0rem) !important; }
    .tabs .tab-list .tab:nth-child(1).selected ~ .underline {
      transform: translateX(0rem); }
    .tabs .tab-list .tab:nth-child(2):hover ~ .underline {
      transform: translateX(9rem) !important; }
    .tabs .tab-list .tab:nth-child(2).selected ~ .underline {
      transform: translateX(9rem); }
    .tabs .tab-list .tab:nth-child(3):hover ~ .underline {
      transform: translateX(18rem) !important; }
    .tabs .tab-list .tab:nth-child(3).selected ~ .underline {
      transform: translateX(18rem); }
    .tabs .tab-list .tab:nth-child(4):hover ~ .underline {
      transform: translateX(27rem) !important; }
    .tabs .tab-list .tab:nth-child(4).selected ~ .underline {
      transform: translateX(27rem); }
    .tabs .tab-list .tab:nth-child(5):hover ~ .underline {
      transform: translateX(36rem) !important; }
    .tabs .tab-list .tab:nth-child(5).selected ~ .underline {
      transform: translateX(36rem); }
    .tabs .tab-list .tab:nth-child(6):hover ~ .underline {
      transform: translateX(45rem) !important; }
    .tabs .tab-list .tab:nth-child(6).selected ~ .underline {
      transform: translateX(45rem); }
    .tabs .tab-list .tab:nth-child(7):hover ~ .underline {
      transform: translateX(54rem) !important; }
    .tabs .tab-list .tab:nth-child(7).selected ~ .underline {
      transform: translateX(54rem); }
    .tabs .tab-list .tab:nth-child(8):hover ~ .underline {
      transform: translateX(63rem) !important; }
    .tabs .tab-list .tab:nth-child(8).selected ~ .underline {
      transform: translateX(63rem); }
    .tabs .tab-list .tab:nth-child(9):hover ~ .underline {
      transform: translateX(72rem) !important; }
    .tabs .tab-list .tab:nth-child(9).selected ~ .underline {
      transform: translateX(72rem); }
    .tabs .tab-list .tab:nth-child(10):hover ~ .underline {
      transform: translateX(81rem) !important; }
    .tabs .tab-list .tab:nth-child(10).selected ~ .underline {
      transform: translateX(81rem); }
    .tabs .tab-list .underline {
      position: absolute;
      width: 8rem;
      border-bottom: 0.2rem solid #2196F3;
      transition: .25s all;
      left: .5rem;
      bottom: 0; }
  .tabs .tab-panel {
    flex: 1;
    overflow: auto; }

button,
.toolbar-button {
  padding: .5rem 1rem;
  border: 1px solid #BDBDBD;
  background-color: #F5F5F5;
  margin-right: .5rem;
  border-radius: 4px;
  font-size: .8rem;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
  cursor: pointer; }
  button:disabled,
  .toolbar-button:disabled {
    opacity: .5;
    cursor: not-allowed; }
  button:hover,
  .toolbar-button:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
  button:focus,
  .toolbar-button:focus {
    outline: none; }
  button.primary,
  .toolbar-button.primary {
    background-color: teal;
    border-color: #014248;
    color: white; }
  button.danger,
  .toolbar-button.danger {
    background-color: #F44336;
    border-color: #C62828;
    color: white; }
  button.link-button,
  .toolbar-button.link-button {
    color: #2196F3;
    border: none;
    background-color: transparent;
    padding: 0; }
    button.link-button:hover,
    .toolbar-button.link-button:hover {
      text-decoration: underline;
      box-shadow: none; }
    button.link-button.danger:hover,
    .toolbar-button.link-button.danger:hover {
      color: #F44336; }
  button.icon-button,
  .toolbar-button.icon-button {
    padding: .5rem .75rem; }

.modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 50; }
  .modal .modal-window {
    margin-top: .5rem;
    max-width: 32rem;
    width: 100%;
    border: 1px solid #9E9E9E;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    background-color: white;
    margin-bottom: 2rem; }
    .modal .modal-window .modal-header {
      background-color: #EEEEEE;
      font-size: 1.4rem;
      padding: 1.5rem 1rem;
      border-bottom: 1px solid #BDBDBD; }
    .modal .modal-window .modal-body {
      padding: .5rem 1rem 0 1rem; }
      .modal .modal-window .modal-body p {
        padding-top: .5rem;
        padding-bottom: 1rem; }
    .modal .modal-window .modal-footer {
      border-top: 1px solid #BDBDBD;
      padding: 1rem 1rem; }
  .modal.modal-enter {
    opacity: 0.01; }
    .modal.modal-enter .modal-window {
      opacity: 0.01;
      transform: translateY(-30%); }
  .modal.modal-enter.modal-enter-active {
    opacity: 1;
    transition: opacity 200ms ease-in; }
    .modal.modal-enter.modal-enter-active .modal-window {
      transform: translateY(0);
      opacity: 1;
      transition: all 300ms ease-out; }
  .modal.modal-leave {
    opacity: 1; }
  .modal.modal-leave.modal-leave-active {
    opacity: 0.01;
    transition: opacity 200ms ease-in; }
    .modal.modal-leave.modal-leave-active .modal-window {
      opacity: 0.01;
      transform: translateY(-30%);
      transition: all 200ms ease-out; }

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 32px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  margin-bottom: .5rem; }

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }

label,
legend {
  display: block;
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-weight: 600;
  font-size: .8rem; }

fieldset {
  padding: 0;
  border-width: 0; }

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  width: auto !important;
}

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

.input-addon {
  display: flex;
  margin-bottom: 1rem;
  align-items: center; }
  .input-addon input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #BDBDBD;
    margin-bottom: 0; }
  .input-addon span.input-addon-prepend {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 32px;
    padding: 6px 12px;
    background-color: #EEEEEE;
    border-top: 1px solid #BDBDBD;
    border-left: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
    box-shadow: none;
    box-sizing: border-box;
    margin-bottom: 0;
    user-select: none;
    line-height: 1.1rem; }

form span.error {
  font-size: .8rem;
  color: red;
  margin-left: .5rem; }

form span.append {
  font-size: .8rem;
  margin-left: .5rem; }

body {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
  font-size: .9rem; }

a {
  color: red;
  text-decoration: underline; }
  a:hover {
    text-decoration: underline; }

h1.app-header {
  font-size: 2rem;
  padding: .5rem;
  border-bottom: 1px solid #BDBDBD; }

.header {
  display: flex;
  height: 3rem;
  align-items: center;
  background-color: #F5F5F5;
  border-bottom: 1px solid #BDBDBD; }
  .header .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex: 0 1 12rem;
    height: 100%;
    color: black;
    text-transform: uppercase; }
  .header .nav {
    margin-left: .5rem; }
    .header .nav .context-menu {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 2rem;
      width: 2rem;
      background-color: #2196F3;
      color: white;
      border-radius: 50%; }
      .header .nav .context-menu:hover {
        cursor: pointer; }
  .header .right-nav {
    margin-left: auto;
    padding-right: 1rem; }

.container {
  display: flex;
  flex: 1; }
  .container .side-bar {
    display: flex;
    flex-direction: column;
    flex: 1 0 12rem;
    background-color: #EEEEEE;
    border-right: 1px solid #9E9E9E;
    padding-top: .5rem; }
    .container .side-bar .links {
      display: flex;
      flex-direction: column; }
      .container .side-bar .links a {
        color: black;
        padding: .5rem 1rem;
        font-size: .8rem; }
        .container .side-bar .links a i {
          color: #757575;
          font-size: 1rem;
          margin-right: .5rem; }
        .container .side-bar .links a:hover {
          text-decoration: none;
          background-color: #FAFAFA; }
        .container .side-bar .links a.active {
          background-color: #42A5F5;
          color: white; }
          .container .side-bar .links a.active i {
            color: white; }
  .container .module {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto; }

#app {
  flex: 1; }

.app-fetching {
  position: fixed;
  text-align: center;
  left: 0;
  right: 0;
  top: 45%; }

.toolbar {
  display: flex;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: .5rem;
  background-color: #FAFAFA; }
  .toolbar .input-addon {
    margin-bottom: 0;
    margin-right: .5rem; }

.work-items {
  padding: .5rem; }
  .work-items .work-item {
    margin-bottom: 1rem;
    font-weight: bold; }

span.highlight {
  background-color: #FFEB3B; }

.sign-up-link {
    margin-top: .5rem;
    text-align: center;
    font-size: .8rem;
}

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