﻿body {
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */

input,
select,
textarea {
    max-width: 280px;
}

/*
    gamma additions
*/

    input[type=checkbox], input[type=radio] {
        margin: 3px 3px 3px 4px;
    }

/*some of these hex colors have an extra 2 numbers on the end for a transparency value.
    transparency of 8% is 14 in hex.
*/
:root {
    --text-primary: #072448;
    --text-secondary: #545E75;
    --text-error: #DB322D;
    --text-success: #22885D;
    --text-info: #31708f;
    --bg-primary: #023C40;
    --bg-alternative: #0e99a2;
    --bg-error: #DB322D14;
    --bg-success: #5ABE8A14;
    --bg-info: #d9edf7;
    --gray: #F0F5FA;
    --hover: #545E7514;
    --link: #015FFF;
    --border-info: #bce8f1;
    --new-input-border: #0e99a2;
    --new-input-outline: #14d2de;
}

html {
    overflow-y: scroll !important;
}

#content {
    display: flex;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    justify-content: space-between;
}

#centerContainer {
    flex-grow: 1;
}

.head {
    width: 100vw;
}

.header {
    padding-top: 32px;
    margin-left: 88px;
    margin-right: 88px;
    margin-bottom: 16px;
}


.header-right {
    display: flex;
    margin-left: auto;
}

.header-link {
    color: #232F33 !important;
    margin-left: 32px;
    font-weight: 400;
    transition: all .15s ease;
}

    .header-link:hover {
        color: #00000080;
    }

.nav {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 48px;
    margin-right: 48px;
    background-color: #037CA00D;
    border-radius: 3px;
}

.nav-left {
    margin-right: auto;
}

    .nav-left .top-nav {
        margin-right: 48px;
    }

.nav-right {
    margin-left: auto;
}

.nav a {
    font-size: 16px;
    font-weight: 600;
    color: #232F33;
    transition: all .2s ease;
}

    .nav a:hover {
        color: #00000095;
    }

.nav button i {
    margin-right: 8px;
}

.footer {
    width: 100vw;
    background-color: #037CA00D;
    color: #232F33 !important;
    border-radius: 3px;
    float: left;
}

    .footer.loggedin {
        height: 360px;
    }

    .footer.loggedout {
        height: 176px;
    }

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 0px;
    padding-left: 88px;
    padding-right: 88px;
}

.footer .title h3 {
    color: #232F33;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.footer .link {
    margin-bottom: 8px;
}

    .footer .link a {
        color: #232F33;
        font-size: 16px;
        font-weight: 400;
        transition: all .2s ease;
    }

        .footer .link a:hover {
            color: #00000080;
        }

.footer-column {
    margin-top: 0;
    margin-bottom: 0;
}

.footer-row {
    display: flex;
    margin: 0 auto;
}

    .footer-row li:not(:first-of-type) {
        margin-left: 32px;
    }

.footer-copyright {
    display: flex;
    align-items: center;
    padding-left: 88px;
    padding-right: 88px;
    margin-top: 80px;
}

.loggedin .footer-copyright {
    margin-top: 80px;
}

.loggedout .footer-copyright {
    margin-top: 32px;
}

.footer-copyright h4 {
    font-size: 14px;
    margin: 0;
    margin-left: 32px;
    font-weight: 400;
}

.footer-copyright img {
    height: 32px;
}

.footer-copyright #trustwaveSealImage {
    width: 80px;
    height: 40px;
    margin-left: auto;
}

#LoginContainer {
    max-width: 448px;
    width: 100vw;
    margin: 0 auto;
}

    #LoginContainer form {
        max-width: 448px;
        width: 100vw;
    }

#PasswordHelp {
    width: 424px;
}

.login-header {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    color: #072448;
}

.login-subheader {
    font-size: 16px;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 40px;
    color: #232F33;
}

.dropdown-expand {
    color: #545E75;
}

.mosaic-input-field.dropdown-wide,
.mosaic-input-field.dropdown-wide select {
    min-width: 320px;
    width: 320px;
    min-height: 64px;
    height: 64px;
    padding-right: 16px;
}

    .mosaic-input-field.dropdown-wide label {
        top: -28px;
        background-color: white;
        padding-left: 8px;
        padding-right: 8px;
    }

#ForgotPassword {
    font-size: 16px;
    font-weight: 400;
    color: #072448 !important;
}

.icon-left {
    margin-right: 8px;
}

.icon-right {
    margin-left: 8px;
}

.icon {
    height: 16px;
    width: 16px;
}

.height-24 {
    height: 24px;
}

.help {
    color: #072448 !important;
    vertical-align: bottom;
    margin-left: 8px;
}

i {
    vertical-align: middle !important;
    margin-bottom: 3px;
}

hr {
    height: 1px;
    background-color: #DBE0E5;
    border: none;
}

.width-band {
    max-width: 1300px;
    min-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.pswrd {
    margin-bottom: 32px !important;
}

.tfa-checkbox {
    margin-top: 14px;
}

.tfa-input {
    width: 128px;
}

    .tfa-input div {
        margin-bottom: 32px;
        height: 0;
    }

.alert-box {
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-primary);
    padding: 24px 0 24px 40px;
}

    .alert-box.gray {
        background-color: var(--gray);
    }

    .alert-box a {
        font-weight: 600;
        color: var(--link);
    }

