﻿:root {
    --g-root-font-size: 16px;
    --g-nav-toggle-transition: transform .33s linear;
    --g-color-red: #EF3E42;
    --g-color-red-dark: #ED1C2C;
    --g-color-white: #FFFFFF;
    --g-color-black: #000000;
    --g-color-black-gradient: #333333;
    --g-color-black-gradient-percent: 10%;
    --g-color-light-gray: lightgray;
    --g-bg-color-editor-input: palegoldenrod;
    --g-input-radius: .33rem;
    --g-max-page-width: 1280px;
    --g-button-padding: .33rem;
    --g-color-gridview-alt: #FFDDDD;
    --g-color-gridview-highlight: orange;
    --g-color-table-alt: #f9f9f9;
    --g-color-table-hover-alt: #f5f5f5;
    --g-color-success: #dff0d8;
    --g-color-success-secondary: #d6e9c6;
    --g-color-success-hover: #d0e9c6;
    --g-color-success-hover-secondary: #c9e2b3;
    --g-color-danger: #f2dede;
    --g-color-danger-secondary: #eed3d7;
    --g-color-danger-hover: #ebcccc;
    --g-color-danger-hover-secondary: #e6c1c7;
    --g-color-warning: #fcf8e3;
    --g-color-warning-secondary: #fbeed5;
    --g-color-warning-hover: #faf2cc;
    --g-color-warning-hover-secondary: #f8e5be;
}productIconBlock-container

html * {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-size: var(--g-root-font-size);
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    background-image: url("/Images/Background-Graphic-Pattern.png");
    background-size: 100%;
    min-height: 99vh;
}

h1 {
    font-size:1.5rem;
}

a {
    height:100%;
    text-decoration:none;
    cursor:pointer;
}

ul, ol {
    list-style-type: none;
}

img {
    max-width: 100%;
}

article {
    width:100%;
}

strong {
    font-weight: 700;
}

fieldset {
    padding:0.33rem;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="phone"],
textarea,
select {
    border-radius:var(--g-input-radius);
    padding:0.16rem 0.32rem;
}


button,
input[type="submit"],
input[type="button"] {
    --button-radius:var(--g-input-radius, .33rem);
    border-radius:var(--button-radius);
    padding:var(--g-button-padding);
    background-color:var(--g-color-red);
    color:var(--g-color-white);
    border:2px solid rgba(0,0,0,.25);
    transition:all .4s ease-in-out;
    font-weight:700;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--g-color-white);
    color: var(--g-color-black);
    border: 2px solid rgba(0,0,0,.25);
}

    body > form {
        width:100vw;
        max-width:100%;
        height:100%;
    }

p {
    padding:0.66rem 0.33rem;
}

/*Utility Classes*/


.red {
    color:var(--g-color-red);
}

.page-wrap {
    width: 100vw;
    max-width: 100%;
    position: relative;
}

.overflowScroll {
    overflow:auto;
}

