div.canvas:not(.single) {
	position: relative;
	display: block;
	width: calc(100% - 20px);
	padding: 10px;
	border: 1px solid var(--color1);
	border-radius: 10px;
	background-color: var(--color1);
	min-height: 130px;
	margin-bottom: 10px;
}

div.canvas.single {
	position: relative;
	display: inline-block;
	flex: 0 1 10rem;
	padding: 10px;
	border: 1px solid var(--color1);
	border-radius: 10px;
	background-color: var(--color1);
	margin-bottom: 10px;
	text-align: center;
}

div.canvas img.dropbox-logo {
	height: 20px;
}

div.canvas header {
	display: block;
	height: 40px;
	position: relative;
}

div.canvas header menu {
	width: 120px;
	position: absolute;
	right: 0px;
	top: 0px;
}

div.canvas header menu input.share {
	background-color: var(--link);
	background-image: url('/images/interface/share-white.svg');
	background-repeat: no-repeat;
	background-position: 10px 50%;
	padding-left: 20px;
	background-size: 15px;
	color: #FFF;
}

div.canvas header menu input.shared {
	background-color: var(--color4);
	background-image: url('/images/interface/share-white.svg');
	background-repeat: no-repeat;
	background-position: 10px 50%;
	padding-left: 20px;
	background-size: 15px;
	color: #FFF;
}

div.canvas input[type='file'] {
	display: none !important;
}

div.canvas.no-dropbox p {
	margin-top: 30px;
}

div.canvas ul {
	display: flex;
	list-style: none;
	min-height: 75px;
	flex-wrap: wrap;
	font-style: italic;
	font-size: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
}

div.canvas figure {
	width: 60px;
	height: 60px;
	border: 1px dotted #000;
	margin: auto;
	border-radius: 5px;
	cursor: pointer;
}

div.canvas li.placeholder figure > img {
	width: 32px;
	height: 32px;
	display: block;
	margin: 15px auto;
}

div.canvas li {
	width: 80px;
	min-height: 82px;
	margin: 10px 5px;
	padding: 5px 0;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	position: relative;
}

div.canvas.single li {
	margin: 10px auto;
}

div.canvas li img {
	margin: auto;
	max-width: 60px;
	max-height: 60px;
	/*border: 1px solid #000;*/
	border-radius: 5px;
	display: block;
}

div.canvas li span {
	display: block;
	width: 80px;
	text-align: center;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	position: absolute;
	bottom: 0;
}

div.canvas li.placeholder:hover {
	background-color: var(--color6);
}

div.canvas li menu {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0, 0.5);
}

div.canvas li:hover menu {
	display: grid;
	grid-template-columns: 40px 40px;
}

div.canvas li menu a {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px;
}

div.canvas li menu a.file_download { background-image: url('/images/interface/download-white.svg'); }
div.canvas li menu a.file_delete { background-image: url('/images/interface/remove-white.svg'); }
