/* Tooltip container */
.tooltip {
    display: inline-block;
    position: relative;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: left;
    padding: 5px;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;

    opacity: 0;
    transition: 0.3s;
    transition-delay: 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    z-index: 30;
}

.magni_glass {
    opacity: 0.45;
}

.magni_glass.clickable {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}

.magni_glass.clickable:hover {
    opacity: 1;
    transform: scale(1.1);
}

.magni_glass.clickable:active {
    transform: scale(0.95);
}

.magni_glass.clickable:focus {
    outline: none;
}