.toggler {
    width: 24px;
    height: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.toggler span {
    --background-color:var(--g-color-white);
    width: 24px;
    height: 3px;
    background-color: var(--background-color);
    border-radius: 1px;
}

    .toggler span:first-of-type {
        height:4px;
    }

input[type="checkbox"].toggler {
    display: none;
}


.gridView,
.detailView,
.formView {
    font-family: Verdana;
}

.gridView,
.gridView a {
    font-size:.9rem;
}

div.gridView {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:.5rem 0rem;
    flex-wrap:wrap;
}

    div.gridView + div {
        overflow-x:auto;
    }

    div.gridView .floatLeft {
        text-align:center;
        width:100%!important;
    }

div.gridView .floatLeft input[type="text"],
div.gridView .floatLeft select,
div.gridView .floatLeft input[type="submit"]{
    min-width:6.5rem;
    width:100%!important;
    margin-bottom:0.5rem;
}

        div.gridView .floatLeft input[type="submit"] {
            margin-top:1rem;
        }



table.gridView,
table.detailView,
table.formView {
    width:100%;
}

.gridView_header,
.detailView_header {
    background-color: var(--g-color-red-dark);
    color: var(--g-color-white);
}

    table.gridView .gridView_header:not(:first-of-type):last-of-type table{
        width:auto!important;
        margin-left:auto;
    }

table.gridView .gridView_header:not(:first-of-type):last-of-type table td {
    width: 2rem;
    text-align:left;
}

        table.gridView .gridView_header:not(:first-of-type):last-of-type table td:hover {
            background-color:var(--g-color-light-gray);
            color:var(--g-color-red);
        }

    table.gridView .gridView_header:not(:first-of-type):last-of-type table td:hover a {
        color: var(--g-color-red);
    }

        table.gridView .gridView_header:not(:first-of-type):last-of-type table td span {
            width:2.5rem;
            display:inline-block;
            padding-top:0rem;
            text-align:center;
        }

   section.containerMain > div .gridView_header a {
        color:var(--g-color-white);
        font-weight:700;
        width:100%;
        margin:0;
        padding:1rem;
    }

section.containerMain > div table.gridView td a {
    width:100%;
    text-align:center;
    height:1rem;
    display:inline-block;
    padding-top:0rem;
}

tr.gridView_row {
    background-color: var(--g-color-white);
    color: var(--g-color-black);
    vertical-align: top;
}

tr.gridView_row_alt,
tr.detailView_row_alt {
    background-color: var(--g-color-gridview-alt);
    color: var(--g-color-black);
    vertical-align: top;
}

    tr.gridView_row td:not([align="right"]),
    tr.gridView_row_alt td:not([align="right"]),
    tr.gridView_row_selected td:not([align="right"]){
        text-align:center;
    }

tr.gridView_row_selected {
    background-color: var(--g-color-gridview-highlight);
    color: var(--g-color-black);
    vertical-align: top;
}

tr.gridView_row a, tr.gridView_row_alt a, tr.gridView_row_selected a {
    color: var(--g-color-red-dark);
}


table.gridView td,
table.detailView td {
    line-height: 2rem;
    vertical-align: middle;
    padding: .1rem;
}

table.gridView th,
table.detailView th {
    margin:0;
    padding:0;
}

table.detailView td.detailView_field_header {
    background-color: var(--g-color-gridview-alt);
}

table.formView {
    width:800px!important;
}

table.formView .formViewLabel {
    color:var(--g-color-red-dark);
    font-weight: bold;
}

table.formView .formViewInvoiceFooterLeft {
    text-align: right;
    vertical-align: top;
    padding-right:1rem;
}

    table.formView .formViewInvoiceFooterRight {
        width: 8rem;
        text-align: right;
        vertical-align: top;
        padding-right:1rem;
    }


    table.table td,
    table.table th {
        border-top:1px solid var(--g-color-light-gray);
        padding:.5rem;
    }

    table.table th,
    table.table tr:nth-child(odd) td{
        background-color: var(--g-color-table-alt);
    }

    table.table td {
        line-height:2rem;
    }

table.table-bordered,
table.table-bordered th,
table.table-bordered td{
    border: 1px solid var(--g-color-light-gray);
}

table.table-striped tbody tr:nth-child(odd) td {
    background-color:var(--g-color-table-alt);
}

table.table-hover td,
table.table-hover th {
    background-color:var(--g-color-table-hover-alt);
}

table.table tr.success th,
table.table tr.success td {
    background-color:var(--g-color-success);
    border-color:var(--g-color-success-secondary);
}

table.table-hover tr.success th,
table.table-hover tr.success td {
    background-color: var(--g-color-success-hover);
    border-color: var(--g-color-success-hover-secondary);
}

table.table tr.warning th,
table.table tr.warning td {
    background-color: var(--g-color-warning);
    border-color: var(--g-color-warning-secondary);
}

table.table-hover tr.warning th,
table.table-hover tr.warning td {
    background-color: var(--g-color-warning-secondary);
    border-color: var(--g-color-warning-hover-secondary);
}

table.table tr.danger th,
table.table tr.danger td {
    background-color: var(--g-color-danger);
    border-color: var(--g-color-danger-secondary);
}

table.table-hover tr.danger th,
table.table-hover tr.danger td {
    background-color: var(--g-color-danger-secondary);
    border-color: var(--g-color-danger-hover-secondary);
}

section.containerMain > div.pnlAssumeCustomer {
   max-width:70vw;
   margin:auto;
   height:auto!important;
   width:auto!important;
}

header {
    background-color: var(--g-color-black);
    background: -webkit-linear-gradient(top, var(--g-color-black), var(--g-color-black) var(--g-color-black-gradient-percent), var(--g-color-black-gradient));
    background: -o-linear-gradient(top, var(--g-color-black), var(--g-color-black) var(--g-color-black-gradient-percent), var(--g-color-black-gradient));
    background: -moz-linear-gradient(top, var(--g-color-black), var(--g-color-black) var(--g-color-black-gradient-percent), var(--g-color-black-gradient));
    background: linear-gradient(to top, var(--g-color-black), var(--g-color-black) var(--g-color-black-gradient-percent), var(--g-color-black-gradient));
    color: var(--g-color-black);
    height:10.5rem;
    z-index:2;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    max-width:100%;
}

    header > .main-container {
        position: relative;
        display: grid;
        grid-template-areas:
            "toggle logo phone"
            "tag    tag  tag"
            "search search search";
        padding: 0.33rem;
        align-items: center;
        grid-row-gap: .5rem;
        grid-template-columns: min-content auto auto;
        max-width:var(--g-max-page-width);
        margin:auto;
    }

        header .main-container > div {
            grid-area:pst;
            display:contents;
        }

        header .main-container > .clear {
            display:none;
        }

.logo {
    grid-area:logo;
    width:min(56vw, 18rem);
    display:flex;
    transition:margin .33s linear;
}


header .main-container .madeinusa-header-container {
    grid-area:usa;
}

header .phoneNumber {
    grid-area: phone;
    text-align: right;
    align-self: flex-start;
    color:var(--g-color-white);
    font-weight:700;
    font-size:1.125rem;
    min-width:8rem;
}

header .search {
    grid-area: search;
    display: flex;
    align-items:center;
    padding:0.25rem 0.5rem;
}

header .tagLine {
    grid-area: tag;
    color: var(--g-color-white);
    font-weight: 700;
    text-align: center;
}

.tagLineAlt {
    color:var(--g-color-red-dark);
}
/*Main Nav*/
label.nav-toggle {
    grid-area: toggle;
    margin: 0rem 0.5rem 1.2rem 0.25rem;
}

.containerMainNav {
    transform: translateY(calc(-100% + 0.32rem));
    top: 10.5rem;
    position: fixed;
    left: 0;
    width:100vw;
    max-width:100%;
    transition: var(--g-nav-toggle-transition);
    background-color: var(--g-color-black);
    border-bottom: .33rem solid var(--g-color-red);
    z-index:1;
    max-height:calc(100vh - 10.5rem);
    overflow-y:auto;
}

    .containerMainNav > nav.main {
        max-width:var(--g-max-page-width);
        margin:auto;
    }

input[type="checkbox"].nav-toggle:checked + .containerMainNav {
   transform:translateY(0);
}

input.search {
    width: 100%;
    border: 1px solid var(--g-color-light-gray);
    border-radius: .33rem;
    height:2rem;
}

.searchIcon {
    vertical-align: middle;
    border: 0px;
    width: 1.75rem;
    height:2rem;
    margin-left: 0.8rem;
}

nav.main ul li a{
  display:block;
  color:var(--g-color-white);
  padding:.6rem .8rem;
  font-weight:700;
  font-size:1.2rem;
}

    nav.main ul li a:hover {
        color:var(--g-color-red);
        background-color:var(--g-color-light-gray);
    }




.page-wrap > .main-container {
    margin-top:10.88rem;
    min-height:60vh;
}



    nav.homepage,
    nav.homepage ul,
    nav.homepage ul li {
        width: 93%;
    }

        nav.homepage ul li {
            border-top:1px solid var(--g-color-white);
        }


            nav.homepage ul li a {
                display: inline-block;
                width: 100%;
                color: var(--g-color-white);
                padding: .9rem 1rem;
                font-weight: 700;
                text-align: center;
                font-size: 1.2rem;
                background-color: var(--g-color-red-dark);
            }

section.containerMain {
    margin-top:2rem;
    width:96%;
}

section.containerMain > div {
    padding:0rem;
}

section.containerMain > div p {
    padding: 0.66rem 0.33rem;
    font-size:1.1rem;
}

section.containerMain > div a {
    display:inline-block;
    width:100%;
    height:100%;
}

section.containerMain > div p a {
    width:auto;
}

    section.containerMain > div a img {
        width:100%;
    }


article#mainContent {
    padding:1rem;
    font-size:1.1rem;
    max-width:var(--g-max-page-width);
    margin:auto;
}

    article#mainContent ul {
        list-style-type:disc;
        padding:.25rem 0rem .25rem 1.25rem;
    }

    @media (max-width:800px){
        /*sets the blogs to be in one column on mobile - RW 8/14/2024 */
    article#mainContent ul {
        list-style-type: disc;
        padding: .25rem 0rem .25rem 1.25rem;
        column-count: 1;
    }

}

