.caption {
	font-size: 0.8rem;
}
.pcr-app:not(.visible) {
	display: none;
}
.navbar {
	box-sizing: border-box;
	transition:
		margin 0.4s ease-out,
		height 0s ease-in;
	max-height: 150px;
	min-height: 2.2em;
	color: var(--fontColorDark);
	background-color: var(--dark0);
	padding: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	position: relative;
	padding-bottom: 0;

	z-index: 121;
}
.styledScroll {
	scrollbar-width: thin;
	scrollbar-color: white transparent;
}

.navContainer {
	width: 100% !important;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	justify-content: space-evenly;
	justify-items: center;
}
@media only screen and (max-width: 1200px) {
	.topContainer {
		margin-left: 8px;
		margin-right: 8px;
	}
}
@media only screen and (max-width: 975px) {
	.hiddenIfSmall {
		display: none !important;
	}
	.shownIfSmall {
		display: flex !important;
		flex: 1 !important;
	}
	.navContainer {
		width: 100% !important;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: space-between;
		justify-items: stretch;
	}
	.innerMenuDivsContainer {
		width: 100% !important;
		margin-left: 0px !important;
	}
	.topContainer {
		margin-left: 16px;
		margin-right: 16px;
	}
	.topContainer:nth-child(4) {
		flex: 3;
		/* justify-content: center; */
	}
	.navbar {
		padding-bottom: 0.25rem;
	}
}

#keyBindCanvas {
	position: absolute;
	z-index: 101;
	pointer-events: none;
}
#fingeringCanvas {
	pointer-events: none;
	position: absolute;
	z-index: 101;
}
#sheetContainer {
	background-color: wheat;
	position: absolute;
	height: 350px;
	width: 100%;
}
#sheetCnv {
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: 106;
	pointer-events: none;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);
	background-color: var(--buttonHoverFontColor);
}
#minimizeMenu {
	position: absolute;
	font-size: 1.2rem;
	z-index: 107;
	transition: all 0.35s ease-in;
	cursor: pointer;
	width: 3em;
	height: 1.5em;
	padding: 0;
	left: 50%;
	top: calc(100% + 32px);
	transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);
	box-shadow:
		#00000036 0px -4px 4px 0px inset,
		0px 2px 5px 0px rgba(0, 0, 0, 0.5);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
#minimizeMenu .glyph {
	transition: transform 0.4s ease-out;
}
#minimizeMenu.minimized .glyph {
	transform: rotate(180deg);
}
.zoomGroup {
	position: absolute;
	right: 0.5rem;
	bottom: calc(-1 * var(--progressBarHeight));
	/* width: 3.2em;
	 */
	gap: 0.5rem;
	z-index: 13;
	pointer-events: none;
	transition:
		1s opacity ease-in,
		0.4s top ease-out;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: 0.35s opacity ease-in;
	transform: translate(0, 100%);
}
.zoomGroup.collapsed {
	gap: 0;
}
.zoomBtn {
	display: block;
	position: relative;
	float: none;
	cursor: pointer;
	pointer-events: all;
	font-size: 0.741rem !important;
	width: 3rem !important;
	max-width: unset !important;
	height: 3rem !important;
	border-radius: 3.5em !important;
	border: 2px solid var(--buttonFontColor) !important;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0) !important;
	transition: 0.25s all cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	box-shadow: none;
	display: flex;
}
.zoomBtn span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
@media only screen and (max-height: 900px) {
	.zoomGroup {
		/* width: 6em; */
		flex-direction: row;
		max-width: calc(100% - 1rem);
	}
	/* .zoomBtn {
		float: right;
	} */
}
.zoomBtn.hidden {
	height: 0px !important;
	/* width: 0px !important; */
	margin: 0px !important;
	padding: 0px !important;
	overflow: hidden;
	border: 0px solid black !important;
	visibility: hidden;
	opacity: 0;
}

canvas {
	z-index: 0;
}
#progressBarCanvas {
	background-color: var(--dark0);
	box-sizing: border-box;
	left: 0px;
	bottom: 0px;
	position: absolute;
	cursor: pointer;
	z-index: 107;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}

input.forcedThinButton {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 8px !important;
}
.forcedThinButton.btn {
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
}
.forcedThinButton {
	width: 50px !important;
}

