.modal-chordbox-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
#chord-box-container.raw .chord-box-wrapper {
  margin: 0;
  padding: 0;
}
.chord-box-wrapper {
  max-width: 220px;
  display: flex;
  margin: 0 auto;
  padding: 1em 0 1em 0;
}
.chord-box-wrapper .fret-label-column {
  width: 25px;
  text-align: left;
  padding-top: 90px;
  cursor: pointer;
}
.chord-box-wrapper .fret-label-column:focus {
  outline: none;
}
.chord-box-wrapper .chord-box-content {
  flex: 1 0 auto;
  position: relative;
}
.chord-box-wrapper .chord-box-content .chord-box-title {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chord-box-wrapper .chord-box-content .chord-box-title p#chord-name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2em;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-title
  p#chord-name.show-placeholder:before {
  content: attr(data-placeholder);
  color: #ccd6dd;
}
.chord-box-wrapper .chord-box-content .chord-box-title p#chord-name:focus {
  outline: none;
}
.chord-box-wrapper .chord-box-content .chord-box-open-strings {
  border-bottom: 4px solid #ccc;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-open-strings
  .open-string-cell {
  cursor: pointer;
}
.chord-box-wrapper .chord-box-content .chord-box-rows {
  display: flex;
  flex-direction: column;
}
.chord-box-wrapper .chord-box-content .chord-box-rows .chord-box-row {
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row
  .chord-box-cell {
  width: 1px;
  background: #ccc;
  position: relative;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row
  .chord-box-cell
  .finger-cell {
  border-radius: 100px;
  background: #ff3a4b;
  width: 24px;
  height: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 6px;
  left: -12px;
  cursor: pointer;
  z-index: 2;
  user-select: none;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row
  .chord-box-cell
  .finger-cell.inactive {
  opacity: 0;
  background: #ccc;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row
  .chord-box-cell
  .finger-cell.editable:hover {
  opacity: 1;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row
  .chord-box-cell
  .barre-cell {
  height: 3px;
  width: 36px;
  background: #ff3a4b;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row
  .chord-box-cell:last-of-type {
  border: none;
}
.chord-box-wrapper
  .chord-box-content
  .chord-box-rows
  .chord-box-row.capo::after {
  height: 25%;
  width: 105%;
  background: #333;
  content: "";
  position: absolute;
  left: -2.5%;
  top: 37.5%;
}
.chord-box-wrapper .chord-box-content .chord-box-rows .barre {
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  content: "";
  position: absolute;
  top: 4px;
}
