:root {
    --primary: #5E915C;
    --primary-10: rgba(94, 145, 92, 0.1);
    --primary-20: rgba(94, 145, 92, 0.2);
    --secondary: #013830;
    --neutral-100: #fff;
    --neutral-150: #fafafa;
    --neutral-200: #EDEDED;
    --neutral-300: #ddd;
    --neutral-400: #bbb;
    --neutral-500: #888;
    --neutral-600: #666;
    --neutral-700: #444;
    --neutral-800: #222;
    --neutral-900: #000;
    --neutral-cool-dark: #7E8A97;
    --neutral-warm: #E7DEC8;
    --accent: #FFE971;
    --nav-bg-color: var(--neutral-100);
    --divider: #eeeeeeee;

    --system-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    --fs-title: 5rem;
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-text: 1.25rem;
    --fs-primary: 1rem;
    --fs-small: 0.9rem;

    --lh-text: 1.5;

    --fw-xstrong: 700;
    --fw-strong: 500;
    --fw-regular: 400;
    --fw-thin: 200;

    --background: var(--neutral-200);

    --footer-bg-color: var(--neutral-100);
}


#top-nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
    left: 0;
}

.top-nav-white {
    background-color: white;
    transition: background-color 0.5s ease-out;
}

.top-nav-dark {
    background-color: var(--secondary);
    transition: background-color 0.5s ease-out;
}

.nav-link-dark {
    color: var(--neutral-300) !important;
}

.nav-link-dark:hover {
    color: var(--neutral-100) !important;
}

.nav-text-dark {
    color: var(--neutral-200) !important;
}

#hidden-nav-text {
    display: none;
}

.show-nav-text {
    display: inline-block !important;
}

.hide-nav-text {
    display: none !important;
}

#main-container {
    padding: 3rem min(max(3vw, 0.5rem), 1.5rem);
}

#headline {
    background: linear-gradient(20deg, var(--primary) 10%, rgba(255, 255, 210, 0.5));
    padding: 6.5rem 2rem 3rem 2rem;
}

#main-content {
    margin: 0;
}

.table-div {
    margin: 3rem 0;
}

.table-heading {
    margin: 1rem 0;
    padding: 1rem;
}

.title-small {
    font-size: 1rem;
    margin-left: 1rem;
}

#sub-title {
    margin-top: 1rem;
}

.note {
    color: #999;
    margin-top: 2rem;
}

/* loader */
.loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: rgba(252, 250, 249, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* loading */
.loader {
    display: inline-block;
    width: 2rem;
    height: 3.5rem;
    transform: perspective(0.35rem) rotateX(-1deg);
    position: relative;
    border: 0.15rem solid #eee;
    animation: loader 4s infinite ease;
}

.loader-inner {
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 100%;
    background-color: rgba(203, 234, 238, 0.5);
    animation: loader-inner 4s infinite ease-out;
}

@keyframes loader {
    0% {opacity: 0;}
    5% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes loader-inner {
    0% {height: 0%;}
    10% {height: 0%;}
    90% {height: 80%;}
    100% {height: 80%;}
}