/* User Search Style */
.UserSearchDropDown {
    background-color: #FFF;
    font-size: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #000;
    padding: 4px;
}

    .UserSearchDropDown a:link, .UserSearchDropDown a:visited, .UserSearchDropDown strong {
        display: block;
        padding: 1px 5px 1px 5px;
        color: #000;
    }

/* UserSearch Navigation Paging */
.UserSearchDropDown .navigate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding: 8px 0;
}
.UserSearchDropDown .navigate-left,
.UserSearchDropDown .navigate-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.UserSearchDropDown .navigate a.PagingArrow {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    color: rgb(17, 98, 238);
}
    .UserSearchDropDown a:hover {
        color: #FFF;
        background-color: #333;
    }

.UserSearchDropDown {
    width: 285px;
}

    .UserSearchDropDown span {
        font-weight: bold;
    }


/* ITEM SEARCH STYLES */
.ItemSearch {
    clear: both;
    position: absolute;
    top: 100%;
    left: 0;
    border: 2px solid #111;
    padding: 8px;
    margin: 0px;
    background-color: #FFF;
    width: 550px;
    z-index: 1000;
}

    .ItemSearch .closeSearch {
        float: right;
        padding: 2px;
    }

        .ItemSearch .closeSearch:hover {
            cursor: pointer;
            color: #111;
        }

    .ItemSearch .RemoveSelection {
        text-align: center;
        padding: 3px;
        background-color: #700;
        color: #FFF;
        font-weight: bold;
        border-bottom: 2px solid #000;
    }

        .ItemSearch .RemoveSelection:hover {
            background-color: #AEE3EE;
            color: #000;
            cursor: hand;
            cursor: pointer;
        }

.ItemSearchResults {
}

    .ItemSearchResults .navigate {
        border-top: 2px solid #333;
        height: 22px;
        color: #FFF;
        padding-top: 5px;
    }

        .ItemSearchResults .navigate .next {
            float: right;
            margin-right: 5px;
        }

            .ItemSearchResults .navigate .next span {
                margin-left: 5px;
                padding: 2px;
            }

                .ItemSearchResults .navigate .next span:hover {
                    cursor: hand;
                    cursor: pointer;
                    color: #111;
                    background-color: #AEE3EE;
                }

        .ItemSearchResults .navigate .previous {
            float: left;
            margin-left: 5px;
        }

            .ItemSearchResults .navigate .previous span {
                margin-right: 5px;
                padding: 2px;
            }

                .ItemSearchResults .navigate .previous span:hover {
                    cursor: hand;
                    cursor: pointer;
                    color: #111;
                    background-color: #AEE3EE;
                }

.ItemSearchText {
}

    .ItemSearchText:hover {
        border: 2px solid #333;
        cursor: hand;
        cursor: pointer;
        background-color: #AEE3EE;
    }

/* END - ITEM SEARCH STYLES */

.RemoveSelectionImage {
    cursor: hand;
    cursor: pointer;
    margin-left: 30px;
}


label .hoverHighlight:hover {
    background-color: #AEE3EE;
    cursor: hand;
    cursor: pointer;
}

.DynaListGeneric {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
}

    /* BACKGROUND COLOR OF PAGINATION NAVIGATION CONTAINER - CONTAINS PAGE NUMBERS AND "NEXT PAGE" NAVIGATIONAL ICONS */
    .DynaListGeneric .navigate {
        vertical-align: middle;
        text-align: center;
        background-color: #fff;
        line-height: 35px;
        height: 40px;
    }

    /* Target the table inside any div with class DynaListGeneric */
    .DynaListGeneric table tr:not(:last-child) td {
        border-bottom: 1px solid #ccc;
    }

/* CURRENT PAGE NUMBER */
.PageIndexNumberCurrent {
    z-index: 100;
    font-size: 15px;
    padding: 4px 5px;
    color: #000;
    background-color: #999999;
    border-radius: 3px;
}

.PageIndexNumber {
    padding: 4px 5px;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
}

    .PageIndexNumber a {
        text-decoration: none;
        color: #404040;
    }

    .PageIndexNumber:hover {
        background-color: #00427C;
        color: #fff;
        border: 1px solid transparent;
    }
    .PageIndexNumber:hover a {
        color: #fff;
    }

.PagingArrow {
    display: inline-block;
    height: 36px;
    cursor: pointer;
}

/* OTHER AVAILABLE PAGE NUBMERS */
span.PageIndexNumber {
    padding: 4px 5px;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
}

    span.PageIndexNumber a {
        text-decoration: none;
        color: #404040;
    }

    span.PageIndexNumber:hover {
        background-color: #00427C;
        color: #fff;
        border: 1px solid transparent;
    }
    span.PageIndexNumber:hover a {
        color: #fff;
    }

.LoadingCover {
    filter: alpha(opacity=75);
    -moz-opacity: .75;
    opacity: .75;
    background-color: #ccc;
    position: absolute;
    border: 1px solid green;
    color: #333;
    z-index: 9999;
}

    .LoadingCover span {
        padding: 0px 0px 0px 25px;
        font-size: larger;
        font-weight: bold;
    }

