﻿@charset "UTF-8";

:root {
    --mobile-cart1-bg-light-color: #f7f7f7;
    --mobile-cart1-bg-dark-color: #080808;
    --menu-dash-dark: #71706C;
    --menu-dash-light: #D9D9D9;
}

@font-face {
    font-family: 'Digital-7 Mono';
    src: url('../fonts/Digital-7Mono.woff2') format('woff2'), url('../font/Digital-7Mono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Digital-7';
    src: url('../fonts/Digital-7.woff2') format('woff2'), url('../font/Digital-7.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SFProText-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUIBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUIBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUIItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/IBMPlexSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBook.ttf') format('truetype'),;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'verdana';
    src: url('../fonts/verdana.ttf') format('truetype'),;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'verdana-bold';
    src: url('../fonts/verdana-bold.ttf') format('truetype'),;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'verdana-bold-italic';
    src: url('../fonts/verdana-bold-italic.ttf') format('truetype'),;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020
}

.sticky-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020
}

@media (min-width:576px) {
    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-sm-bottom {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width:768px) {
    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-md-bottom {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width:992px) {
    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-lg-bottom {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width:1200px) {
    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xl-bottom {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media (min-width:1400px) {
    .sticky-xxl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xxl-bottom {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    color: black;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.my-blurry-class {
    backdrop-filter: blur(3px);
}

.dynamic-height {
    height: 92.2dvh;
}

.items-side-height {
    height: 62dvh;
    max-height: 62dvh;
}

.items-transaction-height {
    height: 100dvh;
}


@media (min-width:576px) {
    .dynamic-height {
        height: 100dvh;
    }

    .items-side-height {
        height: 88dvh;
        max-height: 88dvh;
    }

    .items-transaction-height {
        height: 68dvh;
    }
}

@media (min-width:768px) {
    .dynamic-height {
        height: 95dvh;
        max-height: 95dvh;
    }

    .items-side-height {
        height: 80dvh;
        max-height: 80dvh;
    }

    .items-transaction-height {
        height: 84dvh;
    }
}

@media (min-width:992px) {
    .dynamic-height {
        height: 86dvh;
    }

    .items-side-height {
        height: 79dvh;
        max-height: 79dvh;
    }

    .items-transaction-height {
        height: 78dvh;
    }
}

@media (min-width:1200px) {
    .dynamic-height {
        max-height: 91dvh;
    }

    .items-side-height {
        max-height: 82dvh;
    }

    .items-transaction-height {
        height: 82dvh;
    }
}

@media (min-width:1400px) {
    .dynamic-height {
        max-height: 89dvh;
    }

    .items-side-height {
        max-height: 81dvh;
    }

    .items-transaction-height {
        height: 88dvh;
    }
}

#net-indicator {
    font-size: 24px;
    color: forestgreen;
}

.offline {
    animation: blink 1s steps(5, start) infinite;
    color: red;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}



@media (min-width:1200px) {
    body {
        /*https://github.com/MudBlazor/MudBlazor/issues/1692*/
        zoom: 0.9;
    }
}
