html {
	width: 100%;
	height: 100%;
}
body {
	/*position: fixed;*/
	width: 100%;
	height: 100%;
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}
li {
	width: 70px;
	height: 45px;
	border: 1px solid;
	border-radius: 40px;
	text-align: center;
	padding-top: 25px;
	list-style-type: none;
	position: absolute;
    background-color: #fff;
}

#container {
	width: 100%;
	height: 100%;
}

#container ul {
	height: 100%;
}

#now {
	top: 40%;
	left: 40%;
	position: absolute;
}

.fav {
}

.dropzone {
    background-color: #ccc;
    border: dashed 4px #666;
    border-radius: 4px;
    margin: 10px auto 30px;
    padding: 10px;
    width: 80%;
    transition: background-color 0.3s;
}

.drop-target {
	border: 2px solid red;
	background-color: #29e;
}

.drag-drop {
    display: inline-block;
    min-width: 40px;
    padding: 2em 0.5em;

    background-color: #99e;
    border: solid 2px white;

    transition: background-color 0.3s;
}

.can-drop {
    background-color: #4e4;
}

#current {
	top: 80%;
	position: absolute;
}