.lab .timer {
    position: absolute;
    right: 270px;
    top: 10px;
    color: #333;
    z-index: 10;
}

.lab .timer.disabled {
  opacity: 0.5;
}

.lab .timer-btn[disabled="disabled"] {
    opacity: 0.5;
    cursor: default;
}
.lab .timer-btn {
    cursor: pointer;
}

.lab .timer .timer-image {
    position: absolute;
    width: 140px;
    height: 100px;
    background-image: url(images/timer.svg);
    background-repeat: no-repeat;
    background-size: 104px;
    font-size: 14px;

}
.lab .timer .timer-play {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(images/play.svg);
    background-repeat: no-repeat;
    left: 200px;
    top: 27px;
    background-size: 36px;
    border-radius: 20px;
    padding: 10px;
}
.lab .timer .timer-play.pressed {
    background-image: url(images/play-down.svg);
    top: 30px;
}
.lab .timer-replay {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(images/replay.svg);
    background-repeat: no-repeat;
    left: 120px;
    top: 27px;
    background-size: 36px;
    border-radius: 20px;
}
.lab .timer-replay.pressed {
    background-image: url(images/replay-down.svg);
    padding-top: 14px;
}

.lab .timer-speed {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(images/speed.svg);
    background-repeat: no-repeat;
    left: 160px;
    top: 27px;
    background-size: 36px;
    border-radius: 20px;
    padding: 10px;
}
.lab .timer-speed.pressed {
    background-image: url(images/speed-down.svg);
    padding-top: 14px;
}

.lab .timer .timer-header {
    padding: 6px 0 0 31px;
    font-weight: 600;
}
.lab .timer .timer-value {
    padding: 15px 0 0 29px;
    font-weight: 600;
    font-size: 16px;
}