/**
 * Style for Brainuke
 * Application for teaching yourself ukulele
 * for KTH course DH2641 - Interaction Programming
 *
 * by
 * Alexandre Andrieux
 * Mariama Oliveira
 * Midas Nouwens
 * Sheng Li
 *
 * @March 2015
 */

body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  /* background-color: #245682 !important; */
  overflow-x:hidden;
}

/* Homepage */
#homePage {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-image: url("../images/bgHome.jpg");
	background-repeat: no-repeat;
}
#title {
	font-size: 66px;
	margin: auto;
	color: #ffffff;
	padding-top: 250px;
	padding-left: 160px;
	text-shadow: 0px 2px 3px #F3F781;  font-weight: bold;
	letter-spacing:0.05em;
	position:relative;
}
#getStart {
	width:30px;
	display: inline;
	/*background-image: url("../images/start.png");
	background-repeat: no-repeat;
	height:100%;
	margin-left: 300px;
	display:block;
	*/
}
.navbar-left {
	margin-left: 150px;
}

/* Main page */
#container {
	top:0px;
	left:0px;
	width: 100%;
	height: 100%;
	position: fixed;
}
.true-center {
	margin: 0 auto;
	margin-top: 25px;
}
.left-align {
    position: relative;
    left: 25px;
    padding-bottom: 40px;
}
.right-align {
    position: relative;
    left: -26px;
    padding-bottom: 20px;
}
#mainPage, #gameOver {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#gameOver {
	background-color: rgba(204,204,204,0.7);
	z-index: 10;
	line-height: 100%;
	text-align: center;
}
#gameOverBackground {
	position: relative;
	width:600px; 
	height:300px;  
	background-color: #FFFFFF;
	border-radius: 10px;    
	top: 25%;           
	margin-left: auto;
	margin-right: auto;
}
.gameOverText {
	text-align: center;
	font-weight: bold;
	margin-bottom: 30px;
	color: #30D683;
}
#firstText {
	font-size: 80px;
	position: relative;
	padding-top: 100px;
	color: #FF4747;
}
#secondText {
	font-size: 40px;
	padding-top: 30px;
}
#subtitle {
	font-size: 25px;
	display: block;	
	padding-left: 170px;
	font: Tahoma, Helvetica, Arial, Sans-Serif;
	color: #fff;
}
#left {
	padding-top: 100px;
}
.btn-music {
	margin-left: 23px;
	margin-top: 50px;
}
.btn-random {
	margin-left: 23px;
	width: 153px
}
.randomBtn1 {
	display:block;
	margin: auto;
}
#inputBtn {
	margin-left: -30px;
}
#secondEnter {
	width:108px;
	margin-left: 10px;
	display:block;
}
.btn-switch {
	margin-left: 20px;
}
#right {
	margin-top: 50px;
}
.noteBtn {
	display: inline-block;
	width:50px;
	height: 50px;
	margin-right: 15px;
	margin-bottom: 20px;
}

/* Balls area */
#ballsArea {
	margin: auto;
	height: 600px;
	width: 600px;
	/* background-color: #D8D8D8; */
	position: relative;
}
.balls {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	/* No unwanted drag */
	/*-webkit-user-drag: none;
	user-drag: none;
	cursor:default;*/
}
#bin {
	position: absolute;
	width: 100px;
	height: 100px;
	left: 500px;
	top: 500px;
	margin-left: 10px;
	font-size: 5em;
	background-image: url("../images/bin.png");
	background-size: 100px;
	z-index: -1;
}
.circleOuter {
	position: absolute;
	margin: 18px 0 0 19px;
	width:563px;
	height:563px;
	border-radius:50%;
	border: 2px solid;
	border-color: rgba(0,0,0,0.1);
	font-size:20px;
	color:#fff;
	line-height:100px;
	text-align:center;
	background: none;
}
.circleInner {
	position: absolute;
	margin: 120px 0 0 120px;
	width:360px;
	height:360px;
	border-radius:50%;
	border: 2px solid;
	border-color: rgba(0,0,0,0.1);
	font-size:20px;
	color:#fff;
	line-height:100px;
	text-align:center;
	background: none;
}
.unselectable,
.unselectable * {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.isRight {
	background-color:rgba(0,200,0,0.5);
}
.isWrong {
	background-color:rgba(200,0,0,0.8);
}
.notVerified {
	background-color:rgba(0,0,0,0.3);
}
.currentNote {
	position: absolute;
	margin: 200px 0 0 262px;
	font-size:100px;
	fill:rgba(0,0,0,0.8);
}
.heardNote {
	font-size:18px;
	position: absolute;
	margin: 310px 0 0 275px;
}
.scoreText {
	position: absolute;
	margin: 370px 0 0 250px;
	font-size:25px;
	fill:rgba(0,50,250,0.75);
	font-weight:bold;
}
.noteLetter {
	position: absolute;
	margin: 37px 0 0 40px;
	font-weight: bold;
	text-shadow: 0px 1px 0px #999999;
	color: #fff;
}
.startBtn {
	position: relative;
	margin: 250px 0 0 250px;
	display: inline-block;
	width: 100px;
}
#progressBar {
	margin: auto;
	position: relative;
	width: 600px;
}