.innerMenuDivsContainer {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	pointer-events: none;
	overflow: none;
	margin-top: calc(-1 * var(--progressBarHeight));
	width: 30%;
	margin-left: 70%;
	z-index: 150;
}
.innerMenuDiv {
	position: absolute;
	box-sizing: border-box;
	pointer-events: all;
	z-index: 100;

	width: 100%;
	height: 100%;
	min-width: 300px;

	background-color: var(--dark1);

	overflow-y: hidden;
	overflow-x: hidden;

	transition: all 0.25s ease-out;
	display: flex;
	flex-direction: column;

	/* border-left: 1px solid var(--dark4); */
	box-shadow:
		-3px -3px 6px rgba(0, 0, 0, 0.5),
		3px -3px 6px 0px #ffffff5e,
		0px -7px 1px 0px var(--highlight0);
}

.innerMenuCloser {
	background-color: transparent;
	font-size: 1rem;
	padding: 0.5rem;
	text-align: center;
	box-sizing: border-box;
	box-shadow: none;
	display: flex;
	justify-content: flex-start;
}
.innerMenuCloser:hover {
	background-color: transparent;
	box-shadow: none;
	color: var(--buttonHoverFontColor);
	fill: var(--buttonHoverFontColor);
}
.innerMenuCloser:hover:active {
	background-color: transparent;
	box-shadow: none;
	color: var(--buttonHoverFontColor);
}

.innerMenuContDiv:first-of-type {
	border-top: none;
}
.innerMenuContDiv {
	/* background-color: var(--dark0); */
	color: var(--fontColor);
	/* border-top: 1px solid var(--borderColor); */
	border-radius: 2px;
	box-sizing: border-box;
	/* overflow: hidden; */

	/* box-shadow: inset 0px -1px 3px 0px rgb(0 0 0); */
	/* box-shadow: inset 0px -2px 2px 0px rgba(0, 0, 0, 0.5); */
}
.settingButtonGroup .btn {
	background-color: var(--dark2);
}
.menuSubLabel {
	padding: 0.4em;
	padding-left: 1.5em;
	/* text-align: center; */
	font-size: 0.841rem;
	font-weight: 600;
	overflow: hidden;
	word-break: break-word;
	background-color: var(--dark1);
	padding-top: 16px;
	padding-bottom: 16px;
}
.innerMenuSubContDiv {
	background-color: var(--dark1);
	color: var(--fontColor);
	/* border-top: 1px solid var(--borderColor); */
	border-radius: 2px;
	box-sizing: border-box;
	overflow: hidden;

	transition: 0.3s all ease-out;
	max-height: auto;
	transition: all 0.3s ease-in;
}
.innerMenuSubContDiv .innerMenuContDiv .settingsLabel {
	padding-left: 4em;
}

.collapsibleBody {
	display: grid;
	grid-template-rows: 1fr;
	transition: grid-template-rows 0.3s ease;
}
.collapsed > .collapsibleBody {
	grid-template-rows: 0fr;
	gap: 0;
	margin: 0;
}

.collapsibleBodyInner {
	overflow: hidden;
}
.collapseGlyph {
	cursor: pointer;
	height: 14px;
	width: 14px;
	margin-right: 16px;
	transition: transform 0.4s ease-out;
}
.innerMenuContDiv:not(.collapsed) .collapseGlyph {
	transform: rotate(90deg);
}

.clickableTitle {
	padding: 0;
	position: sticky;
	z-index: 30;
	padding-left: 1rem;
	font-size: 0.741rem;
	top: 0px;
	height: 3rem;
	margin-top: 2px;
	box-sizing: border-box;
	width: 100%;
	border: none;
	cursor: pointer;

	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;

	display: flex;
	-ms-user-select: none;
	align-items: center;
	justify-content: space-between;

	/* background-color: var(--dark2); */
	background: linear-gradient(0deg, var(--dark2), var(--dark2));
	color: var(--fontColor);

	box-shadow:
		0px 4px 2px 0px rgba(0, 0, 0, 0.5),
		inset 0px 1px 1px 0px rgba(255, 255, 255, 0.1);
}

