:root {
    --dark-gray: #585858;
    --light-gray: #e3e3e3;
    --contrast: #eff0f2;
    --hms-orange: #f68d1f;
    --sub-white: #f9f9f9;

    --sushi: #7da544;
    --link: #3366BB;

    --snow-drift: rgb(245,250,248);
    --oslo-gray: #898B92;
    --mojo: #BB462B;
    --mirage: #20263D;

    --dark-shade: #33334f;
    --mid-shade: #767ead;
    --light-shade: #f7f7fc;
    --light-orange: #ffc662;

    --standard-blue: #3261FF;
    --text-color-2: #555555;

    --ok-green: #DAFAE1;
    --text-on-ok-green: #34583F;
    --warning-red: #BC1334;

    --border-color: #A0A0A0;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    height: 100vh;
}

body {
    font-family: 'Noto Sans', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    min-width: 500px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-color: var(--sub-white);
}

.bold {
    font-weight: bold;
}

.pointer {
    cursor: pointer;
}

.link {
    text-decoration: none;
}

.light-link {
    text-decoration-color: var(--oslo-gray);
}

.fw {
    width: 100%;
}

/* ONLY COLORS BELOW*/
.warning {
    color: var(--warning-red) !important;
}

.mojo {
    color: var(--mojo) !important;
}

.sushi {
    color: var(--sushi) !important;
}

.lg {
    color: var(--light-gray) !important;
}

.dg {
    color: var(--dark-gray) !important;
}

.oslo {
    color: var(--oslo-gray) !important;
}

.ds {
    color: var(--dark-shade) !important;
}

.ms {
    color: var(--mid-shade) !important;
}

.ls {
    color: var(--light-shade) !important;
}

.lo {
    color: var(--light-orange) !important;
}

.contrast {
    color: var(--contrast) !important;
}