@import url("https://use.typekit.net/fxi3mjz.css");

:root { /* Inmar Theme Colors */
    /* Crisp White theme color */
    --crisp-white: #ffffff;
    /* Deep Plum theme color */
    --deep-plum: #303584;
    /* Timeless Teal theme color */
    --timeless-teal: #03878C;
    /* Firey Sunset theme color */
    --fiery-sunset: #F15A22;
    /* Summer Goldenrod theme color */
    --summer-goldenrod: #FFC20E;
    /* Midnight Blurple theme color */
    --midnight-burple: #1D1655;
    /* Frosted Gray theme color */
    --frosted-gray: #DEDCE4;
}

.bg-primary {
    background-color: #303584 !important; /* IE fallback */
    background-color: var(--deep-plum) !important;
}

/* Crisp White theme color */
.text-crisp-white {
    color: #FFFFFF !important; /* IE fallback */
    color: var(--crisp-white) !important;
}

/* Deep Plum theme color */
.text-deep-plum {
    background-color: #303584; /* IE fallback */
    color: var(--deep-plum) !important;
}

/* Timeless Teal theme color */
.text-timeless-teal {
    color: #03878C !important; /* IE fallback */
    color: var(--timeless-teal) !important;
}

/* Firey Sunset theme color */
.text-fiery-sunset {
    color: #F15A22 !important; /* IE fallback */
    color: var(--fiery-sunset) !important;
}

/* Summer Goldenrod theme color */
.text-summer-goldenrod {
    color: #FFC20E !important; /* IE fallback */
    color: var(--summer-goldenrod) !important;
}

/* Midnight Blurple theme color */
.text-midnight-burple {
    color: #1D1655 !important; /* IE fallback */
    color: var(--midnight-burple) !important;
}

/* Frosted Gray theme color */
.text-frosted-gray {
    color: #DEDCE4 !important; /* IE fallback */
    color: var(--frosted-gray) !important;
}

/* General Rules */
*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

* {
    outline: none;
    -webkit-transition: outline-width 2s ease-in-out;
    -moz-transition: outline-width 2s ease-in-out;
    -o-transition: outline-width 2s ease-in-out;
    transition: outline-width 2s ease-in-out;
}

    *:focus {
        outline: #F15A22 auto 2px; /* IE fallback */
        outline: var(--fiery-sunset) auto 2px;
    }

html {
    /* 1 */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 2 */
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 4 */
    -ms-overflow-style: scrollbar;
    /* 5 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    background-color: #DEDCE4; /* IE fallback */
    background-color: var(--frosted-gray);
    position: relative;
    line-height: 1.2;
    text-align: center;
    font-family: "benton-sans", sans-serif;
    font-size: 0.9rem;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: .3rem;
    margin-bottom: 1rem;
    overflow: visible;
    border: none;
    background-color: #DEDCE4; /* IE fallback */
    background-color: var(--frosted-gray);
}

*, :after, :before {
    box-sizing: border-box;
}

b, strong {
    font-weight: 700;
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
}