.HomePageList {
    list-style-type: disc;
    padding: .25rem 0rem .25rem 1.25rem;
    column-count: 3;
}

@media (max-width:800px) {
    .HomePageList {
        list-style-type: disc;
        padding: .25rem 0rem .25rem 1.25rem;
        column-count: 1;
    }
}


    article#mainContent ol {
        list-style-type: disc;
        padding: .25rem 0rem .25rem 1.25rem;
    }

        article#mainContent ul li {
            margin:.5rem 0rem;
        }

            article#mainContent ul li a,
            article#mainContent ol li a {
                text-decoration:underline;
            }

        article#mainContent p a {
            text-decoration:underline;
            font-weight:500;
        }

    article#mainContent h1 {
        font-size:1.75rem;
        margin:0em 0;
    }

    article#mainContent strong {
        font-size: 1.25rem;
    }

        article#mainContent > h1:nth-child(5) {
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
            margin:2rem 0;
        }

    article#mainContent h3 {
        margin-top: 1.25em;
        margin-bottom: -.75em;
    }


.homepage-image {
    width:100%;
    margin:1rem 0rem;
}

.sliderContainer {
    margin:auto;
}

footer {
    width:100vw;
    max-width:100%;
}

    footer > .main-container {
        background-color: var(--g-color-black);
        border-top: .33rem solid var(--g-color-red);
        padding-bottom: 3rem;
    }

        footer > .main-container .footer-nav-container {
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            padding: 1rem;
        }

        footer > .main-container nav {
            margin-bottom:2rem;
            min-width:12rem;
        }

        footer > .main-container nav li {
            color:var(--g-color-red);
            padding:.25rem;
        }

            footer > .main-container nav ul > li:first-child {
                text-align:center;
                font-weight:700;
                padding:1rem;
                font-size:1.25rem;
            }

        footer > .main-container nav a {
            padding:.15rem .33rem .15rem .33rem;
            color:var(--g-color-white);
            font-weight:400;
            font-size:1.1rem;
        }

            footer > .main-container nav a:hover {
                color: var(--g-color-black);
                background-color: var(--g-color-light-gray);
            }

    footer .footerCenter {
        color:var(--g-color-white);
        text-align:center;
        padding:2rem;
        font-size:.95rem;
    }

        footer .footerCenter > a {
            display:block;
            padding:0.1rem;
        }

        footer .footerCenter input[type="image"] {
            margin:1rem 0rem;
            width:min(60vw, 20rem);
        }


