body{
	font:15px 'Open Sans',sans-serif;
	cursor:default;
	color:#8c8c8c;
	margin:0;
}


#drop-mask {
	position:absolute;
	width:100%;
	height:100%;
	display:none;
}

#column {
	display: flex;
	flex-wrap: nowrap;
	border-radius: 5px;
	border: 3px dotted transparent;
	background-color: #5050501c;
	flex-direction: column;
	align-items: center;
	justify-content:center;
	text-align: center;
	padding: 6px 2px;
}

#column.drag {
	border-color: grey;
}

#column.drag.disabled {
	border-color: transparent;
	cursor:not-allowed !important;
}

.row {
	width:100%;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
}

/* forms */
input[type=file]{
	display:none;
}

input[type=button]{
	box-sizing:border-box;
	max-width:100%;
	min-height:20px;
	padding:0 3px;
}

label{
	font-size:11px;
	margin-left: 4px;
	color: #8c8c8c;
}

input[type=file].customlabel:after{
	margin: 0 4px;
	color: #8c8c8c;
	content: attr(data-after);
	text-overflow: ellipsis;
}

/* buttons */
#button-apply{
	font-family:inherit;
	font-size:12px;
	border-radius:3px;border:0;

	padding:6px 14px;

	background-color:#c29510;
	color:black;

	transition:background-color .15s;

	box-sizing:border-box
}
#button-apply.enabled:hover {
	cursor:pointer;
	background-color:#d2a520;
}
#button-apply.enabled:active {
	background-color:#ad6500;
	transform:translateY(1px)
}
#button-apply:disabled{
	opacity:.35 !important;
	cursor:not-allowed;
}

#button-apply.no-text.with-icon:before{margin-right:0px}

#message-container {
	height:28px;
}

.message{
	font-size:12px;
	border-radius:3px;
	padding:0 3px;
	margin:6px 0;
	display:inline-block;white-space:
	nowrap;
}
.message.error{
	background-color:#de4205;
	color:white
}
.message.warning{
	background-color:#88220060;
	color:black
}

/* loading circle */
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.loading{
	width:20px;
	margin-right:4px;
	display:inline-block;
	position:relative;
	-webkit-animation:spin 1s linear infinite;
	-moz-animation:spin 1s linear infinite;
	animation:spin 1s ease-in-out infinite;
	vertical-align:middle;
}
.loading:before{
	width:6px;
	height:6px;
	background-color:#bd974190;
	border-radius:3px;
	display:inline-block;
	content:"";
	position:absolute;
	top:0;
	left:50%;
	margin-left:-10px;
}

