body{
	user-select: none;
	margin: 0 auto;
	font-family: "Montserrat", sans-serif !important;
}
.scan-image-area{
  padding: 10px; 
  width: 400px;
  height: 300px; 
  overflow: hidden; 
  position: relative;

}
.tooltip {
        margin-top: 3px;
}
.scan-data-item{
	border-radius: 10px ;
	border: 1px solid black;
}
#video {
/*    transform: scaleX(-1);  */
}
canvas{
/*    transform: scaleX(-1);  */

}
.dropzone img{
	width: 25px;
	cursor: pointer !important;
}
/*#take-camera-section{
	display: flex;
	align-items: center;
	justify-content: center;
}*/
#scan-image-area img {
  width: 100%; 
  height: 100%;  
  object-fit: contain; 
  display: block;  
  position: absolute; 
  top: 0; 
  left: 0;  
}
#container{
	border: 1px solid;
	border-radius: 5px;
/*	width: 500px;*/
	max-width: 850px;
}
.scan-image-type{
	border: 1px solid;
    background: #0072ff;
    color: white;

}
.btn{
	display: flex;
	align-items: center;
	gap: 10px;
	background: black;
    color: white;
    padding: 10px 45px 10px 45px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
	transition: 0.1s ease-in-out;
	font-family: "Montserrat", sans-serif !important;
	box-shadow: rgb(0 0 0 / 8%) 0 3px 28px;
}
.btn:hover{
	opacity: 0.88;
	transition: 0.1s ease-in-out;
}

.copy-svg{
    width: 26px;
    cursor: pointer;
}
.svg{
	width: 25px;
}
.error-text {
  color: red !important;
  font-weight: bold;
}


.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.dropzone{
	min-height: 71px !important;
    padding: 20px 66px !important;
    border: 2px dashed #b9aaaa !important;
    border-radius: 3px;

}
.dropzone .dz-message {
    margin: 0.5em 0 !important;
}

.dropzone .dz-message .dz-button:hover{
	color: #5858fb;
	transition: 0.2s ease-in-out;
}

.dropzone .dz-preview.dz-image-preview {
	display: none ;
}
@media only screen and (max-width: 600px) {
  #container{
  	width: 290px !important;
  }
  .btn{
  	padding: 10px 15px 10px 15px !important;
  }
  textarea{
  	width: 192px !important;
  }
  #result{
  	font-size: 10px !important;
  }
  .scan-data-item{
  	flex-direction: column !important;
    width: -webkit-fill-available !important;
  }
  .scan-image-area{
  	width: 300px !important;
  	height: 300px !important;
  }
}