.productSearch {
    position:sticky;
    top:10.8rem;
    left:0;
    padding:0.33rem;
    background-color:var(--g-color-white);
    overflow:hidden;
    max-width:var(--g-max-page-width);
    margin:auto;

}

    .productSearch fieldset {
        min-height:4.1rem;
        border-radius:.33rem;
        display:flex;
        flex-direction:column-reverse;
    }

        .productSearch fieldset > div:last-child {
            min-height:2.5rem;
        }

    .productSearch select {
        width:100%;
    }


.productIconBlock-container {
    padding:1rem;
    max-width:calc(6rem + var(--g-max-page-width));
    margin:auto;
}

.productIconBlock-inner {
    display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
    margin-top:2rem;
    gap:1.5rem;
}

.product-options-toggle {
    position:absolute;
    right:1.15rem;
    top:2rem;
}

.product-options-toggle span {
    --background-color:var(--g-color-black);
}

input[type="checkbox"].product-options-toggle + div {
    opacity:0;
    max-height:0;
    transition:all .33s linear;
    padding:0rem 1rem;
    margin-top:0rem;
}

input[type="checkbox"].product-options-toggle:checked + div {
    opacity: 1;
    max-height: 100vh;
    border-top: 1px solid var(--g-color-light-gray);
/*    margin-top: 1rem;*/
}

