@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.bundle.scp.css';

/* _content/BlazorAppH/Pages/Bookorder_src.razor.rz.scp.css */
.status5[b-racvlqfcnt] {
    background-color: forestgreen;
    color: aliceblue;
    /*padding:5px,5px,5px,5px;*/

    padding-left: 5px;
    padding-right: 5px;
}
.localtextorange[b-racvlqfcnt] {
    background-color: #ff6a00;
    color: #ffffff;
    font-size:12px;
}
/* _content/BlazorAppH/Pages/Bookorder_view.razor.rz.scp.css */
.status5[b-eac6x5nic5] {
    background-color: forestgreen;
    color: aliceblue;
    /*padding:5px,5px,5px,5px;*/

    padding-left: 5px;
    padding-right: 5px;
}
/* _content/BlazorAppH/Pages/Buttontestcss.razor.rz.scp.css */

/*1. Classic Solid Button*/

.button-solid[b-w86mmydgcz] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .button-solid:hover[b-w86mmydgcz] {
        background-color: #0056b3;
    }


/*2. Outline Button*/

.button-outline[b-w86mmydgcz] {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .button-outline:hover[b-w86mmydgcz] {
        background-color: #007bff;
        color: #fff;
    }

/*3. Gradient Button*/
.button-gradient[b-w86mmydgcz] {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

    .button-gradient:hover[b-w86mmydgcz] {
        opacity: 0.8;
    }

/*4. Ghost Button*/

.button-ghost[b-w86mmydgcz] {
    background-color: transparent;
    color: #333;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

    .button-ghost:hover[b-w86mmydgcz] {
        border-color: #333;
        color: #000;
    }

/*5. Neumorphic Button*/
.button-neumorphic[b-w86mmydgcz] {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 8px 8px 15px #bebebe, -8px -8px 15px #ffffff;
    transition: box-shadow 0.3s ease;
}

    .button-neumorphic:hover[b-w86mmydgcz] {
        box-shadow: inset 8px 8px 15px #bebebe, inset -8px -8px 15px #ffffff;
    }


/*6. Pill Button*/
.button-pill[b-w86mmydgcz] {
    background-color: #6c63ff;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .button-pill:hover[b-w86mmydgcz] {
        transform: scale(1.05);
    }

/*7. Icon Button*/

.button-icon[b-w86mmydgcz] {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-icon:hover[b-w86mmydgcz] {
    background-color: #388e3c;
}

/*8. Glassmorphic Button*/
.button-glass[b-w86mmydgcz] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background 0.3s ease;
}

.button-glass:hover[b-w86mmydgcz] {
    background: rgba(255, 255, 255, 0.3);
}

/*9. Elevated Button*/
.button-elevated[b-w86mmydgcz] {
    background-color: #f7df1e;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

    .button-elevated:hover[b-w86mmydgcz] {
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    }

/*10. Animated Button*/
./*button-animated {
    background-color: #f50057;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .button-animated::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transition: left 0.4s ease;
    }

    .button-animated:hover::before {
        left: 0;
    }
*/


    /* Base animated button style */
    .button-animated[b-w86mmydgcz] {
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .button-animated[b-w86mmydgcz]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            z-index: 0;
            transition: left 0.4s ease;
        }

        .button-animated:hover[b-w86mmydgcz]::before {
            left: 0;
        }

    /* Save Button - Green Animation */
    .button-save[b-w86mmydgcz] {
        background-color: #28a745;
    }

        .button-save[b-w86mmydgcz]::before {
            background: linear-gradient(90deg, #218838, #28a745, #34d058);
        }

    /* Delete Button - Red Animation */
    .button-delete[b-w86mmydgcz] {
        background-color: #dc3545;
    }

        .button-delete[b-w86mmydgcz]::before {
            background: linear-gradient(90deg, #c82333, #dc3545, #e4606d);
        }

    /* Cancel Button - Gray Animation */
    .button-cancel[b-w86mmydgcz] {
        background-color: #6c757d;
    }

        .button-cancel[b-w86mmydgcz]::before {
            background: linear-gradient(90deg, #5a6268, #6c757d, #858d94);
        }

    /* Edit Button - Blue Animation */
    .button-edit[b-w86mmydgcz] {
        background-color: #007bff;
    }

        .button-edit[b-w86mmydgcz]::before {
            background: linear-gradient(90deg, #0056b3, #007bff, #339af0);
        }

    /* Submit Button - Yellow Animation */
    .button-submit[b-w86mmydgcz] {
        background-color: #ffc107;
    }

        .button-submit[b-w86mmydgcz]::before {
            background: linear-gradient(90deg, #e0a800, #ffc107, #ffd54f);
        }

    /* Adjust z-index to display text above the animation */
    .button-animated[b-w86mmydgcz] {
        color: white;
        position: relative;
        z-index: 1;
    }

        .button-animated[b-w86mmydgcz]::before {
            z-index: 0;
        }
/* _content/BlazorAppH/Pages/Customer_src.razor.rz.scp.css */
.status5[b-782ebe11y9] {
    background-color: forestgreen;
    color: aliceblue;
    /*padding:5px,5px,5px,5px;*/

    padding-left: 5px;
    padding-right: 5px;
}
/* _content/BlazorAppH/Pages/Item_src.razor.rz.scp.css */
.status5[b-akt40y6dtt] {
    background-color: forestgreen;
    color: aliceblue;
    /*padding:5px,5px,5px,5px;*/

    padding-left: 5px;
    padding-right: 5px;
}
/* _content/BlazorAppH/Pages/Vendor_src.razor.rz.scp.css */
.status5[b-65op490j7r] {
    background-color: forestgreen;
    color: aliceblue;
    /*padding:5px,5px,5px,5px;*/

    padding-left: 5px;
    padding-right: 5px;
}
/* _content/BlazorAppH/Shared/BookorderDaySummaryPrompt.razor.rz.scp.css */
.localaddrecord[b-2e8m3r354v] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-2e8m3r354v] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-2e8m3r354v] {
    width: 800px;
    max-width: calc(100% - 50px);
}
.localtable th[b-2e8m3r354v] {
    white-space: nowrap;
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-2e8m3r354v] {
        width: 100%;
        max-width: 100%;
    }
    .localsectionA[b-2e8m3r354v] {
        overflow-x: auto;
    }
}


.container23[b-2e8m3r354v] {
/*    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));*/
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-2e8m3r354v] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-2e8m3r354v] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-2e8m3r354v] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/BookorderPrompt.razor.rz.scp.css */
.localaddrecord[b-t0pmk0xdgu] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-t0pmk0xdgu] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-t0pmk0xdgu] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-t0pmk0xdgu] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-t0pmk0xdgu] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-t0pmk0xdgu] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-t0pmk0xdgu] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-t0pmk0xdgu] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/BookorderSummaryPrompt.razor.rz.scp.css */
.localaddrecord[b-pp5en16629] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-pp5en16629] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-pp5en16629] {
    width: 800px;
    max-width: calc(100% - 50px);
}
.localtable th[b-pp5en16629] {
    white-space: nowrap;
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-pp5en16629] {
        width: 100%;
        max-width: 100%;
    }
    .localsectionA[b-pp5en16629] {
        overflow-x: auto;
    }
}