/* Score page */
#bgScore {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-image: url("../images/bgScore.jpg");
	background-repeat: no-repeat;
}
#header {
	text-align: center;
	margin-top: 50px;
	font-size: 36px;
	color: #F7F8E0;
	font-weight: bold;
	text-shadow: 0px 2px 3px #F3F781;
	letter-spacing:0.05em;
	position:relative;
}
#scoreTable {
	margin-top: 50px;
	margin-bottom:30px;
	width: 600px;
	height: 300px;
	font-size: 18px;
}
.table {
	background-color: rgba(255,255,255,0.8);
}
#gameBtn {
	display: inline-block;
	margin-left: 150px;
	width:120px;
}
#userBtn {
	display: inline-block;
	margin-left: 30px;
	width:120px;
}
.table-hover {
	table-hover: black;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
	opacity: 1;
}
input[type="number"]::-webkit-input-placeholder {
	color:    #fff;
}
input[type="number"]:-moz-placeholder {
	color:    #fff;
}
input[type="number"]::-moz-placeholder {
	color:    #fff;
}
input[type="number"]:-ms-input-placeholder {
	color:    #fff;
}
.form-control[disabled] {
	background-color: #428bca;
}
input[type="number"] {
	margin: auto;
	position: relative;
	text-align: center;
	border: 0 !important;
	-webkit-font-smoothing: antialiased;
	font-weight: bold !important;
	-webkit-border-radius: 10px;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 10px;
	-moz-background-clip: padding;
	border-radius: 10px;
	background-clip: padding-box;
	-webkit-transition: all 50ms ease;
	-moz-transition: all 50ms ease;
	-o-transition: all 50ms ease;
	transition: all 50ms ease;
	border: 0;
	color: #fff;
	text-shadow: 0px 1px 0px #3071a9;
	background-color: #5697d0;
	-webkit-box-shadow: 0px 6px 0px #3071a9;
	-moz-box-shadow: 0px 6px 0px #3071a9;
	box-shadow: 0px 6px 0px #3071a9;
}

