﻿.SLAtooltip {
    position: relative;
    display: inline-block;
}

.SLAWrapper {
    text-align: center;
    padding: 3px 6px;
}

.Overdue {
    background-color: #E58D8D;  
    color: white;
    font-size: 12px;
    line-height: 14px;
}

.Warning {
    background-color: #EABD30;
}

.TimeLeft-Text {
    font-size: 12px;
    line-height: 14px;
}

.Color-Text {
    color: white ! important;
    display: block;
    font-weight: 500;
    font-size: 9px;
    line-height: 10px;
}

.Warning-Text { 
     color: #8A6D3B;
}

.Normal-Text {
    color: #346B35;
}

.SLAtooltip .SLAtooltiptext {
    visibility: hidden;
    text-align: center;
    background-color: black;
    position: absolute;
    border-radius: 6px;
    padding: 5px 0px;
    z-index: 1;
    top: -5px;
    right: 110%;
    width: 110px;
    color: white;
}

.SLAtooltip:hover .SLAtooltiptext {
    visibility: visible;
}

.SLAtooltip .SLAtooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    color: white;
    border-color: transparent transparent transparent black;
}