﻿.loader {
    background-image: url('/images/loaders/initializing.gif');
    background-repeat: no-repeat;
    background-position: left;
    height: 25px;
    width: 68px;
}

/* -------- EditIcons ----------*/

.edit-icon {
    color: #828282;
    cursor: pointer;
    margin-left: 2px;
    margin-top: -3px;
}

/* -------- Tabs ----------*/

.nav-tabs {
    color: #c7c7c7;
    cursor: pointer;
}

.nav-tabs .active {
    border-color: black;
    border-color: #a4a4a4;
    color: black;
    cursor: default;
    pointer-events: none;
    font-weight: bold;
}

.nav-tabs > li {
    margin-bottom: -1px;
}

.nav-tabs-body {
    border-top-width: 0;
}

.profileLink {
    color: mediumpurple;
}

.profileLink:hover {
    text-decoration: none;
    color: mediumpurple;
    opacity: .7
}


/* --------- Report Tooltips --------------- */

.reportTooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
    cursor: pointer;
}

    .reportTooltip .reportTooltiptext {
        visibility: hidden;
        width: 320px;
        background-color: white;
        color: black;
        text-align: left;
        border-radius: 6px;
        padding: 12px;
        border: 1px solid black;
        box-shadow: 4px 4px 2px #888888;
        /* Position the tooltip 
        position: absolute;
        z-index: 1;
        top: -5px;
        left: 105%;*/
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 50%;
        margin-left: -60px;
    }

    .reportTooltip:hover .reportTooltiptext {
        visibility: visible;
    }
