body {
	padding: 24px;
	background: #f7f8f9;
	font-size: 14px;
	font-family: 'Rubik','Proxima Nova','Helvetica',sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 500;
}

.form-group {
	margin-bottom: 24px;
}

.form-wrapper {
	padding: 24px;
	background: #fff;
	border: 1px solid #ddd;
}

label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 13px;
}

input[type=text] {
	background: #fff;
	border-radius: 4px;
	border:1px solid #ccc;
	outline: none;
	box-shadow: none;
	padding: 4px 8px;
}

.song-display {
	width: 660px;
	height: 72px;
	overflow: hidden;
	border: 1px solid #ddd;
	display: flex;
	position: relative;
	margin-bottom: 14px;
}

.song-display .current {
	background: #999;
	width:60px;
	flex-grow: 0;
	flex-shrink: 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	color: #fff;
}

.song-display .current .small {
	font-size: 10px;
}

.note-box {
	display: flex;
}

.note {
	display: flex;
	flex-direction: column-reverse;
}

.box {
	width: 6px;
	height: 6px;
	background: #eee;
}

.box.active {
	background: blue;
}

.spinner {
	width: 20px;
	height: 20px
}

.msg {
	height: 16px;
}

button  {
	margin-bottom: 14px;
}