.songSearchContent {
	display: none;
}
.showSearch .songButton .glyphHolder {
	display: none;
}
.showSearch .songButton .glyphHolder,
.showSearch .songButton .songNameLabel {
	display: none;
}
.showSearch .songSearchContent {
	display: block;
	display: grid;
	grid-template-columns: 1fr 0.5fr;
	padding-top: 1rem;
	padding-bottom: 1rem;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	column-gap: 1rem;
}

.songNameLabel {
	width: 80%;
	float: left;
	overflow: hidden;
	word-break: break-word;
}
.songButton {
	position: relative;
	width: 100%;
	padding-left: 5px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--dark1);
	padding-top: 8px;
	padding-bottom: 8px;
	padding-block: 0px;
	padding-inline: 0px;
	border-width: 0px;
	border-style: outset;
	border-image: initial;
	text-align: left;
	cursor: pointer;
}
.songGlyph {
	background-color: transparent;
	box-shadow: none;
	margin: 0;
	width: 40px;
	height: 40px;
}
.hideLeft .songGlyph.unhidden {
	visibility: hidden !important;
}
.songGlyph .btn-select-line {
	display: none;
}
.infoGlyph.hidden {
	display: none;
}
.songButton:hover {
	background-color: var(--dark0);
	color: var(--buttonFontColor);
}
.glyphHolder {
	padding: 0.5em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 16px;
	min-height: 2rem;

	margin-right: 16px;
}
.glyphHolder .glyph {
	cursor: pointer;
}
.glyphHolder .glyph svg {
	transition: fill 0.3s ease-in-out;
}
.glyphHolder .glyph:hover svg {
	fill: var(--fontWeakenedColor);
}
.songButton span {
	float: right;
	font-size: 1rem;
	margin-right: 0.5rem;
	position: unset;
}
.clickableTitle:hover {
	background: linear-gradient(0deg, var(--dark2), var(--dark2));
	color: var(--buttonHoverFontColor);
}
.clickableTitle:active,
.songButton:active {
	/* background: linear-gradient(0deg, var(--dark2), var(--dark2)); */
	color: var(--buttonHoverFontColor);
}
.clickableTitle:focus-visible,
.songButton:focus-visible {
	background-color: var(--buttonHoverBgColor);
	background: linear-gradient(0deg, var(--dark2), var(--dark2));
}

