@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700,900");
body {
  background: colorBlue(0.05); }

body, h1, h2, h3, h4, p {
  font-family: "Roboto";
  color: #031c30;
  font-weight: 700;
  line-height: 150%; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px;
  font-family: "Roboto"; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 18px; }

body, p {
  font-size: 15px;
  font-weight: 400; }

.typography--note {
  font-size: 13px; }

.typography--black {
  font-weight: 900; }

.typography--bold {
  font-weight: 700; }

.typography--normal {
  font-weight: 400; }

.typography--light {
  font-weight: 300; }

.typography--primary {
  color: #031c30; }

.typography--secondary {
  color: rgba(3, 28, 48, 0.8); }

.typography--tertiary {
  color: rgba(3, 28, 48, 0.5); }

.inverted h1, .inverted h2, .inverted h3, .inverted h4, .inverted p {
  color: white; }

.inverted .typography--primary {
  color: white; }

.inverted .typography--secondary {
  color: rgba(255, 255, 255, 0.7); }

.inverted .typography--tertiary {
  color: rgba(255, 255, 255, 0.4); }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.button {
  font-family: "Roboto";
  font-size: 15px;
  border-radius: 100px;
  font-weight: 700;
  padding: 12px 18px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s; }
  .ui.button:hover {
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s; }
  .ui.button:active {
    opacity: 0.8; }
  .ui.button .icon:not(.button) {
    opacity: 1; }
  .ui.button.primary {
    background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
    color: white;
    font-weight: 400;
    box-shadow: 2px 2px 10px rgba(13, 71, 161, 0.25); }
    .ui.button.primary:hover {
      background: linear-gradient(90deg, #1976D2 0%, #00BCD4 100%);
      box-shadow: 2px 2px 10px rgba(13, 71, 161, 0.4); }
  .ui.button.secondary {
    background: rgba(255, 255, 255, 0);
    border: 1.5px solid #2196f3;
    color: #2196f3; }
    .ui.button.secondary:hover {
      border: 1.5px solid #00bcd4;
      color: #00bcd4;
      background: transparent !important; }
  .ui.button.tertiary {
    background: rgba(255, 255, 255, 0);
    color: #2196f3;
    margin-left: 0;
    margin-right: 0; }
    .ui.button.tertiary:hover {
      background: transparent !important; }
  .ui.button.positive {
    background: linear-gradient(45deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    font-weight: 400;
    box-shadow: 2px 2px 10px rgba(13, 71, 161, 0.25); }
    .ui.button.positive:hover {
      background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
      box-shadow: 2px 2px 10px rgba(13, 71, 161, 0.4); }
  .ui.button.negative {
    background: linear-gradient(45deg, #F44336 0%, #E91E63 100%);
    color: white;
    font-weight: 400;
    box-shadow: 2px 2px 10px rgba(13, 71, 161, 0.25); }
    .ui.button.negative:hover {
      background: linear-gradient(90deg, #F44336 0%, #E91E63 100%);
      box-shadow: 2px 2px 10px rgba(13, 71, 161, 0.4); }
  .ui.button.big {
    font-size: 28px;
    font-weight: 400;
    padding: 15px 25px; }
  .ui.button.small {
    font-size: 13px;
    font-weight: 300;
    padding: 8px 15px; }

.inverted .ui.button.primary {
  background: white;
  color: #2196f3;
  box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1); }
  .inverted .ui.button.primary:hover {
    background: rgba(255, 255, 255, 0.9); }
  .inverted .ui.button.primary:hover {
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); }

.inverted .ui.button.secondary {
  background: rgba(255, 255, 255, 0);
  border: 1.5px solid white;
  color: white; }
  .inverted .ui.button.secondary:hover {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8); }

.inverted .ui.button.tertiary {
  background: rgba(255, 255, 255, 0);
  color: white;
  margin-left: 0;
  margin-right: 0; }
  .inverted .ui.button.tertiary:hover {
    color: rgba(255, 255, 255, 0.8); }

.inverted .ui.button.positive, .inverted .ui.button.negative {
  box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1); }
  .inverted .ui.button.positive:hover, .inverted .ui.button.negative:hover {
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.segment {
  background: white;
  border: 1px solid rgba(33, 150, 243, 0.25);
  box-sizing: border-box;
  box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25);
  border-radius: 5px;
  font-size: 15px;
  padding: 2em; }
  .ui.segment.raised {
    box-shadow: 5px 3px 20px rgba(33, 150, 243, 0.25); }
  .ui.segment.inverted {
    background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%); }

.ui.segments {
  background: white;
  border: 1px solid rgba(33, 150, 243, 0.25);
  box-sizing: border-box;
  box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25);
  border-radius: 5px;
  font-size: 15px; }
  .ui.segments .segment {
    border-top: 1px solid rgba(33, 150, 243, 0); }
    .ui.segments .segment.segment__header {
      font-size: 20px;
      font-weight: 700;
      color: rgba(3, 28, 48, 0.8);
      padding: 1em 1em;
      vertical-align: middle; }
      .ui.segments .segment.segment__header:before {
        position: absolute;
        content: '';
        top: 20%;
        left: 0px;
        height: 60%;
        width: 5px;
        background: linear-gradient(0deg, #1976D2 0%, #00BCD4 100%);
        border-radius: 0 100px 100px 0; }
      .ui.segments .segment.segment__header + .segment {
        padding-top: 1em; }
    .ui.segments .segment.segment__footer {
      border-top: 1px solid rgba(33, 150, 243, 0.25);
      background: rgba(33, 150, 243, 0.1);
      padding: 0.75em; }
      .ui.segments .segment.segment__footer--basic {
        background: rgba(255, 255, 255, 0.25);
        padding: 0.75em; }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.statistic .value {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 48px !important;
  color: rgba(3, 28, 48, 0.8); }

.ui.statistic .label {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 15px !important;
  color: rgba(3, 28, 48, 0.5);
  padding-top: 0.5em; }

.inverted .ui.statistic .value {
  color: white; }

.inverted .ui.statistic .label {
  color: rgba(255, 255, 255, 0.5); }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.menu {
  background: white;
  border: 1px solid rgba(33, 150, 243, 0.25);
  box-sizing: border-box;
  box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25);
  height: 50px;
  font-family: "Roboto";
  font-size: 15px;
  padding: 0 1%; }
  .ui.menu.fixed {
    padding: 0 2.5%;
    border-radius: 0; }
  .ui.menu .item:before {
    background: none; }
  .ui.menu .item .ui.avatar.image {
    margin-right: 1em; }
  .ui.menu a.item {
    color: rgba(3, 28, 48, 0.65);
    font-weight: 700; }
    .ui.menu a.item.header {
      margin-right: 30px; }
      .ui.menu a.item.header.active:before {
        background: none; }
      .ui.menu a.item.header img {
        height: 30px;
        width: auto; }
      .ui.menu a.item.header:hover:before {
        background: none; }
    .ui.menu a.item:before {
      background: none; }
    .ui.menu a.item.active {
      background: linear-gradient(90deg, #1976D2 0%, #00BCD4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900; }
      .ui.menu a.item.active:hover {
        background: linear-gradient(90deg, #1976D2 0%, #00BCD4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900; }
      .ui.menu a.item.active:before {
        position: absolute;
        content: '';
        top: 45px;
        height: 3px;
        width: 100%;
        background: linear-gradient(90deg, #1976D2 0%, #00BCD4 100%);
        border-radius: 100px 100px 0 0; }
      .ui.menu a.item.active .icon {
        background: linear-gradient(90deg, #1976D2 0%, #00BCD4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; }
      .ui.menu a.item.active .ui.label {
        -webkit-text-fill-color: white; }
    .ui.menu a.item:hover {
      background: rgba(255, 255, 255, 0);
      color: rgba(3, 28, 48, 0.8); }
      .ui.menu a.item:hover:before {
        position: absolute;
        content: '';
        top: 45px;
        height: 3px;
        width: 100%;
        background: rgba(33, 150, 243, 0.5);
        border-radius: 100px 100px 0 0; }
  .ui.menu .item.ui.dropdown {
    color: rgba(3, 28, 48, 0.65);
    font-weight: 700; }
    .ui.menu .item.ui.dropdown:before {
      background: none; }
    .ui.menu .item.ui.dropdown:hover {
      background: none; }
    .ui.menu .item.ui.dropdown:active {
      background: rgba(33, 150, 243, 0.1);
      color: rgba(3, 28, 48, 0.8); }
    .ui.menu .item.ui.dropdown .menu {
      border: 1px solid rgba(33, 150, 243, 0.25);
      box-sizing: border-box;
      box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25); }
      .ui.menu .item.ui.dropdown .menu .item {
        color: rgba(3, 28, 48, 0.65) !important;
        font-weight: 700 !important; }
        .ui.menu .item.ui.dropdown .menu .item:hover, .ui.menu .item.ui.dropdown .menu .item:active, .ui.menu .item.ui.dropdown .menu .item.active.selected {
          background: rgba(33, 150, 243, 0.1) !important;
          -webkit-background-clip: border-box;
          -webkit-text-fill-color: rgba(3, 28, 48, 0.8) !important; }
  .ui.menu.inverted {
    background: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.25);
    box-sizing: border-box;
    box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25);
    height: 50px;
    font-family: "Roboto";
    font-size: 15px; }
    .ui.menu.inverted div.item:before {
      background: none; }
    .ui.menu.inverted a.item {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 400; }
      .ui.menu.inverted a.item:before {
        background: none; }
      .ui.menu.inverted a.item.active {
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900; }
        .ui.menu.inverted a.item.active:hover {
          background: white;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: 900; }
        .ui.menu.inverted a.item.active:before {
          top: 46px;
          background: white; }
        .ui.menu.inverted a.item.active .icon {
          background: white;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
      .ui.menu.inverted a.item:hover {
        background: rgba(255, 255, 255, 0);
        color: rgba(255, 255, 255, 0.9); }
        .ui.menu.inverted a.item:hover:before {
          top: 46px;
          background: rgba(255, 255, 255, 0.5); }
    .ui.menu.inverted .item.ui.dropdown {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 400; }
      .ui.menu.inverted .item.ui.dropdown:before {
        background: none; }
      .ui.menu.inverted .item.ui.dropdown:hover, .ui.menu.inverted .item.ui.dropdown:active {
        color: rgba(255, 255, 255, 0.9); }
      .ui.menu.inverted .item.ui.dropdown .menu {
        background: #2196f3;
        border: 1px solid rgba(33, 150, 243, 0.25);
        box-sizing: border-box;
        box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25); }
        .ui.menu.inverted .item.ui.dropdown .menu .item {
          color: rgba(255, 255, 255, 0.8) !important;
          font-weight: 400 !important; }
          .ui.menu.inverted .item.ui.dropdown .menu .item:hover, .ui.menu.inverted .item.ui.dropdown .menu .item:active, .ui.menu.inverted .item.ui.dropdown .menu .item.active.selected {
            background: rgba(255, 255, 255, 0.1) !important;
            -webkit-background-clip: border-box;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important; }
  .ui.menu.secondary .item {
    border-radius: 100px; }
    .ui.menu.secondary .item:hover {
      color: rgba(3, 28, 48, 0.9) !important;
      background: rgba(33, 150, 243, 0.1) !important; }
    .ui.menu.secondary .item.active {
      border-radius: 100px;
      background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
      -webkit-background-clip: border-box;
      -webkit-text-fill-color: white;
      font-weight: 400; }
      .ui.menu.secondary .item.active:hover {
        background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%) !important;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: white;
        font-weight: 400; }
  .ui.menu.secondary.inverted {
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .ui.menu.secondary.inverted .item.active {
      background: rgba(255, 255, 255, 0.25) !important;
      -webkit-background-clip: border-box;
      -webkit-text-fill-color: white !important;
      font-weight: 400; }
      .ui.menu.secondary.inverted .item.active:hover {
        background: rgba(255, 255, 255, 0.25) !important;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: white !important;
        font-weight: 400; }
    .ui.menu.secondary.inverted .item:hover {
      background: rgba(255, 255, 255, 0.25) !important; }
  .ui.menu.vertical {
    height: auto;
    background: white;
    border: 1px solid rgba(33, 150, 243, 0.25);
    box-sizing: border-box;
    box-shadow: 2px 3px 5px rgba(33, 150, 243, 0.25);
    font-family: "Roboto";
    font-size: 15px;
    padding: 0; }
    .ui.menu.vertical a.item:before {
      background: none; }
    .ui.menu.vertical a.item:hover {
      background: rgba(33, 150, 243, 0.1); }
    .ui.menu.vertical a.item.active {
      background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
      -webkit-background-clip: border-box;
      -webkit-text-fill-color: white;
      font-weight: 400; }
      .ui.menu.vertical a.item.active .icon {
        -webkit-text-fill-color: white; }
      .ui.menu.vertical a.item.active:hover {
        background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: white;
        font-weight: 400; }
    .ui.menu.vertical.inverted {
      background: #2196f3; }
      .ui.menu.vertical.inverted a.item:before {
        background: none; }
      .ui.menu.vertical.inverted a.item:hover {
        background: rgba(33, 150, 243, 0.1); }
      .ui.menu.vertical.inverted a.item.active {
        background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: white;
        font-weight: 400; }
        .ui.menu.vertical.inverted a.item.active .icon {
          -webkit-text-fill-color: white; }
        .ui.menu.vertical.inverted a.item.active:hover {
          background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
          -webkit-background-clip: border-box;
          -webkit-text-fill-color: white;
          font-weight: 400; }
    .ui.menu.vertical.secondary {
      background: none;
      border: none;
      -webkit-box-shadow: none;
      box-shadow: none; }
      .ui.menu.vertical.secondary .item {
        border-radius: 100px !important; }
        .ui.menu.vertical.secondary .item:hover {
          color: rgba(3, 28, 48, 0.9) !important;
          background: rgba(33, 150, 243, 0.1) !important; }
        .ui.menu.vertical.secondary .item.active {
          border-radius: 100px;
          background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
          -webkit-background-clip: border-box;
          -webkit-text-fill-color: white;
          font-weight: 400; }
          .ui.menu.vertical.secondary .item.active:hover {
            background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%) !important;
            -webkit-background-clip: border-box;
            -webkit-text-fill-color: white;
            font-weight: 400; }
      .ui.menu.vertical.secondary.inverted .item.active {
        background: rgba(255, 255, 255, 0.25) !important;
        -webkit-background-clip: border-box;
        -webkit-text-fill-color: white !important;
        font-weight: 400; }
        .ui.menu.vertical.secondary.inverted .item.active:hover {
          background: rgba(255, 255, 255, 0.25) !important;
          -webkit-background-clip: border-box;
          -webkit-text-fill-color: white !important;
          font-weight: 400; }
      .ui.menu.vertical.secondary.inverted .item:hover {
        background: rgba(255, 255, 255, 0.25) !important; }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.input input {
  font-family: "Roboto";
  border: 1px solid rgba(33, 150, 243, 0.35);
  box-sizing: border-box;
  box-shadow: inset 1px 1px 5px rgba(33, 150, 243, 0.15);
  border-radius: 5px; }
  .ui.input input:focus {
    border: 1px solid rgba(33, 150, 243, 0.75);
    box-sizing: border-box;
    box-shadow: inset 1px 1px 5px rgba(33, 150, 243, 0.25); }

.ui.input .icon {
  color: rgba(3, 28, 48, 0.5); }

.ui.input.rounded input {
  border-radius: 100px; }

.ui.dropdown.selection {
  font-family: "Roboto";
  border: 1px solid rgba(33, 150, 243, 0.35);
  box-sizing: border-box;
  box-shadow: inset 1px 1px 5px rgba(33, 150, 243, 0.15);
  border-radius: 5px; }
  .ui.dropdown.selection:hover {
    border: 1px solid rgba(33, 150, 243, 0.75);
    box-sizing: border-box;
    box-shadow: inset 1px 1px 5px rgba(33, 150, 243, 0.25); }

.ui.dropdown .label {
  background: rgba(33, 150, 243, 0.25); }
  .ui.dropdown .label:hover {
    background: rgba(33, 150, 243, 0.5); }
  .ui.dropdown .label:active {
    background: rgba(33, 150, 243, 0.75); }

.ui.dropdown .menu .item.selected {
  background: rgba(33, 150, 243, 0.1); }

.ui.dropdown .menu .item:hover {
  background: linear-gradient(45deg, #1976D2 0%, #00BCD4 100%);
  color: white; }

body {
  background: rgba(33, 150, 243, 0.05); }

table.ui.table.action thead th:last-child {
  text-align: right; }

table.ui.table.action tbody td:last-child {
  text-align: right;
  white-space: nowrap; }
  table.ui.table.action tbody td:last-child br + .ui.button {
    margin-top: 0.5em; }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.feed {
  font-weight: 400;
  padding: 0.5em; }
  .ui.feed .event {
    border-bottom: 1px solid rgba(33, 150, 243, 0.25);
    padding: 1em; }
    .ui.feed .event .content .summary {
      color: rgba(3, 28, 48, 0.8); }

body {
  background: rgba(33, 150, 243, 0.05); }

.ui.finder {
  display: block;
  background: rgba(33, 150, 243, 0.1);
  padding: 1em;
  height: 500px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap; }
  .ui.finder .finder__column {
    background: transparent;
    width: 350px;
    height: 100%;
    display: inline-block;
    overflow-y: scroll;
    margin: 0; }
    .ui.finder .finder__column.level {
      width: 225px; }
  .ui.finder .finder__placeholder {
    display: inline; }
  .ui.finder .finder__item {
    background: white;
    display: block;
    padding: 1em;
    overflow-x: hidden;
    cursor: pointer;
    border: 1px solid rgba(33, 150, 243, 0.25);
    margin-bottom: 2px; }
    .ui.finder .finder__item.active {
      background: rgba(33, 150, 243, 0.25); }
      .ui.finder .finder__item.active .ui.button:not(.negative) {
        background: white; }
        .ui.finder .finder__item.active .ui.button:not(.negative):hover.green {
          background: #2ecc40; }
        .ui.finder .finder__item.active .ui.button:not(.negative):hover.blue {
          background: #54c8ff; }
        .ui.finder .finder__item.active .ui.button:not(.negative):hover.red {
          background: #ff5144; }
    .ui.finder .finder__item.unclickable {
      cursor: default; }
    .ui.finder .finder__item + .ui.button {
      padding-top: 1em; }
    .ui.finder .finder__item .finder__item__content {
      display: inline-block;
      overflow-x: hidden;
      margin-bottom: 0.2em;
      max-width: 250px;
      font-weight: 700;
      font-family: "Roboto";
      color: rgba(3, 28, 48, 0.8);
      font-size: 18px;
      text-overflow: ellipsis; }
      .ui.finder .finder__item .finder__item__content.level {
        margin-bottom: 0.2em; }
    .ui.finder .finder__item .finder__item__label {
      display: inline-block;
      overflow-x: hidden;
      float: right;
      font-size: 12px;
      color: rgba(3, 28, 48, 0.6); }
    .ui.finder .finder__item .finder__item__action {
      display: block; }
      .ui.finder .finder__item .finder__item__action.level {
        display: inline-block;
        overflow-x: hidden;
        float: right; }
      .ui.finder .finder__item .finder__item__action i.right.caret.icon {
        float: right;
        font-size: 20px;
        margin: 0;
        padding: 0;
        margin-right: -0.5em;
        color: rgba(3, 28, 48, 0.5); }
    .ui.finder .finder__item .finder__item__caret {
      display: inline-block;
      float: right;
      font-size: 20px; }
    .ui.finder .finder__item .ui.button {
      font-size: 11px;
      padding: 0.5em 0.7em;
      border-radius: 5px;
      box-shadow: 1px 1px 5px rgba(13, 71, 161, 0.25) !important; }

body {
  background: rgba(33, 150, 243, 0.05); }
