.FastButton {
    position: absolute;
    bottom: 30px;
    left: 4px;
    background: #eee;
    padding: 3px;
    border: #000 1px solid;
    border-radius: 4px;
    float: none;
    clear: both;
    max-width: 50vw;
    overflow: hidden;
}

.FastButton .AppXButton {
    border: #888 1px solid;
    text-align: center;
    width: 32px;
    height: 32px;
    font-size: 9px;
    position: relative;
    cursor: pointer;
    float: left;
    margin-left: 3px;
    border-radius: 4px;
}

.FastButton .AppXButton:nth-child(1) { margin-left: 0;}
.FastButton .AppXButton img { margin-top: 2px; width: 16px; height: 16px; }

.FastButton .AppXButton div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #048;
    font-weight: bold;
    height: 1.1em;
    line-height: 1.1em;
    overflow: hidden;
}

.FastButton  .AppXFlash {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { background: #F80; }
}