.notification {
	/* background-color: var(--dark05); */
	background: linear-gradient(-20deg, var(--dark05), var(--dark2));
	box-sizing: border-box;
	color: var(--fontColor);
	max-height: calc(90% - 50px);
	top: 50%;
	left: 50%;
	padding: 4rem 4rem 4rem 4rem;
	transform: translate(-50%, -50%);
	position: absolute;
	gap: 2rem;
	overflow-y: auto;
	overflow-x: hidden;
	border-radius: 2px;
	/* border: 2px solid var(--buttonFontColor); */
	z-index: 99999;
	text-align: center;
	line-height: 2em;
	box-shadow:
		inset -2px -2px 3px 0px #000000,
		inset 0px 0px 3px 0px #ffffff5e,
		0px 0px 5px 0px rgba(0, 0, 0, 0.4);
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	font-family: monospace;
}
.notification.fullscreen {
	background: none;
	background-color: var(--dark05);
	border-radius: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: none;
	max-height: unset;
}
/* .notificationInner {
	position: relative;
	width: 100%;
	height: 100%;
} */
.notificationTitle {
	margin: 0;
	text-align: left;
	font-family: monospace;
	font-weight: 100;
	letter-spacing: 2px;
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.notificationBody {
	text-align: left;
	width: 100%;
	font-size: 0.8rem;
	letter-spacing: 1.2px;
}
.notificationText {
	text-align: center;
	width: 100%;
}
.notificationLink {
	text-align: center;
	width: 100%;
	color: var(--fontColor);
}
.notificationCloserCont {
	top: 1rem;
	right: 1rem;
	position: absolute;
}
.notificationCloser {
	float: right;
	background-color: var(--dark0);
	color: var(--buttonFontColor);
}
.notificationCloser:hover {
	color: var(--buttonHoverFontColor);
}
.notification input[type="text"] {
	padding-left: 1rem;
	padding-right: 1rem;
}
.notification .btn {
	max-width: 400px;
}

.cacheCont {
	max-width: min(100%, 900px);
	width: 100%;
	box-sizing: border-box;
	display: flex;
	margin-left: auto;
	flex-direction: column;
	margin-right: auto;
	align-items: flex-start;
	text-align: left;
	gap: 1rem;
	background-color: var(--dark1);
	padding: 2rem;
	border-radius: 9px;
	box-shadow:
		inset 1px 1px 3px 0px rgba(255, 255, 255, 0.25),
		inset -3px -3px 3px 0px rgba(0, 0, 0, 0.15);
	position: relative;
}
.cacheCont .btn {
	background-color: var(--dark1);
}
.glyph.cacheOkay {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 1.5rem;
	height: 1.5rem;
	color: var(--progressBarGreen);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border: 2px solid var(--progressBarGreen);
	border-radius: 100%;
}
.glyph.cacheOkay svg {
	fill: var(--progressBarGreen);
	/* stroke: var(--buttonFontColor); */
}
.cacheCont h3 {
	margin-top: 0;
	margin-bottom: 0;
}
.cacheCont .textGlyphButton {
	padding: 0.5em 1em;
}
.cacheError:empty {
	display: none;
}
.cacheProgress {
	white-space: nowrap;
}
.cacheCont .grp.gap {
	gap: 2rem;
}
.cacheCont .grp.gap05 {
	gap: 1rem;
}
.cacheCont .settingContainer {
	max-width: 270px;
}
.cacheCont .grp {
	width: 100%;
	/* gap: 2rem; */
}

.highlighted {
	animation: pulse 1.5s infinite;
	box-shadow: 0em 0em 5px 5px rgba(0, 0, 0, 0.8);
}

.centeredBigText {
	width: 100%;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 1em;
}
.trackName {
	width: 100%;
	padding-top: 0.2rem;
	font-size: 0.741rem;

	text-align: left;
}
.instrumentName {
	width: 100%;
	text-align: left;
	font-size: 0.741rem;
	padding-left: 0.2em;

	text-align: left;
}

.halfContainer {
	width: 50% !important;
	float: left;
	row-gap: 1rem;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0.5rem;
}
.midiRow {
	display: flex;
	justify-content: space-between;
	flex-direction: row;

	width: 100%;
	margin: 0;
	padding-left: 1rem;
	padding-right: 1rem;
	box-sizing: border-box;
}

.clearTrackRows {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px;
}
.clearTrackRow {
	position: relative;
	padding: 16px;
	padding-left: 16px;
	background-color: var(--dark2);
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
}
.clearTrackRow:hover {
	background-color: var(--dark1);
}
.clearTrackTitle {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

.clearTrackTrackName {
}
.clearTrackHandName {
}
.clearTrackColorThing {
	background-color: rgb(255, 160, 0);
	position: absolute;
	left: 0;
	top: 0;
	width: 8px;
	height: 100%;
}
.col {
	justify-content: space-between !important;
}

.playControlButton {
	font-size: 2rem;
	margin-left: 0.2em;
	margin-right: 0.2em;
	min-height: 60px;
	min-width: 60px;
}
.playControlButton .glyph,
.playControlButton .glyph svg {
	width: 2rem;
	height: 2rem;
}
.pickr {
	width: 100%;
	height: 100%;
}
.colorPickerButtonContainer:has(.pcr-button:focus-visible) {
	box-shadow:
		0px 0px 0px 1px var(--buttonFontColor),
		0px 0px 0px 1px var(--buttonFontColor);
}
.pcr-button {
	width: 100%;
	height: 100%;
	position: absolute;
}
.pcr-button:focus-visible {
	box-shadow:
		0px 0px 0px 1px var(--buttonFontColor),
		0px 0px 0px 1px var(--buttonFontColor);
}
.pickr .pcr-button::after,
.pickr .pcr-button::before {
	display: none;
}
.topContainer {
	margin-left: 16px;
	margin-right: 16px;
	display: inline-flex;
	align-items: center;
	align-items: unset;
}
.topContainer.shownIfSmall {
	justify-content: flex-end;
}
/*leftest*/
.topContainer:nth-child(1) {
	/* margin-right: auto; */
	justify-content: space-between !important;
	align-items: unset;
}
/*middle*/
.topContainer:nth-child(4) {
	/* flex: 3; */
	justify-content: center;
}

/*rightest*/
.topContainer:nth-child(9) {
	margin-left: auto;
	justify-content: flex-end;
	display: inline-flex;
	align-items: unset;
}
.shownIfSmall {
	display: none;
	flex: 0;
}

.songInfoWrapper {
	width: 60%;
	height: 60%;
	z-index: 1000;
}
#closeSongInfo {
	position: fixed;
	top: 1rem;
	right: 1rem;
}
.songInfoTitle {
	margin: 1em;
	text-align: center;
}
.songInfoRow {
	text-align: left;
	border-bottom: 1px solid var(--fontColor);
	margin-top: 0.4em;
	font-size: 0.741em;
}
.songInfoRowSpan {
	text-align: right;
	float: right;
}

.songInfoRowIndented {
	text-align: left;
	margin-left: 1em;
	margin-top: 0.4em;
	font-size: 0.741em;
}
#midiSetupDialog {
	padding: 1rem;
}
.notificationContent {
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.notificationTable {
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	border-spacing: 1em;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-y: auto;
	background-color: var(--dark2);
	padding: 2rem;
	box-sizing: border-box;
}
.notificationTable .headerCell {
	font-size: 1rem;
	font-weight: bold;
	flex-direction: row;
	text-align: left;
	flex: 1;
}
.notificationTable .headerCell:nth-child(1) {
	flex: 1;
}
.notificationTable .tableCell {
	font-size: 0.841rem;
	font-weight: normal;
	text-align: left;
	flex: 1;
	line-height: 1.2;
}

.notificationTable .tableRow {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 1.5em;
	gap: 1rem;
}
.notificationTable .inputCell {
	display: flex;
	align-items: center;

	flex: 1;
}
.hotkeyBindingField {
	border-radius: 5px;
	padding: 3px;
	cursor: pointer;
	height: 100%;
	background-color: var(--inputBgColor);
	color: var(--inputFontColor);
	font-size: 0.641rem;
	box-shadow:
		inset 0px 0px 4px 0px rgba(0, 0, 0, 0.5),
		inset 0px 0px 0px 0px rgba(255, 255, 255, 0);
	text-align: center;
	transition: 0.3s box-shadow ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 150px;
	max-height: 50px;
	width: 150px;
	height: 50px;
}
.hotkeyBindingField.active {
	box-shadow:
		inset 0px 0px 4px 0px rgba(0, 0, 0, 0.5),
		inset 0px 0px 0px 3px white;
}

.pitchDetectionDiv {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--lightBg);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	z-index: 101;
	pointer-events: none;
	transition: opacity 0.5s ease-in-out;
}
.pitchDetectionNoteContainer {
	flex: 1;
	max-height: calc(calc(100% - 200px) - var(--whiteKeyHeight));
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	gap: 10px;
	align-items: center;
	text-align: center;
	z-index: 255;
	pointer-events: none;
	width: 100%;
	box-sizing: border-box;
}
.controlNav {
	background-color: var(--dark0);
	pointer-events: all;
	width: 100%;
	height: 200px;

	text-align: center;
	z-index: 255;
}
.controlNavInner {
	background-color: var(--dark0);
	pointer-events: all;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	z-index: 255;
	padding: 0.3rem;
	box-sizing: border-box;
	align-content: space-between;
}
.controlNavInner .sliderContainer {
	margin-left: 2rem;
	margin-right: 2rem;
}
.controlNavInnerMiddle {
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;

	align-content: space-between;
}
.ppTitle {
	margin-top: 0;
	font-size: 26px;
	color: #b5b5b5;
}
.pitchDetectionNote {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	user-select: none;
	width: var(--pitchPracticeNoteWidth);
	height: var(--pitchPracticeNoteWidth);
	color: var(--dark0);
	border-radius: 100px;
	overflow: visible;

	font-size: 40px;
	font-weight: 600;
	font-family: serif;
	/* text-shadow: 1px 1px black; */
	box-shadow: 0px 0px 0px 0px rgba(15, 97, 93, 1);
	pointer-events: all;
	cursor: pointer;
	position: relative;
}
.pitchDetectionNote:active svg {
	animation: greenPulse 0.75s infinite ease-out;
}
.pitchDetectionNote svg {
	width: var(--pitchPracticeNoteWidth);
	height: var(--pitchPracticeNoteWidth);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.pitchDetectionNote svg path {
	fill: var(--dark0);
}
.pitchDetectionNote span {
	font-size: 21px;
	margin-top: 15px;
}
.pitchDetectionNoteMistakes {
	font-family: monospace;
	position: absolute;
	font-size: 16px;
	color: var(--red);
	top: 100%;
}
.pitchDetectionNoteMistakes.perfect {
	font-family: monospace;
	position: absolute;
	font-size: 16px;
	color: var(--progressBarGreen);
	top: 100%;
}
#ppReset {
	margin-top: 2rem;

	pointer-events: all;
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 152;
}

