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

html,body{
  height: 100%;
}

img{
  display: block;
}

.preview{
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 18px 0;
}

.preview__title{
  display: flex;
  gap: 8px;
  text-align: center;
  animation: pulse 1s infinite;
}

.preview__title-text{
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.preview__title-text span{
  color: #ff382b;
}

.preview-content{
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
  padding: 35px 0;
  margin: 24px 0 35px;
}

.preview-content__title{
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
}

.preview-content__description{
  font-size: 17px;
  line-height: 129%;
  letter-spacing: -0.03em;
  opacity: 0.8;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1); /* начальный и конечный размер */
  }
  50% {
    transform: scale(1.05); /* увеличенный размер */
  }
}

.preview__error-label-icon{
  flex-shrink: 0;
}

.status{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}

.status-resume{
  display: flex;
  gap: 5px;
  margin-bottom: 2px;
  font-size: 20px;
}

.status-resume__result{
  color: #ff382b;
  font-weight: 500;
}

.status__line{
  position: relative;
  width: 100%;
  height: 12px;
  background: rgba(142, 142, 147, 0.2);
  border-radius: 10px;
}

.status__line-progress{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #007bfe;
  transition: .3s;
  border-radius: 10px;
}

.status__line.error .status__line-progress{
  background: #ff382b;
}

.status__line.error{
  animation: pulse-line 1s infinite;
}

.status-percent{
  display: flex;
  gap: 5px;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.status-percent__info,
.status-percent__number{
  color: #9b9b9b;
}

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

.lottie{
  margin-top: 20px;
}

.button{
  position: fixed;
  width: calc(100% - 36px);
  left: 18px;
  bottom: 20px;
  border-radius: 20px;
  padding: 16px 10px;
  background: #007bfe;
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  animation: pulse 1s infinite;
  transition: .3s;
}

.button.error{
  background: #ff382b;
}








