﻿/*CUSTOM STYLING of radalert,radconfirm,radprompt, radwindow below*/
/*radalert or radconfirm: hide title bar */
.RadWindow_Bootstrap[id*="alert"] .rwTitleBar, .RadWindow_Bootstrap[id*="confirm"] .rwTitleBar {
    display: none;
}

/*radalert or radconfirm: top colored strip. change this to change look of radalert or radconfirm */
.RadWindow_Bootstrap[id*="alert"], .RadWindow_Bootstrap[id*="confirm"] {
    border-top: 4px solid #da520c;
}

/*radalert or radconfirm: make the corners not rounded for a more compact look */
.RadWindow_Bootstrap input[type="button"] {
    border-radius: unset !important;
}

    /*radalert or radconfirm: ok button styling */
    .RadWindow_Bootstrap input[type="button"].rwOkBtn {
        color: #0277BD !important;
        border-bottom-color: #0277BD !important;
        border-bottom-width: 2px;
        width: 59px;
    }

        .RadWindow_Bootstrap input[type="button"].rwOkBtn:focus {
            background-color: initial;
        }

    /*radalert or radconfirm: cancel button styling */
    .RadWindow_Bootstrap input[type="button"].rwCancelBtn {
        color: #AD1457 !important;
        border-bottom-color: #AD1457 !important;
        border-bottom-width: 2px;
        width: 59px;
    }

        .RadWindow_Bootstrap input[type="button"].rwCancelBtn:focus {
            background-color: initial;
        }

        .RadWindow_Bootstrap input[type="button"].rwCancelBtn:focus {
            background-color: initial;
        }

.RadWindow_Bootstrap .rwDialogMessage {
    padding-top: 10px;
    color: #455A64;
}

/*radconfirm: change color of icon displayed */
.RadWindow .rwDialog:before {
    color: grey;
}

/*end of CUSTOM STYLING of radalert,radconfirm,radprompt, radwindow*/
