#mycanvas {
	margin-left: calc(50% - 400px);
}

.select-box {
  cursor: pointer;
  position : relative;
  max-width:  175px;
  margin: 10px 0;
  width: auto;
}

.select,
.label {
  color: #414141;
  display: block;
  font: 400 17px/2em 'Source Sans Pro', sans-serif;
}

.select {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 0;
  height: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  background: none transparent;
  border: 0 none;
}
.instbox {
  background: #ececec;
}

.label {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
  white-space: normal;
  min-height: 44px;
}
.select-box select {
	color: black;
	cursor:inherit;
}


.label-desc {
	margin: 0 0 0px;
    margin-top: 0px;
    margin-bottom: 0px;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	-webkit-filter: blur(4px);
    filter: blur(4px);
}

.keyboard-settings {
	float: right;
	position: relative;
	background-color: #2a2a2a;
	z-index: 10;
	max-width: 400px;
	min-width: 200px;
	width: 15%;
	height: calc(100% + 20px);
	max-height: calc(100% + 20px);
	border-left: 5px solid white;
	padding-left: 10px;
	transition: height 0.5s ease;
	overflow: hidden;
}
.keyboard-settings h1 {
	color: white;
}
.key {
	width: 150px;
	border-right: 1px solid white;
	display: inline-block;
	height: 100%;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	float: left;
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 20px;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none
}
.keyrow.flat .key {
	line-height: 30px;
}
.keyrow.natural .key {
	line-height: 40px
}
.cursor-key {
	width: 140px;
	display: inline-block;
	height: 100%;
}
.cursor-container {
	display: inline-block;
	position: absolute;
	height: 20px;
	width: calc(100% - 150px);
	margin-left: 10px;
	cursor: pointer;
	z-index: 2;
}
#keyboard-keys {
	width: 150px;
	border-right: 1px solid white;
}
#keyboard-cursor {
	background-image: url("/assets/images/helpers/down-arrow.svg");
	width: 20px;
	background-size: 20px auto;
	position: absolute;
	left: -10px;
	height: 20px;
	bottom: -4px;
	display: block;
	pointer-events: none;
	cursor: pointer;
}
#keyboard-cursor:after {
	content: '';
	width: 0;
	height: calc(100vh - 110px);
	position: absolute;
	border: 1.5px solid white;
	top: 14px;
	left: 9px;
}
#keyboard.extended #keyboard-cursor:after {
	content: '';
	width: 0;
	height: calc(100vh - 125px);
	position: absolute;
	border: 1.5px solid white;
	top: 14px;
	left: 9px;
}
#loop-cursor {
    background-image: url("/assets/images/helpers/down-arrow.svg");
    width: 20px;
    background-size: 20px auto;
    position: absolute;
    height: 20px;
    bottom: -4px;
    display: block;
    cursor: pointer;
    left: calc(100% - 50px);
}
#loop-cursor:after {
    content: '';
    width: 0;
    height: calc(100vh - 110px);
    position: absolute;
    border: 1.5px solid yellow;
    top: 14px;
    left: 9px;
	pointer-events: none;
}
#keyboard.extended #loop-cursor:after {
	content: '';
	width: 0;
	height: calc(100vh - 125px);
	position: absolute;
	border: 1.5px solid yellow;
	top: 14px;
	left: 9px;
	pointer-events: none;
}
#keyboard-header {
	width: 85%;
	min-width: calc(100% - 400px);
	transition: width 0.5s ease;
	height: 20px;
	border-bottom: 1px solid white;
	position: fixed;
	top: 92px;
	z-index: 2;
}
.keyboard {
	width: 85%;
	min-width: calc(100% - 400px);
	height: calc(100% + 20px);
	transition: width 0.5s ease;
    overflow: hidden;
    position: relative;
}
.keyrow {
    min-width: 100%;
	border-bottom: 1px solid white;
	cursor: pointer;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

.keyboard-scroller {
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
}

.keyrow.flat {
	height: 30px;
}

.keyrow.natural {
	height: 40px;
}

#keyboard {
    overflow: auto;
    top: 20px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: absolute;
}
.keybody {
	display: inline-block;
	width: calc(100% - 150px);
	position: relative;
}
.note {
	height: 80%;
	background-color: #00c853;
	border-radius: 5px;
	position: absolute;
	top: calc(10% - 1px);
	z-index: 1;
	pointer-events: none;
}
.keyrow.flat .keybody {
	height: 30px;
}
.keyrow.natural .keybody {
	height: 40px;
}
.keyrow.flat .key > div {
	height: 20px;
	width: 120px;
	margin-top: 5px;
	line-height: 20px;
	margin-left: 25px;
	background-color: black;
	border-radius: 10px;
	color: white;
	pointer-events: none;
}
.keyrow.natural .key > div {
	height: 30px;
	width: 120px;
	margin-top: 5px;
	line-height: 30px;
	margin-left: 15px;
	background-color: white;
	border-radius: 10px;
	color: black;
	pointer-events: none;
}

