﻿.help-tip {
    /*position: absolute;
        top: 55px;*/
    text-align: center;
    background-color: #BCDBEA;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
    margin-top: 5px;
    display: inline-block;
}
.change-password a {
    color: #FE7800;
    font-weight: 600;
}
.pass-hint {
    text-align: left;
    font-size: 12px;
    line-height: normal;
    cursor: default;
    margin-top: 5px;
}
.help-tip:before {
    content: '?';
    font-weight: bold;
    color: #fff;
}

    .help-tip:hover p {
        display: block;
        transform-origin: 100% 0%;
        -webkit-animation: fadeIn 0.3s ease-in-out;
        animation: fadeIn 0.3s ease-in-out;
    }

    .help-tip p { /* The tooltip */
        display: none;
        text-align: left;
        background-color: #5B5A5A;
        padding: 20px;
        width: 300px;
        position: absolute;
        border-radius: 3px;
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        /*right: -4px;*/
        color: #FFF;
        font-size: 13px;
        line-height: 1.4;
        z-index: 999;
    }

        .help-tip p:before { /* The pointer of the tooltip */
            position: absolute;
            content: '';
            width: 0;
            height: 0;
            border: 6px solid transparent;
            border-bottom-color: #1E2021;
            /*right: 10px;*/
            left: 10px;
            top: -12px;
        }

        .help-tip p:after { /* Prevents the tooltip from being hidden */
            width: 100%;
            height: 40px;
            content: '';
            position: absolute;
            top: -40px;
            left: 0;
        }

.form-group.required .control-label:after {
    color: #d00;
    content: "*";
    position: absolute;
    margin-left: 8px;
    top: 7px;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
}

.ui-autocomplete {
    height: 100px;
}

.loader {
    border: 3px solid #f3f3f3 !important; /* Light grey */
    border-top: 3px solid #3498db !important; /* Blue */
    border-radius: 50% !important;
    width: 25px !important;
    height: 25px !important;
    animation: spin 2s linear infinite !important;
    background-repeat: no-repeat;
    background-position: right;
    margin-left: 480px;
    margin-top: 5px;
    display: none;
}

.dropdown-menu {
    background-color: #333;
}

    .dropdown-menu > li > a {
        color: rgb(255, 204, 42) !important;
    }

        .dropdown-menu > li > a:hover {
            color:black !important;
            background-color: rgb(255, 204, 42) !important;
        }