.Icons_List {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.Icon {
	position: relative;
	cursor: pointer;
	width: 64px;
	height: 64px;
	background: rgba(0,0,0,0.8);
	box-shadow: 0 5px 10px 2px rgba(0,0,0,1);
	opacity: 0.4;
	margin: 0 5px;
}

.Icon:hover { opacity: 1 }

.Icon .tip {
	position: absolute;
	top: 110%;
	color: white;
	text-shadow: 0 0 10px #4f9ad5, 0 0 3px #4f9ad5;
	min-width: 100%;
	font-size: 10px;
	text-align: center;
}

.Icon.SelectIcon {
	opacity: 1;
}

.Icon.AccordsIco:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	background: url(../img/icons/accords.png);
}

.Icon.GammaIco:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	background: url(../img/icons/gamma.png);
}

.Icon.PianoIco:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	background: url(../img/icons/piano.png);
}

.Icon.TunerIco:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	background: url(../img/icons/tuner.png);
}

.Icon.DonateIco {
	opacity: 1
}

.Icon.DonateIco:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	background: url(../img/icons/donate.png);
}

