body {
  background-color:#000;
}

@keyframes append-animate {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0%);
		opacity: 1;
	}
}

.t {
  transform-origin: 50% 0;
	animation: append-animate .3s linear;
}

#dropzone {
  width: 200px;
  height: 80px;
  margin: auto;
  margin-top: 10px;
  border: solid 2px #eee;
  text-align: center;
  padding: 10px;
}
#images {
  width: 220px;
  min-height: 100px;
  border: solid 2px #eee;
  margin: auto;
  margin-top: 10px;
  overflow: hidden;
}
#images img {
  width: 100%;
  height: auto;
}

#globalmessage {
  position: absolute;
  left:0px;
  top:40%;
  width:98%;
  min-height:50px;
  margin: auto 0px;
  z-index: 200;
  margin:15px;
  padding:25px;
  text-align: center;
}

.demo-wrap {
  position: relative;
  width:100%;
  height:100%;
}

div.demo-content {
  background-color:#000000;
  opacity: 0.7;
  width:100%;
  height:100%;
}

.demo-wrap:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  /* background-image: url('https://www.kspl.be/site/img/lamp_kspl.jpg');*/
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#globalmessage div:nth-child(1)  {
  font-size:21px;
}


#globalmessage div:nth-child(2)  {
  opacity: 0.7;
  font-size:16px;
}

#globalmessage div:nth-child(3) {
  opacity: 0.4;
  font-size:12px;
  columns: #666666;
}

.demo-content {
  position: relative;
}