.revealed svg path {
	fill: rgb(0, 0, 0);
}
.revealed {
	color: rgb(0, 0, 0);

	font-size: 30px;
}
.wrong svg path {
	animation: redPulse 0.4s infinite;
}
.played svg {
	animation: greenPulse 0.75s infinite ease-out;
}

.pitchPracticeDialog {
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}
.pitchPracticeDialog h1 {
	margin-top: 0;
}

.glyph {
	width: 1.4rem;
	height: 1.4rem;
}
.glyph svg {
	width: 1.4rem;
	height: 1.4rem;
	fill: var(--buttonFontColor);
	/* stroke: var(--buttonFontColor); */
}
.glyph svg path,
.glyph svg circle,
.glyph svg polyline,
.glyph svg line,
.glyph svg rect {
	stroke-width: 12px;
}

.settingGlyph {
	background-color: transparent;
	box-shadow: none;
}
.settingGlyph:hover {
	background-color: var(--dark0);
	box-shadow: none;
}
.settingGlyph .glyph {
	width: 1.1rem;
	height: 1.1rem;
}
.settingGlyph svg {
	width: 1.1rem;
	height: 1.1rem;
}
.speedDivSWContainer {
	display: flex;
	flex-direction: row-reverse;
}

@keyframes redPulse {
	0% {
		fill: rgba(0, 0, 0, 0);
	}
	50% {
		fill: red;
	}
	100% {
		fill: rgba(0, 0, 0, 0);
	}
}

