body {
  font-family: 'Open Sans', sans-serif;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
  text-align: center;
  height: 0px;
  line-height: 0px;
}

#chordTypeSelector, #instrumentSelector, #chordSelector {
  text-align: center;
  overflow: auto;
  white-space: nowrap;
}

.chordType, .chord, .instrument {
  animation: opacity 0.4s ease-in-out;
  transition: color 0.15s ease-in-out;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  /* -webkit-box-shadow: 0px 1px 3px #666666;
  -moz-box-shadow: 0px 1px 3px #666666;
  box-shadow: 0px 1px 3px #666666; */
  padding: 5px 15px 5px 15px;
  text-decoration: none;
  background-color: white;
  border: none;
  margin-top: 5px;
  margin-bottom: 5px;
}

button:active {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

.chordType:hover, .chord:hover, .instrument:hover {
  color: #1989fa;
}

.selected {
  color: #1989fa;
  background: whitesmoke
}

.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*# sourceMappingURL=/chords-vanilla/selector.552b5023.css.map */