/* Edge + IE11 */
.uk-range::-ms-tooltip {
    display: none;
}
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Dimensions
 * 4. Style
 */
.uk-tooltip {
    /* 1 */
    display: none;
    /* 2 */
    position: absolute;
    z-index: 1030;
    /* 3 */
    box-sizing: border-box;
    max-width: 500px;
    padding: 15px;
    /* 4 */
    background: rgb(255, 255, 255);
    box-shadow: 0 0 15px rgba(85, 85, 85, 0.61);
    border-left: 10px solid #ef6e2c;
    border-radius: 2px;
    color: #707070;
    font-size: 12px;
}

.uk-tooltip::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-12px, 0) rotate(45deg);
    background-color: #fff;
    left: 50%;
    bottom: -5px;
}
    /* Show */
    .uk-tooltip.uk-active {
        display: block;
    }
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-tooltip-top'] {
    margin-top: -20px;
}

[class*='uk-tooltip-bottom'] {
    margin-top: 10px;
}

[class*='uk-tooltip-left'] {
    margin-left: -10px;
}

[class*='uk-tooltip-right'] {
    margin-left: 10px;
}
