.dropzone {
  display: table;
  width: 100%;
  height: 100%;
  border: 2px dashed #555;
  cursor: pointer;
}
.dropzone .fullscreen {
  background-color: black;
	cursor:default;
}
.dropzone .dropzone-content {
  display: table-row;
  width: 100%;
  height: 100%;
  text-align: center;
	position:relative;
}

.dropzone-btn {
	cursor: pointer;
	display: table-cell;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	width: 100%;
}

.dropzone-btn__image {
	height: 100%;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.dropzone-btn__video, .dropzone-btn__video_preview {
	height: 100%;
	width: 100%;
	position:absolute;
	top:0;
	left:0;
}

.dropzone-btn__label {
  text-align: center;
}

.dropzone-btn__label > span{
	display: inline-block;
	padding-top: 10px;
}

.dropzone-btn__label > span:first-child{
	border: 1px solid black;
	border-radius: 10px;
	padding: 10px;
}

.dropzone .dropzone-content input[type="file"] {
	position: absolute;
}
