*{
    padding: 0;
    margin: 0;
}
body{
    position: relative;
}

.quiz-section{
    height: 100vh;
    width: 100vw;
     background-color: rgba(43, 131, 65, 0.651);
     overflow: hidden;
    
}

.container{
    height:100%;
    width: 80%;
    margin: 0 auto;
}
.quiz-container{
   /* display: none !important; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:100%;
    overflow: hidden;
}


.final{
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:100%;
    align-items: center;
    /* visibility: hidden; */
    overflow: hidden;

}
.quiz-container > h1{
   text-align: center;
   text-transform: uppercase;
   font-size: 30px;
   margin-bottom:10px;
}

.quiz{
     background-color: aqua;

      background: rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.4px);
    -webkit-backdrop-filter: blur(2.4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px
}
    
.quiz h1{
    font-size:25px;
    margin-bottom: 20px;
        word-break: break-all;
}

.quiz [type="radio"]{
    display: none;
}

.quiz .choices{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  
}
.quiz .choices .choice-container{
   flex: 1 1 100%;
   margin-bottom: 10px;
   background-color: aliceblue;
  
   transition: all 0.2s ease-in-out;

}

.quiz .choices .choice-container label{
  display: inline-block;
  height: 100%;
  width: 100%;
   padding: 15px 10px;
}

.green{
    background-color: rgba(35, 165, 52, 0.623) !important;
}

.red{
    background-color: rgba(185, 81, 40, 0.623) !important;
}
.count{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0; 
}

.loader{
    position: absolute;
    background-color: #000000cb;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
}

.loader.show{
    visibility: visible;
    opacity: 1;
}



.loading{
    height: 30px;
    width: 30px;
    background-color: black;
    border-radius: 50%;
    animation-name: showhide;
    animation-duration: 2s; 
    animation-timing-function: ease-in-out; 
    animation-iteration-count: infinite; 
}
.extra-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.extra-details .correctanswercount{
    color: green;
   
}

@keyframes showhide {
  0% {
    opacity: 0; 
  }
  25% {
    opacity: 1; 
  }

  50% {
    opacity: 0; 
  }
  75% {
    opacity: 1; 
  }
  100% {
    opacity: 0; 
  }
}

.finaldiv{
        background-color: aliceblue;
    border: 1px solid aqua;
    box-shadow: 0px 0px 15px 1px aqua;
    font-size: 2rem;
    width: 38%;
    padding: 10px 20px;
    margin-bottom: 15px;
  
}

.correctstyle{
    padding: 11px;
    background-color: #fff;
    border-radius: 50%;
    min-width: 15px;
    height: 15px;
    text-align: center;
    font-weight: bold;
}
.progress-bar{
    width: 0%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0964e1;
    transition: width 2s ease;
        box-shadow: 0px 0px 16px 1px #0004e4;
}

@media(min-width: 768px){
    .container{
        max-width: 40%;
    }

}

@media(min-width: 992px){
    .container{
        max-width: 40%;
    }

}