:root {
--prim_color: rgba(67,67,67,1);
--sec_color: rgba(115,0,0,1);
--ter_color: rgb(140,25,25);
--bg_color1: rgb(225,225,225);
--bg_color2: rgb(150,150,150);
--text_color1: rgb(255,255,255);
--text_color2: rgb(0,0,0);
--table-row-bg: rgba(225,225,225,1);
--table-row-alt-bg: rgb(255,255,255);
--table-row-hover-bg: rgba(67,67,67,1);
--notice-color: rgb(0, 0, 0);
--fuel-chart-primary: rgba(67,67,67,1);
--font_family: ;
--button_color: var(--sec_color);
--hover_brightness: 70%;
--top_nav_height: 115px;
--hover_timing: 0.3s;
--mobile_nav_height: 68px;
--acct_sel_height: 50px;
--side_nav_width_desktop: 240px;
--registration_marg: 160px;
}

/*:root {
  --prim_color: rgb(23,45,82);
  --sec_color: rgb(14,119,204);
  --ter_color: rgb(21,45,82);
  --bg_color1: rgb(225,225,225);
  --bg_color2: rgb(150,150,150);
  --text_color1: rgb(255,255,255);
  --text_color2: rgb(0,0,0);
  --font_family: Arial;
  --button_color: var(--sec_color);
  --hover_brightness: 70%;
  --hover_timing: 0.3s;
}*/

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: 100;
    src: url('fonts/Gotham-Thin.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: 100;
    src: url('fonts/Gotham-ThinItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: 200;
    src: url('fonts/Gotham-ExtraLight.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: 200;
    src: url('fonts/Gotham-ExtraLightItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: 300;
    src: url('fonts/Gotham-Light.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: 300;
    src: url('fonts/Gotham-LightItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: normal;
    src: url('fonts/Gotham-Book.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: normal;
    src: url('fonts/Gotham-BookItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Gotham-Medium.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: 600;
    src: url('fonts/Gotham-MediumItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: bold;
    src: url('fonts/Gotham-Bold.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: bold;
    src: url('fonts/Gotham-BoldItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: 800;
    src: url('fonts/Gotham-Black.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: 800;
    src: url('fonts/Gotham-BlackItalic.otf');
}

@font-face {
    font-family: Gotham;
    font-style: normal;
    font-weight: 900;
    src: url('fonts/Gotham-Ultra.otf');
}

@font-face {
    font-family: Gotham;
    font-style: italic;
    font-weight: 900;
    src: url('fonts/Gotham-UltraItalic.otf');
}

* {
    box-sizing: border-box;
    font-family: var(--font_family);
    font-size: 12px;
}

h1 {
    text-align: center;
    font-size: 20px;
}

form input:focus {
    outline: none;
}

b {
    font-size: inherit;
}

body {
    width: 100%;
    height: 100%;
    background-color: var(--prim_color);
    margin: 0;
}

button:not(.hamburger),
input[type="button"] {
    margin: 0;
    border: 0;
    cursor: pointer;
    background-color: var(--button_color);
    color: var(--text_color1);
    padding: 15px 10px;
    transition: filter var(--hover_timing);
    width: 100%;
    height: 100%;
}

button.home-nav {
    padding: 20px 5px;
    background-color: var(--prim_color);
    border-radius: 15px;
}

button:disabled {
    filter: grayscale(75%) brightness(200%);
    cursor: default;
}

button.submit_button {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

a.home-nav {
    width: 42%;
    max-width: 150px;
    margin: 2% 4%;
}

input[type="checkbox"] {
    height: 22px;
    width: 22px;
}

label[for="start_date"],
label[for="end_date"] {
    font-weight: bold;
}


.home-nav span {
    font-weight: normal;
}

.home-nav i {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

table.order_totals {
    border-collapse: collapse;
    font-weight: bold;
    border: 2px solid black;
    text-align: center;
    width: auto;
}

table.order_totals td {
    height: 20px;
    padding: 3px 3px;
    margin: 0;
    border: none;
}

table.order_totals tr:nth-child(even) {
    background-color: var(--table-row-bg);
}

table.order_totals tr:nth-child(odd) {
    background-color: var(--table-row-alt-bg);
}

table.order_totals tr {
    background-color: inherit;
}

table.order_totals tr td:first-child {
    text-align: right;
}

table.order_totals tr td:nth-child(2) {
    text-align: left;
}

.invc-dtls {
    flex-direction: column;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    background-color: gray;
    border: 1px solid black;
    border-radius: 10px;
    padding: 15px;
    z-index: 6;
    background-color: white;
    width: 700px;
    max-width: 90%;
    max-height: 85%;
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
}

.mod-header {
    padding: 0px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
}

.mod-header .title {
    font-size: 26px;
    font-weight: bold;
    flex-basis: 85%;
}

.mod-header .close-button {
    cursor: pointer;
    color: black;
    border: none;
    outline: none;
    background: none;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    flex-basis: 15%;
}

.mod-body {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: normal;
    max-height: 60vh;
    overflow-y: auto;
}

.cont {
    width: 100%;
}

.forms-container {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.content {
    width: 95%;
    background-color: var(--bg_color1);
    padding: 10px 30px 10px 30px;
    border-radius: 15px;
    overflow: hidden;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main .content {
    margin: auto;
    padding: 8px;
    min-height: calc(64vh - var(--top_nav_height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.registration-para {
    text-align: center;
}

.db_table {
    border-collapse: collapse;
    border-radius: 25px;
    font-weight: normal;
    border: 3px solid var(--ter_color);
    text-align: left;
}

.db_table th {
    font-size: 10px;
    background-color: var(--prim_color);
    padding: 0 3px;
    font-weight: 600;
    text-align: center;
    color: var(--text_color1);
}

.db_table tr:nth-child(even) {
    background-color: var(--table-row-bg);
}

.db_table tr:nth-child(odd) {
    background-color: var(--table-row-alt-bg);
}

.db_table td {
    font-size: 10px;
    white-space: nowrap;
    padding: 0 3px;
    border-left: 2px solid var(--ter_color);
    border-right: 2px solid var(--ter_color);
    text-align: center;
}

.invc_tbl {
    border: 2px solid var(--ter_color);
    margin: 5px 0;
    border-collapse: collapse;
    width: 100%;
    display: table;
}

.invc_tbl caption {
    font-size: 12px;
}

.invc_tbl th {
    background-color: var(--prim_color);
    font-weight: 700;
    text-align: center;
    color: var(--text_color1);
    font-size: 10px;
}

.invc_tbl td {
    white-space: nowrap;
    border-left: 2px solid var(--ter_color);
    border-right: 2px solid var(--ter_color);
    padding: 10px 0;
    text-align: center;
    font-size: 10px;
}

.invc-dtls-cell {
    padding: 0 !important;
    border: 2px solid gray;
}

.customers_tbl {
    border: 2px solid var(--ter_color);
    margin: 5px 0 5px 0;
    border-collapse: collapse;
    width: 100%;
    display: run-in;
}

.customers_tbl th {
    background-color: var(--table-row-bg);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: var(--text_color1);
}

.customers_tbl td {
    font-size: 10px;
    white-space: nowrap;
    border-left: 2px solid var(--ter_color);
    border-right: 2px solid var(--ter_color);
    padding: 5px 3px 5px 3px;
    text-align: center;
}

.customers_tbl:not(.no-hover) .record-selected {
    background-color: var(--prim_color) !important;
}

.customers_tbl:not(.no-hover) .record-selected td {
    color: var(--text_color1);
}

.customers_tbl.one_alternate tr:nth-child(2n) {
    background-color: var(--table-row-bg);
}

.customers_tbl.one_alternate tr:nth-child(2n + 1) {
    background-color: var(--table-row-alt-bg);
}

table.two_alternate tr:nth-child(4n+2) {
    background-color: var(--table-row-bg);
}

table.two_alternate tr:nth-child(4n+3) {
    background-color: var(--table-row-bg);
}

table.two_alternate tr:nth-child(4n+4) {
    background-color: var(--table-row-alt-bg);
}

table.two_alternate tr:nth-child(4n+5) {
    background-color: var(--table-row-alt-bg);
}

table.one_alternate tr:nth-child(2n+2) {
    background-color: var(--table-row-bg);
}

table.one_alternate tr:nth-child(2n+3) {
    background-color: var(--table-row-alt-bg);
}

.pickr {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.7);
}

.ext-logo {
    max-width: 60%;
    min-height: 75px;
    margin-top: 15px;
}

.ext-logo img {
    min-width: 200px;
    max-width: 100%;
    max-height: 25vh;
    padding-bottom: 20px;
}

.form-box {
    margin: 8px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-box label {
    font-weight: bold;
    color: var(--text_color2);
}

.form-box:not(.show-label) label {
    display: none;
}

.form-box input[type="text"],
.form-box input[type="password"],
.form-box input[type="number"] {
    background: transparent;
    width: 100%;
    padding: 10px 3px;
    border-width: 0 0 2px 0;
    border-style: none none solid none;
    border-color: transparent transparent var(--prim_color) transparent;
}

.form-box input[type="number"] {
    appearance: -moz-textfield;
}

.form-box input[type="number"]::-webkit-outer-spin-button,
.form-box input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.form-box input[type="submit"] {
    border: none;
    padding: 5px 15px;
    background-color: var(--prim_color);
    color: var(--text_color1);
    width: 100%;
    font-weight: bold;
}

.form-box select {
    width: 100%;
}

.acct-selector {
    padding: 3px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.acct-selector select {
    margin: 0 0 0 10px;
}

.burger {
    display: block;
    cursor: pointer;
    padding: 0 20px;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text_color1);
    margin: 5px 0;
    opacity: 1;
    transition: transform opacity;
    transition-duration: var(--hover_timing);
}

.burger.nav-active div:first-child {
    transform: translateY(7px) rotate(45deg);
    transition: transform var(--hover_timing);
}

.burger.nav-active div:nth-child(2) {
    opacity: 0;
    transition: opacity var(--hover_timing);
}

.burger.nav-active div:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    transition: transform var(--hover_timing);
}

.burger-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-basis: 10%;
}

.feature-buttons {
    color: var(--text_color1);
}

.acct-dtls {
    margin: 10px;
    border: 2px solid var(--prim_color);
    border-radius: 20px;
    padding: 10px;
    width:
}

.acct-dtls h2 {
    text-decoration: underline;
}

.verify-user-buttons {
    justify-content: space-around;
}

.verify-user-buttons button {
    margin: 5px;
}

.loader {
    border: 6px solid #f3f3f3;
    /* Light grey */
    border-top: 6px solid var(--prim_color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.6s linear infinite;
}

.hide {
    display: none !important;
}

.hide-small {
    display: none;
}

.small-font {
    font-size: 12px;
}

.t-pad-10 {
    padding-top: 10px;
}

.align-left {
    text-align: left;
}

.mod-header .title {
    font-size: 18px;
}

.admin-logo {
    margin-top: calc(var(--mobile_nav_height) + 15px) !important;
}

.statement-period {
    margin: 0 10px;
}

.statement-period button {
    text-align: left;
    margin: 8px 0;
    border-radius: 15px;
    background: var(--prim_color);
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.flex-center {
    align-items: center !important;
}

.flex-around {
    justify-content: space-around !important;
}

.flex-between {
    justify-content: space-between !important;
}

.flex-evenly {
    justify-content: space-evenly !important;
}

.flex-start {
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.flex-wrap-normal {
    flex-wrap: wrap;
}

.flex-wrap-no {
    flex-wrap: nowrap;
}

.invoice-buttons {
    margin: 10px 0;
}

.invoice-buttons button {
    height: auto;
}

.invoice-buttons span {
    font-weight: normal;
}

.invc-button-container {
    max-width: 100%;
    min-width: 25%;
}

.bold-color-note {
    color: var(--notice-color);
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.pay-mthd {
    text-align: left;
}

.remove-pay-mthd {
    padding: 0 10px;
    text-align: center;
    font-weight: bolder;
}

.remove-pay-mthd:hover {
    color: rgb(255, 0, 0);
    cursor: pointer;
}

.edit-pay-mthd {
    padding: 0 10px;
    height: 16px;
    width: auto;
    text-align: center;
}

.edit-pay-mthd path {
    stroke: #8c8080;
}

.edit-pay-mthd:hover {
    cursor: pointer;
}

.edit-pay-mthd:hover path {
    stroke: #000000;
}

.file-dl-container:hover {
    filter: brightness(140%);
}

.file-dl-container svg path:first-child {
    fill: var(--prim_color) !important;
}

.file-dl-container svg path:nth-child(2) {
    fill: var(--sec_color) !important;
}

.file-dl-container svg path:nth-child(3) {
    fill: var(--prim_color) !important;
    filter: brightness(80%);
}

#statements {
    width: 100%;
}

#consum_rpt_dtl_modal p,
#consum_rpt_dtl_modal span {
    font-size: 12px;
}

#consum_rpt_dtl_modal input[type="button"],
#delete_mod button {
    margin: 8px 0;
}

#home-wrapper {
    width: 100%;
}

#verify-options-group {
    display: none;
}

#account-info .content {
    flex-direction: row;
    flex-wrap: wrap;
}

#top-nav-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}

#top-nav-logo img {
    min-width: 150px;
    /*need to set min width for SVG images*/
    max-height: 80px;
    max-width: 100%;
    margin: 15px 0;
}

#top-nav-buttons {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    background: var(--sec_color);
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: var(--mobile_nav_height);
    z-index: 2;
}

#top-nav-selectors {
    /*position: fixed;
  bottom:0;
  left:0;*/
    margin-top: calc(var(--mobile_nav_height) + 15px);
    display: flex;
    flex-direction: column;
    background: var(--prim_color);
    color: var(--text_color1);
    justify-content: space-around;
    width: 100%;
    border-bottom: 2px solid var(--sec_color);
}

#top-nav-selectors * {
    font-size: 12px;
}

#top-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

#side-nav-container {
    position: fixed;
    right: 0;
    top: var(--mobile_nav_height);
    width: 60%;
    background: var(--sec_color);
    transform: translateX(100%);
    transition: transform var(--hover_timing);
    height: calc(100vh - var(--mobile_nav_height));
    z-index: 2;
}

#side-nav-container.nav-active {
    transform: translateX(0%);
    transition: transform var(--hover_timing);
}

#side-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#side-nav-menu a {
    color: var(--text_color1);
    width: 100%;
}

#side-nav-menu span {
    font-weight: normal;
}

#footer-container {
    color: var(--text_color1);
}

#contact-us {
    text-decoration: underline;
    cursor: pointer;
}

#invc-disclaimer {
    font-size: 10px;
}

#bill-info-pay h1 {
    text-align: left;
    margin: 5px 0;
    text-decoration: underline;
}

#pay_form {
    display: flex;
    flex-direction: column;
}

#fuel-usage {
    width: 100%;
    font-size: 12px;
}

