.gg-thermometer {
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px
}

.gg-thermometer::after,
.gg-thermometer::before {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    border-radius: 22px;
    transform: rotate(45deg)
}

.gg-thermometer::before {
    height: 12px;
    border: 2px solid transparent;
    box-shadow:
        0 0 0 2px,
        inset 0 0 0 6px;
    right: 6px;
    top: 1px
}

.gg-thermometer::after {
    height: 8px;
    background: currentColor;
    bottom: 0;
    left: 3px
}