.container23[b-pp5en16629] {
/*    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));*/
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-pp5en16629] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-pp5en16629] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-pp5en16629] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/Bookorder_detPrompt.razor.rz.scp.css */
.localaddrecord[b-xtfktde4of] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-xtfktde4of] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-xtfktde4of] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-xtfktde4of] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-xtfktde4of] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-xtfktde4of] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-xtfktde4of] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-xtfktde4of] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/Bookorder_viewPrompt.razor.rz.scp.css */
.status5[b-u62s53912e] {
    background-color: forestgreen;
    color: aliceblue;
    /*padding:5px,5px,5px,5px;*/

    padding-left: 5px;
    padding-right: 5px;
}
.localtextgreen[b-u62s53912e] {
    background-color: forestgreen;
    color: #cde876;
}

.localtextorange[b-u62s53912e] {
    background-color: #ff6a00;
    color: #ffffff;
}
.localtextblink[b-u62s53912e] {
    animation: localblink-bg-b-u62s53912e 0.5s infinite;
}
.localqty[b-u62s53912e] {
    /*font-size: 16px;*/
    color: #0d6efd;
}
.localamount[b-u62s53912e] {
    /*font-size: 16px;*/
    color: #b00c0c;
}
@keyframes localblink-bg-b-u62s53912e {
    0% {
        background-color: #4CAF50;
    }

    33% {
        background-color: #FF5733;
    }

    66% {
        background-color: #2196F3;
    }

    100% {
        background-color: #4CAF50;
    }
}
/* _content/BlazorAppH/Shared/Button1Click.razor.rz.scp.css */
.dots-loader[b-dpkjp2aiyk] {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    gap: 5px;
    top: 17px;
}

    .dots-loader span[b-dpkjp2aiyk] {
        width: 5px;
        height: 5px;
        background-color: #b6ff00;
        border-radius: 50%;
        animation: bounce-b-dpkjp2aiyk 1.5s infinite;
    }

        .dots-loader span:nth-child(2)[b-dpkjp2aiyk] {
            animation-delay: 0.2s;
        }

        .dots-loader span:nth-child(3)[b-dpkjp2aiyk] {
            animation-delay: 0.4s;
        }