.searchDropdown {
    padding:0.5rem;
/*    margin-top:.33rem;*/
}



.productIconBlock {
    min-width:13.43rem;
    max-width:18.43rem;
    padding:1rem;
    height:24rem;
}

    .productIconBlock:hover {
        -webkit-box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
        -moz-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    }

    .productIconBlock p {
        color:var(--g-color-black);
        font-size:1rem;
    }

.productIconThumb {
    display:flex;
    justify-content:center;
    min-height:13rem;
}

    .productIconThumb img {
        max-height:10.5rem;
    }

.breadCrumbs {
    display:flex;
    flex-wrap:wrap;
    min-height:1.8rem;
}

.breadCrumb {
    font-size:.85rem;
    border-radius:.16rem;
    padding:.22rem .33rem;
    margin-right:0.5rem;
    height:1.85rem;
    box-shadow:-5px 5px 5px rgba(0,0,0,.2);
    display:flex;
    align-items:center;
}

    .breadCrumb > input[type="submit"] {
        background-color:var(--g-color-red);
    }



article.product p {
    display:flex;
    flex-direction:column;
    align-items:center;
}

article.product img {
    height:auto!important;
    width:100%!important;
    max-width:22.25rem;
}


article.media {
    color:var(--g-color-white);
    background-color:var(--g-color-red-dark);
    text-align:center;
}

    article.media a {
        color:var(--g-color-white);
        text-decoration:underline;
    }


section.containerMain > div.careers {
    max-width: 100%;
    margin: auto;
}


img.careers {
    width:min(76.5rem, 100vw);
}


.careersBottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 10px solid var(--g-color-red-dark);
    row-gap: 1.5rem;
}


a.career-thumbs:hover img:first-child {
    display:none;
}

a.career-thumbs img:last-child {
    display:none;
}

a.career-thumbs:hover img:last-child {
    display:block;
}

nav.careersFooter li {
    text-align:center;
}

section.containerMain > div.login-form:first-child {
    margin-bottom:0;

}

.login-form {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:2rem;
    margin:auto;
}

    .login-form > article#mainContent{
        padding:0;
        width:auto;
        margin-top:2rem;
    }

    .login-form td {
        padding-bottom:1rem;
    }

        .login-form td a {
            display:inline-block;
            width:100%;
            text-align:right;
        }

section.containerMain > div.login-form {
    display:flex;
}

    section.containerMain > div.login-form p {
       text-align:center;
       padding-left:0rem;
       max-width:31rem;
    }

.login-form:nth-child(2):before {
/*    content:"";*/
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:100vw;
    max-width:calc(100% - 2px);
    height:25rem;
    border-radius:var(--g-input-radius);
    z-index:-1;
}


.editorPanel + .page-wrap {
    position:relative;
}


