/* 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;
}

.vertical_th {
    display: flex;
    flex-direction: column;
}

.vertical_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
}

.vertical_wrap span {}


highlight {
    background-color: var(--infocard_text_highlight);
}

.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;
}

th {
    z-index: 1;
}

.line_through {
    text-decoration: line-through;
}

.line_underline {
    text-decoration: underline;
}

.techcell {
    display: block;
    max-width: 150px;
    overflow: hidden;
}