.game-header {
    margin: 8px 18px;
    position: relative;
    width: auto;
    z-index: 2;
    border: 2px solid var(--cBrdClr);
    border-radius: 32px;
    transition: all .5s ease;
    box-shadow: none;
    background: none;
    display: flex;
    flex-direction: column;
    padding: 0px;
    justify-content: space-between;
    align-items: center;
}
.lang-btn{
    color: #fff;
    background: var(--pclr);
    border: none;
    border-radius: 15px;
    height: 44px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lang-btn:hover{
    text-decoration: none;
}
.logoLink {
    align-items: center;
    color: #484848;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 1;
}
.menu-btn{
    align-items: center;
    background: var(--pclr);
    border: none;
    border-radius: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 44px;
    justify-content: center;
    outline: none;
    position: relative;
    transition: all .7s ease;
    width: 50px;
    z-index: 1;
}
.menu-icon-sec{
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    width: 30px;
}
.nav-toggle span{
    background: #fff;
    height: 3px;
    transition: all .7s ease;
    width: 30px;
    margin-top: 0px;
}
.nav-toggle span:nth-child(1){
    width: 14px;
    margin-top: 0px;
}
.nav-toggle span:nth-child(2){
    width: 22px;
    margin-top: 0px;
}
.nav-toggle span:nth-child(3){
    width: 100%;
    margin-top: 0px;
}
.game-header.bs-no{
    box-shadow: none;
}
.game-header .nav-item{
    background: var(--pclr);
    border-radius: 0 30px 30px 30px;
    box-shadow: 0 2px 14px var(--cardSh), 0 -2px 16px var(--cardSh);
}
.nav-toggle.menu-btn.active {
    border-radius: 20px 20px 0 0;
    display: flex;
    height: 70px;
    justify-content: flex-start;
    padding-top: 11px;
    z-index: 2;
}
.game-header .nav-item a{
    border-bottom: 1px solid var(--t2clr);
    color: var(--t2clr);
    padding: 15px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    font-size: 1rem;
}
.page_card{
    background: var(--sclr);
    border: 2px solid var(--cbgClr);
    border-radius: 10px;
    border-radius: 38px;
    box-sizing: border-box;
    padding: 18px 8px;
    position: relative;
}
.page_card:after {
    border-radius: 38px;
    box-shadow: 0 2px 14px rgba(31,30,30,.15), 0 -2px 16px rgba(31,30,30,.15);
    content: "";
    height: 100%;
    left: 2%;
    position: absolute;
    top: 0;
    width: 96%;
    z-index: -1;
}
.home-images-sec{
    text-align: center;
}
img.Ah_img{
    width: 70%;
}
.user-input-sec{
    position: relative;
}
img.user-icon{
    height: 20px;
    left: 21px;
    position: absolute;
    top: 18px;
    width: 20px;
}
.game-footer{
    background: #f3f3f3;
    color: #000;
    padding: 18px;
    box-shadow: none;
}
.modal-content{
    background-color: #fff;
    box-shadow: none;
}
.ques-progress-bar{
    gap: 8px;
    padding: 0 8px;
}
.options.mt-20.text-options {
    gap: 18px;
}
.option_check {
    width: 31px;
    height: 31px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    visibility: hidden;
}
img.check_img {
    width: 18px;
}
/* .image-wrapper-sec {
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    width: 100%;
} */
 .media-type-answer .option.correct.activeAnim {
    background: var(--green);
    border: none;
    border-radius: 18px;
    box-shadow: none;
}
.answer-option .media-type-answer .option.activeAnim.incorrect {
    background: var(--red);
}
 .mediaOpt.option.activeAnim.active {
    background: var(--pclr) !important;
}

.media_option_check {
    background: var(--cbgClr);
    border-radius: 18px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}
.mediaOpt.active.option.activeAnim .media_option_check{
    visibility: visible;
}
.share_img_sec img {
    width: 110px;
}
.share_img_sec {
    margin-top: 12px;
}
.copy-btn {
    width: auto;
    margin-top: 12px;
}
.page_card.answer-card {
    padding-bottom: 26px;
}
.text-correct-img, .text-incorrect-img{
    visibility: hidden;
}
.option.correct .correct-check{
    visibility: visible;
}
.option.incorrect .incorrect-check{
    visibility: visible;
}

.score-row-link {
    background: #fff;
    border-radius: 14px;
    padding: 4px 25px 6px;
    display: block;
}
.scoreCard .score-row-link .table-row {
    padding: 0px;
    border-radius: 0px;
    display: block;
}
.score-bar-sec .user-score-bar {
    border: 1px solid var(--pclr);
    border-radius: 3px;
    display: inline-block;
    height: 7px;
    width: 14px;
}
.score-bar-sec .user-score-bar.active{
    background: var(--pclr);
}
.bottom-score-board {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.scoretab_score {
    color: var(--tclr);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.scoreCard .rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.scoreTitle {
    color: var(--tclr);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.complete-score-sec {
    position: relative;
}
.complete-score-card-sec {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 140px;
    justify-content: center;
    max-width: 86%;
    position: absolute;
    text-align: center;
    top: calc(50% - 54px);
    width: 100%;
}
.complete-score {
    color: var(--tclr);
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}
img.emotion-img {
    width: 60px;
    margin-top: 11px;
    height: 60px;
}
.thumb-sec {
    width: 130px;
    margin: 0 auto;
}
.view-answer .heading {
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    margin: 0 0 18px;
    margin-bottom: 50px;
}
.vw-option-check {
    width: 31px;
    height: 31px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 16px;
    visibility: hidden;
}
.viewTextCorrect .view-text-correct {
    visibility: visible;
}
.viewTextIncorrect .view-text-incorrect {
    visibility: visible;
}
/* .viewMediaCorrect .mediaWrapper {
    background: #69bc68;
}
.viewMediaIncorrect .mediaWrapper {
    background: #d72020;
} */
.media-option-check {
    background: #6cc364;
    height: 100%;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    top: 0px;
    left: 0px;
}
.viewMediaCorrect .media-option-check.view-media-correct {
    visibility: visible;
    background: rgba(108, 195, 100, .5);
    border-radius: 18px;
}
.viewMediaIncorrect .media-option-check.view-media-incorrect {
    visibility: visible;
    background: rgba(198, 82, 89, .5);
    border-radius: 18px;
}
.error-h2{
    color: grey;
    font-size: 22px;
    text-align: center;
}
.error-gif-sec img {
    width: 100%;
}
.share_page_card .heading {
    margin-top: 0px;
    margin-bottom: 18px;
    font-size: 28px;
}
