html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

body {
	display: block;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1.4em;
	/*min-width: 600px;*/
	min-height: 300px;
	box-sizing: border-box;
}
.cbx-popup {
	max-width: 1170px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
}
.cbx-popup .cbx-msg{
	font-size: 14px;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 4px;
}
.cbx-popup .cbx-success{
	background: #dff0d8;
	color: green;
	display: none;
}
.cbx-popup .cbx-failure{
	background: #f2dede;
	color: #dd4b39;
	display: none;
}

.cbx-popup h1 {
	font-size: 26px;
	line-height: 45px;
	letter-spacing: normal;
	font-weight: 700;
	color: #444;

}

#drop-target {
	border: 3px dashed #999;
	text-align: center;
	color: #999;
	font-size: 20px;
	width: 100%;
	height: 300px;
	cursor: pointer;
	box-sizing: border-box;
}
#drop-target:hover{
	border: 3px dashed #dd4b39;

}

#drop-target .button {
	display: inline-block;
	/*float: left;*/
	margin: 5px 0;
	border-width: 0;
	border: 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	background: #21759b;
	color: #fff;
	padding: 10px 25px;
	font-size: 14px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 4px;
}
#drop-target .drag-drop-inside {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#drop-target .drag-drop-inside .cbx-vertical-area {
	width: 100%;
	height: 100%;
	display: table;
}

#drop-target .drag-drop-inside .cbx-vertical-area .cbx-vertical {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
#drop-target.dragover {
	background: rgba(255, 255, 255, 0.4);
	border-color: green;
}

/*.hidden{
	display: none !important;
}*/