.editorPanel + .page-wrap > header {
    position:relative;
    top:0;
}

    .editorPanel + .page-wrap > div.containerMainNav {
        transform:translateY(0);
        position: relative;
        top: 0;
        transition: none;
    }

    .editorPanel + .page-wrap input[type="checkbox"].nav-toggle > div.containerMainNav {
        z-index: 1;
    }



    .editorPanel + .page-wrap > .main-container {
        margin-top: 2.975rem;
    }

.editorPanel {
    box-sizing:border-box;
    background-color:var(--g-color-white);
    z-index:1;
}

    .editorPanel .editorPanelInner {
        display:grid;
        grid-template-columns:1fr 1fr 1fr 1fr;
        padding:1rem;
    }

    .editorPanel input:not([type="button"]),
    .editorPanel select,
    .editorPanel textarea{
        background-color:var(--g-bg-color-editor-input);
        width:100%;
    }

    .editorPanel .editorRow,
    .editorPanel .editorLeft {
        width:100%;
        grid-column:span 4;
    }


    .editorPanel input[type="button"] {
        grid-column:span 4;
        width:100%;
        margin:0.5rem 0rem;
    }

    .editorPanel + .page-wrap .productSearch {
        top:0;
    }


.vip {
    padding:0rem;
}
.vip ul {
    display:flex;
    flex-wrap:wrap;
    width:100%;
    row-gap:1rem;
    justify-content:center;
}

    .vip ul li {
        background-color:var(--g-color-red-dark);
        padding:.5rem 1.25rem;
        border-radius:0.95rem;
        margin-right:0.5rem;
        width:42%;
    }

/*        .vip ul li:last-of-type {
            margin:0 0 0 auto;
        }*/

        .vip ul li a {
            color:var(--g-color-white);
            display:inline-block;
            width:100%;
            height:100%;
            text-align:center;
        }

.vip ~ table td {
    padding-bottom:.33rem;
}

    .vip ~ table tr:last-of-type td {
        padding-right: 1rem;
    }

    .vip ~ table tr:last-of-type td input[type="submit"] {
        padding-right: 1rem;
        width:70%;
    }

article.product {
    display:flex;
    justify-content:center;
}


section.containerMain > div {
    display: block;
    width: 100%;
    max-width: 99vw;
    margin-bottom: 3rem;
    overflow-x: auto;
}


@media (min-width:720px) {
    header .main-container {
        grid-template-areas:
            "toggle logo   phone"
            "toggle logo   tag"
            "search search search";
        grid-template-columns:min-content auto auto min-content;
    }

    .login-form:nth-child(2):before {
 /*       content: "";*/
        box-shadow: 0 0 1rem rgba(0,0,0,.2);
        max-width:44rem;
    }

    header .tagLine {
        font-size:1.25rem;
    }

    .editorPanel .editorLeft {
        display: inline-block;
        grid-column: span 2;
        padding-right:2.5%;
    }

        .editorPanel .editorLeft + .editorLeft {
            padding-left: 2.5%;
            padding-right:0;
        }

    .editorPanel input[type="button"] {
        grid-column: span 2;
        width: 97.5%;
        margin: 0.5rem 0rem;
    }

        .editorPanel input[type="button"]:first-of-type {
            grid-column:1/3;
        }

        .editorPanel input[type="button"]:last-of-type {
            grid-column:3/5;
            margin-left:2.5%;
        }

    section.containerMain > div {
        width: 100%;
        max-width: 100%;
    }

    .vip ul li {
        width:30%;
    }

}

@media (min-width:899px) {
    section.containerMain > .vip ~ div {
        max-width: 28vw;
        overflow-x: auto;
    }
}

