/* _content/BlazorTasks/Components/dialog/AKDialog.razor.rz.scp.css */
.dialog[b-ik4iocso1w] {
    position: absolute;
    top: 50%;
    left: 50%;
   /* width: 400px;
    margin: auto;*/
    background-color: white;
    border-radius: 5px;
    text-align: center;
    /*border: 2px solid black;*/
    z-index: 800000;
}

   /* .dialog .actions {
        position: absolute;
        bottom: 0px;
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: space-between
    }

    .dialog button {
        width: 60px;
        height: 29px;
        padding: 2px;
    }*/
/* _content/BlazorTasks/Pages/Tooltip.razor.rz.scp.css */
/*Tootltip start*/
.tooltip-wrapper[b-7zrppv19p5] {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
}

span[b-7zrppv19p5] {
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

span[b-7zrppv19p5]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-7zrppv19p5] {
    visibility: visible;
}
/*Tooltip end*/