.loadfade.ng-hide {
  opacity: 0;
}

.loadfade.ng-hide-remove,
.loadfade.ng-hide-add {
  display: block !important; /* or inline-block, as appropriate */
}

.loadfade.ng-hide-remove {
  transition: all linear 1000ms;
}

.loadfade.ng-hide-add {
  transition: all linear 500ms;
}

.loadWrapper {
	width:100%;
	height:100%;
	background: rgba(0,0,0,0.9);
	opacity: 1;
	z-index:101;
	position: absolute;
}
.loadWrapper .loadContent {
	position: relative;
	float: left;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.loadWrapper h1 {
	color: white;
	margin-bottom: 1em;
	font-size: 3.5em;
}
#myProgress {
    width: 50vw;
    position: relative;
    background-color: #95a5a6;
    border-radius: 10px;
    -moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
#myBar {
    width: 0.5%;
    height: 10px;
    border-radius: 10px;
    /*-webkit-transition: width 0.5s; /* Safari
	transition: width 0.5s;*/
	position: relative;
}
.bardotContainer {
	position: absolute;
  	width:10%;
  	height: 100%;
  	-webkit-animation: barTranslate 5s infinite linear;
  	animation: barTranslate 5s infinite linear;
}
.bardot {
	position:absolute;
	-webkit-animation: barUpDown 1s alternate infinite ease-in-out;
	animation: barUpDown 1s alternate infinite ease-in-out;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}

.noteStripe {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-image: linear-gradient(
		-45deg,
		rgba(255, 255, 255, .2) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 255, 255, .2) 50%,
		rgba(255, 255, 255, .2) 75%,
		transparent 75%,
		transparent
	);
	z-index: 1;
	background-size: 65px 65px;
	animation: noteTranslate 8s linear infinite;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	overflow: hidden;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: -60px 0px;
}

@keyframes barUpDown {
  	to { transform: translatey(100%);}
}
@keyframes barTranslate {
	0% { opacity: 0; transform: scale(0.1); transform: translatex(0px); }
	5% { opacity: 1; transform: scale(1); transform: translatex(0px); }
  	95% { opacity: 1; transform: scale(1); transform: translatex(calc(1000% - 5px)); }
  	100% { opacity: 0; transform: scale(0.1); transform: translatex(calc(1000% - 5px)); }
}
@keyframes noteTranslate {
	75% { background-position: -60px 0px; }
  	100% { background-position: calc(100% + 60px) 0; }
}

.play {
	border: 0;
	background: transparent;
	box-sizing: border-box;
	width: 0;
	height: 25px;
	border-color: transparent transparent transparent #000;
	transition: 100ms all ease;
	cursor: pointer;
	border-style: solid;
	border-width: 14px 0 14px 16px;
	right: 50px;
	bottom: 10px;
	position: absolute;

}
.play.paused {
	border-style: double;
	border-width: 0px 0 0px 20px;
	bottom: 12px;
}

.play:hover {
	border-color: transparent transparent transparent #303030;
}

.settings-input {
	color: initial;
	position: relative;
	max-width: 175px;
	margin: 10px 0;
	width: 100%;
	padding: 5px;
	font-size: 18px;
	font-weight: 500;
	height: 26px;
	font-family: "Open Sans";
}