@media (min-width:980px) {
    .logo {
        margin-left:2rem;
    }


    .product-options-toggle {
        display:none;
    }
    
    .productSearch fieldset > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .productSearch fieldset > div.breadCrumbs {
            justify-content: flex-start;
        }

    input[type="checkbox"].product-options-toggle ~ div {
        opacity: 1;
        max-height: 100vh;
        transition:none;
    }

    nav.homepage {
        background-color:transparent;
    }

        nav.homepage .nav-container {
            display: block;
            justify-content:flex-start;
            max-width:var(--g-max-page-width);
            margin:auto;
            align-content:flex-start;
        }

    nav.homepage ul {
        display:flex;
        justify-content:center;
    }

        nav.homepage ul li {
            max-width:12rem;
            border-top:none;
        }

    nav.homepage ul li a {
        font-size:.95rem;
        max-width:96%;
        margin-left:4%;
    }

    article#mainContent > h1:nth-child(5) {
        flex-direction:row;
        justify-content:space-between;
        width:33rem;
    }

    section.containerMain > .vip ~ div {
        display:block;
        width:100%;
        max-width:62vw;
        margin-bottom:3rem;
        overflow-x:auto;
    }

    section.containerMain > div a {
        width:32%;
        margin-bottom:2rem;
    }

        section.containerMain > div p {
            padding-left:15rem;
            padding-top:1rem;
        }

    .homepage-image {
        width:auto;
    }

    .productSearch fieldset > div:last-child {
        min-height: 0rem;
    }

    .careersBottom {
        justify-content: space-around;
    }

    img.careers {
        max-width: 76.5rem;
        width:100%;
    }


    section.containerMain > div.careers li a {
        width:100%;
    }

    .login-form {
        max-width:30rem;
    }

    .vip ~ table tr:last-of-type td input[type="submit"] {
        padding-right: 1rem;
        width: 13rem;
    }



}


@media(min-width:1060px) {
    section.containerMain > .vip ~ div {
        max-width: 65vw;
        overflow-x: auto;
    }
}

@media(min-width:1130px) {
    section.containerMain > div {
        width: 100%;
        max-width: var(--g-max-page-width);
        margin-left:auto;
        margin-right:auto;
    }
    .page-wrap > .main-container {
        margin-top: 11.88rem;
    }

    .page-wrap {
       /* max-width:86vw;*/
        margin:auto;
    }

    header {
        height:9rem;
        padding:0 7vw;
    }

    .logo {
        margin-left: -4.5rem; /*this moves the logo in the top left */
    }


    label.nav-toggle {
        display:none;
    }

    header .main-container {
        position: relative;
        display: grid;
        grid-template-areas:
            "logo logo .   phone"
            "logo logo .   search"
            "logo logo tag tag";
        padding: 0.33rem;
        align-items: center;
        grid-row-gap: .5rem;
    }

    header .logo {
        max-width:27rem;
        width:100%;
    }

    header .phoneNumber {
        font-size: 1.9rem;
    }

    header .search {
        max-width:16em;
        margin-left:auto;
    }

    header .tagLine {
        font-size:1.7rem;
        text-align: right;
    }

    .containerMainNav {
        top:9rem;
        transform:translateY(0);
    }

        .containerMainNav .nav-container ul {
            display:flex;
            justify-content:space-between;
            align-items:center;
            max-width:86vw;
            margin:auto;
        }

    .productSearch {
        top: 11.8rem;
    }

    footer .footerCenter {
        padding:0 7vw;
    }

    section.containerMain > div.careers {
        max-width: 76.5%;
        margin: auto;
    }

    .editorPanel + .page-wrap > div.containerMainNav {
        z-index: 1;
    }

    .vip ul {
        flex-wrap:nowrap;
     }

    .vip ul li {
        width: auto;
    }

    .vip ul li:last-of-type {
        margin: 0 0 0 auto;
    }

    section.containerMain > .vip ~ div {
        max-width: 100%;
    }
}


@media (min-width:1280px) {
    div.gridView .floatLeft {
        width: auto !important;
        max-width:9rem;
    }

        div.gridView .floatLeft input[type="text"],
        div.gridView .floatLeft select,
        div.gridView .floatLeft input[type="submit"] {
            min-width: 8.5rem;
            width: auto;
            margin-bottom: 0rem;
        }

        div.gridView .floatLeft input[type="submit"] {
            margin-top: 0;
        }

    .vip {
        padding: 0rem 1.25rem;
    }
}

@media (min-width:1900px) {
    :root {
        --g-max-page-width:1620px;
    }
}

