

/***********************************************
** Toastr customisations
***********************************************/

.toastrOverrides {
    left: 50%;
    width: 700px;
    margin-left: -350px;
}

    .toastrOverrides > .toast-success {
        position: fixed !important;
        width: 300px !important;
        left: 50%;
        margin-left: -150px !important;
        bottom: 12px;
    }


    .toastrOverrides > .toast-dialog {
        position: fixed !important;
        top: 200px;
        width: 500px !important;
        left: 50%;
        margin-left: -250px !important;
    }

.toastrDlg-btnStrip {
    margin-top: 10px;
    text-align: right;
}

.toastrDlg-btnDiv {
    display: inline-block;
    margin-right: 10px;
}

#toast-container > div.toast-dialog {
    color: rgba(0,0,0,0.65);
    background-color: white; /*#70a8d8;*/
    border: solid 0px #152b6f; /* #4a92ce; */
    border-radius: 8px;
    -webkit-border-radius: 8px;
    opacity: 1.0;
}

#toast-container > div {
    opacity: 0.9;
}





/***********************************************
** SfDropdownMenu
***********************************************/


div.k-window.sf-dropdownMenuWdw { /* Applied via code to the containing Kendo window */
    border-radius: 8px;
    border-width: 0px;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),0 3px 6px -4px rgba(0, 0, 0, 0.12),0 9px 28px 8px rgba(0, 0, 0, 0.05);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
}

    div.k-window.sf-dropdownMenuWdw > div {
        border-radius: 8px;
    }

.sf-dropdownMenu {
    list-style-type: none;
    padding: 0px;
    margin-bottom: 12px;
    text-align: right;
}

.sf-dropdownMenuItem {
    color: rgba(0, 0, 0, 0.88);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    padding: 5px 12px;
}

    .sf-dropdownMenuItem:hover {
        background-color: rgba(0, 0, 0, 0.04);
    }



/***********************************************
** SfCheckToggle
***********************************************/


.sf-checkToggleIcon-grid i {
    font-size: 24px;
    -webkit-text-stroke: 1px white; /* Make the circle a little thinner/nicer */
}

.sf-checkToggleIcon {
    font-size: 24px;
    display: inline-block; /* So that transform scale will work */
    -webkit-text-stroke: 1px white; /* Make the circle a little thinner/nicer */
    cursor: pointer;
}

    .sf-checkToggleIcon:hover {
        transform: scale(1.25);
        transition-duration: 0.2s;
    }

