/* _content/FleetService_Server/Components/HelpPopper.razor.rz.scp.css */
/* This is just for the blazor menu because it looks weird if it display inline-block */
.popper-wrapper-pop-menu[b-or98vb12pb] {
    position: relative;
    /* display: inline-block; */
    /* border: solid; */ /* Obs. just used when trying to locate the items inside the popper wrapper..*/
    /* border-bottom: 1px dotted black; */
}
.popper-wrapper-pop[b-or98vb12pb], .popper-wrapper-hover[b-or98vb12pb] {
    position: relative;
    display: inline-block;
    /* border: solid; */ /* Obs. just used when trying to locate the items inside the popper wrapper..*/
    /* border-bottom: 1px dotted black; */
}

.popper-wrapper-hover:hover span[b-or98vb12pb] {
    visibility: visible;
}

.de-popper-header[b-or98vb12pb]
{
    display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #fafafa;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)
}
.de-popper-title[b-or98vb12pb]
{
    position: relative;
    float: left;
    margin-bottom:0;
    line-height:1.5
}

.de-popper-close-btn[b-or98vb12pb]
{
    position: relative;
    float: right;
    cursor: pointer;
    border: 1px solid #fafafa;
    padding: 2px;
}

/* The common things for all popper locations ex popper-top and popper-bottom etc.. */
.de-popper[b-or98vb12pb]
{
    position: absolute;
    z-index: 1054; /*just below the confirmation and delete modals*/
    width: 240px;
    background-color: #001cbd;
    color: #fff;
    padding: 5px 0;
    border-radius: 6px;
    text-align: left;
    font-size: 12px;
    transition:visibility 0.2s linear,opacity 0.2s linear;

}

.de-hidden[b-or98vb12pb] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.de-visible[b-or98vb12pb] {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Display popper on top of the child-content */
.popper-top[b-or98vb12pb] {
    bottom: 100%;
    left: 50%;
    margin-left: -120px;
}
 
.popper-top[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #001cbd transparent transparent transparent;
}

/* Display popper on top of the child-content */
.popper-top-right[b-or98vb12pb] {
    bottom: 100%;
    left: 0%;
    /* margin-left: -120px; */
}
 
.popper-top-right[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 10%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #001cbd transparent transparent transparent;
}

/* Display popper on top of the child-content */
.popper-top-middle-right[b-or98vb12pb] {
    bottom: 100%;
    left: 0;
    margin-left: -60px;
}
 
.popper-top-middle-right[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 35%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #001cbd transparent transparent transparent;
}

/* Display popper below of the child-content */
.popper-bottom[b-or98vb12pb] {
    top: 100%;
    left: 50%;
    margin-left: -120px;
}
 
.popper-bottom[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #001cbd transparent transparent transparent;
        transform: rotate(180deg);
}

/* Display popper below of the child-content */
.popper-bottom-right[b-or98vb12pb] {
    top: 100%;
    left: 0%;
    /* margin-left: -120px; */
}
 
.popper-bottom-right[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #001cbd transparent transparent transparent;
        transform: rotate(180deg);
}

/* Display popper to the right of the child-content */
.popper-right[b-or98vb12pb] {
    top: 0%;
    left: 100%;
    /* margin-left: -60px; */
}
 
.popper-right[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        /* top: 50%; */
        top: 25px;
        right: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        /* border-color: #555 transparent transparent transparent; */
        border-color: #001cbd transparent transparent transparent;
        transform: rotate(90deg);
}
/* Display popper to the left of the child-content */
.popper-left[b-or98vb12pb] {
    top: 0%;
    left: 0%;
    margin-left: -245px; /* move 5 px more than the width of the object to the left so that the arrow dont cover the target..*/
}
 
.popper-left[b-or98vb12pb]::after {
        content: "";
        position: absolute;
        /* top: 50%; */
        top: 20px;
        left: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        /* border-color: #555 transparent transparent transparent; */
        border-color: #001cbd transparent transparent transparent;
        transform: rotate(270deg);
}
 
/* _content/FleetService_Server/Components/MainLayout.razor.rz.scp.css */
.page[b-fi2hg897tb] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fi2hg897tb] {
    flex: 1;
}

.sidebar[b-fi2hg897tb] {
    background-color: #fafafa;
    min-width: 250px;
}

.top-row[b-fi2hg897tb] {
    /* background-color: #f7f7f7; */
    background-color: #fafafa;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fi2hg897tb]  a, .top-row .btn-link[b-fi2hg897tb] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-fi2hg897tb] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-fi2hg897tb] {
        display: none;
    }

    .top-row.auth[b-fi2hg897tb] {
        justify-content: space-between;
    }

    .top-row a[b-fi2hg897tb], .top-row .btn-link[b-fi2hg897tb] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fi2hg897tb] {
        flex-direction: row;
    }

    .sidebar[b-fi2hg897tb] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fi2hg897tb] {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .top-row[b-fi2hg897tb], article[b-fi2hg897tb] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/FleetService_Server/Components/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-854g6weax6] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-854g6weax6] {
    height: 3.5rem;
    /* background-color: rgba(0,0,0,0.4); */
    /* background-color: #000000; */
    background-color: #fafafa;
}

.bottom-row[b-854g6weax6] {
    height: 3.5rem;
    /* position: fixed; */
    position: sticky;
    top: 100%;
    width: 250px;
    min-width: 250px;
}

.navbar-brand[b-854g6weax6] {
    font-size: 1.1rem;
    color: #000000;
}
.navbar-brand:hover[b-854g6weax6]{
    color:#696E87;
}
.navbar-brand:focus[b-854g6weax6]{
    color:#000000;
}

.oi[b-854g6weax6] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}
/* ########################################################### Nav Item style ###########################*/
.nav-item[b-854g6weax6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem; 
}

    .nav-item:first-of-type[b-854g6weax6] {
        /* padding-top: 1rem; */ /* Obs. Removed becouse each item is wrapped in a HelpPopper and this causes to much space metween items*/
    }

    .nav-item:last-of-type[b-854g6weax6] {
        /* padding-bottom: 1rem; */ /* Obs. Removed becouse each item is wrapped in a HelpPopper and this causes to much space metween items*/
    }

    .nav-item[b-854g6weax6]  a {
        color: #212121;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-854g6weax6]  a.active {
    background-color: rgba(105,110,135,0.25);
    color: #000000;
}

.nav-item[b-854g6weax6]  a:hover {
    background-color: rgba(105,110,135,0.1);
    color: #000000;
}
/* ########################################################### Nav Item style ###########################*/
@media (min-width: 641px) {
    .navbar-toggler[b-854g6weax6] {
        display: none;
    }

    .collapse[b-854g6weax6] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
