.overlay{
    background-color: rgba(0, 0, 0, 0.418);
    width:100%;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    z-index:10000;
}
.overlaycontent{
    background-color:white;
    position:fixed;
    top:20vh;
    width:60%;
    margin: 0px 20%;
    z-index:11000;
    border-radius:20px;
}
.overlaycenter{
    width:80%;
    margin:auto;
    padding:30px 0px;
    text-align:center;
}
.overlaycenter h2{
    color:#8e00f9;
}
.overlaycenter p{
    font-size:24px;
    font-weight:600;
}
.overlaycenter span{
    font-size: 0.9em;
    color: #999;
}
.overlaycenter .cpn{
    background-color: rgb(247, 247, 247);
    padding: 15px 10px;
    margin: 0 auto;
    font-size: 1.8em;
    text-align: center;
    border-radius: 1000px;
    border-width: thin;
    border-style: solid;
    border-color: rgb(224, 224, 224);
    border-image: initial;
    margin-top:40px;
    max-width: 70%;
}
.cpnbtn{
    position: relative;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    background: #8e00f9;;
    color: white;
    height: 3rem;
    border-radius: 1000px;
    transition: all 500ms ease 0s;
    border: 1px solid #8e00f9;;
    padding: 0 5px;
    outline: none !important;
    width:80%;
    margin:auto;
    margin-top:30px;
}
.overlaycontent{
    height:1px;
    display:none;
}
.overlay{
    display:none;
}
.cpnbtn:hover{
    background-color:#a93aff;
}




















#progress{
    display: flex;
    justify-content: space-around;
    display:none;
  }
  .progress-item {
    display: flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 0;
    animation: .4s ease-out reverse; 
    margin: auto;
    margin-top: 40px;
  }
  
  .progress-item::after {
    content: attr(data-value);
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    margin: 10px;
    border-radius: 50%;
    background: white;
    font-size: 1rem;
    text-align: center;
  }