/* _content/TonySoftWareComponents/Toast.razor.rz.scp.css */
.myToast[b-hlf9wihbrs] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.myToastLoad[b-hlf9wihbrs] {
    position: fixed;
    overflow: hidden;
    z-index: 500;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 300px
}
/* _content/TonySoftWareComponents/ToolTip.razor.rz.scp.css */
.tooltip-wrapper[b-ge6g33nxo4] {
    position: relative;
    display: inline-block;
 /*   border-bottom: 1px dotted black;*/
    cursor: help;

}

span[b-ge6g33nxo4] {
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    margin-bottom:5px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0 5px 0;
    border-radius: 6px;
    z-index: 1;
}

span[b-ge6g33nxo4]::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-ge6g33nxo4] {
    visibility: visible;
}
