html, body {
    max-width: 100%;
    overflow-x: hidden;
}

h2{
	font-size: 1.5rem;
	font-style: bold;
}

h3{
	font-size: 1.1rem;
	color: grey; 

}


.hidden{
	display: none;
}

.image_container{
	width: 100%;
}

.image_container .frame {
	height: 260px; /*can be anything*/
	width: 300px; /*can be anything*/
	display: inline-block;
	vertical-align: top; /*not required*/
	position: relative;
}

.image_container img{
	max-height: 70%;
	max-width: 70%;
	width: 64px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}


.result_image_container{
	
}

.result_image_container img {
	width: 100%;
	height: auto;
	max-width: 600px;
	margin: 20px 0;
}


#processed_container{
	text-align: center;
}


.destroySessionBtn{
	margin-top: 10px;
}




#submitBtn, .destroySessionBtn {
	display: block;
	width: 180px;
	height: 40px;
	background: darkmagenta;
	color: #fff;
	border-radius: 3px;
	border: 0;
	box-shadow: 0 3px 0 0 hotpink;
	transition: all 0.3s ease-in-out;
	font-size: 14px;
    cursor: pointer;
	margin: 0 auto;
}

#submitBtn:hover, .destroySessionBtn:hover {
	background: rebeccapurple;
	box-shadow: 0 3px 0 0 deeppink;
}

.dropzone {
	width: 100px;
	height: 80px;
	border: 1px dashed #999;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
}


#fileToUpload {
	position: relative;
	top: -80px;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.upload-wrapper, .result-wrapper{
	/* box-shadow: 8px 10px 15px 0 rgba(0, 0, 0, 0.2); */
	border-radius: 3px;
	padding: 15px 0px;
	margin: 15px 0px;
}

.dropzone-wrapper {
    
	width: 100%;
	max-width: 300px;
	height: 260px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: column;
}

.dropzone-wrapper .title {
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #999;
	text-align: center;

}
.dropzone-wrapper .title h3{
	font-size: 16px;
}


.logobar-top img{
	width: 100%;
	max-width: 313px;
}



#privacyHint{
	font-size: 0.8em;
	text-align: center;
}

.effectPreview{
	border: 3px solid white;
	border-radius: 7px;
	padding: 4px;
	cursor: pointer;
	user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.effectPreview img{
	width: 100%;
	border-radius: 5px;
	user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	pointer-events: none;
}

.effectSelected{
	border: 3px solid green;
}

#privacyCheckboxLabel{
	font-size: 0.7em;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}



@media only screen and (max-width: 768px) {

	.upload-wrapper, .result-wrapper{
		padding: 15px 0px;
		margin: 15px 0;
	}

	.logobar-top img{
		width: 100%;
		max-width: none;
		margin: 5px auto;
	}
	
	.logobar-top{
		--bs-gutter-x: 0;
	}

	#original_container{
		display: none;
	}
	}