

html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    /*background-color: currentColor;*/
    -webkit-mask: url('../images/boi_logo.svg');
    mask: url('../images/boi_logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
    background-image: url('../images/boi_logo.svg');
    background-position: center;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

@media (max-width: 500px) {
    button.dashboard {
        margin-top: 10px;
        margin-bottom: 15px;
        font-size: 40px;
        box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
    }

    div.main-content {
        padding-top: 8px !important;
        scroll-padding-top: 0px;
    }

    label.main-content {
        font-size: 20px;
    }

    div {
        font-size: 20px;
    }
}

.cart-counter {
    font-size: 13.2px;
    position: relative;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 20.4px;
    font-weight: bolder;
    top: -10px;
    right: -13px;
    border-radius: 12px;
    background-color: #df007a;
    color: #e5e8e9;
    border: 2px solid;
    border-color: #fbc867;
}

.not-instock {
    background-color: lightcoral;
}

.instock {
    background-color: lightgreen;
}

.unknownstock {
    /*nothing*/
}

.ordering-component-price .dxbl-listbox-item-selected {
    background-color: rgba(223, 0, 122, 0.05) !important;
}

    .ordering-component-price .dxbl-listbox-item-selected::before {
        background-color: rgba(223, 0, 122, 0.05) !important;
    }

.custominventory-component-button {
    float: right;
    margin-left: 2px;
    margin-right: 2px;
}

.w-fill-available {
    width: -moz-available;
    width: -webkit-fill-available;
}

.quickaccess-container {
    width: fit-content;
}

.quickaccess-item {
    display: grid;
    text-align: justify;
    height: 8vw;
    width: 20vw;
    text-align: center;
    word-wrap: break-word;
    background-color: var(--bs-gray-200);
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

    .quickaccess-item:hover {
        cursor: pointer;
        color: white;
        background-color: #df007a;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    }

    .quickaccess-item h2 {
        font-size: 2vw;
        align-self: center;
    }

.quickaccess-container a {
    color: black;
    text-decoration: none;
}

.product-card {
    display: grid;
    min-width: 20%;
    max-width: 20%;
    justify-content: center;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    margin: 0.5vw;
}

    .product-card:hover {
        cursor: pointer;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    }

.product-card-item {
    vertical-align: central;
    align-self: flex-end;
}

    .product-card-item b {
        color: var(--bs-primary);
    }

.product-detailpopup {
    max-width: 60vw !important;
}

    .product-detailpopup h1 {
        color: var(--bs-primary);
        font-weight: bold;
    }

    .product-detailpopup h4, h5, h6 {
        font-weight: normal;
        font-style: normal;
    }

.clickable {
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

    .clickable:hover {
        cursor: pointer;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    }

.freight-limit-dropdown-body {
    position: fixed;
    z-index: 99 !important;
}

.freight-limit-dropdown-button {
}

.freight-limit-dropdown-container {
    position: absolute;
}

.custom-bsdropdown {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.hg-button {
    height: 40px !important;
}

.hg-button-bksp span {
    display: none;
}

.hg-button-bksp::after {
    content: url("../images/backspace.svg");
}

.hg-button-shift span {
    display: none;
}

.hg-button-shift::after {
    content: url("../images/shift.svg");
}

.hg-button-123 {
    max-width: 60px !important;
}

    .hg-button-123 span {
        display: none;
    }

    .hg-button-123::after {
        content: "123";
    }

.hg-button-ABC {
    max-width: 60px !important;
}

    .hg-button-ABC span {
        display: none;
    }

    .hg-button-ABC::after {
        content: "ABC";
        max-width: 50px;
    }

.obvious-button {
    background-color: var(--bs-primary) !important;
    color: white !important;
}

.custom-drop-zone {
    border: 2px dashed #6c757d;
    border-radius: 0.25rem;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

    .custom-drop-zone:hover {
        background-color: #e9ecef;
    }

    .custom-drop-zone .drop-file-icon {
        color: #6c757d;
    }

.dxbl-group-body {
    max-height: 400px;
    overflow-y: scroll;
}

.xaf-sidebar {
    overflow-y: scroll;
    display: block;
}