.mosaic-checkbox-label span,
.mosaic-checkbox-label i {
    margin-left: 8px;
}

button.mosaic-btn.alternative {
    background-color: var(--bg-alternative);
    color: #fff;
}

    button.mosaic-btn.alternative:hover {
        background-color: #0B7A81;
    }

button.mosaic-btn:has(img),
button.mosaic-btn:has(i) {
    display: flex;
    align-items: center;
}

button.mosaic-btn:hover,
a.mosaic-btn:hover {
    background-color: #f3f3f3;
}

a.mosaic-btn,
input.mosaic-btn,
button.mosaic-btn,
label.mosaic-btn,
a.mosaic-btn:focus,
input.mosaic-btn:focus {
    font-weight: 700;
    background-color: #f3f3f3;
    min-width: fit-content;
}

.mosaic-dropdown-content hr {
    margin-left: 16px;
    margin-right: 16px;
}

.input-validation-error {
    border-color: #DB322D !important;
}

.field-validation-error {
    color: #DB322D;
    font-size: 14px;
    position: relative;
    left: 0.5rem;
}

.efmf-modal .field-validation-error {
    top: -0.5rem;
}

#ForgotPassContainer + hr {
    margin-bottom: 64px;
}

#ForgotPassContainer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s linear;
}

    #ForgotPassContainer > h3 {
        font-size: 16px;
        font-weight: 400;
        color: #545E75;
    }

