.bedienelemente {
    padding: 0.75em;
    margin-top: 0.8em;
    background-color: white;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    user-select: none;
}

.bedienelement {
    width: 2.2em;
    height: 2.2em;
    cursor: pointer;
}

.abstand {
    margin-left: 1em;
    margin-right: 1em;
}

#ausgabe {
    padding: 0.75em;
    margin-left: 0.8em;
    background-color: white;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    user-select: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

#ausgabe.active {
    visibility: visible;
    opacity: 1;
}

#ausgabe-text {
    font-size: 16px;
}

.close-symbol {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    width: 2.5em;
    height: 2.5em;
}