/* Sticky header styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
main {
  /* Margin height below header */
  margin-top: 75px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}

/* Bach-o-Meter (Metronome) styles
-------------------------------------------------- */
#beat .beat {
  border-radius: 100px;
  background: #ccc;
  width: 30px;
  height: 30px;
  margin: 12px;
  display: inline-block;
}
#beat .sub {
  height: 10px !important;
  width: 10px !important;
  margin: 10px -10px 10px 10px;
}
#beat .on {
  background-color: #a7a7a7;
}
#beat .sub.on {
  background-color: #b9b9b9;
}
/* Comment out for debugging tones visually with LG/SM Dots */
#beat {
  display: none;
}
/* Custom for Toggle button */
.toggle {
  border: 1px solid grey;
}

/* Custom Text Styles
-------------------------------------------------- */
.text-grey {
  color: #696969;
}
.nav_title {
  font-size: 0.8em;
}

/* Bach-o-meter Mode Images (HTML Menus)
-------------------------------------------------- */
.config-img-mode {
  display: none;
}

/* Bach-o-meter Touch Imagemaps
-------------------------------------------------- */
.config-tactus-touch {
  display: none;
}
.config-notes-touch {
  display: none;
}
.touch-default {
  display: inline;
}

/* .img-max {
  max-width: 300px;
  width: 100%;
} */

/* Bach-o-meter Touch Autocomplete Preset Movement INPUT
Ref: https://www.w3schools.com/howto/howto_js_autocomplete.asp
-------------------------------------------------- */
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}
