﻿table.csdTable {
    width: 100%;
    color: #444;
}

    table.csdTable tr {
        font-weight: normal;
        transition: background-color 200ms;
        cursor: default;
    }

        table.csdTable tr:nth-child(odd) {
            background-color: #eee;
        }

        table.csdTable tr:nth-child(even) {
            background-color: #ddd;
        }

        table.csdTable tr.clickable:hover {
            background-color: #ccc;
            cursor: pointer;
        }

    table.csdTable th {
        font-weight: bold;
        background-color: #888;
        color: white;
    }

    table.csdTable th,
    table.csdTable td {
        padding: 8px 12px;
    }

    .csdTable > tbody > tr.notActive > td {
        background-color: #FFD4D3;
    }

.displayFormRow:not(:last-child) {
    /*margin-bottom: 8px;*/
}

.displayFormRow label {
    white-space: nowrap;
}

.displayFormRow > div > label {
    padding-top: 7px;
}
.displayFormRow > div > span {
    display: inline-block;
    margin-top: 7px;
}

.fixedMessageContainer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    width: 300px;
}

    .fixedMessageContainer > div {
        display: none;
        margin: 5px;
    }

.loadingImage {
    margin: 0 3px;
}

.navbar .divider-vertical {
    height: 50px;
    margin: 0 9px;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #f2f2f2;
}

.navbar-inverse .divider-vertical {
    border-right-color: #222222;
    border-left-color: #111111;
}

@media (max-width: 767px) {
    .navbar-collapse .nav > .divider-vertical {
        display: none;
    }
}

@media (min-width: 992px) {
  .modal-xlg {
    width: 1100px;
    overflow: auto;
  }
}