/* BUTTONS */
input[type="number"] {
	margin: auto;
	position: relative;
	text-align: center;
	border: 0 !important;
	-webkit-font-smoothing: antialiased;
	font-weight: bold !important;
	-webkit-border-radius: 10px;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 10px;
	-moz-background-clip: padding;
	border-radius: 10px;
	background-clip: padding-box;
	-webkit-transition: all 50ms ease;
	-moz-transition: all 50ms ease;
	-o-transition: all 50ms ease;
	transition: all 50ms ease;
	border: 0;
	color: #fff;
	text-shadow: 0px 1px 0px #3071a9;
	background-color: #5697d0;
	-webkit-box-shadow: 0px 6px 0px #3071a9;
	-moz-box-shadow: 0px 6px 0px #3071a9;
	box-shadow: 0px 6px 0px #3071a9;
}
.btn {
	position: relative;
	border: 0 !important;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
	font-weight: bold !important;
	-webkit-border-radius: 10px;
	-webkit-background-clip: padding-box;
	-moz-border-radius: 10px;
	-moz-background-clip: padding;
	border-radius: 10px;
	background-clip: padding-box;
	-webkit-transition: all 50ms ease;
	-moz-transition: all 50ms ease;
	-o-transition: all 50ms ease;
	transition: all 50ms ease;
	border: 0;
	text-shadow: 0px 1px 0px #999999;
	background-color: #cccccc;
	-webkit-box-shadow: 0px 6px 0px #999999;
	-moz-box-shadow: 0px 6px 0px #999999;
	box-shadow: 0px 6px 0px #999999;
}
.btn:focus {
  outline: 0;
}
.btn:hover {
  top: 2px;
}
.btn:active {
  top: 6px;
}
.btn:hover {
  border: 0;
  background-color: #d9d9d9 !important;
  -webkit-box-shadow: 0px 4px 0px #999999;
  -moz-box-shadow: 0px 4px 0px #999999;
  box-shadow: 0px 4px 0px #999999;
}
.btn:active {
  -webkit-box-shadow: inset 0px 3px 0px #999999;
  -moz-box-shadow: inset 0px 3px 0px #999999;
  box-shadow: inset 0px 3px 0px #999999;
}
.btn-primary {
  border: 0;
  text-shadow: 0px 1px 0px #3071a9;
  background-color: #428bca;
  -webkit-box-shadow: 0px 6px 0px #3071a9;
  -moz-box-shadow: 0px 6px 0px #3071a9;
  box-shadow: 0px 6px 0px #3071a9;
}
.btn-primary:hover {
  border: 0;
  background-color: #5697d0 !important;
  -webkit-box-shadow: 0px 4px 0px #3071a9;
  -moz-box-shadow: 0px 4px 0px #3071a9;
  box-shadow: 0px 4px 0px #3071a9;
}
.btn-primary:active {
  -webkit-box-shadow: inset 0px 3px 0px #3071a9;
  -moz-box-shadow: inset 0px 3px 0px #3071a9;
  box-shadow: inset 0px 3px 0px #3071a9;
}
.btn-success {
  border: 0;
  text-shadow: 0px 1px 0px #449d44;
  background-color: #5cb85c;
  -webkit-box-shadow: 0px 6px 0px #449d44;
  -moz-box-shadow: 0px 6px 0px #449d44;
  box-shadow: 0px 6px 0px #449d44;
}
.btn-success:hover {
  border: 0;
  background-color: #6ec06e !important;
  -webkit-box-shadow: 0px 4px 0px #449d44;
  -moz-box-shadow: 0px 4px 0px #449d44;
  box-shadow: 0px 4px 0px #449d44;
}
.btn-success:active {
  -webkit-box-shadow: inset 0px 3px 0px #449d44;
  -moz-box-shadow: inset 0px 3px 0px #449d44;
  box-shadow: inset 0px 3px 0px #449d44;
}
.btn-info {
  border: 0;
  text-shadow: 0px 1px 0px #31b0d5;
  background-color: #5bc0de;
  -webkit-box-shadow: 0px 6px 0px #31b0d5;
  -moz-box-shadow: 0px 6px 0px #31b0d5;
  box-shadow: 0px 6px 0px #31b0d5;
}
.btn-info:hover {
  border: 0;
  background-color: #70c8e2 !important;
  -webkit-box-shadow: 0px 4px 0px #31b0d5;
  -moz-box-shadow: 0px 4px 0px #31b0d5;
  box-shadow: 0px 4px 0px #31b0d5;
}
.btn-info:active {
  -webkit-box-shadow: inset 0px 3px 0px #31b0d5;
  -moz-box-shadow: inset 0px 3px 0px #31b0d5;
  box-shadow: inset 0px 3px 0px #31b0d5;
}
.btn-warning {
  border: 0;
  text-shadow: 0px 1px 0px #ec971f;
  background-color: #f0ad4e;
  -webkit-box-shadow: 0px 6px 0px #ec971f;
  -moz-box-shadow: 0px 6px 0px #ec971f;
  box-shadow: 0px 6px 0px #ec971f;
}
.btn-warning:hover {
  border: 0;
  background-color: #f2b866 !important;
  -webkit-box-shadow: 0px 4px 0px #ec971f;
  -moz-box-shadow: 0px 4px 0px #ec971f;
  box-shadow: 0px 4px 0px #ec971f;
}
.btn-warning:active {
  -webkit-box-shadow: inset 0px 3px 0px #ec971f;
  -moz-box-shadow: inset 0px 3px 0px #ec971f;
  box-shadow: inset 0px 3px 0px #ec971f;
}
.btn-danger {
  border: 0;
  text-shadow: 0px 1px 0px #c9302c;
  background-color: #d9534f;
  -webkit-box-shadow: 0px 6px 0px #c9302c;
  -moz-box-shadow: 0px 6px 0px #c9302c;
  box-shadow: 0px 6px 0px #c9302c;
}
.btn-danger:hover {
  border: 0;
  background-color: #de6764 !important;
  -webkit-box-shadow: 0px 4px 0px #c9302c;
  -moz-box-shadow: 0px 4px 0px #c9302c;
  box-shadow: 0px 4px 0px #c9302c;
}
.btn-danger:active {
  -webkit-box-shadow: inset 0px 3px 0px #c9302c;
  -moz-box-shadow: inset 0px 3px 0px #c9302c;
  box-shadow: inset 0px 3px 0px #c9302c;
}
.btn-link {
  text-shadow: none;
  background: none !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-link:hover {
  border: 0;
  background: none !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: 0;
}
.btn-link:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: 0;
}
.btn-input {
  border: 0;
  text-shadow: 0px 1px 0px #3071a9;
  background-color: #428bca;
  -webkit-box-shadow: 0px 6px 0px #3071a9;
  -moz-box-shadow: 0px 6px 0px #3071a9;
  box-shadow: 0px 6px 0px #3071a9;
}
.btn-input:hover {
  border: 0;
  text-shadow: 0px 1px 0px #3071a9;
  background-color: #428bca;
  -webkit-box-shadow: 0px 6px 0px #3071a9;
  -moz-box-shadow: 0px 6px 0px #3071a9;
  box-shadow: 0px 6px 0px #3071a9;
}
.btn-primary:active {
  border: 0;
  text-shadow: 0px 1px 0px #3071a9;
  background-color: #428bca;
  -webkit-box-shadow: 0px 6px 0px #3071a9;
  -moz-box-shadow: 0px 6px 0px #3071a9;
  box-shadow: 0px 6px 0px #3071a9;
}