﻿.ccsnotify_notify {
    width: 200px;
    min-height: 100px;
    background-color: #028202;
    border: solid 1px #808080;
    /*border-radius: 5px;*/
    display: none;
    opacity: 0.8;
    color: white;
    font-family: Verdana, Segoe, sans-serif;
    font-size: 14px;
    text-align: center;
    z-index: 99;
    overflow: hidden;
}

.ccsnotify_alert {
    background-color: #028202;
    border: solid 1px #808080;
    border-radius: 5px;
    display: none;
}

.ccsnotify_salert i {
    color: white;
}

    .bsalert span {
        color: #003057;
        font-weight: normal;
        font-size: large;
    }

.ccsnotify_confirm {
    border: solid 1px #808080;
    border-radius: 5px;
    display: none;
}

div.ccsnotify_dialog {
    font-family: OpenSans-Regular, sans-serif;
    font-size: 12px;
    position: absolute;
    top: 10%;
    left: 40%;
    width: 350px;
    margin: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;    
}

div.ccsnotify_header {
    padding: 10px;
    font-weight: 600;
    background-color: #009FDF;
    color: #FEFEFE;
    text-align: left;
    opacity: 1;
}

label.ccsnotify_header {
    width: 100%;
    text-align: center;
}

div.ccsnotify_body {
    padding: 10px;
    background-color: #FEFEFE;
    color: #4F4F4F;
    text-align: center;
    overflow-y: auto;
    /*min-height: 50px;*/
}

label.ccsnotify_body {
    width: 100%;
    text-align: center;
}

div.ccsnotify_buttonsdiv {
    padding: 10px;
    background-color: #FFF;
    text-align: right;
    /*border-radius: 0px 0px 5px 5px;*/
}

button.ccsnotify_button {
    background-color: #FEFEFE;
    border: solid 1px #009FDF;
    width: 100px;
    height: 30px;
    color: #4F4F4F;
    margin-right: 5px;
    font-weight: 600;
    border-radius: 3px !important;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    button.ccsnotify_button:hover {
        border: 2px solid #0089C0;
    }

    button.ccsnotify_button.focus {
        background-color: #009FDF;
        color: #FFFFFF;
    }


div.ccsnotify_modal {
    z-index: 1001;
    /*position: absolute;*/
    /*position: sticky;*/
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}


.notifymessage {
    font-family: OpenSans-Regular, sans-serif;
    font-size: 12px;
}

div.ccsnotify_modalbg {
    opacity: 0.7;
    filter: alpha(opacity=20);
    background-color: #DCDCDC;
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

    
