*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: sans-serif;
	height: 100%;
	color: white;
	background-color: #fff;
}
#drop-area {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  min-height: 95vh;
  margin: 10px;
}
#drop-area.highlight{
	border-color: green;
}

.instructions {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}
input{
	display: inline-block;
	margin-top: 20px;
}

.preview-container{
	display: grid;
	grid-template-columns: auto;
	//grid-column-gap: 30px;
	//grid-row-gap: 50px;
	//margin-top: 50px;
}
.image-container{
	//display: grid;
	//grid-template-columns: auto;
	padding: 20px;
	background-color: #004b57;
	color: white;
}
.preview-container img{
	display: inline-block;
	width: 100%;
}
.preview-container .info{
	margin-top: 10px;
	padding: 10px;
}

progress[value] {
  -webkit-appearance: none;
   appearance: none;
   width=100px;
}

progress[value]::-webkit-progress-bar {
  background-color: grey;
  display: inline-block;
}

progress[value]::-webkit-progress-value {
    background-color: #004b57;
}

.remove-button{
	display: inline-block;
	margin-top: 30px;
	border: none;
	padding: 8px 20px;
	font-size: 16px;
	background-color: #d9687c;
	color: white;
	cursor: pointer;
	margin-bottom: 20px;
	width: 80%;
	border-radius: 12px;
}

.remove-button:hover {
  background-color: #45272c;
}

.adjust-button{
	display: inline-block;
	margin-top: 10px;
	border: none;
	padding: 8px 20px;
	font-size: 16px;
	background-color: #4ee437;
	color: white;
	cursor: pointer;
	margin-bottom: 10px;
	width: 60%;
	border-radius: 12px;
}

.adjust-button:hover {
  background-color: #1e5915;
}

.tool-button{
	display: inline-block;
	margin-top: 10px;
	border: none;
	padding: 8px 20px;
	font-size: 16px;
	background-color: grey;
	color: white;
	cursor: pointer;
	margin-bottom: 0px;
	width: 80%;
	border-radius: 12px;
}

.tool-button:hover {
  background-color: #303030;
}

.count-label{
	display: inline-block;
	padding: 8px 20px;
}

.video-slider{
	cursor: pointer;
	-webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
  display: inline-block;
  margin-top: 15px;
}
/* Mouse-over effects */
.video-slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.video-slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4ee437; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.video-slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4ee437; /* Green background */
  cursor: pointer; /* Cursor on hover */
}



.preview-container .remove-button{
	display: inline-block;
	//margin-top: 30px;
	border: none;
	//padding: 8px 20px;
	font-size: 16px;
	background-color: #d9687c;
	color: white;
	cursor: pointer;
	//margin-bottom: 20px;
}
.preview-container .remove-button:hover{
	filter: brightness(1.2);
}
.error{
	color: #712c2c;
	background: pink;
	padding: 10px;
	margin-top: 30px;
	display: none;
}
.column {
  //height: 100%;
  float: left;
}

.c10 {
	width: 10%;
	background-color: #004b57;
}
.c90 {
	width: 90%;
	background-color: #004b57;
}

.c80 {
	width: 80%;
	background-color: #004b57;
}

.c50 {
	width: 50%;
	background-color: #004b57;
}