@keyframes greenPulse {
	0% {
		/* font-size: 50px;
		box-shadow: 0px 0px 0px 0px rgb(0, 0, 0);
		text-shadow: 0px 0px black; */
		width: var(--pitchPracticeNoteWidth);
		height: var(--pitchPracticeNoteWidth);
	}
	20% {
		/* font-size: 50px;
		box-shadow: 0px 0px 0px 0px rgb(0, 0, 0);
		text-shadow: 0px 0px black; */
		width: calc(var(--pitchPracticeNoteWidth) - 10px);
		height: calc(var(--pitchPracticeNoteWidth) - 10px);
		margin-left: 5px;
		margin-right: 5px;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	100% {
		/* font-size: 60px;
		box-shadow: 0px 0px 25px 15px rgba(0, 255, 242, 0);
		text-shadow: 0px -20px rgba(0, 0, 0, 0); */
		width: var(--pitchPracticeNoteWidth);
		height: var(--pitchPracticeNoteWidth);
	}
}

@media only screen and (max-width: 750px) {
	.hotkeyBindingField {
		width: 50px;
		height: 30px;
	}
}
@media only screen and (max-width: 900px) {
	.notification {
		width: 100% !important;
		transform: translate(0, -50%);
		left: 0% !important;
		max-height: none;
		top: 50%;

		padding: 2rem;
	}
	.notificationCloserCont {
		width: calc(100% + 2rem);
	}
	.notificationTable {
		margin-left: -2rem;
		margin-right: -2rem;
		padding: 2rem;
		box-sizing: content-box;
	}
	:root {
		--pitchPracticeNoteWidth: 65px;
	}
	.pitchDetectionNoteContainer {
		gap: 10px;
		max-height: calc(calc(100% - 100px) - var(--whiteKeyHeight));
	}
	.pitchDetectionDiv {
		align-items: flex-end;
	}
	.controlNav {
		height: 100px;
	}
	.cacheCont {
		padding: 1em;
	}
	.glyph.cacheOkay {
		position: absolute;
		top: 1rem;
		right: 1rem;
		width: 1.5rem;
		height: 1.5rem;
	}
	.cacheCont .textGlyphButton {
		padding: 0.5em 0.5em;
		height: fit-content;
	}
	.cacheCont .grp.gap:nth-child(2) {
		align-items: center;
	}
	.cacheCont .grp.gap {
		gap: 1rem;
	}
	.ppTitle {
		font-size: 16px;
	}

	#ppReset {
		left: unset;
		right: 1rem;
		margin-top: 1rem;
		top: 100px;
		transform: translate(0%, 0);
		z-index: 152;
	}
	.pitchDetectionDiv .playControlButton {
		font-size: 1rem;
	}
	.pitchDetectionNote {
		width: 65px;
		height: 65px;

		font-size: 16px;
		font-weight: 600;
		font-family: serif;
	}
	.pitchDetectionNote span {
		font-size: 11px;
		margin-top: 17px;
	}
	.pitchDetectionNote svg {
		width: 65px;
		height: 65px;
	}

	@keyframes greenPulse {
		0% {
			width: var(--pitchPracticeNoteWidth);
			height: var(--pitchPracticeNoteWidth);
		}
		20% {
			width: calc(var(--pitchPracticeNoteWidth) - 10px);
			height: calc(var(--pitchPracticeNoteWidth) - 10px);
			margin-left: 5px;
			margin-right: 5px;
			margin-top: 5px;
			margin-bottom: 5px;
		}
		100% {
			width: var(--pitchPracticeNoteWidth);
			height: var(--pitchPracticeNoteWidth);
		}
	}
}

