.btnDisabled, .btnDisabled:hover{background: #e9edf0;border: 1px solid #c2ccd4; color: Black;}

.help {
    position: relative;
    display: inline;
    vertical-align: middle;
    line-height: 1.2em;
    font-size: 12px;
}

.help strong {
    display: inline-block;
    padding-right: 1px;
    font-weight: 400;
    color: white;
    vertical-align: middle;
    margin: 0 4px;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    width: 15px;
    line-height: 15px;
    background: #515f6b;
    color: white;
    text-align: center;
    cursor: pointer;
}

.help .popup {
    position: absolute;
    cursor: pointer;
    background: #e9edf0;
    top: auto;
    bottom: 5px;
    left: 50%;
    margin-left: 0px;
    line-height: 1.4em;
    text-align: left;
    display: none;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 2px solid #0072ad;
}

.help strong:hover {
    background: #018c48;
    color: white;
}

.help .popup:after {
    content: " ";
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -11px;
    display: block;

    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;

    border-top: 11px solid #0072ad;
}

.textPulsate{
    animation: color-pulsate 2s 2;
}
@keyframes color-pulsate {
    0%{
        color:black;
    }
    25%{
        color:red;
    }
    50%{
        color:black;
    }
    75%{
        color:red;
    }
    100%{
        color:black;
    }
}

.orange {
    color: orange;
}

.autocomplete li a strong.higilight {
    display: inline;
}