
@font-face {
  font-family: 'Frutiger';
  src: url('../fonts/Frutiger LT Arabic 65 Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.col-bg{
    background: rgba(255, 255, 255, 0.2);
    border: 6px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: center;
    color: white;


}
.back-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: white;
  width: 40px;
  padding: 0.5rem;
  margin-right: 0.8rem;
  transition: background 0.3s ease, border 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.ocrloader {
    width: 350px;
    height: 250px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
  }
  
  .scan-img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    /* position: absolute; */
    z-index: 0;
  }
  
  .ocrloader span::before {
    content: "";
    position: absolute;
    top: 5%;
    bottom: 0;
    left: 4%;
    width: 10px;
    height: 90%;
    /* background: #18c89b;
    box-shadow: 0 0 50px 10px #18c89b; */
    background: #04615C;
    box-shadow: 0 0 50px 10px #04615C;
    clip-path: inset(0);
    animation:
      x 1s ease-in-out infinite alternate,
      y 1s ease-in-out infinite;
    z-index: 2;
  }
  
  .ocrloader p::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f6f6f6;
    position: relative;
    right: 4px;
  }
  
  .ocrloader p {
    color: #ffffff;
    position: absolute;
    bottom: -12px;
    left: 38%;
    font-size: 16px;
    font-weight: 600;
    animation: blinker 1s linear infinite;
     font-family: 'Frutiger', sans-serif;
    text-transform: uppercase;
    z-index: 3;
  }
  
  .ocrloader:before,
  .ocrloader:after,
  .ocrloader em:after,
  .ocrloader em:before {
    border-color: #04615C;
    content: "";
    position: absolute;
    width: 45px;
    height: 46px;
    border-style: solid;
    border-width: 0px;
    z-index: 3;
  }
  
  .ocrloader:before {
    left: 0;
    top: 0;
    border-left-width: 5px;
    border-top-width: 5px;
    border-radius: 5px 0 0 0;
  }
  
  .ocrloader:after {
    right: 0;
    top: 0;
    border-right-width: 5px;
    border-top-width: 5px;
    border-radius: 0 5px 0 0;
  }
  
  .ocrloader em:before {
    left: 0;
    bottom: 0;
    border-left-width: 5px;
    border-bottom-width: 5px;
    border-radius: 0 0 0 5px;
  }
  
  .ocrloader em:after {
    right: 0;
    bottom: 0;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-radius: 0 0 5px 0;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  
  @keyframes x {
    to {
      transform: translateX(-100%);
      left: 100%;
    }
  }
  
  @keyframes y {
    33% {
      clip-path: inset(0 0 0 -100px);
    }
  
    50% {
      clip-path: inset(0 0 0 0);
    }
  
    83% {
      clip-path: inset(0 -100px 0 0);
    }
  }
  