@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Titillium+Web:wght@900&display=swap');

/* CSS HEX */
:root {
  --white: #fff;
  --text-color: #4a4a4a;
  --cyan: #0ff;
  --paradise-pink: #ef476f;
  --orange-yellow-crayola: #ffd166;
  --caribbean-green: #06d6a0;
  --blue-ncs: #3e8ed0;
  --midnight-green-eagle-green: #073b4c;
}

body {
  font-family: 'Open Sans', sans-serif;
  padding-top: 20px;
}

body:before {
  background: -webkit-linear-gradient(left, white 0%,white 14.285%,yellow 14.285%,yellow 28.57%,cyan 28.57%, cyan 42.85%, limegreen 42.85%, limegreen 57.14%, magenta 57.14%, magenta 71.425%, red 71.425%, red 85.71%, blue 85.71%, blue 100%);
  background: linear-gradient(left, white 0%,white 14.285%,yellow 14.285%,yellow 28.57%,cyan 28.57%, cyan 42.85%, limegreen 42.85%, limegreen 57.14%, magenta 57.14%, magenta 71.425%, red 71.425%, red 85.71%, blue 85.71%, blue 100%);
  border-bottom: var(--text-color) 1px solid;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
}

.breadcrumb a,
a {
  color: var(--blue-ncs);
  text-decoration: underline;
}

a.button {
    text-decoration: none ! important;
}

.is-active a {
  text-decoration: none;
}

.container--padded {
  padding: 0 15px;
}

@media screen and (min-width: 1024px) {
  .container--padded {
    padding: 0;
  }
}

ul.search-results li a {
    display: block;
}

div.tube .level-right a {
    text-decoration: none;
}

table caption {
  text-align: left;
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 10px;
}

.table th.is-info {
  /* background-color: var(--cyan);
  color: #111; */
}
ul.is-hoverable li:not(.is-selected):hover {
    background-color: #fafafa;
}

ul.is-hoverable.is-striped li:not(.is-selected):hover {
    background-color: #fafafa;
}

ul.is-hoverable.is-striped li:not(.is-selected):hover:nth-child(even) {
    background-color: whitesmoke;
}

ul.is-striped li:not(.is-selected):nth-child(even) {
    background-color: #fafafa;
}
