body {
  --primary-color: #00004D;
  --secondary-color: #F3B927;
  --tertiary-color: #0B8D94;
  --bg-color: #F7F7FA;
  --text-color: #000034;
  --font-family: Roboto;
  
  background-color: var(--bg-color);
  font-family: var(--font-family), sans-serif;
  color: var(--text-color);
  font-size: 1.28rem;
  margin: 0!important;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  div.container-fluid {
    padding: 0!important;
  }
  
  h2 {
    font-family: var(--font-family), sans-serif;
    font-size: 1.5rem;
  }
  
  /* Pop-up styling */
  .sweet-alert {
    padding: 3em;
    
    &.alert-size-s {
      max-width: 644px;
      width: 100%;
    }
    
    .sa-icon.sa-info {
      display: none!important;
    }
    
    h2 {
      font-family: var(--font-family), sans-serif;
      color: var(--text-color);
      font-size: 3.75rem;
      line-height: 1.2;
    }
    
    p {
      font-family: var(--font-family), sans-serif;
      color: var(--text-color);
      font-size: 1.25rem;
      font-weight: unset;
      line-height: 1.5;
    }
    
    fieldset {
      height: 25px;
    }
    
    button {
      margin: 0;
      background-color: var(--secondary-color)!important;
      color: var(--text-color);
      font-family: var(--font-family), sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      padding: 0.8em 2em;
      
      &:hover {
        background-color: #D89D0A!important;
      }
    }
  }
  
  /* Tooltip styling */
  /* invisible by default */
  .tooltip {
    position: relative;
    cursor: pointer;
    margin: 0;
    color: var(--tertiary-color);
  }
  
  /* tooltip creation */
  .tooltip::after {
    content: attr(data-title);
    position: absolute;
    /* Position above the element */
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tertiary-color);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    white-space: normal;
    min-width: 20rem;
    max-width: 40rem;
    margin-bottom: .25rem;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    z-index: 999;
  }
  /* on hover make visible */
  .tooltip:hover::after {
    opacity: 1;
    visibility: visible;
  }
  
  /* Main container */
  div.main-container {
    width: 100%;
    max-width: 1300px;
    margin-bottom: 4em;
    
    div.app-header {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      border-bottom: 1px solid var(--primary-color);
      padding: 1.25em 0;
      
      div.helper-nav {
        display: flex;
        justify-content: space-between;
        gap: 2em;
        
        button {
          background-color: var(--bg-color);
          color: var(--text-color);
          border: none;
          padding: 0;
          font-size: 1.43rem;
          font-weight: 500;
          cursor: pointer;
          transition: background-color .3s;
          font-family: var(--font-family), sans-serif;
          
          &:hover {
            text-decoration: underline;
            text-decoration-color: var(--secondary-color);
            background-color: inherit;
          }
          
          &.active {
            text-decoration: underline;
            text-decoration-color: var(--secondary-color);
          }
        }
      }
    }
    
    div.app-title {
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      margin: 3rem 0 2rem 0;
      
      p {
        font-size: 4rem;
        font-weight: 700;
        margin: 0;
      }
    }
  }
  div.top-txt {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    
    a {
      text-decoration: underline;
      color: rgba(0,0,0,.87);
    }
  }
  
  p.disclaimer-txt {
    font-size: 0.86rem;
    font-style: italic;
  }
  
  div.why-use-box {
    background-color: var(--secondary-color);
    padding: 1.5rem 2.2rem;
    flex: 0 0 33%;
    
    p.why-use-title {
      font-weight: 700;
    }
    
    button.why-use-inline-btn {
      background-color: inherit;
      color: var(--text-color);
      border: none;
      padding: 0;
      font-family: var(--font-family), sans-serif;
      font-size: 1.28rem;
      font-weight: inherit;
      cursor: pointer;
      transition: background-color .3s;
      text-decoration: underline;
      margin-right: 0;
      
      &:hover, &:focus {
        background-color: inherit;
      }
    }
  }
  
  div.page-container {
    width: 100%;
  }
  
  div.ui.segment {
    box-shadow: none;
    border-radius: 0;
    border: none;
  }
  
  p.footnote-txt{
    font-size: 0.86rem;
    margin: 1em 0 2em;
  }
  
  ol {
    margin: 0;
    padding-left: 1em;
  }
  
  /*** Footer ***/
  .app-footer {
    background-color: var(--text-color);
    color: #ffffff;
    padding: 6em 2em;
    width: 100%;

    .app-footer-inner {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      
      div {
        width: 50%;
      }
    }
    
    img {
      height: 80px;
    }
    
    h3 {
      font-size: 1.7rem;
    }
    
    a {
      color: #ffffff;
    }
  }
}
