#correctPopup,
#errorPopup {
  position: absolute;
  top: calc(0.2em);
  left: calc(0.2em);
  font-size: 48px;
  width: fit-content;
  height: fit-content;
  max-width: 800px;
  border-radius: 10%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 250ms ease-in, visibility 0ms ease-in 250ms;
  padding: 0.2em;
}

#correctPopup.show,
#errorPopup.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 100ms ease-in, visibility 0ms ease-in 0ms;
}

.popupText {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  height: fit-content;
  padding: 0.2em;
  text-align: center;
}

#correctPopup {
  background-color: rgb(132, 215, 132);
}

#errorPopup {
  background-color: rgb(216, 20, 20);
}

/* Table */
.popupTable {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  justify-items: start;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.dontDisplay {
  display: none;
}

.popupLabelIcon {
  height: 1.2em;
  width: 1.2em;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}

/* Table String */
.popupStringLabel {
  grid-column: 1;
  grid-row: 1;
  margin-right: 1em;
  background-image: url(../icons/Four\ Strings.svg);
}

.popupString {
  grid-column: 2;
  grid-row: 1;
  height: 1.2em;
  width: 1.2em;
}

/* Table Fret */
.popupFretLabel {
  grid-column: 1;
  grid-row: 2;
  margin-right: 1em;
  background-image: url(../icons/Fret.svg);
}

.popupFret {
  margin-right: 0.2em;
  grid-column: 2;
  grid-row: 2;
  height: 1.2em;
  width: 1.2em;
}

/* Table Note */
.popupNoteLabel {
  grid-column: 1;
  grid-row: 3;
  margin-right: 1em;
  background-image: url(../icons/Quarter\ Note.svg);
}

.popupNote {
  height: 1.2em;
  width: 1.2em;
  grid-column: 2;
  grid-row: 3;
}