@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'SF Pro Display', sans-serif;
  color: #000;
}

.wrapper{
  display: block;
  height: 100dvh;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 50px 18px 0;
}

.title{
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.106px;
}

.subtitle{
  color: #FF382B;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.05px;
  margin-top: 4px;
}

.cover{
  width: 100%;
  height: 267px;
  border-radius: 12px;
  overflow: hidden;
}

.cover img{
  width: 100%;
  object-fit: cover;
}

.scanner-scan{
  margin: 40px 0;
}

.progress-bar{
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 100px;
  background: rgba(142, 142, 147, 0.16);
  margin: 16px 0 8px;
}

.scanner-scan__text{
  color: rgba(60, 60, 67, 0.60);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.05px;
}

.scan-complete .scanner-scan__text{
  color: #000;
}

.progress-bar__fill{
  background: #007BFE;
  border-radius: 100px;
  height: 100%;
  transition: .3s;
}

.btn{
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: #1877F2;
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.408px;
  text-transform: uppercase;
  transition: 0.3s;
 /* animation: pulse 1.5s infinite;*/
  margin-top: 32px;
  opacity: 0;
}

.btn.show{
  opacity: 1;
}

/*@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}*/











