/* .game-quiz-container{
    width: 40rem;
    height: 30rem;
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 30px;
} */

.game-details-container h2 {
    /* width: 80%;
    height: 4rem;
    display: flex;
    justify-content: space-around;
    align-items: center; */
    font-size: 20px;
}

.game-question-container {
    /* width: 80%;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid darkgray;
    border-radius: 25px; */
}

.game-question-container h3 {
    font-size: 20px;
}

.game-options-container {
    /* width: 80%; */
    /* height: 12rem; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.game-options-container .ques {
    width: 100%;
    border: 1px solid var(--primaryColor);
    background-color: var(--whiteColor);
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
    margin-top: 12px;
}

span label {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s;
    font-weight: 600;
    color: rgb(22, 22, 22);
}

span label:hover {
    /* -ms-transform: scale(1.12);
    -webkit-transform: scale(1.12);
    transform: scale(1.12); */
    color: var(--secondaryColor);
}

input[type="radio"] {
    position: relative;
    display: none;
}


/* input[type=radio]:checked~.option {
    background: #2FC58F;
    color: var(--whiteColor);
} */

/* .next-button-container {
    width: 50%;
    height: 3rem;
    display: flex;
    justify-content: center;
} */

.next-button-container button {
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    font-weight: 600;
    cursor: pointer;
    outline: none;
    display: block;
    float: right;
    margin-top: 10px;
}

.next-button-container button:hover {
    background-color: var(--primaryColor);
}

.modal-container {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-animation: fadeIn 1.2s ease-in-out;
    animation: fadeIn 1.2s ease-in-out;
}

.modal-content-container {
    height: 20rem;
    width: 25rem;
    background-color: rgb(43, 42, 42);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 25px;
}

.grade-details {
    width: 15rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.grade-details p {
    color: white;
    text-align: center;
}

.modal-button-container {
    height: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-button-container button {
    width: 10rem;
    height: 2rem;
    background: none;
    outline: none;
    border: 1px solid rgb(252, 242, 241);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 20px;
}

.modal-button-container button:hover {
    background-color: rgb(83, 82, 82);
}

.option-label {
    margin: 0;
    width: 45px !important;
    height: 35px;
    border-radius: 5px;
    border: 1px solid var(--primaryColor);
    background-color: #F4FCF9;
    font-family: "Unbounded", sans-serif !important;
    font-weight: bold;
    text-align: center;
    padding: 4px;
}

.game-options-container .ques.active {
    background-color: #2FC58F;
    border-color: #2FC58F;

}

.game-options-container .ques.active label {
    color: var(--whiteColor);
}

.game-options-container .ques.active .option-label {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: var(--whiteColor);
}

@media(min-width : 300px) and (max-width : 350px) {

    .game-options-container .ques {
        width: 90%;
        height: 2.5rem;
    }

    .game-options-container .ques label {
        font-size: 0.8rem;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}