html, body {
  height: 100%;
  min-width: 320px;
}

body {
  width: 100%;
  margin-bottom: 60px;
}

header,
main,
footer {
  max-width: 1024px;
  margin: auto;
  width: 100%;
}

main {
  margin-top: 56px;
  min-height: 100%;
  margin-bottom: 60px;
}

i.fa {
  margin-right: 10px;
  margin-left: 10px;
}

a:hover {
  text-decoration: none;
}

footer {
  display: inline-block;
  position: fixed !important;
  bottom: 0;
  right: 0;
  left: 0;
  padding: .5rem 1.5rem;
  z-index: 50;
}

input {
  background-color: #222;
  background-color: transparent;
}

#main-header {
  padding: 30px 0;
}

#clock {
  width: 320px;
  /*height: 475px;*/
  border-radius: 20px;
  padding: 10px;
  background: #222;
  background: #222 -webkit-radial-gradient(20% 80%, 60% 60%, rgba(255,255,255,.12), rgba(0,0,0,.2));
  box-shadow: 0px 2px .7px 1px #777, inset 0 -7px rgba(0,0,0,.4);
}

#display {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  border-radius: 10px;
  margin: auto;
  padding: 5px;
  padding-top: 12px;
  color: #DDD;
  background: #111;
  background: linear-gradient(to top left,  #000 20%, #444 100%);
  box-shadow: inset 3px 3px 4px #111;
}
#display.break {
  color: #f0ad4e;
}

#volume {
  text-align: left;
  margin-top: -5px;
  margin-bottom: -5px;
}

.range-group {
  margin-top: 16px;
  margin-bottom: 10px;
}

label {
  margin-bottom: 0;
  color: #DDD;
}

#timers {
  font-size: 0.8rem;
}

.range-group-label {
  font-weight: 300;
  font-size: 1rem;
  margin-left: 40px;
  margin-bottom: 4px;
}

.slider {
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.icon-btn {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: #DDD;
  width: auto;
}

/* Transform provides pushed button effect to increment/decrement buttons */
.icon-btn:focus {
  outline: none;
  transform: translateY(1px);
}

#buttons {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 40px;
  width: 100%;
  display:flex;
  justify-content:center;
  
}

/* Start and Stop button styles */
.control {
  width: 120px;
  border-width: 2px;
  border-radius: 10px;
  cursor:pointer;
}

.control:hover {
  z-index: 10 !important;
}

 /* Pause button styles */
#pause-btn {
  width: 50px;
  padding: 0;
  z-index: 5;
  border-width: 2px;
  cursor:pointer;
}



/* Utility Styles */

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
}

#mins,
#secs {
  font-family: 'Droid Sans Mono', monospace;
  font-weight: 200;
}


/* Display size adjustments */
@media only screen and (max-width: 768px){
  footer {
    text-align: center;
  }

  .display-3 {
    font-size: 2.8rem;
  }

}