* {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    position: relative;
    float: left;
    /* min-width: 600px; */
    width: 600px;
}

.container .clock {
    float: right;
    width: 400px;
}

.answers {
    float: left;
    width: 200px;
}

.answers .settings {
    width: 95%;
    overflow:hidden;
    display:inline-block;

}
.settings button {
    padding:3px 6px;
    margin-right: 5px;
    float:left;
    width:90px;
    border:1px solid black;
    display:block;
    outline:0;
    font-size: 10px;
}
.answers label {
    display: block;
    margin:2px;
    font-size: 1.2em;
}

 .answers input {
    margin-right: 5px;
}

#hours, #minutes {
    display: inline-block;
    width: 95px;
}

.result {
    clear:both;
    margin: 15px;

}

#resultBtn {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 16px;
  outline:0
}

#right {
    margin: 15px;
    font-size: 2em;
    color: #4CAF50;
}

#wrong {
    margin: 15px;
    font-size: 2em;
    color: rgb(175, 76, 76);
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(14px);
    -ms-transform: translateX(14px);
    transform: translateX(14px);
  }

  .rightAnswer {
    border: 1px solid green;
  }