@keyframes bounce-b-dpkjp2aiyk {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}
/* _content/BlazorAppH/Shared/ButtonwaitClick.razor.rz.scp.css */
.dots-loader[b-apglbys9hw],.dots-loader2[b-apglbys9hw] {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    gap: 5px;
    top: 17px;
}

    .dots-loader span[b-apglbys9hw] {
        width: 5px;
        height: 5px;
        background-color: #b6ff00;
        border-radius: 50%;
        animation: bounce-b-apglbys9hw 1.5s infinite;
    }

        .dots-loader span:nth-child(2)[b-apglbys9hw] {
            animation-delay: 0.2s;
        }

        .dots-loader span:nth-child(3)[b-apglbys9hw] {
            animation-delay: 0.4s;
        }

    .dots-loader2 span[b-apglbys9hw] {
        width: 5px;
        height: 5px;
        background-color: #7c8f4c;
        border-radius: 50%;
        animation: bounce-b-apglbys9hw 1.5s infinite;
    }

        .dots-loader2 span:nth-child(2)[b-apglbys9hw] {
            animation-delay: 0.2s;
        }

        .dots-loader2 span:nth-child(3)[b-apglbys9hw] {
            animation-delay: 0.4s;
        }
@keyframes bounce-b-apglbys9hw {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}
/* _content/BlazorAppH/Shared/ButtonYesNo.razor.rz.scp.css */

