#start:checked ~ #video {margin-left:150px !important;}
var input = document.getElementById('start');
var video = document.getElementById('video');
input.onclick = function() {
if (this.checked) {
video.classList.add('margin');
} else {
video.classList.remove('margin')
}
}