/**
Style for tooltip in weather forecast conditions
 */
.tooltipcss {
    position: relative;
    display: inline-block;
}

.tooltipcss .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltipcss:hover .tooltiptext {
    visibility: visible;
}

.tooltipcss ul{
    list-style-type: none;
}