/* /Shared/Checkbox.razor.rz.scp.css */
/* The container */
.container-cbx[b-c6aequ4ivu] {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-cbx input[b-c6aequ4ivu] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
}

/* Create a custom checkbox */
.checkmark[b-c6aequ4ivu] {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-cbx:hover input ~ .checkmark[b-c6aequ4ivu] {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-cbx input:checked ~ .checkmark[b-c6aequ4ivu] {
    background-color: #61dafb;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark[b-c6aequ4ivu]:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-cbx input:checked ~ .checkmark[b-c6aequ4ivu]:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-cbx .checkmark[b-c6aequ4ivu]:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* /Shared/IconTooltip.razor.rz.scp.css */
.icontooltip-wrapper[b-ybof1ffwng] {
    position: relative;
    display: inline-block;
    cursor: help;
}

span[b-ybof1ffwng] {
    visibility: hidden;
    position: absolute;
    width: 260px;
    bottom: 100%;
    left: 50%;
    margin-left: -80px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-ybof1ffwng]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.icontooltip-wrapper:hover span[b-ybof1ffwng] {
    visibility: visible;
}
/* /Shared/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-64b5mck84d] {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
}

span[b-64b5mck84d] {
    visibility: hidden;
    position: absolute;
    width: 260px;
    bottom: 100%;
    left: 50%;
    margin-left: -80px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-64b5mck84d]::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-64b5mck84d] {
    visibility: visible;
}