#pay-submit {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#footer-container * {
    font-size: 12px;
}

#copyright {
    font-size: 10px;
}

#account-billing .acct-dtls {
    margin-left: 0;
    margin-right: 0;
}

#account-delivery .acct-dtls {
    margin-left: 0;
    margin-right: 0;
}

#account-update .acct-dtls {
    margin-left: 0;
    margin-right: 0;
}

#invc_bal {
    font-weight: bold;
}

#disc_total {
    font-weight: bold;
}

#login-info :not(#curr-username).form-box label {
    flex-basis: 350px;
}

#open_invc_tbl {
    max-width: 100%;
}

#equipment {
    justify-content: flex-start;
}

#customer-search {
    justify-content: flex-start;
}

#color-pickers input[type="button"],
#font-picker input[type="button"] {
    height: auto;
}

#picker-table {
    margin-bottom: 45px;
}

#font-selector {
    margin-bottom: 45px;
}

#verify-buttons-1 {
    display: flex;
    flex-direction: column;
    width: 45%;
}

#verify-buttons-2 {
    display: flex;
    flex-direction: column;
    width: 45%;
}

#users-need-verify {
    max-height: 200px;
    overflow-y: auto;
}

#verify-results-div {
    width: 100%;
    overflow-x: auto;
}

#deliv_notes {
    resize: vertical;
    width: 100%;
}

