.fretboard {
background: linear-gradient(to bottom, rgba(247,220,170,1) 1%,rgba(206,160,119,1) 53%,rgba(247,220,170,1) 100%);
  border-left: 5px solid #afafaf;
  border-right: 5px solid #afafaf;
  position: relative;
}
.chord-selector{
  height: 50px;
  background-color:#3d3939;
 } 
 .chord-selector:focus {
    outline-color: transparent;
    outline-style:solid;
    box-shadow: 0 0 0 4px #ed1f18;

}
.string {
  border-bottom: 1px solid #afafaf;
  height: 30px;
}

.string:first-child {
  border-top: 1px solid #afafaf;
}

.notes-wrap,
.fingers-wrap {
  height: 90px;
  width: 30px;
  position: absolute;
  top: -15px;
  left: -35px;
}

.note {
  font-size: 25px;
  line-height: 1;
  height: 30px;
}
.notein {
  font-size: 25px;
  line-height: 1;
  height: 30px;
  width: 100%;
  text-align:left;
  margin-left:0px;
  padding-left:45px;
 background-color:transparent; 
color: green;
  position: absolute;
  top: -30px;
  left: 0px;
  
  
}
.fingers-wrap {
  left: 0;
}

.finger-point {
  background-color: #a10000;
  color: white;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  margin-bottom: 5px;
  opacity: 0;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
}

.frets-wrap {
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.fret {
  height: 90px;
  flex: 1 1 100%;
  border-right: 2px solid #888888;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fret:last-child {
  border-right: none;
}

.fret-number {
  font-size: 1.5rem;
  transform: translateY(150%);
}
body{
  background-color: #000;
	  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}