/* The Modal (background) */
.modal11[b-46mkn7lhvz] {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    /* padding-top: 70%; 100px;  Location of the box 
        */
    /*  display: flex;*/
    margin: 0px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content11[b-46mkn7lhvz] {
    top: max(0px, calc(50% - 100px));
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    max-width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}


/* The Close Button */
.close[b-46mkn7lhvz] {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover[b-46mkn7lhvz],
    .close:focus[b-46mkn7lhvz] {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header[b-46mkn7lhvz] {
    padding: 2px 16px;
    font-size: 20px;
    font-weight: bold;
    /*background-color: #5cb85c;*/
    color: black;
}

.modal-body11[b-46mkn7lhvz] {
    padding: 20px 16px;
    text-align: center;
}

.modal-footer11[b-46mkn7lhvz] {
    padding: 2px 2px 10px 2px;
    text-align: center;
    /* background-color: #5cb85c;
  color: white;*/
}
/* _content/BlazorAppH/Shared/ConfirmButton.razor.rz.scp.css */

/* The Modal (background) */
.modal11[b-tzmghza1ym] {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit on top */
    /* padding-top: 70%; 100px;  Location of the box 
        */
    /*  display: flex;*/
    margin: 0px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content11[b-tzmghza1ym] {
    top: max(0px, calc(50% - 100px));
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    max-width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}


/* The Close Button */
.close[b-tzmghza1ym] {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover[b-tzmghza1ym],
    .close:focus[b-tzmghza1ym] {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header[b-tzmghza1ym] {
    padding: 2px 16px;
    font-size: 20px;
    font-weight: bold;
    /*background-color: #5cb85c;*/
    color: black;
}

.modal-body11[b-tzmghza1ym] {
    padding: 20px 16px;
    text-align: center;
}

.modal-footer11[b-tzmghza1ym] {
    padding: 2px 2px 10px 2px;
    text-align: center;
    /* background-color: #5cb85c;
  color: white;*/
}
/* _content/BlazorAppH/Shared/CustomerPrompt.razor.rz.scp.css */
.localaddrecord[b-a22yo4xbsj] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-a22yo4xbsj] {
    width: 800px;
    max-width: calc(100% - 50px);
}


@media only screen and (max-width: 640px) {
    .localmodal-content2[b-a22yo4xbsj] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-a22yo4xbsj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-a22yo4xbsj] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}

.localtextgreen[b-a22yo4xbsj] {
    background-color: forestgreen;
    color: #cde876;
}

.localtextorange[b-a22yo4xbsj] {
    background-color: #ff6a00;
    color: #ffffff;
}

.localtextblink[b-a22yo4xbsj] {
    animation: localblink-bg-b-a22yo4xbsj 0.5s infinite;
}

.localqty[b-a22yo4xbsj] {
    /*font-size: 16px;*/
    color: #0d6efd;
}

.localamount[b-a22yo4xbsj] {
    /*font-size: 16px;*/
    color: #b00c0c;
}

@keyframes localblink-bg-b-a22yo4xbsj {
    0% {
        background-color: #4CAF50;
    }

    33% {
        background-color: #FF5733;
    }

    66% {
        background-color: #2196F3;
    }

    100% {
        background-color: #4CAF50;
    }
}
/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-a22yo4xbsj] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-a22yo4xbsj] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/ItemPrompt.razor.rz.scp.css */
.localaddrecord[b-almppbe9yp] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-almppbe9yp] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-almppbe9yp] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-almppbe9yp] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-almppbe9yp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-almppbe9yp] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-almppbe9yp] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-almppbe9yp] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/MainLayout.razor.rz.scp.css */
.page[b-0xjnclj36p] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0xjnclj36p] {
    flex: 1;
}

.sidebar[b-0xjnclj36p] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-0xjnclj36p] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-0xjnclj36p]  a, .top-row .btn-link[b-0xjnclj36p] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-0xjnclj36p] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-0xjnclj36p] {
        display: none;
    }

    .top-row.auth[b-0xjnclj36p] {
        justify-content: space-between;
    }

    .top-row a[b-0xjnclj36p], .top-row .btn-link[b-0xjnclj36p] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-0xjnclj36p] {
        flex-direction: row;
    }

    .sidebar[b-0xjnclj36p] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-0xjnclj36p] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-0xjnclj36p], article[b-0xjnclj36p] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/BlazorAppH/Shared/MessageButton.razor.rz.scp.css */

