.w-tooltip {
    max-width: 170px;
    box-shadow: 0 2px 9px rgba(0,0,0,0.5);
    border: 3px solid white;
    border-radius: 5px;
    padding: 8px;
    padding-left: 40px;
    background-color: #4c4b4c;
    background-color: rgba(64,64,64,0.8);
    background-repeat: no-repeat;
    background-position: 8px center;
    font-family: "Helvetica Neue","HelveticaNeue",Calibri,Helvetica,Arial;
    font-size: 12px;
    font-weight: bold;
    color: white;
    z-index: 2147483647;
    pointer-events: none;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

    .w-tooltip.active {
        opacity: .99;
        filter: alpha(opacity=100);
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }

    .w-tooltip.w-tooltip-info {
        background-color: #0090DA;
        background-color: rgba(36,141,196,0.8);
        background-image: url('../images/tooltip-info.png');
    }

    .w-tooltip.w-tooltip-warn {
        background-color: #db8e66;
        background-color: rgba(202,117,54,0.8);
        background-image: url('../images/tooltip-warn.png');
        background-repeat: no-repeat;
        background-position: 8px center;
        padding-left: 40px;
    }

    .w-tooltip.w-tooltip-error {
        background-color: #b61700;
        background-color: rgba(180,34,28,0.8);
        background-image: url('../images/tooltip-error.png');
        background-repeat: no-repeat;
        background-position: 8px center;
        padding-left: 40px;
    }

    .w-tooltip.w-tooltip-external {
        max-width: 320px;
        width: 320px;
        border-color: #c1c1c1;
        border-style: solid;
        border-width: 1px;
        font-family: lato,arial,sans-serif;
        background-color: white;
        color: #999999;
        font-weight: normal;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
        margin: 0;
        padding: 2em;
        line-height: 1.5em;
        font-size: 14px;
    }

        .w-tooltip.w-tooltip-external h6 {
            line-height: 1em;
            font-size: 14px;
            font-weight: 400;
            color: black;
            margin: 0 0 15px;
            text-transform: uppercase;
        }

    .w-tooltip.w-tooltip-mini {
        border: 2px solid #808080;
        padding: 4px;
    }

        .w-tooltip.w-tooltip-mini.wide {
            max-width: 320px;
        }

    .w-tooltip.w-tooltip-noicon {
        background-image: none;
        padding-left: 8px;
    }

    .w-tooltip .tooltip-tip {
        position: absolute;
        bottom: 0;
    }

        .w-tooltip .tooltip-tip .tip {
            position: absolute;
            bottom: -8px;
            left: -6px;
            width: 20px;
            height: 20px;
            background: #FFF;
            box-shadow: 0 2px 9px rgba(0,0,0,0.5);
            z-index: 1;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

        .w-tooltip .tooltip-tip .overlay {
            position: absolute;
            bottom: 0;
            left: -20px;
            background: #FFF;
            width: 45px;
            height: 25px;
            z-index: 2;
        }