#customer-info {
    width: 1100px;
}

#customer-info h2 {
    margin-bottom: 0;
}

#lower-cust-info h2 {
    text-decoration: underline;
}

#customer-info span,
#customer-info h2 {
    font-size: 12px;
}

#pass_mtch,
#user_mtch {
    color: red;
}

#table_space {
    max-width: 100%;
    overflow-x: auto;
}

#overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 5;
}

#overlay.active {
    opacity: 1;
    pointer-events: all;
}

#site-options {
    width: 100%;
}

#preview-container {
    min-height: 500px;
    width: 100%;
}

#preview-frame {
    width: 100%;
    height: 100%;
}

#dlv-notes {
    justify-content: center;
}

#dlv-notes p {
    color: var(--notice-color);
    font-weight: bold;
}

#acct_selector {
    width: 100%;
}

#acct-age td {
    padding: 1px 10px 1px 10px;
}

@media only screen and (min-width: 481px) {
    * {
        font-size: 16px;
    }

    .invc_tbl th,
    .invc_tbl td {
        font-size: 12px;
    }
}

@media only screen and (min-width: 769px) {
    #side-nav-container {
        width: 35%;
    }

    th.hide-small,
    td.hide-small {
        display: table-cell;
    }
}

@media only screen and (min-width: 1025px) {

    button:not(:disabled):hover,
    input[type="button"]:not(:disabled):hover {
        filter: brightness(var(--hover_brightness));
        transition: filter var(--hover_timing);
    }

    table.two_alternate tr:not(.no-hover):hover {
        background-color: var(--table-row-hover-bg);
    }

    table.two_alternate tr:not(.no-hover):hover td {
        color: var(--text_color1);
    }

    table.one_alternate tr:not(.no-hover):hover {
        background-color: var(--table-row-hover-bg);
    }

    table.one_alternate tr:not(.no-hover):hover td {
        color: var(--text_color1);
    }

    .db_table tr:not(.no-hover):hover {
        background-color: var(--table-row-hover-bg);
    }

    .db_table tr:not(.no-hover):hover td {
        color: var(--text_color1);
    }

    .invc_tbl tr:not(.no-hover):hover {
        background-color: var(--prim_color);
    }

    .invc_tbl tr:not(.no-hover):hover td {
        color: var(--text_color1);
    }

    a.home-nav {
        min-height: 125px;
    }

    .db_table th,
    .db_table td {
        font-size: 16px;
    }

    .customers_tbl tr:hover {
        cursor: pointer;
    }

    .invc_tbl th,
    .invc_tbl td {
        font-size: 16px;
    }

    .ext-logo {
        max-width: 300px;
    }

    .main {
        flex-direction: row;
    }

    .invc-dtls-cell {
        padding: 10px 0 !important;
    }

    .invc-dtls {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .invc-dtls a {
        width: 100%;
    }

    .invoice-buttons button {
        height: auto;
    }

    .flex-group.flex-row {
        flex-direction: row;
    }

    .flex-group.acct-dtls {
        width: 35%;
    }

    .form-box input[type="submit"]:hover {
        filter: brightness(var(--hover_brightness));
        transition: filter var(--hover_timing);
    }

    .form-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .form-box label {
        display: block !important;
        padding: 0 10px 0 0;
    }

    .form-box:not(.to-col) {
        /*flex-basis: 200px;*/
    }

    .form-box-horiz {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .form-box-horiz .form-box:first-child {
        flex-basis: 60%;
    }

    .form-box-horiz .form-box:nth-child(2) {
        flex-basis: 40%;
    }

    .form-box-horiz>.form-box:nth-child(2)>label {
        flex-basis: 20px !important;
    }

    .forms-container {
        margin: 0 auto;
        flex-direction: row;
        justify-content: space-around;
    }

    .burger-container {
        display: none;
    }

    .content {
        /*For content on exterior of portal (login, registration, etc)*/
        width: 600px;
    }

    .main .content {
        width: calc(100% - var(--side_nav_width_desktop));
        border-radius: 0;
    }

    .main .content:not(#pay-page, #verify-page, #statements-main) {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .to-row {
        flex-direction: row;
    }

    .to-col {
        flex-direction: column;
    }

    .customers_tbl th,
    .customers_tbl td {
        font-size: 16px;
    }

    .verify-user-buttons {
        justify-content: flex-start;
    }

    .cust-info-group {
        margin: 5px 15px;
        width: calc(max(350px, 45%));
    }

    .admin-logo {
        margin-top: auto !important;
    }

    .invc-button-container {
        max-width: 500px;
    }

    .fb-small {
        width: 300px;
    }

    #custom-options>div {
        width: 30%;
        margin: 0;
    }

    #verify-page {
        justify-content: flex-start;
    }

    #verify-options-group {
        display: flex;
        flex-basis: 50%;
    }

    #pay_form .form-box label {
        flex-basis: 60%;
    }

    #pay_form .form-box input,
    #pay_form .form-box span:nth-child(2) {
        flex-basis: 40%;
    }

    #account-billing .acct-dtls {
        margin: 10px;
    }

    #account-delivery .acct-dtls {
        margin: 10px;
    }

    #account-update .acct-dtls {
        margin: 10px;
    }

    #home-main .flex-group {
        width: 50%;
    }

    #top-nav-container {
        flex-direction: row;
        height: var(--top_nav_height);
    }

    #top-nav-container img {
        margin: 15px 0;
    }

    #top-nav-logo {
        width: var(--side_nav_width_desktop);
    }

    #top-nav-logo img {
        max-width: var(--side_nav_width_desktop);
        display: block;
        margin: auto;
    }

    #top-nav-selectors {
        margin: 0 10px;
        border: none;
        height: auto;
    }

    #top-nav-selectors * {
        font-size: 16px;
    }

    #top-nav-buttons {
        position: static;
        height: 100%;
        z-index: 0;
    }

    #top-nav-buttons button {
        height: var(--top_nav_height);
    }

    #top-options {
        position: static;
        background: transparent;
        flex-direction: row-reverse;
        width: auto;
        height: 100%;
    }

    #side-nav-container {
        position: static;
        transform: translateX(0%);
        width: var(--side_nav_width_desktop);
        height: auto;
        z-index: 0;
    }

    #side-nav-menu {
        align-items: flex-start;
    }

    #fuel-usage {
        font-size: 16px;
    }

    #pay-page .margins {
        max-width: 500px;
    }

    #account-billing {
        flex-direction: row;
        justify-content: space-around;
    }

    #account-update {
        flex-direction: row;
    }

    #account-delivery {
        flex-direction: row;
    }

    #color-pickers {
        flex-basis: 45%;
    }

    #font-picker {
        flex-basis: 45%;
    }

    #verify-buttons-1 {
        flex-direction: row;
        width: auto;
    }

    #verify-buttons-2 {
        flex-direction: row;
        width: auto;
    }

    #verify-results-div {
        margin-top: 40px;
    }

    #select-verify {
        width: 100%;
    }

    #select-verify>div {
        margin: 10px;
    }

    #select-verify>div:first-child {
        max-width: 65%;
    }

    #select-verify>div:nth-child(2) {
        max-width: 35%;
    }

    #consum_rpt_dtl_modal input[type="button"]:not(#cstm_report),
    #delete_mod button {
        margin: 8px;
    }

    #consum_rpt_dtl_modal p,
    #consum_rpt_dtl_modal span {
        font-size: 16px;
    }

    #customer-info span,
    #customer-info h2 {
        font-size: 16px;
    }

    #registration {
        flex-basis: 100%;
        margin: 0;
    }

    #registration .form-box label {
        flex-basis: var(--registration_marg);
        font-size: 16px;
        flex-grow: 0;
        flex-shrink: 0;
    }

    #statements {
        align-self: center;
        max-height: 700px;
    }

    #user-login {
        flex-basis: 30%;
    }

    #user-registration {
        flex-basis: 45%;
    }

    #user-registration .form-box :not(input):first-child {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 160px;
    }

    #user-registration .form-box-horiz>.form-box:first-child {
        flex-basis: 60%;
    }

    #user-registration .form-box-horiz>.form-box:nth-child(2) {
        flex-basis: 40%;
    }

    #preview-container {
        min-height: 800px;
        width: 60%;
    }

    #preview-frame {
        width: 100%;
        height: 100%;
    }

    #req_dlv_form .form-box label {
        flex-basis: 50%;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* dmr */
.info-notice {
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: var(--sec_color);
    color: var(--text_color1);
    border: 1px solid var(--prim_color);
    border-radius: 0.25rem;
    text-align: center;
}


.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.125rem;
}

.p-2 {
    padding: 0.25rem;
}

.p-3 {
    padding: 0.5rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.text-valid {
    color: green;
}

.text-invalid {
    color: red;
}