@import "variables";

.vn-tooltip {
    display: none;
    position: fixed;
    z-index: 150;
    background-color: $color-bg-dark;
    color: $color-active-font;
    border-radius: 3px;

    &.show {
        display: inherit;
    }
    &.text {
        max-width: 320px;
        padding: 15px;
    }
    & > .arrow {
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
    }
}