.pass-req {
    margin-top: -2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.search-bar {
    max-width: 450px !important;
    width: 450px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

    .search-bar::placeholder {
        font-size: 14px;
        font-weight: 400;
    }

.filer-select {
    min-width: 250px;
}

.filer-select-full-width, .filer-select-full-width .mosaic-select-wrapper, .filer-select-full-width .mosaic-select-dropdown {
    min-width: 400px;
}

.pdf-copy-select, .pdf-copy-select .mosaic-select-wrapper {
    max-width: 150px;
    vertical-align: bottom;
}

    .pdf-copy-select .mosaic-select-wrapper .mosaic-select-dropdown {
        padding-top: 2px;
    }

.account-num {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding-left: 13px !important;
    padding-right: 0 !important;
    color: var(--text-secondary) !important;
    cursor: default;
}

    .account-num:hover {
        background-color: white !important;
    }

.selectOneListBox {
    min-width: 250px;
    border-radius: 8px;
    display: inherit;
    overflow-y: auto;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.flex-left {
    margin-right: auto;
    margin-left: 0;
}

.flex-right {
    margin-left: auto;
    margin-right: 0;
}

.flex-reverse {
    flex-direction: row-reverse !important;
}

.flex-parent {
    display: flex !important;
}

.mw33 {
    min-width: 33%;
}

.mw50 {
    min-width: 50%;
}

.mw100 {
    min-width: 100%;
}

.maxw-75 {
    max-width: 75%;
}

.ma {
    margin: auto;
}

.h0 {
    height: 0;
}

.w0 {
    width: 0 !important;
}

.w50 {
    width: 50%;
}

.w75 {
    width: 75%;
}

.w100 {
    width: 100%;
}

.w-180 {
    width: 180px;
}

.w-250 {
    width: 250px;
}

.mosaic-btn.btn-100, .mosaic-btn.btn-100:focus {
    display: flex;
    align-content: center;
    justify-content: center;
    min-width: 100% !important;
}

.valign-center {
    align-items: center !important;
}

.valign-end {
    align-items: end !important;
}

.height-none {
    height: 0 !important;
}

.height-14 {
    height: 14px;
    line-height: 14px;
}

.dnone {
    display: none !important;
}

.dflex {
    display: flex !important;
}

.dinherit {
    display: inherit !important;
}

.justify-end {
    justify-content: end !important;
}

.mt-none {
    margin-top: 0 !important;
}

.mt-xsmall {
    margin-top: 4px !important;
}

.mt-small {
    margin-top: 8px !important;
}

.mt-med {
    margin-top: 16px !important;
}

.mt-large {
    margin-top: 24px !important;
}

.mt-xl {
    margin-top: 32px !important;
}

.mb-none {
    margin-bottom: 0 !important;
}

.mb-half {
    margin-bottom: 4px !important;
}

.mb-small {
    margin-bottom: 8px !important;
}

.mb-med {
    margin-bottom: 16px !important;
}

.mb-large {
    margin-bottom: 24px !important;
}

.mb-xxl {
    margin-bottom: 40px !important;
}

.mb-3x {
    margin-bottom: 48px !important;
}

.my-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.ml-small {
    margin-left: 8px !important;
}

.ml-12px {
    margin-left: 12px !important;
}

.ml-med {
    margin-left: 16px !important;
}

.ml-large {
    margin-left: 24px !important;
}

.ml-xl {
    margin-left: 32px !important;
}

.ml-2x {
    margin-left: 40px !important;
}

.ml-auto {
    margin-left: auto !important;
}

.ml-300px {
    margin-left: 300px !important;
}

.ml-025 {
    margin-left: 0.25rem !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.mr-small {
    margin-right: 8px !important;
}

.mr-med {
    margin-right: 16px !important;
}

.mr-large {
    margin-right: 24px !important;
}

.mr-gutter {
    margin-right: 88px !important;
}

.mx-large {
    margin-left: 24px !important;
    margin-right: 24px !important;
}

.pb-small {
    padding-bottom: 8px !important;
}

.pb-med {
    padding-bottom: 16px !important;
}

.pb-large {
    padding-bottom: 1.5rem !important;
}

.pb-xlarge {
    padding-bottom: 2rem !important;
}

.pt-none {
    padding-top: 0 !important;
}

.pt-sm {
    padding-top: 0.5rem !important;
}

.pt-med {
    padding-top: 16px !important;
}

.pt-xl {
    padding-top: 32px !important;
}

.pt-1125 {
    padding-top: 1.125rem !important;
}

.pl-none {
    padding-left: 0 !important;
}

.pl-05 {
    padding-left: 0.5rem !important;
}

.pl-med {
    padding-left: 16px !important;
}

.pl-large {
    padding-left: 24px !important;
}

.pl-xl {
    padding-left: 32px !important;
}

.pl-2xl {
    padding-left: 40px !important
}

.pl-3xl {
    padding-left: 48px !important
}

.pl-12 {
    padding-left: 12px !important;
}

.pl-230px {
    padding-left: 230px !important;
}

.pr-large {
    padding-right: 24px !important;
}

.px-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-med {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.px-large {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.px-xl {
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.px-2x {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.py-med {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.py-lg {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.py-2xl {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.gap-xsmall {
    gap: 8px !important;
}

.text-small {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-secondary);
}

button.btn-gray {
    background-color: #E8E8E8 !important;
    color: var(--text-primary) !important;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15) !important;
}

    button.btn-gray:hover {
        color: white !important;
    }

.italic {
    font-style: italic;
}

.bold {
    font-weight: 700 !important;
}

.text-left {
    text-align: left;
}

.text-success {
    color: var(--text-success) !important;
}

.text-error {
    color: var(--text-error) !important;
}

.bg-gray {
    background-color: #023C4005;
}

.col-4 {
    width: 33%;
}

.col-lg-12 {
    width: 100%;
}

.col-lg-11 {
    width: 91.66666667%;
}

.col-lg-10 {
    width: 83.33333333%;
}

.col-lg-9 {
    width: 75%;
}

.col-lg-8 {
    width: 66.66666667%;
}

.col-lg-7 {
    width: 58.33333333%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-5 {
    width: 41.66666667%;
}

.col-lg-4 {
    width: 33.33333333%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-2 {
    width: 16.66666667%;
}

.col-lg-1 {
    width: 8.33333333%;
}

.w-80 {
    width: 80% !important;
}

/*Modals*/
.efmf-modal-container {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 25000;
    transform: translate(-50%, 0);
}

.efmf-modal {
    background-color: white;
    border: 1px solid var(--med-gray);
    border-radius: 8px;
    max-width: 600px;
    min-width: 475px;
    min-height: 200px;
    max-height: 75%;
    padding: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: auto;
    transform: translate(-50%, -50%);
}

.efmf-modal-close {
    margin-left: auto;
    cursor: pointer;
}

.efmf-modal-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--text-primary);
}

.efmf-modal-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
}

.efmf-modal > .mosaic-row:first-child {
    margin-bottom: 12px;
}

.efmf-modal > .mosaic-row > h4 {
    margin-top: 0;
    margin-bottom: 0;
}

.efmf-modal-buttons {
    justify-content: flex-end;
}

.efmf-modal table td {
    padding-right: 0.75rem;
}

.efmf-modal-input {
    max-height: 3.375rem !important;
    height: 3.375rem !important;
    padding: 0.75rem 0.75rem 0 0.75rem !important;
    margin: 0.5rem 0 0.5rem 0 !important;
    max-width: none;
}

.efmf-modal-label {
    margin-top: 0.5rem;
}

.efmf-modal-multi-col {
    display: flex;
}

.efmf-modal-double-col-25 td:first-child {
    width: 25%;
}

.efmf-modal-double-col-50 td:first-child {
    width: 50%;
}

.efmf-modal-double-col-75 td:first-child {
    width: 75%;
}

.efmf-modal-double-col-100 td:first-child {
    width: 100%;
}

.efmf-modal-header {
    justify-content: space-between;
}

.efmf-modal-x-button {
    width: 1.1rem;
    height: 1.1rem;
    background: url('images/x-solid.svg') no-repeat center center;
    border: none;
}

    .efmf-modal-x-button:hover {
        background-color: transparent !important;
    }

/*Overrides*/
body {
    padding-bottom: 0 !important;
    display: block !important;
    font-family: Inter, sans-serif;
}

.jqx-window, .jqx-window .ui-widget, .jqx-window-header,
.jqx-window input, .jqx-window .ui-widget input,
.jqx-window textarea, .jqx-window .ui-widget textarea,
.jqx-window select, .jqx-window .ui-widget select,
.jqx-window button, .jqx-window .ui-widget button,
.form-actions, .form-actions input, .form-actions textarea,
.form-actions select, .form-actions button {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

[type=radio]:not(:checked),
[type=radio]:checked {
    position: initial;
    opacity: initial;
    pointer-events: initial;
}

#LoginContainer input {
    max-width: 100%;
}

.typography-subtext {
    font-size: 12px !important;
    color: var(--text-secondary) !important;
}

th {
    color: var(--text-primary) !important;
}

table.tableListing th, table.tableListingParent th, table.tableListingParentTest th {
    text-align: left;
    background-color: transparent;
    color: black;
}

table.tableListing tr:nth-child(even) {
    background-color: transparent;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tableEntry {
    background-color: #023C4005;
    border: 1px solid #035EC7;
    border-radius: 4px;
    box-shadow: 2px 2px 2px 2px #CCC;
    height: auto;
    margin-bottom: 15px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    width: 100%;
}

table.tableEntry {
    border: none;
    box-shadow: none;
}

    table.tableEntry td {
        text-align: left;
        padding: 0.5rem;
    }

.efmf-modal table td {
    padding: 0rem;
}

table.tableEntry.newTable label {
    color: inherit;
}

table.tableEntry.newTable {
    display: block;
    padding: 1rem;
}

    table.tableEntry.newTable td {
        vertical-align: top;
    }

        table.tableEntry.newTable td .textEntryInput {
            min-width: 80%;
        }

table.tableEntry th {
    padding: 0px;
    text-align: left;
    vertical-align: top;
}

    table.tableEntry th > h2 {
        margin: 0 0 1rem 0 !important;
    }

table.tableEntry.newTable th {
    min-width: 24rem;
}

    table.tableEntry.newTable th > p {
        width: 80%;
    }

table.tableEntry tr {
    border: none;
}

table.tableEntry .field-validation-error {
    display: block;
}

.pos-a {
    position: absolute;
}

.borderless, table.borderless tr, table.borderless td {
    border: none;
}

th a {
    color: var(--text-primary) !important;
}

.mosaic-row {
    margin-bottom: 24px;
}

.mosaic-btn-flat {
    color: var(--text-primary);
}

    .mosaic-btn-flat:hover,
    .mosaic-btn-flat:focus {
        background-color: transparent;
        color: var(--text-primary);
    }

.mosaic-dropdown-content {
    margin-top: 36px !important;
    width: fit-content !important;
    white-space: nowrap;
}

input[type=checkbox].mosaic-checkbox,
input[type=checkbox].mosaic-checkbox::before {
    height: 16px !important;
    width: 16px !important;
    border-width: 1px;
}

.mosaic-input-field > label {
    color: var(--text-primary);
}

    .mosaic-input-field > label:not(.label-icon).active {
        transform: translate(12px, 6px) scale(0.75) !important;
    }

.mosaic-input-field input.input[type=text]:not(.browser-default),
.mosaic-input-field input.input[type=number]:not(.browser-default),
.mosaic-input-field input.input[type=password]:not(.browser-default),
.mosaic-input-field input.input[type=email]:not(.browser-default),
.mosaic-input-field textarea:not(.browser-default) {
    border-radius: 8px;
    border-width: 1px;
    border-color: #999EA3;
    background-color: white;
}

.bootstrap-filestyle.input-group .form-control {
    border-radius: 8px !important;
    border-width: 1px !important;
    border-color: #999EA3 !important;
    background-color: white !important;
    padding-top: 0 !important;
}

.mosaic-input-field input.input[type=text]:not(.browser-default):focus,
.mosaic-input-field input.input[type=password]:not(.browser-default):focus,
.mosaic-input-field input.input[type=email]:not(.browser-default):focus,
.mosaic-input-field textarea:not(.browser-default):focus {
    border-width: 2px;
    background: white;
}

ul.mosaic-dropdown-content li > a,
ul.mosaic-dropdown-content li > span,
ul.mosaic-dropdown-content li > button {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

ul.mosaic-dropdown-content li > button {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
    color: #072448;
    display: block;
    line-height: 22px;
    padding: 7px 16px;
}

.tableListing, .tableListingParent {
    border: none;
    box-shadow: none;
    border-radius: 0px;
}

    .tableListingParent tbody tr:hover {
        background-color: var(--hover);
    }

.tableRowBlue {
    background-color: transparent;
}

table {
    border-collapse: collapse;
}

.searchable-item-count, .searchable-item-count td {
    width: 100%;
    padding: 4px;
    font-size: 12px;
}

    .searchable-item-count tr {
        border: none;
    }

tr, .searchable tbody tr:only-child, .searchable tbody tr:last-child {
    border: solid;
    border-width: 1px 0;
    border-color: #CCC;
}

table.searchable thead tr:last-child, table.order-form-list thead tr:last-child {
    border-bottom: 1px solid #CCC;
}

table thead tr {
    border-bottom: 1px solid #CCC;
}

tr:first-child {
    border-top: none;
}

tr:last-child {
    border-bottom: none;
}

table tbody tr:only-child, table > tr:only-child {
    border-bottom: none;
}

.cart-icon {
    padding-left: 0;
}

.tableRowHover {
    background-color: var(--hover);
}

thead .tableRowHover {
    background-color: transparent;
}

.cart-icon:hover,
.cart-icon:focus {
    background-color: transparent;
}

form {
    padding: 0 !important;
}

[id^="aum-"] {
    display: none;
}

    [id^="aum-"].show-message {
        display: block;
    }

.aum {
    position: relative;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    margin: 1rem 48px 0 48px
}

    .aum a {
        font-weight: 700;
        transition: color 0.2s;
    }

        .aum a:hover {
            color: #94444d
        }

.aum-dismissible {
    padding-right: 3rem;
}

    .aum-dismissible.btn-close {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        padding: 1rem 1rem;
    }

        .aum-dismissible.btn-close:focus {
            background-color: transparent;
            box-shadow: none;
        }

.aum-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

    .aum-success a {
        color: #0c4128;
    }

.aum-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

    .aum-info a {
        color: #04414d;
    }

.aum-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

    .aum-warning a {
        color: #523e02;
    }

.aum-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

    .aum-danger a {
        color: #6a1a21;
    }

.validation-errors,
.validation-success,
.validation-summary-errors,
.validation-info,
.status-summary {
    font-size: 16px;
    padding: 16px 16px 16px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.validation-info {
    background-color: var(--bg-info);
    border: 1px solid var(--border-info);
    color: var(--text-info);
    display: flex;
}

.status-summary .mosaic-row {
    margin-bottom: 4px;
}

.validation-summary-errors {
    padding: 8px 16px 8px 16px;
    min-width: fit-content;
}

.validation-errors,
.validation-summary-errors {
    background-color: var(--bg-error);
    color: var(--text-error);
}

    .validation-errors a:not(.mosaic-btn),
    .validation-summary-errors a:not(.mosaic-btn) {
        color: #DB322D;
        text-decoration: underline;
    }

.validation-errors ul,
.validation-summary-errors ul {
    padding-left: 2em;
}

.validation-errors-container {
    color: var(--text-error);
    padding: 8px 16px 8px 16px;
    min-width: fit-content;
}

.validation-error-item {
    margin-bottom: 4px;
    padding-left: 1.5em;
    position: relative;
}

.validation-error-item:last-child {
    margin-bottom: 0;
}

    .validation-errors-container a:not(.mosaic-btn) {
        color: #DB322D;
        text-decoration: underline;
    }

.validation-success {
    background-color: var(--bg-success);
    color: var(--text-success);
}

    .validation-success .field-validation-error {
        color: var(--text-success);
    }

.status-summary {
    border-color: lightgray;
    border-width: 2px;
    border-style: solid;
}

.status-summary-edit {
    margin: 0 auto 24px auto;
}

.cursor-default {
    cursor: default !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

#acctSummary {
    display: none;
}

.itemHeightFixed {
    height: 140px;
}

.noLeftMargin {
    margin-left: 0px;
}

.smallLeftMargin {
    margin-left: 20px;
}

.medLeftMargin {
    margin-left: 90px;
}

.largeLeftMargin {
    margin-left: 200px;
}

.xLargeLeftMargin {
    margin-left: 300px;
}

.noTopMargin {
    margin-top: 0px;
}

.smallTopMargin {
    margin-top: 20px;
}

.smallBottomMargin {
    margin-bottom: 5px;
}

.textGreen {
    color: #037330;
}

.textOrange {
    color: #ff8c00;
}

.textRed {
    color: #d90404;
}

.FormID {
    margin-right: 10px;
}

.stateGoBack {
    margin-top: 10px;
}

.aleGroupList {
    margin-top: 20px;
}

.userMessage {
    margin: 8px;
}

.twoFactorFaq {
    margin: 1em;
}

.smallRightPadding {
    padding-right: 5px;
}

.boxTotal {
    padding-right: 10px;
}

.manageRecipients {
    padding-top: 12px;
}

.tableEntryHeightFixed {
    height: 180px;
}

.textShort {
    height: 105px;
}

.textMiddle {
    height: 155px;
}

.textTall {
    height: 205px;
    height: fit-content;
    min-height: 160px;
}

.orderProblem {
    float: left;
    height: auto;
    width: 40%;
}

.orderDetail {
    width: 20px;
    height: 14px;
}

.tourHead {
    float: left;
    margin-top: 0px;
    width: 100%
}

.importWalk {
    float: left;
    margin-top: 20px;
    width: 100%
}

.betaLogo {
    color: red;
    font-size: 30pt;
    font-weight: bold;
    background-color: blueviolet;
    margin-left: 40px;
    padding: 2px 4px;
    border-radius: 4px;
}

.twoFactorCode {
    visibility: hidden;
    width: 50px;
}

.fieldMap {
    margin-bottom: 10px;
    text-align: right
}

.fieldUniqueName {
    width: 125px;
    z-index: 0;
}

.importReady {
    margin-top: .83em;
    margin-bottom: .83em;
}

.deadline {
    line-height: 175%;
}

.eDeliveryConsent {
    width: 50px;
}

.acctBox {
    width: 230px;
}

.acctBoxWide {
    width: 335px;
}

.cardHeader {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.acctHomePanel {
    width: 630px;
}

.taxReportHead {
    width: 640px;
}

.acctBoxXWide {
    width: 650px;
}

.vishidden {
    visibility: hidden;
}

.ffarial {
    font-family: Arial;
}

.smallPrint {
    font-size: 8pt;
}

.WIP {
    font-size: 10pt;
}

.Tour {
    font-size: 12px;
}

.largePrint {
    font-size: 16px;
}

.fszxs {
    font-size: x-small;
}

.fszs {
    font-size: small;
}

.tacenter {
    text-align: center;
}

.taright {
    text-align: right;
}

.greenit {
    color: green;
    font-style: italic
}

.boldgreen {
    color: green;
    font-weight: bold;
}

.qmenu-filing {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.import-summary {
    margin-top: 40px;
    font-weight: normal;
    font-size: 16pt
}

.import-details {
    width: 700px;
    max-height: 300px;
    border: solid 1px #ddd;
    padding: 5px;
    overflow-y: auto;
    resize: both;
}

.import-text {
    width: 800px;
    height: 400px;
    max-width: 800px;
}

.import-mdl-details {
    white-space: pre;
    margin: 0
}

.import-issues-container {
    float: right;
    width: 420px;
}

.journal {
    width: 700px;
    height: 300px;
    max-width: none;
    cursor: text;
    resize: both;
}

.passwd-help {
    margin-left: 15px;
    width: 75%;
}

.acct-id {
    font-weight: bold;
    border: 1px solid gray;
    border-radius: 4px;
    padding: 4px;
    margin: 4px;
    width: fit-content;
}

.debuglog {
    white-space: pre-wrap;
    font-family: monospace;
}

.email-note {
    max-width: 497px;
}

.year-tabs {
    height: 680px;
    overflow: hidden;
}

.tourserv {
    padding-top: 10px;
    padding-left: 10px;
}

.yearopts {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 60px;
}

.clrboth {
    clear: both;
}

.clrleft {
    clear: left;
}

.user-error {
    color: darkred;
}

.user-ok {
    color: forestgreen;
}

.cgreen {
    color: green;
}

.cred {
    color: red;
}

.boldred {
    color: red;
    font-weight: bold;
}

.cobalt {
    color: #0645AD;
}

.brightBlue {
    color: #1167CA
}

.boldBrightBlue {
    color: #1167CA;
    font-weight: bold;
}

.freeSpeechRed {
    color: #d80000
}

.order-acctbox {
    width: 495px;
    float: left;
    margin-left: 10px;
}

.year-header {
    padding-left: 30px !important;
    font-size: 1.6em !important;
}

.mainmenu {
    visibility: hidden;
    height: 30px;
    overflow: hidden;
}

.or {
    margin-left: 1em;
    font-style: italic;
}

.not {
    font-weight: bold;
    text-decoration: underline;
}

.referbc {
    border: thin #ddd solid;
    margin-left: 50px;
    margin-right: 70px;
    padding: 15px;
}

.index-label {
    min-width: 360px;
    display: inline-block;
}

.browse-grid {
    max-height: 400px;
    overflow-y: scroll;
    max-width: 1300px;
}

table.browse-grid tfoot td a[href*=page],
table.browse-grid tfoot td a[href*=javascript],
table.order-form-list tfoot td a[href*=page],
table.order-form-list tfoot td a[href*=javascript],
table.searchable tfoot td a[href*=page],
table.searchable tfoot td a[href*=javascript] {
    background-color: #f5f5f5;
    min-width: 14px;
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
}

.vatop {
    vertical-align: top;
}

.vacenter {
    vertical-align: central;
}

.vabottom {
    vertical-align: bottom;
}

.bg-skyblue {
    background-color: skyblue;
}

.bg-seagreen {
    background-color: darkseagreen;
}

.order-taxtable {
    border-width: 1px;
    border-color: black;
    border-style: solid;
}

    .order-taxtable th,
    .order-taxtable td {
        border: thin solid black;
    }

.dispblock {
    display: block;
}

.editsave {
    border: 0px;
    height: 0px;
    margin: 0px;
    outline: none;
    padding: 0px;
    width: 0px;
}

.formstat {
    margin-bottom: .83em;
    margin-top: .83em;
}

.formpdfcont {
    width: 335px;
    text-align: center;
}

.formacts {
    width: 315px;
    text-align: left;
}

.irscodeselect {
    height: 320px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.table-note {
    height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
}

/*
    from some cshtml file
*/
.header-icon-image {
    display: flex;
    align-items: center;
}

.tooltipfiling {
    display: inline;
    position: relative;
}

    .tooltipfiling:hover:after {
        background: #333;
        background: rgba(0,0,0,.8);
        border-radius: 5px;
        bottom: 26px;
        color: #fff;
        content: attr(title);
        left: 20%;
        padding: 5px 15px;
        position: absolute;
        z-index: 98;
        width: 220px;
    }

    .tooltipfiling:hover:before {
        border: solid;
        border-color: #333 transparent;
        border-width: 6px 6px 0 6px;
        bottom: 20px;
        content: "";
        left: 50%;
        position: absolute;
        z-index: 99;
    }

.actionmenu {
    display: none;
    float: right;
    margin-top: 4px;
}

.bg-trans {
    background-color: transparent;
}

/*
    from views\filing\new
    and  views\filing\upload
*/

.accordion .headerClick, .alwaysOpen .headerClick {
    height: 40px;
}

.bouncingArrow {
    height: 30px;
    width: 30px;
    background-image: url('/Content/Images/selection-arrow-right.png');
    position: absolute;
    top: 495px;
    left: 490px;
    background-size: cover;
    visibility: hidden;
    -webkit-animation: bounceRight 2s infinite;
    animation: bounceRight 2s infinite;
}


/* right bounce */
@-webkit-keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    40% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    60% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
}

@-moz-keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(-30px);
    }

    60% {
        transform: translateX(-15px);
    }
}

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    40% {
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    60% {
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }
}
/* /right bounce */

/*
    from views\form\edit
*/
.ui-datepicker {
    font-size: 62.5%;
}

    .ui-datepicker td {
        font-size: .9em;
    }

.disabledElement {
    background-color: rgb(184, 182, 182);
}

/*
    from Views\Form\IRSCodeSelect
*/
.rbselect {
    width: 40px;
}

.codeValue {
    width: 70px;
}

.codeDept {
    width: 120px;
}

.codePhone {
    width: 410px;
}

.codeCountry {
    width: 530px;
}

.codeDescription {
    width: 460px;
}

/*utility helpers*/

.textUnderline {
    text-decoration: underline;
}

.mr-8px {
    margin-right: 8px;
}

.no-margin {
    margin: 0 !important;
}

.form-editor-header {
    margin-right: 16px;
}

    .form-editor-header .icon {
        color: #039be5;
        font-size: 1.3rem;
    }

    .form-editor-header .form-editor-link {
        padding-top: 8px;
        font-size: 14px;
        width: fit-content;
        white-space: nowrap;
    }

    .form-editor-header div.mosaic-col:first-child {
        width: 100%;
    }

    .form-editor-header h2 {
        font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        margin: 0 !important;
    }

/*Filing/New and Filing/Import form boxes*/
.form-select-form-type {
    font-weight: bold;
    white-space: nowrap;
}

.form-select-form-year {
    line-height: 8px;
}

.form-select-text {
    float: right;
    padding: 4px;
    text-align: center;
}

    .form-select-text span {
        font-size: 11px;
        color: #17494D;
        display: block;
    }

.report-592 {
    margin-left: 24px;
}

.summary-report-field-title {
    width: 508.5px;
}

.back-button, .start-over-button {
    margin-right: 8px;
}

.form-group-description {
    width: 100%;
    padding: 0 1em 1em 1em;
    font-size: 13px;
}

.tin-type-label {
    color: black;
    font-size: 1em;
    margin-right: 8px;
}

.status-summary-edit ul, .status-summary-edit span.ui-item {
    margin-top: 8px;
    margin-bottom: 8px;
}

.status-summary-edit .ul-item {
    font-size: 0.9em;
}

.status-summary-edit .status-summary-toggle {
    float: right;
    color: darkgray;
    margin-right: 4px;
    cursor: pointer;
}

.disc {
    list-style-type: disc !important;
}

input.just-input {
    border: 1px solid rgb(189, 189, 189) !important;
    border-radius: 4px !important;
    padding: 4px !important;
}

.toggle-password {
    position: relative;
    right: -25rem;
    top: -2.5rem;
    cursor: pointer;
    height: 1.75rem;
    width: 1.75rem;
}

.pass-req li {
    list-style-type: none;
    color: red;
}

    .pass-req li.valid {
        color: green;
    }

.info-icon {
    width: 1rem;
    border-radius: 50%;
    background-color: var(--text-info);
    color: white;
    text-align: center;
    line-height: 1rem;
    margin-top: 0.2rem;
    margin-right: 0.625rem;
    flex-shrink: 0;
    align-self: flex-start;
    font-weight: bold;
}

    .info-icon:before {
        content: "i";
        font-style: normal;
        font-family: none;
    }

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}

.top-035 {
    top: 0.35rem;
}

.pos-r {
    position: relative;
}


/* Accordion/Collapsible styling */
button.accordion {
    background-color: #023c4005;
    border: none;
    cursor: pointer;
    display: flex;
    margin-bottom: 1rem;
    padding: 1rem 1rem 2.5rem 1.75rem;
    width: 100%;
    transition: margin-bottom 0s linear 0s !important;
}

    button.accordion.active {
        background-color: #e9eef3;
        margin-bottom: 0;
        transition: margin-bottom 0s linear 0s !important;
    }

.alwaysOpen button.accordion.active,
.alwaysOpen button.accordion:hover {
    margin-bottom: 1rem;
    cursor: default;
}

.alwaysOpen button.accordion {
    min-height: 160px;
    background-color: rgba(3, 124, 160, 0.05);
    border-radius: 12px;
    border: 1px solid #DBE0E5;
}

#form-select-container .alwaysOpen,
.form-select-wrapper .accordion-content.expanded {
    box-shadow: inset 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.form-select-wrapper .accordion-content.expanded,
.alwaysOpen button.accordion:hover {
    border: 1px solid #DBE0E5;
    background-color: rgba(3, 124, 160, 0.05) !important;
}

.form-select-wrapper button strong {
    margin-left: 4px;
    margin-right: auto;
}

.alwaysOpen button.accordion {
    justify-content: start !important;
}

.form-select-wrapper,
.form-select-wrapper button.accordion.active,
.form-select-wrapper button.accordion,
.form-select-wrapper button.accordion:hover {
    background-color: transparent;
}

    .form-select-wrapper .accordion-content,
    .form-select-wrapper .accordion-content.expanded,
    .form-select-wrapper .always-open-content {
        padding-left: 84px !important;
    }

    .form-select-wrapper .always-open-content {
        margin-top: -104px;
    }

    .form-select-wrapper .newFilingHover,
    button.accordion:hover {
        background: rgba(40, 100, 140, 0.2) !important;
    }

button.accordion.active:before {
    content: "\25B2";
    margin-right: 8px;
}

button.accordion:before {
    content: "\25BC";
    margin-right: 8px;
}

.alwaysOpen button.accordion:before {
    content: "";
}

.accordion-content {
    max-height: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.1s ease 0s !important;
}

    .accordion-content.expanded {
        max-height: 500px;
        padding: 1rem 1rem 0 1rem !important;
        margin-bottom: 0 !important;
        transition: max-height 0.3s ease-out, padding 0.1s, margin 0s !important;
    }

.accordion-subtitle {
    position: relative;
    top: 94px;
    margin-left: 4rem;
    cursor: pointer;
    min-width: 90%;
    font-size: 13px;
    z-index: -100;
}

.form-select-wrapper .accordion-content {
    margin-top: 1.5rem !important;
}

.separator {
    display: flex;
    align-items: center;
    color: var(--bg-alternative);
}

    .separator::before,
    .separator::after {
        flex: 1;
        content: '';
        padding: 1px;
        background-color: var(--bg-alternative);
    }

    .separator::before {
        margin: 2rem 2rem 2rem 0;
    }

    .separator::after {
        margin: 2rem 0 2rem 2rem;
    }

/* Tax form tabs */
.form-tab {
    overflow: hidden;
    /*border: 1px solid #ccc;
    background-color: #f1f1f1;*/
}

    .form-tab button {
        border: none;
        background-color: inherit;
        color: var(--bg-primary);
        cursor: pointer;
        float: left;
        font-size: 16px;
        font-weight: bold;
        outline: none;
        padding: 4px 16px;
        transition: 0.1s
    }

        .form-tab button:hover {
            background-color: #efefef;
            border-bottom: 3px solid var(--new-input-border);
            color: var(--new-input-border);
        }

        .form-tab button.active {
            color: var(--new-input-border);
            border-bottom: 3px solid var(--new-input-border);
        }

        .form-tab button i {
            padding-right: 4px;
        }

.form-tabcontent {
    box-shadow: 0 0 32px -16px;
    margin-inline: auto;
    margin-top: -14px;
    margin-bottom: 16px;
}

.italic {
    font-style: italic;
}

.ipe-action {
    margin-left: 4px;
    margin-right: 4px;
}

.order-history-name {
    max-width: 150px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.centered-card {
    display: inline-block;
    margin: 0 auto;
    width: 92%;
    text-align: left;
}

/* Focus enhancement styles for accessibility */
input:focus,
button:focus,
a:focus,
select:focus,
textarea:focus,
[tabindex]:focus,
.showPointer:focus {
    outline: 0.2rem;
    box-shadow: 0 0 0.2rem 0.2rem rgba(0, 123, 255, 0.50) !important;
    -moz-border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
}

/* Fix mosaic-btn inputs dark background on focus */
input.mosaic-btn:focus:not(.primary),
input.mosaic-btn.tertiary:focus,
input.mosaic-btn.secondary:focus {
    background-color: #f5f5f5 !important;
    color: #333 !important;
}

/* Prevent focus on cart icon container buttons */
button.mosaic-btn-flat.cart-icon:focus,
button.mosaic-btn-flat.cart-icon:hover,
.mosaic-btn-flat.cart-icon:focus,
.mosaic-btn-flat.cart-icon:hover,
.cart-icon:focus,
.cart-icon:hover {
    outline: none !important;
    box-shadow: none !important;
    color: inherit !important;
    transition: none !important;
}

/* Make cart icon images focusable */
.mosaic-btn-flat.cart-icon img,
.cart-icon img {
    cursor: pointer;
}

/* Focus styles for accordion form selection boxes */
.newFilingBox.newFilingClickable:focus {
    outline: 0.2rem !important;
    box-shadow: 0 0 0.2rem 0.2rem rgba(0, 123, 255, 0.50) !important;
    -moz-border-radius: 0.2rem !important;
    -webkit-border-radius: 0.2rem !important;
    border-radius: 0.2rem !important;
    background-color: rgba(3, 124, 160, 0.05) !important;
}

li.dropdown-divider,
ul > hr {
    min-height: 6px;
}

    li.dropdown-divider:hover,
    ul > hr {
        background-color: transparent;
        cursor: default;
    }

    li.dropdown-divider > hr,
    ul > hr {
        background-color: #bbb;
        height: 1px;
        margin: 0 1rem;
    }

select#ActiveYear {
    background: url('data:image/jpeg;base64,/9j/2wCEABoZGSccJz4lJT5CLy8vQkc9Ozs9R0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0cBHCcnMyYzPSYmPUc9Mj1HR0dEREdHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR//dAAQAAv/uAA5BZG9iZQBkwAAAAAH/wAARCAAKABIDACIAAREBAhEB/8QAXQAAAgMAAAAAAAAAAAAAAAAAAAEDBAUBAQAAAAAAAAAAAAAAAAAAAAAQAAECBQMFAAAAAAAAAAAAAAEAAgMEEhNRETFBISJCcfARAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwAAARECEQA/AN6avU1QNKm9aT5DGvBwfhDKxY0w644WoWzWOHeTyTgYHO/u+UkDQhCD/9k=') no-repeat 95% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-left: 16px;
}

.alwaysOpen {
    margin-bottom: 48px;
}
