.game-quiz-container{
   background-color: #fff;
    display: block;
    float: none !important;
    /*flex-direction: column;
    align-items: center;
    justify-content: space-around;*/
}

.game-details-container{
    width: 100%;
    /*display: flex;
    justify-content: space-around;
    align-items: center;*/
}

.game-details-container h1 {
    font-size: 1.2rem;
}

.game-question-container{
    /*display: flex;
    align-items: center;
    justify-content: center;*/
}

.game-question-container h3{
    text-align: center;
    padding: 3px;
}

.game-options-container{
    width: 100%;
    /*display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;*/
}

.game-options-container span{
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 10px;
}
span label{
    width: 100%;
    /*height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;*/
    cursor: pointer;
    transition: transform 0.3s;
    padding: 5px;
    font-size: 1rem;
}

span label:hover{
    /*-ms-transform: scale(1.12);
    -webkit-transform: scale(1.12);
    transform: scale(1.12);*/
}

input[type="radio"] {
    position: relative;
    display: none;
}


input[type=radio]:checked ~ .option {
	background: #8FCF6E;
    color: #fff;
}

.next-button-container{
    width: 50%;
    /*display: flex;
    justify-content: center;*/
    margin: 10px auto;
}
.next-button-container button, 
.next-button-container button:hover {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    transition: all .2s;
    background: var(--button_gradient_top_color);
    color: var(--button_accent_color);
    border-color: var(--button_border_color);
    width: 100%;
    padding-right: var(--button_padding-right,29px);
    padding-left: var(--button_padding-left,29px);
    line-height: var(--button_line_height, 1);
    box-shadow: none!important;
    outline: 0;
    border-radius: 0 0 0 0;
    font-size: 18px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 0px;
    margin-bottom: 16px;
    cursor: pointer !important;
}
.modal-container{
    display: none;
    position: fixed;
    z-index: 1000; 
    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{
    width: 75%;
    background-color: rgb(43, 42, 42);
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;*/
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}

.modal-content-container h1,
.modal-content-container h3 {
    font-size: 1.3rem;
    height: 3rem;
    color: #fff;
    text-align: center;
}

.grade-details{
 /*    width: 15rem;
    height: 10rem; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;*/
    text-align: center;
}

.grade-details p{
    color: white;
    text-align: center;
}

.grade-details a.join-us-link {
    color: #fff;
    text-decoration: underline;
}

.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 #fff;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
}

@media(min-width : 300px) and (max-width : 780px){
    /*.game-quiz-holder {
    margin-top: 15px;
    margin-bottom: 30px;*/
    }
}



@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }

  @-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  