.tune-button .et_pb_button,
.et_pb_button.tune-button {
    white-space: nowrap;
}

.tune-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;

    width: 1.4em;
    height: 0.9em;
    margin-right: 0.5em;

    line-height: 1;
    vertical-align: middle;
}

/* Play-Dreieck */
.tune-icon::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 0;
    height: 0;

    transform: translate(-40%, -50%);

    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.65em solid currentColor;
}

/* Standardmässig kein zweites Element */
.tune-icon::after {
    content: "";
    display: none;
}

/* Linker Pausebalken */
.tune-icon.is-playing::before {
    content: "";
    display: block;

    position: absolute;
    top: 0.05em;
    left: 0;

    width: 0.1em;
    height: 0.8em;

    transform: none;
    border: none;
    background-color: currentColor;
}

/* Rechter Pausebalken */
.tune-icon.is-playing::after {
    content: "";
    display: block;

    position: absolute;
    top: 0.05em;
    right: 0;

    width: 0.1em;
    height: 0.8em;

    background-color: currentColor;
}