.searchField {
	padding: 0.5rem;
	padding-left: 1rem;
	padding-right: 0rem;
	box-sizing: border-box;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1100;
	flex: 12;
}
.searchInput {
	width: 100%;

	box-sizing: border-box;
	height: 100%;
	border-radius: 2rem !important;
	padding: 1rem;
	padding-top: 0.6rem !important;
	padding-bottom: 0.6rem !important;
	padding-left: calc(20px + 2rem);

	font-size: 1rem !important;
	/* phosphorIcons */
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><circle cx="112" cy="112" r="80" fill="none" stroke="rgb(175,175,175)" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/><line x1="168.57" y1="168.57" x2="224" y2="224" fill="none" stroke="rgb(175,175,175)" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/></svg>');
	background-repeat: no-repeat;
	background-size: 1.3rem 1.3rem;
	background-position: 0.6rem 0.5rem;
	margin: 0 !important;
}
.searchInput::placeholder {
	color: var(--fontWeakenedColor);
}
.searchInputCancel {
	position: absolute;
	top: 1.7rem;
	transform: translate(0, -50%);
	right: 2rem;
	background-color: transparent;
	box-shadow: none;
	padding: 0;
	width: 1.2rem;
	height: 1.2rem;
	transition: color 0.25s ease-in-out;
	color: var(--fontColor) !important;
}
.searchInputCancel svg {
	width: 1.2rem;
	height: 1.2rem;
}
.searchResult {
	overflow-y: auto;
	flex: 1;
	overflow-x: hidden;
}

.searchInputCancel:focus-visible {
	background-color: transparent;
	box-shadow: none;
}
.searchInputCancel:hover,
.searchInputCancel:hover:active,
.searchInputCancel:active {
	background-color: transparent;
	box-shadow: none;
}
.stickySearchContainer {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1110;
	max-height: 100%;
	display: flex;
	align-items: center;
	border-bottom: 2px solid var(--dark0);

	background-color: var(--dark2);
	padding: 0.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
	box-sizing: border-box;
}

.popup {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(100%, 0);
	transition: transform 0.3s ease-in-out;
	z-index: 1000000;
	background-color: var(--dark0);
	padding: 1rem;
	padding-left: 3rem;
	padding-right: 3rem;
	text-align: center;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.5);
	border-left: 15px solid #1e88e5;
	cursor: pointer;
}
.popup:hover:not(.close) {
	color: white;
}
.popup a {
	color: var(--buttonFontColor);
	text-decoration: none;
}
.popupTitle {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.popupDate {
	font-size: 0.8rem;
}

.popup .close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	cursor: pointer;
}
.popup .close svg {
	fill: var(--buttonFontColor);
	color: var(--buttonFontColor);
}
.popup.show {
	position: absolute;
	right: 0rem;
	transform: translate(0%, 0);
}
