* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
}

.hide{
	display: none;
}

#chord{
	position: absolute;
	top: 54px;
	left: -19px;
	font-size: 53px;
	z-index: 1;
	color: white;
	transform: rotate(90deg);
	font-weight: bold;
	width: 136px;
}
#notes{
	position: absolute;
	top: 312px;
	left: -200px;
	font-size: 26px;
	z-index: 1;
	color: lightgray;
	transform: rotate(90deg);
	width: 450px;
	background: black;
}
#version{
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 1;
	color: white;
}


#guitar{
	background: url(../img/guitar.jpg);
	width: 100vw;
	height: 100vh;
	background-size: 100% 100%;
	background-position: center center;
	position: relative;
}

#guitar div{
	width: 11%;
	position: absolute;
	opacity: .5;
}
#guitar div.pressed{
	padding: 3% 1%;
	/* background: red; */
}
#guitar div.pressed:after{
	content: "";
    background: #FFC107!important;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

#guitar .sE{
	right: 63%;
}

#guitar .sA{
	right: 50.7%;
}

#guitar .sD{
	right: 38.3%;
}

#guitar .sG{
	right: 26.1%;
}

#guitar .sB{
	right: 14%;
}

#guitar .se{
	right: 2%;
}

#guitar .t1{
	top: 4.3%;
	height: 25%;
	/* background: blue; */
}
#guitar .t1.pressed{padding: 1% 0% 0%;}

#guitar .t2{
	top: 29.5%;
	height: 26.4%;
	/* background: red; */
}
#guitar .t2.pressed{padding: 4% 0% 4%;}

#guitar .t3{
	top: 56%;
	height: 21.7%;
	/* background: orange; */
}
#guitar .t3.pressed{padding: 0% 0% 3%;}

#guitar .t4{
	top: 77.8%;
	height: 21%;
	/* background: green; */
}
#guitar .t4.pressed{
	padding: 1% 0% 3%;
}


/* Menu */

#menu-area{
	position: absolute;
	bottom: 6px;
	left: 0;
	width: 24%;
	height: 70px;
	/* background: red; */
}

#menu-area .holder{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#menu-btn{
	background: #0D79F2;
	width: 60px;
	height: 60px;
	color: white;
	z-index: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	transform: rotate(90deg);
}

#menu{
	background: white;
	padding: 18px 15px 5px 22px;
	width: 250px;
	border-radius: 8px;
	position: absolute;
	top: -156px;
	right: -221px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	display: none;
	transform: rotate(90deg);
}

#menu ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu ul li{
	margin-bottom: 17px;
	font-size: 22px;
}

#menu ul li.disabled{
	pointer-events: none;
	color: #b5b5b5;
}

#menu ul li.soon{
	position: relative;
}

#menu ul li.soon:after{
	content: 'Soon';
	background: red;
	padding: 2px 6px;
	/* position: absolute;
	top: 10px;
	bottom: 10px; */
	font-size: 14px;
	color: white;
	margin-left: 6px;
	border-radius: 5px;
}

#menu ul a{
	text-decoration: none;
	color: initial;
}


/* Pop up */

.popup{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
}

.popup .shade{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup .holder{
    position: relative;
    background: white;
    border-radius: 13px;
    padding: 6px 6px 2px;
    transform: rotate(90deg);
}

.popup .close{
	position: absolute;
	width: 35px;
	height: 35px;
	background: red;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	top: -17px;
	right: -19px;
	font-size: 22px;
}

#chords-list img{
	height: 280px;
}