/* The Modal (background) */
.modal11[b-ucfqcwzxrf] {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit on top */
    /* padding-top: 70%; 100px;  Location of the box 
        */
    /*  display: flex;*/
    margin: 0px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content11[b-ucfqcwzxrf] {
    top: max(0px, calc(50% - 100px));
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    max-width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}


/* The Close Button */
.close[b-ucfqcwzxrf] {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover[b-ucfqcwzxrf],
    .close:focus[b-ucfqcwzxrf] {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header[b-ucfqcwzxrf] {
    padding: 2px 16px;
    font-size: 20px;
    font-weight: bold;
    /*background-color: #5cb85c;*/
    color: black;
}

.modal-body11[b-ucfqcwzxrf] {
    padding: 20px 16px;
    text-align: center;
}

.modal-footer11[b-ucfqcwzxrf] {
    padding: 2px 2px 10px 2px;
    text-align: center;
    /* background-color: #5cb85c;
  color: white;*/
}
/* _content/BlazorAppH/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-0niomeciwt] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-0niomeciwt] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-0niomeciwt] {
    font-size: 1.1rem;
}

.oi[b-0niomeciwt] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-0niomeciwt] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-0niomeciwt] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-0niomeciwt] {
        padding-bottom: 1rem;
    }

    .nav-item[b-0niomeciwt]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-0niomeciwt]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-0niomeciwt]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.collapse2[b-0niomeciwt] {
    display:none;
}


@media (min-width: 641px) {
    .navbar-toggler[b-0niomeciwt] {
        display: none;
    }

    .collapse2[b-0niomeciwt] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/BlazorAppH/Shared/SearchcustomerPrompt.razor.rz.scp.css */
.localaddrecord[b-lrixurrrsd] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-lrixurrrsd] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-lrixurrrsd] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-lrixurrrsd] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-lrixurrrsd] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-lrixurrrsd] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-lrixurrrsd] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-lrixurrrsd] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/SearchitemPrompt.razor.rz.scp.css */
.localaddrecord[b-evhislojok] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-evhislojok] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-evhislojok] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-evhislojok] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-evhislojok] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-evhislojok] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-evhislojok] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-evhislojok] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/SearchuomPrompt.razor.rz.scp.css */
.localaddrecord[b-5eh2qr1ob7] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-5eh2qr1ob7] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-5eh2qr1ob7] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-5eh2qr1ob7] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-5eh2qr1ob7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-5eh2qr1ob7] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-5eh2qr1ob7] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-5eh2qr1ob7] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/SearchvendorPrompt.razor.rz.scp.css */
.localaddrecord[b-d4hix1dj5v] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-d4hix1dj5v] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-d4hix1dj5v] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-d4hix1dj5v] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-d4hix1dj5v] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-d4hix1dj5v] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-d4hix1dj5v] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-d4hix1dj5v] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/UOMPrompt.razor.rz.scp.css */
.localaddrecord[b-0qkjaa0rys] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-0qkjaa0rys] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-0qkjaa0rys] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-0qkjaa0rys] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-0qkjaa0rys] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-0qkjaa0rys] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-0qkjaa0rys] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-0qkjaa0rys] {
        width: 100%;
    }
}

/* _content/BlazorAppH/Shared/VendorPrompt.razor.rz.scp.css */
.localaddrecord[b-r9npkjcg2g] {
    background-color: blanchedalmond;
    padding: 10px;
    line-height:normal; 
}

.localmodal-content2[b-r9npkjcg2g] {
    width: 800px;
    max-width: calc(100% - 50px);
}

.localmodal-content2[b-r9npkjcg2g] {
    width: 800px;
    max-width: calc(100% - 50px);
}

@media only screen and (max-width: 640px) {
    .localmodal-content2[b-r9npkjcg2g] {
        width: 100%;
        max-width: 100%;
    }
}


.container23[b-r9npkjcg2g] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    /*  gap: 10px;*/
}

/*Style for the list items (div elements)*/
.item23[b-r9npkjcg2g] {
    position: relative;
    /*height: 280px;*/
    width: calc(100% - 10px);
}


/*Media query for mobile screens (max-width: 767px)*/
@media (max-width: 640px) {
    .container23[b-r9npkjcg2g] {
        grid-template-columns: 1fr; /*Set to a single column for mobile screens*/
    }

    .item23[b-r9npkjcg2g] {
        width: 100%;
    }
}

