/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #2a2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-inline: 20px;
  position: relative;
}

.wrap-stack {
  background-color: #1f1f1f;
  max-width: 380px;
  border-radius: 12px;
  padding: 20px;
  background-color: #FFF;
  position: relative;
  z-index: 3;
}

.stack-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #000000;
  border-radius: 16px;
  padding: 8px;
}

.stack-header h1 {
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 5px;
}

.event-time {
  font-size: 13px;
  color: #aaa;
}

.queue-info {
  padding-top: 60px;
  position: relative;
}

.queue-info p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.queue-info .number {
  color: rgb(45, 194, 117);
  font-weight: bold;
}

.queue-info .note {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

.queue-info .queue-id {
  font-size: 12px;
  color: #888;
  text-align: center;
}

.queue-info .update-time {
  font-size: 12px;
  color: #888;
  text-align: center;
}
.queue-info .update-time > span {
  position: relative;
}
.queue-info .update-time > span:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(45, 194, 117);
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.progress-bar-container {
  width: 100%;
  background-color: rgba(195, 195, 195, 0.2);
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  width: 5%;
  height: 100%;
  background-color: rgb(45, 194, 117);
  border-radius: 10px;
  transition: width 1s ease;
}

.queue-position {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.queue-position .number {
  margin-top: 10px;
  font-size: 32px;
}

#progress-image {
  width: 50px;
  position: absolute;
  left: 0%;
  top: 0;
  transition: left 1s ease;
}

.wrap-footer {
  margin-top: 20px;
  margin-inline: -20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  position: relative;
  z-index: 3;
}
.wrap-footer .ttl {
  color: rgb(45, 194, 117);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
}
.wrap-footer .txt {
  font-size: 12px;
  line-height: 1.5;
  color: #FFFFFF;
}

.bg-wrapper {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(10px) brightness(0.4);
}
.bg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrap-waiting {
  position: relative;
  z-index: 3;
  padding: 20px 0;
  align-self: flex-start;
  display: flex;
  align-items: center;
}
.wrap-waiting .txt {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.5;
}
.wrap-waiting .btn-back {
  font-size: 0;
  line-height: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  margin-right: 10px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.wrap-waiting .btn-back:before {
  content: "";
  display: block;
  color: #FFFFFF;
  position: absolute;
  top: 10px;
  left: 10px;
  border: solid #FFFFFF;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
}/*# sourceMappingURL=style.css.map */