.control.timer {
    font-size: 10pt;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    padding: 7px 8px;
    border-radius: 3px;
    background: rgba(0, 128, 0, 0.2);
}

.control.timer > .title {
    font-size: 10px;
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 500;
}

.control.timer > .value-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.control.timer > .value-holder > .icon {
    width: 12px;
    height: 12px;
    background: url(timer.svg) no-repeat center;
    background-size: 100% 100%;
    margin-right: 6px;
}

.control.timer.ready {
    background: rgba(255, 140, 0, 0.2);
}

.control.timer.disarmed {
    background: rgba(128, 128, 128, 0.2);
}

.control.timer.exec {
    background: rgba(255, 140, 0, 0.8);
}