﻿.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.s-tooltip {
    cursor: help;
    min-width: 15px;
    min-height: 15px;
}

.tooltip-text {
    position: absolute;
    display: none;
    top: 25px;
    left: -90px;
    padding: 15px;
    width: 200px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 13px 4px rgba(0,0,0,.09);
    color: #42494f;
    text-align: start;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    white-space: initial;
    z-index: 1;
}

.s-tooltip:hover + .tooltip-text {
    display: block;
}

.tooltip-text.low {
    color: #26c9fc;
}

.tooltip-text.normal {
    color: var(--light-green-color);
}

.tooltip-text.increased {
    color: #f7b500;
}

.tooltip-text.high {
    color: var(--light-red-color);
}

.tooltip-text.hell {
    color: #df0000;
}