:root {
  --primary: #00c0ff;
  --secondary: #ffffff;
}

.qr-scanner {
  border: 6px solid #fff;
}
.qr-scanner-div::before {
  content: '';
  position: absolute;
  z-index: 999;
  height: 1px;
  width: 100%;
  background-color: var(--primary);
  border-right: 6px solid #fff;
  border-left: 6px solid #fff;
  border-radius: 20px;
  animation: animate 2s infinite linear alternate-reverse both;
}
@keyframes animate {
  0% {
    top: 8px;
  }
  100% {
    top: 98%;
  }
}
.scanner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-scanner-div {
  height: 300px !important;
  width: 300px !important;
  position: relative;
  border-radius: 50%;
}
.qr-scanner {
  height: 100%;
  width: 100%;
  background-size: cover;
  object-fit: cover;
  border-radius: 12%;
}
.app__scanner-img {
  position: absolute;
  top: 0;
}
.color-primary {
  background: var(--primary);
  color: var(--secondary);
}
.color-primary:hover {
  color: var(--secondary);
}
