html, body {

	margin: 0;
	text-align: center;
	display: flex;
	flex-direction: column;

}

@font-face {

	font-family: "Roboto";
	src: url("../styles/fonts/roboto/Roboto-Light.ttf");

}

body {

	min-height: 100vh;
	background-color: #2f3135;
	color: #c7cedb;
	font-family: Roboto, Arial, Verdana, sans-serif;

}

header {

	background-color: #25272b;
	border-bottom: 1px solid #4a4b4f;
	height: 40px;
	line-height: 30px;

}

.content {

	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: url(../images/ukulele.png);
	background-position: center center;
	background-repeat:  no-repeat;

}

li.enabled span {

	height: 22px;
	width: 22px;
	background-color: rgb(255, 251, 0);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	top: -7px;
	box-shadow: 0 0 5px black;

}

#current-chord {

	position: absolute;
	right: 30px;
	top: 60px;

}

#chord-list {

	display: flex;  
	flex-wrap: wrap;
	align-items: center;
	height: auto;

}

#chords-popup {

	width: 900px;
	height: 500px;
	background: #5b5b5be6;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	padding: 30px 0 30px 0;
	z-index: 1000;

}

#chords-popup img, #current-chord img {

	width: 100%;

}

#chords-popup div {

	width: 430px;
	position: relative;
	top: 5px;
	
}

#chords-popup span,  #current-chord span {

	border: 2px solid rgba(0, 0, 0, 0.349);
	display: inline-block;
	height: 100px;
	width: 60px;
	border-radius: 10px;
	color: black;
	margin: 5px;
	background-color: white;

}

#chords-popup span.filler {

	visibility: hidden;

}

#chords-popup span {

	cursor: pointer;

}

/* #chords-popup span:hover {

	background-color: rgba(168, 151, 151, 0.418)

} */

#chords-popup span.disabled {

	background-color: rgba(168, 151, 151, 0.418)

}

#chords-popup span strong, #current-chord strong {

	margin: 0;
	padding: 0;
	position: relative;
	top: -20px;

}

button {

	width: 100px;

}

select, button {

	height: 30px;
	padding: 3px;
	margin-top: 5px;
	background-color: #5b5b5be6;
	border-radius: 3px;
	border: 1px solid black;
	color: #a1a1a1;

}

.string {

	width: 880px;
	height: 3px;

}

.g, .c, .e, .a {

	position: relative;
	transform-origin: 0% 0%;
	/* background-color: yellow; */

}

.g {

	top: -42px;
	transform: rotate(.85deg);

}

.c {

	top: -10px;

}

.e {

	top: 13px;

}

.a {

	top: 46px;
	transform: rotate(-.85deg);

}

ul {

	margin: 0;
	float: right;
	height: 3px;
	line-height: 0;
	position: relative;
	top: -2px;

}

li {

	display: inline-block;
	/* background-color: yellow; */

}

/* li:nth-child(odd){

	background-color: red;

} */

.fret {

	height: 10px;
	width: 40px;

}

.fret-1 {

	width: 52px;

}

.fret-2 {

	width: 46px;

}

.fret-3 {

	width: 43px;

}

.fret-4 {

	width: 42px;

}

.fret-5 {

	width: 39px;

}

.fret-6 {

	width: 36px;

}

.fret-7 {

	width: 35px;

}

.fret-8 {

	width: 31px;

}

.fret-9 {

	width: 31px;

}

.fret-10 {

	width: 27px;

}

.fret-11 {

	width: 27px;

}

.fret-12 {

	width: 23px;

}