.big{
    font-size:1.5em;
}


 /* Customize the label (the radio) */
.radio-touch {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height:80px;
  text-align:center;
  height: 80px;
  width: 120px;
}

/* Hide the browser's default radio button */
.radio-touch input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
    
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 120px;
  background-color: #eee;
  border-radius: 10%;
}

/* On mouse-over, add a grey background color */
.radio-touch:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-touch input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-touch input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-touch .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
} 

#hour{
    position:fixed;
    left:10px;
    top:10px;
    width:20%;
    background:#eee;
    border:1px solid #ddd;
    padding:5px;
    z-index:100;
}

@media screen and (max-width: 600px) {
    #hour{
        width:60%;
    }
}