/**
 * Copyright (c) Microblink Ltd. All rights reserved.
 */

*
{
    box-sizing: border-box;
}

#frmEIDAVerification_flxScreenintial
{
    display: flex;
    min-height: 100%;
    margin: 0;
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
     width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 24px;
    font-family: sans-serif;
}

#loading
{
    display: block;
}

#view-landing,
#view-scan-from-camera,
#view-scan-from-file,
#view-results
{
    display: block;
    width: 100%;
    height: 100%;
}

/* Rules for better readability */
imgScan
{
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
}

video
{
    width: 100%;
    height: 100%;
}

textareaScan
{
    display: block;
}

/* Camera feedback */
#screen-scanning
{
    position: relative;
	height: 100%;
	width: 100%;
	display: flex; 
  justify-content: center;
}

#view-scan-from-camera
{
    position: relative;
}


#camera-feed
{
    position: absolute;
    width: 100%;
    height: 100%;
}

#camera-guides
{
    position: absolute;
    top: 25%;
    left: 5%;
    right: 5%;
    text-align: center;
    font-weight: bold;
	color:#FFBF00;
}

#cameraFC
{
    position: absolute;
    height: 235px;
	width: 325px;
    }


#cameraFCBrdr
{
	position: absolute;
    border: 4px solid #3498db;
    top: 50%;
    left: 50%;
    height: 230px;
	width: 320px;
	transform:translate(-50%,-50%);
}

#cameraFCBlock
{
	
	position: absolute;
    background-color:#97a8a5;
    top: 50%;
    left: 0%;
    height: 50%;
	width: 100%;
	z-index: 9999999;
}

#flpContainerScan
{
	position: absolute;
    height: 80px;
	width: 100%;
	display: flex; 
	align-items:center;
    justify-content: center;
}
#flpContainerCrdScan
{
	height: 100px;
	width: 100px;
	perspective: 800px; 
		display: flex; 
	
}
.MBScanimg{
	height: 95px;
	width: 140px;
}

#flpContainerCrdInnerScan
{
	height: 80%;
	width: 120%;
	position: absolute;
		display: block; 
	backface-visibility: hidden;
}




#frmEIDAVerification_EIDAScan_flxxScanFrame
{
    position: relative;
    width:100%;
	height:100%;
    text-align: center;
    font-weight: bold;
	background-color:#636566;
}

#frmEIDAVerification_EIDAScan_flxxScanFrame:before
{
    position: absolute;
	content:"";
	top:30%;
	left: 50%; 
    transform: translate(-50%, 0); 
    width:320px;
	height:220px;
    text-align: center;
    background-color:#636566;
	Opacity:0;
}

.flpContainerCrdImg1{
height: 100%;
	width: 100%;	
}


.face1 {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden; 
}
.face1.backScn {
      display: block;
      transform: rotateY(180deg);
      /*box-sizing: border-box;*/
      color: white;
      text-align: center;
     
}

.face1.backScn {
    animation:
        BackRotate 2000ms linear 0ms 3;
}

.face1.frontScn {
    animation:
        Rotate 2000ms linear 0ms 3;
}

@keyframes Rotate {
  from {transform:rotateY(0deg);}
  to {transform:rotateY(180deg);}
}
 
@keyframes BackRotate {
  from {transform:rotateY(180deg);}
  to {transform:rotateY(0deg);}
}


@keyframes flip{
0%,100%{
transform:rotateY(0deg);
}	
50%{
transform:rotateY(180deg)	
}
}


/* Auxiliary classes */
.hidden1
{
    display: none !important;
}
