.gg-presentation {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-radius: 22px
}

.gg-presentation::after,
.gg-presentation::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute
}

.gg-presentation::before {
    width: 12px;
    height: 6px;
    border: 2px solid;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    top: 2px;
    left: 2px;
    border-bottom: 0
}

.gg-presentation::after {
    width: 18px;
    height: 2px;
    background: currentColor;
    left: -1px;
    top: 8px
}