/* This is the CSS for the Metronome page
 * Version 1.0.0
*/

h1 {
  margin-top: 0;
}

h2,
h3,
h4,
h5,
h6 {
  margin-top: .7em;
}

.btn {
  font-size: 1.5em;
}

div#content {
  background-color: #F5F5DC;
  padding: 1em 0.7em;
}

.intervalHead {
  border-top: solid black 2px;
  padding-top: 8px;
}

div#drillSelections input {
  display: inline;
  width: auto;
  padding: 2px;
  text-align: center;
  font-size: 24px;
  max-width: 5em;
}

div#drillSelections input[type=checkbox] {
  transform: scale(1.7);
  padding: 10px;
  margin: .5em .2em;
}

.checkboxtext {
  font-size: 110%;
  display: inline;
  margin-left: .7em;
}

div#drillSelections label {
  padding: 0 16px;
  display: inline;
  border: solid black 0.5px;
}

div#drillSelections input.interval {
  display: none;
}

input:required:invalid,
input:focus:invalid {
  background-color: red;
  -moz-box-shadow: none;
}

td {
  vertical-align: top;
}

a,
.tolink {
  cursor: pointer;
}

nav {
  font-weight: bold;
}

.active {
  text-decoration: underline;
}

div#progressBar {
  height: 4rem;
  font-size: 16px;
  border: 2px solid black;
}

/* override styles when printing */

@media print {
  body {
    margin: 0 !important;
    color: #000 !important;
    background-color: #fff !important;
  }

  div.custom-header {
    display: none !important;
  }

  div#content {
    padding-top: 8px !important;
  }

  div#sessionTimer {
    display: none !important;
  }
}