.OnclickLink:hover {
    cursor: hand;
    cursor: pointer;
}


tr.rowSelect {
    background-color: #fff;
    color: #000;
}

/* CONTAINER OF INFORMATION RELATED TO # OF ITEMS SELECTED IN A DYNALIST - TYPICALLY BELOW PAGINATION */
.DynaListGeneric .dynalistInfoBar {
    clear: both;
    color: #716558;
    text-align: center;
    vertical-align: middle;
    padding: 15px 2px;
    font-size: 14px;
    height: 10px;
}

.dynalistInfoBar a, .dynalistInfoBar a:link, .dynalistInfoBar a:visited {
    margin-left: 30px;
}

.dynalistInfoBar span {
    color: #000;
    margin-left: 30px;
}

div.DynaListGeneric td INPUT[type=button], div.DynaListGeneric td button {
    background-color: #585858;
    color: #FFFFFF;
    font-family: arial,sans-serif;
    font-size: 11px;
    padding: 4px;
    border-radius: 2px;
    text-transform: uppercase;
    vertical-align: middle;
}

    div.DynaListGeneric td button:hover, div.DynaListGeneric td button:hover {
        background-color: #A9A9A9;
    }

td.dynaaccent {
    font-weight: bold;
    font-size: 13px;
    padding-left: 20px;
}

div.DynaListGeneric TABLE TR TD.cellwrap {
    text-align: left;
    white-space: normal;
    max-height: 100px;
    overflow: auto;
}

/* TOOLTIP STYLING */

.dynalistHTML ol {
    padding: 0 15px !important;
}

.dynalistHTML em {
    color: inherit;
}

.dynalistHTML strong {
    font-weight: bold !important;
}

.dynalistHTML ul {
    padding: 0 15px !important;
    list-style-type: disc !important;
}

/*EPI*/
.tm_dot {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 3px;
    text-align: center;
}

.tm_dot_na {
    background-color: gray !important;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 3px;
    text-align: center;
}

.tm_dot_timeOut {
    padding: 5px 2px;
    float: left;
    font-size: 20px;
    color: #6B6B6B;
}

.tm_dot .tm_number {
    font-family: 'Arial Bold', 'Arial';
    font-weight: bold;
    font-style: normal;
    font-size: 12px;
    color: #000000;
}

.tm_dot_na .tm_number {
    font-family: 'Arial Bold', 'Arial';
    font-weight: bold;
    font-style: normal;
    font-size: 12px;
    color: #ffffff;
}

.tm_panel_wrapper {
    width: 0px;
    height: 0px;
    float: left;
    position: absolute;
}

.tm_panel {
    border: solid 1px black;
    background-color: #eeeeee;
    width: 162px;
    position: relative;
    left: -170px;
    top: -210px;
    height: 220px;
    padding: 10px;
    float: left;
}

.tm_panel_principal {
    border: solid 1px black;
    background-color: #eeeeee;
    width: 202px;
    position: relative;
    left: -210px;
    top: -180px;
    height: 160px;
    padding: 10px;
    float: left;
}

.tm_panel_support {
    border: solid 1px black;
    background-color: #eeeeee;
    width: 202px;
    position: relative;
    left: -210px;
    top: -180px;
    height: 160px;
    padding: 10px;
    float: left;
}

.tm_panel_base, .tm_panel_hover_area {
    width: 25px;
    height: 25px;
}

.tm_item_first {
    height: 85px;
    background-color: #dddddd;
    padding: 10px;
}

.tm_item_first_principal {
    height: 55px;
    background-color: #dddddd;
    padding: 10px;
}

.tm_item_first_support {
    height: 55px;
    background-color: #dddddd;
    padding: 10px;
}

.tm_item_last {
    height: 25px;
    background-color: #dddddd;
    padding: 10px;
    margin-top: 10px;
}

.tm_item_number {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Arial Bold', 'Arial';
}

.tm_item_category {
    padding-left: 10px;
    font-size: 14px;
    color: #333333;
    font-family: 'Arial Regular', 'Arial';
}

.tm_link_div {
    float: right;
    margin-top: 10px;
}

.tm_link {
    text-decoration: none;
    font-family: 'Arial Regular', 'Arial';
    font-size: 12px;
}

.tm_panel_wrapper_blank {
    width: 0px;
    height: 0px;
    display: none !important;
}

.dynalisttooltip div {
    display: none;
}

.dynalisttooltip:hover div {
    display: block;
    position: absolute;
    float: left;
    padding: 5px;
    background: -moz-linear-gradient(top, #ffffff 0%, #e4e5f0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%,#e4e5f0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%,#e4e5f0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e4e5f0',GradientType=0 ); /* IE6-9 */
    border: 0.1em solid #767676;
    border-radius: 5px;
    max-width: 100em;
    margin-top: 50px;
}

.manage-job-templates-form .dynalisttooltip {
    position: relative;
}

.manage-job-templates-form .dynalisttooltip:hover div {
    min-width: 500px;
    width: max-content;
    left: 0;
    z-index: 1000;
}