/* Aquatic Informatics Template 
	Author: Mel Roth
	Author Email: mel.roth@aquaticinformatics.com
*/
/* Colors */
/* Darken colours */
/* Shadow */
/* Breakpoints */
/* Fonts */
@font-face {
    font-family: 'hindlight';
    src: url("../fonts/hind-light-webfont.woff2") format("woff2"), url("../fonts/hind-light-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal; }
  @font-face {
    font-family: 'hindregular';
    src: url("../fonts/hind-regular-webfont.woff2") format("woff2"), url("../fonts/hind-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal; }
  @font-face {
    font-family: 'hindmedium';
    src: url("../fonts/hind-medium-webfont.woff2") format("woff2"), url("../fonts/hind-medium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal; }
  @font-face {
    font-family: 'hindsemibold';
    src: url("../fonts/hind-semibold-webfont.woff2") format("woff2"), url("../fonts/hind-semibold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal; }
  @font-face {
    font-family: 'hindbold';
    src: url("../fonts/hind-bold-webfont.woff2") format("woff2"), url("../fonts/hind-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal; }
  /* Alerts */
  /* Inline alerts */
  .ai-inline-alert {
    border-radius: .25rem;
    color: #241C15;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem; }
  
  .ai-error {
    background-color: #FBCFBD; }
  
  .ai-success {
    background-color: #D8EACC; }
  
  .ai-warning {
    background-color: #FBEECA; }
  
  .ai-info {
    background-color: #D1DDF0; }
  
  /* Code Styles */
  code {
    color: #666;
    font-size: .75rem;
    background: rgba(0, 0, 0, 0.01);
    border: 0.5px solid rgba(0, 0, 0, 0.03);
    display: inline-block;
    line-height: 1.5;
    padding: 1rem;
    word-break: break-all; }
  
  /* Forms */
  .ai-required {
    color: #D5312A; }
  
  .ai-form-help {
    font-size: .75rem;
    line-height: 1.25;
    margin-top: 3px; }
  
  /* Search */
  .ai-search {
    position: relative; }
  
  .ai-search input[type='text'] {
    background: url("../img/icons/search.svg") no-repeat;
    background-position: 10px 11px;
    padding-left: 30px; }
  
  .ai-search input[type='text'] {
    padding-right: 36px; }
  
  .ai-clear-search > svg {
    vertical-align: middle; }
  
  .ai-clear-search {
    border: 0;
    position: absolute;
    width: 38px;
    height: 38px;
    top: 0;
    right: 0; }
  
  .ai-search input[type='text']:invalid ~ .ai-clear-search {
    display: none; }
  
  /* Layout */
  *,
  *::before,
  *::after {
    box-sizing: border-box; }
  
  html,
  body {
    height: 100%; }
  
  body {
    background-color: #F5F5F7;
    margin: 0; }
  
  @media (min-width: 900px) {
    body {
      display: grid;
      grid-template-rows: 50px 1fr;
      grid-template-columns: 189px 1fr;
      grid-template-areas: "brandbar brandbar" "navbar content"; } }
  header {
    background-color: #fff;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.08);
    bottom: 0;
    height: 50px;
    padding-top: 7px;
    position: fixed;
    width: 100%;
    z-index: 3; }
  
  @media (min-width: 900px) {
    header {
      border-bottom: 1px solid #C0C1D9;
      box-shadow: none;
      grid-area: brandbar;
      position: relative; } }
  .logo {
    display: none; }
  
  header nav {
    align-items: center;
    display: flex; }
  
  @media (min-width: 900px) {
    .logo {
      display: block;
      flex: 1;
      margin-right: auto;
      text-align: left; }
  
    header nav {
      justify-content: flex-end; }
  
    .menu-button {
      display: none; } }
  header nav div {
    padding: 0 10px;
    text-align: center; }
  
  header a {
    display: inline-block; }
  
  @media (max-width: 900px) {
    header nav div {
      flex: 1; } }
  aside {
    background-color: #F5F5F7;
    width: 100%;
    min-height: 100%;
    position: absolute;
    z-index: 1; }
  
  @media (min-width: 700px) and (max-width: 1024px) {
    aside {
      overflow: hidden;
      position: fixed;
      top: 0;
      width: 189px; } }
  .aside-content {
    padding: 30px; }
  
  @media (max-width: 700px) {
    .aside-content {
      margin: auto;
      padding-bottom: 50px;
      position: relative;
      width: 200px;
      z-index: 2; } }
  aside a {
    display: block; }
  
  @media (min-width: 700px) {
    aside {
      border-right: 1px solid #C0C1D9; } }
  @media (min-width: 900px) {
    aside {
      grid-area: navbar;
      position: relative; } }
  /* Show and hide the menu. JavaScript toggles active class. */
  @media (max-width: 900px) {
    aside {
      display: none; }
  
    aside.menu-toggle.active {
      display: block; } }
  main {
    background-color: #F5F5F7;
    padding: 6px 15px 15px; }
  
  @media (max-width: 700px) {
    main.menu-toggle.active {
      position: fixed; } }
  @media (min-width: 900px) {
    main {
      grid-area: content;
      padding: 6px 40px 40px;
      position: relative; } }
  @media (min-width: 700px) {
    .main-container {
      max-width: 800px;
      margin: auto; } }
  /* Main content with sidebar sections */
  @media (min-width: 700px) {
    .main-container,
    .main-2-columns {
      max-width: 800px;
      margin: 0 auto; } }
  @media (min-width: 900px) {
    .main-2-columns {
      max-width: 1094px;
      margin: 0 auto; } }
  @media (min-width: 1100px) {
    .main-columns-wrapper {
      display: flex; }
  
    .main-2-columns .sidebar {
      flex: 0 0 276px;
      order: 2; }
  
    .main-2-columns .main {
      flex: 1;
      margin-right: 18px; } }
  /* Typography */
  body {
    font-family: 'hindregular', sans-serif;
    color: #444; }
  
  a {
    color: #3455DB;
    text-decoration: none; }
  
  a:hover {
    color: #23409a; }
  
  h1,
  h2 {
    font-family: 'hindlight', sans-serif;
    font-weight: normal; }
  
  h1 {
    color: #23409a;
    font-size: 1.875rem; }
  
  h2 {
    font-size: 1.5rem; }
  
  h3 {
    font-size: 1.25rem;
    font-weight: normal; }
  
  strong {
    font-family: 'hindsemibold', sans-serif;
    font-weight: normal; }
  
  header nav a {
    font-size: .6875rem; }
  
  aside h3 {
    margin-bottom: .6875rem; }
  
  aside a {
    color: #23409a;
    margin-bottom: .875rem;
    text-decoration: none; }
  
  aside a.active {
    font-family: 'hindbold', sans-serif; }
  
  @media (min-width: 768px) {
    aside a {
      font-size: .875rem; } }
  aside a:hover {
    color: #3455DB; }
  
  /* Brand bar */
  header a {
    color: #444;
    text-decoration: none; }
  
  header a:hover {
    color: #999; }
  
  aside h2 {
    font-family: 'hindsemibold', sans-serif;
    font-size: .75rem;
    color: #444;
    letter-spacing: .1rem;
    margin-top: 1rem;
    margin-bottom: .75rem;
    text-transform: uppercase; }
  
  /* Buttons */
  .ai-save {
    background: #008000; }
  
  .ai-save:hover {
    background: #205E3B; }
  
  .ai-new {
    background: #4B6A88; }
  
  .ai-new:hover {
    background: #16405B; }
  
  .ai-apply {
    background: #23409a; }
  
  .ai-apply:hover {
    background: #3C3E69; }
  
  .ai-secondary {
    background: #f0f0f0;
    border-color: #ccc;
    color: #444; }
  
  .ai-secondary:hover {
    background: #e6e6e6; }
  
  .ai-white {
    border-color: #ccc;
    color: #444; }
  
  .ai-white:hover {
    background: #f0f0f0; }
  
  .ai-secondary-delete {
    border-color: #ccc;
    color: #D5312A; }
  
  .ai-secondary-delete:hover {
    background: #FFF5F5;
    color: #990600; }
  
  .ai-delete {
    background: #D5312A; }
  
  .ai-delete:hover {
    background: #990600; }
  
  .ai-save,
  .ai-save:hover,
  .ai-new,
  .ai-new:hover,
  .ai-apply,
  .ai-apply:hover,
  .ai-delete,
  .ai-delete:hover {
    color: #fff; }
  
  /* Inline button. Usually appears after a form field */
  .ai-inline-button {
    margin: .5rem 0 1rem .5rem; }
  
  /* Menu hamburger for mobile */
  .menu-button span {
    background-color: #3C3E69;
    border-radius: 1px;
    display: block;
    left: 5px;
    width: 18px;
    height: 3px;
    margin-bottom: 3px;
    position: relative;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; }
  
  .menu-button span:last-child {
    margin-bottom: 5px; }
  
  /* Transform hamburger into an X */
  .menu-toggle.active .menu-button span:first-child {
    transform: rotate(45deg) translate(3px, 0); }
  
  .menu-toggle.active .menu-button span:nth-child(2) {
    opacity: 0; }
  
  .menu-toggle.active .menu-button span:last-child {
    transform: rotate(-45deg) translate(2px, -2px); }
  
  /* Clear button formatting */
  button {
    background: none;
    border: 0; }
  
  /* Design Guide
      GitHub and XD buttons */
  .ai-download {
    box-sizing: border-box;
    display: inline-block;
    color: #666;
    font-size: .875rem;
    line-height: 1.25;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    transition: color 0.25s ease-in-out, box-shadow 0.3s ease-in-out; }
  
  .ai-download strong {
    color: #444;
    font-size: 1rem; }
  
  .ai-download:hover {
    color: #999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
  
  .ai-download-icon {
    float: left;
    background-color: #e6e6e6;
    padding: .65rem .75rem .35rem;
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem; }
  
  .ai-download-icon.xd {
    background-color: #460137; }
  
  .ai-download-icon.html {
    background-color: #3455DB;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 300;
    height: 56px; }
  
  .ai-download-text {
    float: left;
    padding: .6125rem .75rem 0; }
  
  /* Section Styling */
  section {
    background-color: #fff;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 18px;
    padding: 15px; }
  
  section p:first-child {
    margin-top: 0; }
  
  section p:last-child {
    margin-bottom: 0; }
  
  @media (min-width: 700px) {
    section {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 900px) {
    section {
      padding: 30px; }
  
    .sidebar section {
      padding: 15px; } }
  /* Stepper */
  .ai-stepper h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5; }
    .ai-stepper h2.active-number, .ai-stepper h2.active-number a {
      color: #444; }
    .ai-stepper h2.number, .ai-stepper h2.number a {
      color: #999; }
  
  .active-number span,
  .number span {
    border-radius: 12px;
    color: #fff;
    display: inline-block;
    margin-right: 8px;
    text-align: center;
    height: 24px;
    width: 24px; }
  
  .active-number span {
    background-color: #3455DB; }
  
  .number span {
    background-color: #999; }
  
  .ai-step {
    border-left: 1px solid #e6e6e6;
    margin-bottom: 12px;
    margin-left: 12px;
    padding: 16px 24px; }
  
  /* Swatches 
      For design guide only
  */
  .swatches {
    display: flex;
    flex-wrap: wrap; }
  
  .swatches:after {
    content: "";
    display: table;
    clear: both; }
  
  .swatch {
    flex: 0 1;
    width: 123px;
    font-size: .875rem;
    margin-bottom: 30px; }
  
  .swatch p {
    margin: .3rem 0; }
  
  .swatch-bg {
    display: block;
    width: 123px;
    height: 123px; }
  
  .swatch-info {
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 6px 10px 4px;
    width: 123px; }
  
  .dark {
    background-color: #444; }
  
  .medium {
    background-color: #666; }
  
  .light {
    background-color: #999; }
  
  .xlight {
    background-color: #ccc; }
  
  .xxlight {
    background-color: #e6e6e6; }
  
  .xxxlight {
    background-color: #f0f0f0; }
  
  .white {
    background-color: #fff; }
  
  .dark-blue {
    background-color: #23409a; }
  
  .blue {
    background-color: #3455DB; }
  
  .light-blue {
    background-color: #D1DDF0; }
  
  .dark-purple {
    background-color: #3C3E69; }
  
  .purple {
    background-color: #C0C1D9; }
  
  .mist {
    background-color: #F5F5F7; }
  
  .dark-slate {
    background-color: #16405B; }
  
  .slate {
    background-color: #4B6A88; }
  
  .dark-green {
    background-color: #205E3B; }
  
  .green {
    background-color: #008000; }
  
  .lime {
    background-color: #67cc34; }
  
  .dark-red {
    background-color: #990600; }
  
  .red {
    background-color: #D5312A; }
  
  .gold {
    background-color: #ffcc02; }
  
  /* Branding swatches */
  .brand-blue {
    background-color: #0083d7; }
  
  .gray {
    background-color: #93959b; }
  
  .linko-green {
    background-color: #6c3; }
  
  .tokay-blue {
    background-color: #55c8e7; }
  
  .tokay-orange {
    background-color: #ff794b; }
  
  /* Table styling */
  /* Reduce font size to 14px */
  .table,
  .table-pagination {
    font-size: .875rem; }
  
  /* Remove bottom section padding */
  .table-container section {
    padding-bottom: 15px; }
  
  /* Multicolumn layout styles */
  .multicolumn {
    column-count: 1;
    column-gap: 18px; }
  
  @media (min-width: 700px) {
    .multicolumn {
      column-count: 2; } }
  @media (min-width: 1300px) {
    .multicolumn {
      column-count: 3; } }
  .multicolumn section {
    max-width: 550px;
    break-inside: avoid; }
  
  /* Popover */
  .ai-popover {
    border: 1px solid #ccc;
    border-radius: .313rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: .875rem;
    position: relative; }
  
  .ai-popover.close-popover {
    padding-top: 1.375rem; }
  
  .close-popover path {
    fill: #666; }
  
  .ai-popover button {
    position: absolute;
    right: 2px;
    top: 2px; }
  
  /* Loading */
  .loading-bar {
    background: linear-gradient(90deg, rgba(52, 85, 219, 0), #3455db);
    height: 4px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    animation: grow 2s infinite; }
  
  @media (min-width: 900px) {
    .loading-bar {
      top: 50px; } }
  @keyframes grow {
    0% {
      transform: scale(0, 1);
      transform-origin: left top; }
    59% {
      transform: scale(1, 1);
      transform-origin: left top; }
    60% {
      transform: scale(1, 1);
      transform-origin: right top; }
    100% {
      transform: scale(0, 1);
      transform-origin: right top; } }
  /* Tabs 
      Styling for Bootstrap tabs
  */
  /* Material style */
  .nav-tabs.material .nav-link {
    color: #444;
    border: 0;
    border-bottom: 3px solid transparent; }
  
  .nav-tabs.material .nav-link:focus,
  .nav-tabs.material .nav-link:hover {
    border-bottom: 3px solid transparent;
    color: #3455DB; }
  
  .nav-tabs.material .nav-link.active,
  .nav-tabs.material .nav-item.show .nav-link,
  .nav-tabs.material .nav-link.active:hover,
  .nav-tabs.material .nav-item.show .nav-link:hover {
    color: #23409a;
    background-color: #fff;
    border: 0;
    border-bottom: 3px solid #23409a; }
  
  /* Regular style */
  .nav-tabs {
    border-bottom: 1px solid #ccc; }
  
  .nav-tabs .nav-link:focus,
  .nav-tabs .nav-link:hover {
    border-color: #fff #fff #ccc; }
  
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-link.active:hover {
    border-color: #ccc #ccc #fff;
    color: #444; }
  
  /* Segmented Control */
  .nav-pills.segments li a {
    border-radius: 0;
    border: 1px solid #23409a;
    color: #23409a; }
  
  .nav-pills.segments li a:hover {
    color: #3455DB; }
  
  .nav-pills.segments li a.active:hover {
    color: #fff; }
  
  .nav-pills.segments li:last-child a {
    border-left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; }
  
  .nav-pills.segments li:first-child a {
    border-right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  
  .nav-pills.segments .nav-link.active {
    background: #23409a; }
  
  /* Bootstrap Overrides */
  body {
    line-height: 1.25; }
  
  a:hover {
    text-decoration: none; }
  
  code {
    font-size: .875rem; }
  
  svg {
    vertical-align: inherit; }
  
  /* Buttons */
  .btn {
    border-radius: 4px;
    min-width: 76px;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: background .25s; }
  
  /* Dropdown button */
  .dropdown-menu {
    border: 1px solid #ccc;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    color: #444; }
  
  .dropdown-toggle::after {
    display: none; }
  
  .dropdown-item {
    color: #444;
    padding: .25rem .875rem; }
  
  .dropdown-item:hover {
    background: #fff;
    color: #999; }
  
  /* Forms */
  label {
    font-size: .9375rem;
    margin-bottom: 0; }
  
  /* Form field border colour */
  .form-control {
    border-color: #ccc;
    color: #444; }
  
  .form-control:focus {
    border-color: #3455DB;
    color: #444; }
  
  /* Use custom colour */
  .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #3455DB;
    border: transparent; }
  
  /* Border colour for custom checbox and radios */
  .custom-control-label::before {
    border: #ccc 1px solid; }
  
  .was-validated .form-control:invalid,
  .form-control.is-invalid,
  .was-validated.custom-select:invalid,
  .custom-select.is-invalid {
    border-color: #D5312A; }
  
  .invalid-feedback {
    color: #D5312A; }
  
  /* Don't display Bootstrap's X if the form is invalid, and don't display the checkmark when it becomes valid */
  .form-control.is-invalid, .was-validated .form-control:invalid,
  .form-control.is-invalid, .was-validated .form-control:valid {
    padding-right: 1em;
    background-image: none; }
  
  /* Use custom colour */
  .was-validated .custom-file-input:valid ~ .custom-file-label,
  .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #008000; }
  
  /* Adjust the vertical alignment of radio and checkmark labels because of the reduced line height */
  .custom-control-label::before,
  .custom-control-label::after {
    top: .05rem; }
  
  .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0;
    border-left: 0; }
  
  /* Replace CSS arrow with SVG caret */
  .custom-select {
    background: url("../img/chevron-down.svg") no-repeat right 0.75rem center/10px 12px;
    color: #444;
    border: 1px solid #ccc; }
  
  .custom-select:focus {
    border: 1px solid #3455DB; }
  
  /* Multiple Select */
  select[multiple]:focus option:checked {
    background: #3455DB; }
  
  /* Tables */
  .table {
    font-size: .875rem; }
  
  .table thead th {
    background-color: #e6e6e6;
    border: 0;
    font-weight: 600;
    padding: .5rem .75rem; }
  
  .table th,
  .table td,
  .table td svg {
    vertical-align: middle; }
  
  .table tr:first-child {
    border-top: none; }
  
  .table tr,
  .table td {
    border-top: 0;
    padding: .5rem .75rem; }
  
  .table td {
    border-bottom: 1px solid #e6e6e6; }
  
  /* Pagination */
  .page-link {
    border: 0;
    color: #3455DB; }
  
  .page-link svg {
    fill: #3455DB; }
  
  .page-link:hover {
    color: #23409a;
    background-color: #fff; }
  
  .page-link:hover svg {
    fill: #23409a; }
  
  .page-item.disabled .page-link {
    color: #999; }
  
  .page-item.active .page-link {
    z-index: 1;
    color: #444;
    background-color: #fff;
    font-family: 'hindsemibold', sans-serif; }
  
  /* Add red border to invalid forms */
  .invalid,
  .form-control.invalid:focus {
    border-color: #D5312A; }
  
  .form-control.invalid:focus {
    box-shadow: 0 0 0 0.125rem rgba(254, 50, 0, 0.25); }
  
  .form-control.invalid {
    border-width: 2px; }
  
  /*# sourceMappingURL=ai.css.map */