/* /Pages/PageAuction/CusItemBlock.razor.rz.scp.css */
.itemBlock[b-1e19qatwmm] {
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    min-height: 35px;
    border: 1px solid gray;
    height: auto;
    margin:5px 0;
}

    .itemBlock > .ToggleButton[b-1e19qatwmm] {
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        cursor: pointer;
    }

.ToggleButton > img[b-1e19qatwmm] {
    width: 50px;
    height: 50px;
    padding: 0px;
    margin: 0px;
    border-radius: 25px;
}

.itemBlock > .Hide[b-1e19qatwmm] {
    display: none;
}

.itemBlock > .Show[b-1e19qatwmm] {
    display: block;
}
/* /Pages/PageAuction/Index.razor.rz.scp.css */
.page[b-9zs2ddvjok] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: auto 1fr 10px;
}

    .page > .header[b-9zs2ddvjok] {
        margin: 5px !important;
    }

    .page > .main[b-9zs2ddvjok] {
        margin: 5px !important;
        overflow-y:auto !important;
    }

a[b-9zs2ddvjok] {
    display: inline-block !important;
    border: 1px solid gray !important;
    height: 35px !important;
    line-height: 25px;
    width: 200px;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    background-color: lightgray;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

    a:hover[b-9zs2ddvjok] {
        background-color: lightgreen;
    }

.active[b-9zs2ddvjok] {
    background-color: lightblue;
}


/* /Pages/PageAuction/ProductItemBlock.razor.rz.scp.css */
.itemBlock[b-kkocw2h3fw] {
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    min-height: 35px;
    border: 1px solid gray;
    height: auto;
    margin:5px 0;
}

    .itemBlock > .ToggleButton[b-kkocw2h3fw] {
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
        cursor: pointer;
    }

.ToggleButton > img[b-kkocw2h3fw] {
    width: 50px;
    height: 50px;
    padding: 0px;
    margin: 0px;
    border-radius: 25px;
}

.itemBlock > .Hide[b-kkocw2h3fw] {
    display: none;
}

.itemBlock > .Show[b-kkocw2h3fw] {
    display: block;
}
/* /Pages/PageCampaign/FormData.razor.rz.scp.css */
/* /Pages/PageCampaign/Index.razor.rz.scp.css */
/* /Pages/PageCampaign/ItemCampaign.razor.rz.scp.css */
.campaignBlock[b-ume72pxqf8] {
    display: block;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.campaignBlock h4[b-ume72pxqf8] {
    color: #1b6ec2;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footerInfor[b-ume72pxqf8] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.footerInfor > div[b-ume72pxqf8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footerInfor[b-ume72pxqf8] {
        flex-direction: column;
        align-items: flex-start;
    }
}

a[b-ume72pxqf8] {
    margin: 0px 2px;
}
/* /Pages/PageCampaign/ProductOnCam.razor.rz.scp.css */

*[b-z10uuvdkio] {
    font-size: 0.75rem;
}

.ProductForm[b-z10uuvdkio] {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    border: none;
    width: min(1300px, 98vw);
    height: min(900px, 95vh);
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 1.5rem;
    z-index: 1050;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

    .ProductForm > .ProductContent[b-z10uuvdkio] {
        height: calc(100% - 40px);
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

.imgView[b-z10uuvdkio] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 15px;
    padding: 10px;
    border: 1px dashed #dee2e6;
    border-radius: 0.5rem;
    margin: 10px 0;
}

img[b-z10uuvdkio] {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

img:hover[b-z10uuvdkio] {
    transform: scale(1.05);
}

.ProductForm > .btnCacel[b-z10uuvdkio] {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.ProductForm > .btnOK[b-z10uuvdkio] {
    position: absolute;
    right: calc(1.5rem + 100px);
    bottom: 1.5rem;
}

/* Backdrop for the modal */
.ProductForm[b-z10uuvdkio]::before {
    content: "";
    position: fixed;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    backdrop-filter: blur(4px);
}


.hide[b-z10uuvdkio] {
    visibility: collapse;
}

.show[b-z10uuvdkio] {
    visibility: visible;
}

option[b-z10uuvdkio] {
    display: block !important;
    border: 1px solid red !important;
}

.picturecanvas[b-z10uuvdkio] {
    display: block;
    overflow-x: auto;
    overflow-y: auto;
}
#_canvas[b-z10uuvdkio] {
    border:1px solid blue;
    background-color:white;
}
.redColor[b-z10uuvdkio] {
    color: blue;
    background-color:silver;
}
/* /Pages/PageCustomer/FormData.razor.rz.scp.css */
/* /Pages/PageCustomer/Index.razor.rz.scp.css */
th[b-6ebjqoxmni] {
    text-align: center;
}

tr[b-6ebjqoxmni] {
    vertical-align: text-bottom;
}
/* /Pages/PagePlace/Index.razor.rz.scp.css */
*[b-cz71m8dbpn]{
    font-size:0.75rem;
}
img[b-cz71m8dbpn]{
    width:100px;
    height:100px;
}
/* /Pages/PageProductBase/Index.razor.rz.scp.css */

*[b-g68i8roolm]{
    font-size:0.75rem;
}
img[b-g68i8roolm]{
    width:100px;
    height:100px;
}
/* /Pages/PageProductType/Index.razor.rz.scp.css */
img[b-j5ihan0wih]{
    width:100px;
    height:100px;
}
*[b-j5ihan0wih] {
    font-size: 0.75rem;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-r87jc4uo14] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-r87jc4uo14] {
    flex: 1;
}

.sidebar[b-r87jc4uo14] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-r87jc4uo14] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-r87jc4uo14]  a, .top-row[b-r87jc4uo14]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-r87jc4uo14]  a:hover, .top-row[b-r87jc4uo14]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-r87jc4uo14]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-r87jc4uo14] {
        display: none;
    }

    .top-row.auth[b-r87jc4uo14] {
        justify-content: space-between;
    }

    .top-row[b-r87jc4uo14]  a, .top-row[b-r87jc4uo14]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-r87jc4uo14] {
        flex-direction: row;
    }

    .sidebar[b-r87jc4uo14] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-r87jc4uo14] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-r87jc4uo14]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-r87jc4uo14], article[b-r87jc4uo14] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zgqdgkegz3] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-zgqdgkegz3] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-zgqdgkegz3] {
    font-size: 1.1rem;
}

.oi[b-zgqdgkegz3] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-zgqdgkegz3] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-zgqdgkegz3] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-zgqdgkegz3] {
        padding-bottom: 1rem;
    }

    .nav-item[b-zgqdgkegz3]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-zgqdgkegz3]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-zgqdgkegz3]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zgqdgkegz3] {
        display: none;
    }

    .collapse[b-zgqdgkegz3] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
