@bgc: #ffff91;
@c: #936818;
// @bgc:#000;
// @c:#fff;
.cui-tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0);
    &.in {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    &.top {
        margin-top: -3px;
        padding: 8px 0;
        .tooltip-arrow {
            bottom: 0;
            left: 50%;
            margin-left: -9px;
            border-width: 9px 9px 0;
            border-top-color: @c;
            &:after {
                bottom: 1px;
                margin-left: -8px;
                border-top-color: @bgc;
                border-bottom-width: 0;
                content: " ";
            }
        }
    }
    &.right {
        margin-left: 3px;
        padding: 0 8px;
        .tooltip-arrow {
            top: 50%;
            left: 0;
            margin-top: -9px;
            border-width: 9px 9px 9px 0;
            border-right-color: @c;
             &:after {
                left: 1px;
                margin-top: -8px;
                border-right-color: @bgc;
                border-left-width: 0;
                content: " ";
            }
        }
    }
    &.bottom {
        margin-top: 3px;
        padding: 8px 0;
        .tooltip-arrow {
            top: 0;
            left: 50%;
            margin-left: -9px;
            border-width: 0 9px 9px;
            border-bottom-color: @c;
            &:after {
                top: 1px;
                margin-left: -8px;
                border-bottom-color: @bgc;
                border-top-width: 0;
                content: " ";
            }
        }
    }
    &.left {
        margin-left: -3px;
        padding: 0 8px;
        .tooltip-arrow {
            top: 50%;
            right: 0;
            margin-top: -9px;
            border-width: 9px 0 9px 9px;
            border-left-color: @c;
            &:after {
                right: 1px;
                margin-top: -8px;
                border-left-color: @bgc;
                border-right-width: 0;
                content: " ";
            }
        }
    }
    &.top-left .tooltip-arrow {
        bottom: 0;
        right: 9px;
        margin-bottom: -9px;
        border-width: 9px 9px 0;
        border-top-color: @c;
    }
    &.top-right .tooltip-arrow {
        bottom: 0;
        left: 9px;
        margin-bottom: -9px;
        border-width: 9px 9px 0;
        border-top-color: @c;
    }
    &.bottom-left .tooltip-arrow {
        top: 0;
        right: 9px;
        margin-top: -9px;
        border-width: 0 9px 9px;
        border-bottom-color: @c;
    }
    &.bottom-right .tooltip-arrow {
        top: 0;
        left: 9px;
        margin-top: -9px;
        border-width: 0 9px 9px;
        border-bottom-color: @c;
    }
    .tooltip-inner {
        max-width: 200px;
        padding: 8px 10px;
        color: @c;
        text-align: center;
        background-color: @bgc;
        border-radius: 2px;
        box-shadow: 0 0 6px #999;
        border:1px solid @c;
    }
    .tooltip-arrow {
        position: absolute;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 9px;
        &:after {
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            border-color: transparent;
            border-style: solid;
            content: "";
            border-width: 8px;
        }
    }
}
