.characteristics {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.characteristics .characteristic.icon {
    width: 32px;
}

.characteristics .characteristic.icon svg {
    width: 100%;
    height: 100%;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    width: 120px;
}

.tooltipright {
    left: 0;
    bottom: 120%;
}

.tooltipleft {
    right: 0;
    bottom: 120%;
}

.tooltiptop {
    bottom: 120%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
}

.tooltip .tooltiptext.tooltipright::after {
    left: 15%;
}

.tooltip .tooltiptext.tooltiptop::after {
    left: 50%;
}

.tooltip .tooltiptext.tooltipleft::after {
    right: 10%;
}