i {
    font-style: italic;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

a,
a:visited,
a:link,
a:hover,
a:active {
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    font-weight: bold;
    text-decoration: none;
}

/* do not override hover styles for links, buttons, or menu items */
a:hover:not(.inm-button):not(.menu-item):not([disabled]),
a:active:not(.inm-button):not(.menu-item):not([disabled]) {
    color: #FFC20E !important; /* IE fallback */
    color: var(--summer-goldenrod) !important;
}

input, select {
    border: 1px solid #DEDCE4; /* IE fallback */
    border: 1px solid var(--frosted-gray);
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    font-family: "benton-sans-condensed",sans-serif;
    font-weight: 400;
    font-size: .9rem;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: 0 0;
    padding: .8em;
    border-radius: 3px;
    width: calc(100% - 1rem);
    height: 2rem;
    margin-bottom: 1rem;
}

input, select, a {
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-name: nodeInserted;
    animation-name: nodeInserted;
}

    input[type=image] {
        width: auto;
        height: auto;
        border: none;
    }

select {
    /* needed to make selects line up with inputs on forms */
    /*position: relative;
    top: 1px;*/
    padding: 0.2rem;
}

    input:disabled,
    select:disabled {
        color: #bec4cb;
        background-color: #f2f3f4;
    }

.tableStyle {
    background-color: #FFFFFF; /* IE fallback */
    background-color: var(--crisp-white);
    font-family: "benton-sans",sans-serif;
    font-size: .9rem;
    text-align: left;
    vertical-align: top;
}

.smallType {
    font-family: "benton-sans",sans-serif;
    font-size: .8rem;
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
}

.tableStyle td {
    vertical-align: top;
}

.formAlignRight {
    text-align: right;
    vertical-align: bottom;
}

.static-table {
    font-family: "benton-sans",sans-serif;
    border: 0px;
    font-weight: 500;
}

table.static-table td {
    padding: 0.7rem;
    border-bottom: 2px solid #DEDCE4; /* IE fallback */
    border-bottom: 2px solid var(--frosted-gray);
}

table.static-table tr td:first-of-type {
    font-family: "benton-sans-condensed",sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

* {
    -webkit-transition: padding 0.2s ease-out;
    transition: padding 0.2s ease-out;
}

    *,
    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

p {
    padding: 1em 0;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
}

ul,
ol {
    padding-left: 1rem;
}

    ul ul,
    ol ul {
        list-style-type: circle;
        list-style-position: inside;
        margin-left: 1rem;
    }

    ol ol,
    ul ol {
        list-style-type: lower-latin;
        list-style-position: inside;
        margin-left: 1rem;
    }

li {
    margin-bottom: 1rem;
}

    li li {
        margin-bottom: unset;
        margin-top: .5rem;
    }

ol.plain-list,
ul.plain-list {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "benton-sans-condensed", sans-serif;
    font-weight: 300;
    line-height: 1.5em;
    color: #03878C; /* IE fallback */
    color: var(--timeless-teal);
    margin-bottom: 1rem;
}

h1 {
    font-family: "benton-sans-condensed", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #03878C; /* IE fallback */
    color: var(--timeless-teal);
    text-transform: uppercase;
}

h2, .pageNameLabel {
    font-family: "benton-sans-condensed", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    text-transform: uppercase;
}

h3 {
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
}

h4 {
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

h5,
h6,
legend {
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    font-weight: 700;
    font-size: 1.2rem;
}

h5,
h6 {
    margin-bottom: .5rem;
}

h6 {
    font-weight: 600;
    font-size: 1.1rem;
}

.inm-upper,
.inm-label__checkbox{
    font-family: "benton-sans-condensed", sans-serif;
    text-transform: uppercase;
}

table td,
table th {
    text-align: left;
    vertical-align: middle;
}

.inm-label,
[class^='inm-label--'],
[class*=' inm-label--'] {
    color: #03878C; /* IE fallback */
    color: var(--timeless-teal);
    font-weight: 500;
    font-family: "benton-sans-condensed", sans-serif;
    display: block;
    padding: 0.2em 0;
}

.inm-label__checkbox {
    margin-left: 1rem;
    display: inline-block;
    vertical-align: top;
    color: var(--deep-plum);
    font-weight: 700;
}

/* Buttons */

.inm-button,
a.inm-button,
input[type="submit"]:not([class]) {
    font-family: "benton-sans-condensed", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF; /* IE fallback */
    color: var(--crisp-white);
    background-color: #F15A22; /* IE fallback */
    background-color: var(--fiery-sunset);
    border-radius: 50px;
    padding: 0 1rem;
    margin: 0 .3rem;
    text-decoration: none !important;
    height: 2.5rem;
    width: fit-content;
    width: -moz-fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inm-button-secondary,
a.inm-button-secondary {
    color: #303584; /* IE fallback */
    color: var(--deep-plum);
    background-color: #FFFFFF; /* IE fallback */
    background-color: var(--crisp-white);
    border: 2px solid #303584; /* IE fallback */
    border: 2px solid var(--deep-plum);
}

input.inm-button:hover:not(:disabled),
a.inm-button:hover,
input[type="submit"]:not([class]):hover {
    background-color: #FFC20E; /* IE fallback */
    background-color: var(--summer-goldenrod);
    cursor: pointer;
}

a.inm-link{
    cursor:pointer;
}

input.inm-button:active,
input[type="submit"]:not([class]):active {
    background-color: #FFC20E; /* IE fallback */
    background-color: var(--summer-goldenrod);
}

/* checkboxes and radio buttons */
input[type="checkbox"],
input[type="radio"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    line-height: 1em;
    border-radius: 3px;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    -webkit-transition: all 0.125s ease-out;
    transition: all 0.125s ease-out;
    border-radius: 3px;
    border: 0.1rem solid transparent;
    -webkit-animation-duration: 0.001s;
    animation-duration: 0.001s;
    -webkit-animation-name: nodeInserted;
    animation-name: nodeInserted;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
    background: #cce9f0;
    border-color: #a3d8e5;
    outline: none;
    cursor: pointer;
    color: #4c5d70;
    text-decoration: none;
}

input[type="checkbox"]:disabled {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0.1rem;
    border-color: currentColor;
    opacity: 0.5;
    color: #69809b;
    cursor: not-allowed;
}

input[type="checkbox"]:active,
input[type="radio"]:active {
    background: #a3d8e5;
    border-color: #51b5ce;
    -webkit-box-shadow: 0 0 0 0.1rem #51b5ce inset;
    box-shadow: 0 0 0 0.1rem #51b5ce inset;
    color: #333f4c;
}

input[type="checkbox"]:before,
input[type="radio"]:before {
    position: absolute;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    opacity: 1;
    margin-right: 1rem;
    border-radius: 3px;
    border: 1px solid #FFFFFF; /* IE fallback */
    border: 1px solid var(--crisp-white);
    -webkit-box-shadow: 0 0 0 0.1em var(--frosted-gray) inset, 0 0 0 5em #E9E8ED inset;
    box-shadow: 0 0 0 0.1em #DEDCE4 inset, 0 0 0 5em #E9E8ED inset;
    -webkit-transition: -webkit-box-shadow 0.125s ease-out;
    transition: -webkit-box-shadow 0.125s ease-out;
    transition: box-shadow 0.125s ease-out;
    transition: box-shadow 0.125s ease-out, -webkit-box-shadow 0.125s ease-out;
    margin: 0;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
}

input[type="checkbox"]:checked:before,
input[type="radio"]:checked:before {
    -webkit-box-shadow: 0 0 0 0.1em #fff inset, 0 0 0 5em currentColor inset;
    box-shadow: 0 0 0 0.1em #fff inset, 0 0 0 5em currentColor inset;
    background-color: #f9f7df;
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
    color: #69809b;
    background: #e1e5eb;
    opacity: 0.5;
    cursor: not-allowed;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type="checkbox"]:disabled:hover,
input[type="radio"]:disabled:hover,
input[type="checkbox"]:disabled:active,
input[type="radio"]:disabled:active,
input[type="checkbox"]:disabled:focus,
input[type="radio"]:disabled:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    opacity: 0.5;
}

input[type="checkbox"]:disabled:before,
input[type="radio"]:disabled:before {
    -webkit-box-shadow: 0 0 2em #b1bccb inset;
    box-shadow: 0 0 2em #b1bccb inset;
    background: #b1bccb;
    border-color: #b1bccb;
}

input[type="checkbox"]:checked:before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg version=%221.1%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220%22 y=%220%22 viewBox=%220 0 35 35%22%3E %3Cpath fill=%22%23303584%22 d=%22M31.1,0H3.9C1.7,0,0,1.7,0,3.9v27.2C0,33.3,1.7,35,3.9,35h27.2c2.1,0,3.9-1.7,3.9-3.9V3.9C35,1.7,33.3,0,31.1,0 z M27.3,13.6l-9.3,11.7c0,0,0,0.1-0.1,0.1c-0.2,0.2-0.5,0.3-0.7,0.3c-0.3,0-0.5-0.1-0.7-0.3c0,0-0.1-0.1-0.1-0.1l-6.3-5.7 c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1.1-0.4,1.6,0l5.5,5.2l8.6-11.2c0.4-0.4,1.1-0.4,1.5,0C27.7,12.5,27.7,13.2,27.3,13.6z%22/%3E %3C/svg%3E") 50% 50% no-repeat;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-size: contain;
}

input[type="checkbox"]:checked:disabled:before {
    -webkit-box-shadow: 0 0 2em #b1bccb inset;
    box-shadow: 0 0 2em #b1bccb inset;
    background: #b1bccb;
    border-color: #b1bccb;
}

.inm-checkbox__inline,
.inm-checkbox__inline input {
    height: 2rem;
    display: inline-block;
    vertical-align: top;
}

/* use on form buttons that need to line up with inputs that have inm-labels 
   especially when form vertical-align is bottom or text-bottom
*/
.inm-button-offset-top {
    vertical-align: top;
    padding-top: 1rem;
}

table.invoice-header {
    width: 100%;
    margin-bottom: 1rem;
}

    table.invoice-header tr td {
        font-family: "benton-sans-condensed", sans-serif;
        font-size: 0.9rem;
        color: #303584; /* IE fallback */
        color: var(--deep-plum);
        font-weight: 400;
        padding: 0.2rem;
        vertical-align: middle;
    }

    table.invoice-header tr:first-of-type {
        background-color: #DEDCE4; /* IE fallback */
        background-color: var(--frosted-gray);
        font-size: 1rem;
        color: #03878C; /* IE fallback */
        color: var(--timeless-teal);
        font-weight: 500;
        vertical-align: bottom;
    }

    table.invoice-header tr td input {
        padding: 0;
        margin: 0;
    }

.highlight {
    font-weight: 600;
    color: #F15A22; /* IE fallback */
    color: var(--fiery-sunset);
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

.form-inline {
    display: inline-block;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    [type=checkbox],
    [type=radio] {
        min-height: 3.6rem;
    }
}

/* IE 11 fallbacks (some may work in 9+) */
@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
    .inm-button,
    a.inm-button,
    input[type="submit"]:not([class]) {
        width: auto;
    }

    select {
        /* needed to make selects line up with inputs on forms */
        position: relative;
        top: 1px;
    }

    input[type='checkbox'],
    input[type='radio'] {
        height: auto;
    }
}

/* MS Edge fallbacks */
_:-ms-lang(x),
_:-webkit-full-screen,
.inm-button,
a.inm-button,
input[type="submit"]:not([class]) {
    width: auto;
}

_:-ms-lang(x),
_:-webkit-full-screen,
input[type='checkbox'],
input[type='radio'] {
    height: auto;
}
