@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background: url("../images/bg.webp") no-repeat center center;
  background-size: 100%100%;
}
.container {
  width: 100vw;
  min-height: 100vh;
  max-width: 400px;
  margin: auto;
}
.main-box{
  width: 100%;
  height: 100%;
  padding: 5% 3%;
}
.home-title{
  width: 100%;
  height: 96px;
  background: url('../images/title.webp') no-repeat ;
  background-size: 100% 100%;
}
.home-icon{
  width: 100%;
  height: 160px;
  margin: 3% 0;
}
.shadow-box{
  width: 100%;
  padding: 3%;
  background: #0A2900;
border-radius: 16px 16px 16px 16px;

}
.shadow-title{
  font-size: 18px;
color: #FFFFFF;
line-height: 28px;
text-align: center;
margin-bottom: 12px;
}
.shadow-title span{
  font-weight: 900;
  font-size: 20px;
  color: #46EB25;
  line-height: 28px;
}
.normal-text{
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 21px;
  text-align: center;
}
.num{
  font-weight: 900;
  font-size: 16px;
  color: #46EB25;
  line-height: 21px;
  text-decoration: underline;
}
.input-box{
  width: 100%;
  margin-top: 5%;

 
  display: flex;
}
.normal-input-text{
  width: 100%;
  height: 36px;
  background: #0A2900;
  border-radius: 60px 60px 60px 60px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #FFFFFF;
}
.btn-box{
  width: 100%;
  margin-top: 5%;
  display: flex;
  justify-content: center;
  animation: btn 2s infinite;
}
.btn-box img{
  width: 100%;
  height: 36px;
}
.desc-box{
  margin-top: 5%;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 21px;
  text-align: center;
}
.desc-link{
  margin-top: 2%;
  display: flex;
  justify-content: center;
}
.desc-link a{
  font-size: 12px;
  color: #E4EB26;
  line-height: 21px;
  text-decoration: underline;
}
.desc-link a:first-child{
  margin-right: 10px;
}
.mask-content{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.72);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 16px;
 

}
.progress-box,.outcome-box{
  width: 100%;

  background: #1B1B1B;
  border-radius: 8px 8px 8px 8px;
  padding: 16px;
 
  max-width: 400px;
  display: none;
 
}
.progress-title{
  font-weight: 900;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 30px;
  text-align: center;
  margin-bottom: 2%;
}
.progress-item{
  margin-top: 2%;
}
.item-title{
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 21px;

  
}
.item-out{
  width: 100%;
  height: 16px;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #46EB25;
  margin-top: 1%;
  padding: 1px;
}
.item-in{
  width: 0%;
  height: 100%;
  background: #E4EB26;
  border-radius: 8px 8px 8px 8px;
 
}
.item-in-1{
  animation: item-in-animation 1.5s forwards;
}
.item-in-2{
  animation: item-in-animation 1.5s 0.6s forwards;
}
.item-in-3{
  animation: item-in-animation 1.5s 1.2s forwards;
}
@keyframes item-in-animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.outcome-box{
  /* display: block; */
}
.outcome-title{
  font-weight: bold;
  font-size: 20px;
  color: #E4EB26;
  line-height: 30px;
  text-align: center;
}
@keyframes btn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cookie-content{
  width: 100%;
  height: 66px;
  background: rgba(0,0,0,1);
  position: fixed;
  bottom: 0;
  left: 0;

  justify-content: center;
  align-items: center;
  padding: 16px;
  border-top: 1px solid #46EB25;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
.cookie-text{
  font-size: 12px;
  color: #FFFFFF;
  line-height: 21px;
}
.cookie-btn{
  width: 140px;
  height: 36px;
  background: #46EB25;
  border-radius: 60px 60px 60px 60px;
  color: #FFFFFF;
  line-height: 21px;
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
 
}
.isCookie{
  display: none;
}