﻿
* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.navbar {
    /* I have removed the overflow: hidden since it makes the nav dropdown from Kendo UI "hide under" the body container*/
    /*overflow: hidden;*/
    background-color: #333;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
}

    .navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font: inherit;
        margin: 0;
    }

    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: red;
    }

.dropdown-content {
    display: block;
    position: relative;
    /*background-color: #f9f9f9;*/
    width: 100%;
    left: 0;
    z-index: 3 !important;
}

    .dropdown-content .header {
        background: white;
        padding: 16px;
        color: black;
    }

.dropdown:hover .dropdown-content {
    display: block;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.3%;
    padding: 10px;
    background-color: white;
    height: 110px;
}

    .column a {
        float: none;
        color: black;
        padding: 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .column a:hover {
            background-color: #ddd;
        }

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

ul#statusUl li {
    display: inline;
}

#grid tbody tr:hover {
    background: #b7d7e8
}

field-validation-error {
    color: red;
    font-weight: bold;
}

.input-validation-error {
    background: pink;
}

.validation-summary-valid {
    display: none;
}

.field-validation-valid {
    display: none;
}

/*.required label {
    font-weight: bold;
}*/

.required label:before {
    color: #e32;
    content: ' *';
    display: inline;
    font-weight: bold;
}

.TP_HintText {
    color: #424242;
    font-style: italic;
    font-size: 1em;
}

/*ManageUser specific styles*/

.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}

.successMsg {
   /* color: #00FF00;*/
    color: #29a108; 
    font-weight: bold;
    background-position: -270px -479px;
    display: inline-block; 
}

.failureMsg {
   /* color: #FF0000;*/
    color: #da0e0e;
    font-weight: bold;
    background-position: -300px -449px;
    display: inline-block;
}
/*.k-window-titlebar {
    background-color: #00FFFF
}*/
