*{
    box-sizing: border-box;
}

body {
    font-family: 'Product Sans' !important;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - env(safe-area-inset-bottom));
}



  @font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Regular.woff') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

  p{
    font-size: 16px;
    font-weight: 400;
  }
  #hangman-container {
    margin: auto;
    position: relative;
    width: calc(38% - 129px);
    position: absolute;
    right: 31px;
    top: 50%;
    background: #ffffff;
    transform: translate(0px, -50%);
    border-radius: 10px;
    box-shadow: 4px 4px 20px 0px #0000001A;
    padding: 77px 115px;
    height: 59vh;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

/* svg {
    width: 100%;
    height: auto;
} */

.hangman-part {
    stroke: black;
    stroke-width: 3;
    fill: none;
    display: none; /* Initially hide parts */
}

.gallows {
    stroke: black;
    stroke-width: 4;
    width: 100% !important;
    height: 100% !important;
}

#letter-buttons {
    margin-top: 17px;
}
.enter-btn{
    position: relative;
}
.enter-btn::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/Enter-btn.svg);
    background-size: 50% contain;
    background-repeat: no-repeat;
    background-position: center;
}



.letter-btn:disabled {
    background: #ccc;
}

.won .hangman-part {
    stroke: green !important;
}

.lost .hangman-part {
    stroke: red !important;
}

.letter-btn,.enter-btn{
    padding: 10px;
    margin: 5px;
    font-size: 27.52px;
    width: 79px;
    height: 79px;
    text-align: center;
    cursor: pointer;
    border-radius: 8.71px;
    border: 1px solid #000;
    background: #fff;
    transition: 0.3s;
    font-weight: 700;

    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    font-family: 'Product Sans' !important;
}

.letter-btn:hover {
    background: #ddd;
}

.letter-btn:disabled {
    cursor: not-allowed;
}

/* Hangman turns green when won */
.won .hangman-part {
    stroke: #34A853 !important;
}

.won .head {
    fill: #34A853 !important;
}

/* Hangman turns red when lost */
.lost .hangman-part {
    stroke: #EA4335 !important;
}

.lost .head {
    fill: #EA4335 !important;
}

/* img.hangman-image.body-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(97%, -176%);
} */

/* img.hangman-image.body-2 {
    position: absolute;
    top: 75%;
    left: 58%;
    transform: translate(144%, -173%);
} */
/* 
img.hangman-image.body-3 {
    position: absolute;
    top: 58%;
    left: 48%;
    transform: translate(142%, -177%);
} */

/* img.hangman-image.body-4 {
    position: absolute;
    top: 60%;
    left: 52%;
    transform: translate(151%, -189%);
} */

/* img.hangman-image.body-5 {
     transform: translate(145%, -192%);
   position: absolute;
    top: 82%;
    left: 48%;
} */
/* 
img.lost-game-result,div#hangman-container img.won-game-result {
    position: absolute;
    top: 99%;
    left: 41%;
    transform: translate(143%, -193%);
}

div#hangman-container img.won-game-result {
    position: absolute;
    top: 141%;
    left: 41%;
    transform: translate(143%, -191%);
} */
#word-display {
    font-size: 32px;
    margin-bottom: 20px;
    display: flex;
    gap: 12.5px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.bar-chart .bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.bar-chart .bar-label {
    font-size: 16px;
    font-weight: 400;
    width: 24px;
    margin-right: 12px;
}
.bar-chart .bar {
    height: 35.67px;
    background-color: #9F9F9F;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 12px 20px;
}
.barnumber {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.result-message {
    font-size: 24px;
    font-weight: 400;
    color: #EA4335;
    background: #EA43351A;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 26px;
    width: fit-content;
    margin: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 57%);
}


.bar-inner{
    position: relative;
}
.bar-chart .bar.success {
    background-color: #0EB100; /* green for success */
}

.bar-chart .bar.failed {
    background-color: #9F9F9F; /* red for failure */
}
/* main.content {
    height: calc(100vh - 66px);
} */



/* Header styling Start */
header {
    height: 90px;
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 29px 29.29px;
    background: #E7F0FF;
    position: fixed;
    top: 0;
 z-index: 2;
}
.HeaderBtnWrap{
    gap:14.4px;
    display: flex;
    align-items: center;
}
.HeaderBtnWrap a {
    padding: 0px 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    height: 44px;
    display: flex;
    align-items: center;
}
a.HeaderLogoWrap {
    width: 296px;
    height: 34.41px;
}
a.HeaderLogoWrap img {
width: 100%;
height: 100%;
}
.RightCont {
    width: 50%;
    height: 64%;
}
.RightCont img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.SignIn{
    border: 1px solid #000000;
    border-radius: 4px;
}
/* Header styling End */

/* Footer Styling start */
footer {
    height: 66px;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 30px;
    margin-top: auto;
}
.SocialMediaWrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:22.67px
}
footer p{
color: #000000;
}

/* Footer Styling End */
.MainBody {
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    position: relative;
    padding-bottom: 66px;
}
.MainBody::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/HomeBG.png);
    background-position: bottom right;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}
.SocialMediaWrap a {
    width: 19px;
    height: 19px;
}
.SocialMediaWrap a img{
    width: 100%;
    height: 100%;
}
/* footer styling ENd */

/* Home Page Styling */
.MainContentSec {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 105px;
}
.LeftCont{
    width: 50%;
}
.InstructionCont {
    border: 3px solid #FFFFFF33;
    background-color: #FFFFFF08;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

span.InstructionSpan {
    background: #E59E0D;
    font-size: 24px;
    font-weight: 400;
    line-height: 40.83px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 49px;
    border-radius: 110px;
    gap: 5px;
    color: #FFFFFF;
    position: relative;
}

span.InstructionSpan::before {
    content: ' ';
    position: absolute;
    top:50%;
    left: 20px;
    width: 24px;
    height: 24px;
    background-image: url('../images/InstractionIcon.svg');
    transform: translateY(-50%);
}
ul.Instruct-Ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
}
ul.Instruct-Ul li {
    color: #fff;
    font-size: 26px;
    text-align: left;
}
.LeftCont {
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}
.LeftContBtnWrap a {
    padding: 16px 20px;
    background: #fff;
    border-radius: 135.44px;
    font-size: 21.78px;
    font-weight: 400;
    text-decoration: none;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 9.16px;
}
.LeftContBtnWrap span {
    font-size: 27px;
    font-weight: 400;
    color: #fff;
}
.LeftContBtnWrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LoginPage Styling */
/* Loginpage styling */
.MainLogin{
    height: calc(100vh - 66px);
}
.LoginFirst{
    height: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    border-radius: 16px;
}
.LoginFirst img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.LoginWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 504px;
    margin: auto;
    position: absolute;
    top: 50%;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, -50%);
}
.LogoWrap{
    margin-bottom: 60px;
}
    .LogoWrap img{
        width: 306px;
        height: 55.64px;
    }
    .LoginForm {
        background-color: #FFFFFF;
        padding: 30px;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0px 5px 20px 0px #0000001A;
    }
    .LoginForm a {
        display: block;
        width: 100%;
        border-radius: 5px;
        padding: 24px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 15px;
    }
    a.SignIn.login_mobile {
        background-color: #619BEC;
        color: #fff;
        border: none;
    }
    a.SignUp {
        background: transparent;
        color: #000;
        border: 1px solid #E0E0E9;
        box-shadow: 0px 18px 30px 0px #8377C61C;

    }
    .SignIn{
        background-color: var(--main-color);
        color:var(--text-color) ;   
    }
    .SignUp{
        background-color: #000;
        color: #fff;
    }
    .ContWithGoogle{
        border: 1px solid #E0E0E9;
        box-shadow: 0px 18px 30px 0px #8377C61C;
        color:var(--text-color) ; 
    }
    .ContactUs{
        background-color: transparent;
        border: none;
        color: var(--text-color);
        font-size: 16px;
        font-weight: 400;
        width: 100%;
        margin-top: 5px;
        font-family: 'Product Sans';
    }
    .MainQuizTop {
        background-color: #E7F0FF;
        position: relative;
        width: 100%;
    }
    .MainQuizTop, .MainQuizBOttom {
        height: 48vh;
    }
    .MainQuizBOttom{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 68%;
    }
    .MainQuizWrap {
        height: calc(100vh - 66px);
    }
    span.SubjectTitle {
        background: #619BEC;
        color: #fff;
        padding: 20px 170px;
        border-radius: 4px;
        font-size: 22px;
        font-weight: 400;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translate(-50%, 0);
        /* z-index: 999; */
        height: 44px;
        display: flex
    ;
        align-items: center;
        line-height: 10px;
        z-index:9;
    }
.word-display-wrap ,.KeyboardDisplay{
    height: 100%;
    /* border: 1px solid; */
    display: flex
;
    align-items: center;
    padding: 0px 31px 0px 40px;
    width: 62%;
}
.KeyboardDisplay{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.EmptyLIne, .FillCharactor,.SpaceGap {
    width: 68px;
    height: 68px;
    font-weight: 700;
    font-size: 31.49px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
span.FillCharactor {
    color: #619BEC;
}
span.EmptyLIne {
    color: #000000;
}
.EmptyLIne img{
    width: 100%;
    height: 100%;
}
a.HeaderLogoWrap {
    display: flex;
    align-items: center;
}

.word-display-wrap{
    z-index: 1;
    position: relative;
} 
.KeyboardDisplay{
    position: relative;
    z-index: 2;
}
.Result-Wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 30px;
}
.Result-Wrap  span {
    font-size: 20px;
    font-weight: 700;
}
.QuizStatsBoxWrap {
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 25%;
}
.AttemptBarVisualWrap {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stats-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
div#attempt-bar-visual {
    background: #E7F0FF;
    padding: 15px;
    border-radius: 5px;
}
.stat-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    width: 100%;
    gap: 2px;
}
.stat-row:last-child {
    border-bottom: none;
}
.label,.value  {
    font-weight: 400;
    color: #000;
    width: 50%;
    background: #E7F0FF;
    padding:18.25px 0px;
    border-radius: 4px;
    font-size: 16px;
}
.ManiResult {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ResultSocialMediaWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ResultSocialMediaWrap a {
    width: 25%;
    border-radius: 33.6px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.ResultSocialMediaWrap a.FB-Btn{
    background-color: #4267B2;
}
.ResultSocialMediaWrap a.WP-Btn{
    background-color: #25D366;
}
.ResultSocialMediaWrap a.LI-Btn{
    background-color:#0A66C2 ;
}
.ResultSocialMediaWrap a.TW-Btn{
    background-color: #000000;
}
.user-body {
    width: 100%;
    height: 100%;
}
img.hangman-image.body-0 {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
img.hangman-image.body-1 {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
img.hangman-image.body-2 {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
img.hangman-image.body-3 {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
img.hangman-image.body-4 {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
img.hangman-image.body-5 {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
img.hangman-image.body-6 {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
div#hangman-container img.lost-game-result,div#hangman-container img.won-game-result {
    width: 100%;
    height: 80%;
    object-fit: contain;
}
/* Calander page Design */
.CalnderCont {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 100%;
}
span.TitleSpan {
padding: 9.08px 24px;
background: #86BB6D33;
border: 1.3px solid #86BB6D66;
border-radius: 1296.83px;
font-size: 18px;
font-weight: 500;
}
.CalnderTitle {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
margin-bottom: 74px;
}
.MainQuizBOttom.margin-bottom-quiz {
    flex-direction: column;
    gap: 10px;
}
.info-show {
    border: 1px solid #619BEC;
    padding: 5px 10px;
    border-radius: 4px;
    color: #619BEC;
}
span.TitlePara {
font-size: 17.37px;
font-weight: 400;
}

.wrapper {
    background: #E7F0FF;
    width: calc(100% - 172px);
    border-radius: 10px;
    margin: 0px auto;
    padding: 15px;
    /* margin-bottom: 94px; */
}
span.current-date {
    font-size: 18px;
    font-weight: 700;
}
.wrapper header {
display: flex;
align-items: center;
padding:0px !important;
justify-content: space-between;
}

header .current-date {
font-size: 26px;
font-weight: 900;
}

.DateHeader {
    display: flex;
    justify-content: space-between;
}
header .icons span {
padding: 10px;
color: #878787;
font-size:1.5rem;
margin:0 1px;
border-radius:50px;
font-weight:800;
}
.icons span svg {
    width: 8px;
    height: 14px;
}
.icons span {
transition: opacity 0.3s ease;
cursor: pointer;
}


header .icons span:last-child {
margin-right: -10px;
}


.calendar ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    text-align: center;
    border-bottom-left-radius: 10px;
    padding: 0;
}
.days li:nth-child(1) {
border-top-left-radius: 10px;
}
.days li:nth-child(7) {
border-top-right-radius: 10px;
}
.days li:nth-child(29) {
border-bottom-left-radius: 10px;
}
.days li:nth-child(35) {
border-bottom-right-radius: 10px;
}

.calendar .weeks li {
font-weight: 600;
font-size: 16px;
}

.calendar .days li {
z-index: 1;
cursor: pointer;
height: 140px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #D5D4DF;
font-size: 22px;
font-weight: 400;
}
.days li.inactive {
color: #A8A8A8;
background: #FCFCFC;
}

.days li.active {
    color: #ffff;
    font-weight: 600;
}

.calendar ul li {
position: relative;
width:calc(100%  / 7) 
}
.calendar .days li::before {
position: absolute;
content: "";
height: 100%;
width: 100%;
top: 50%;
left: 50%;
z-index: -1;
border-radius: 0;
transform: translate(-50%, -50%);
}
.days li:hover::before {
background: #f2f2f2;
color:#000;
}
.days li.disabled {
    color: #b8a7a7;
    pointer-events: none;
    cursor: default;
}

.days li.active::before {
    background: #619BEC;
    color: #ffffff !important;
}
ul.weeks li {
padding: 10px;
}
.MainResultWrap {
    width: 90%;
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 10px;
    padding: 20px;
}
li.inactive {
    pointer-events: none;
    color: #ccc;
    cursor: not-allowed;
}
.MainResultWrap .ManiResult {
    gap: 30px !important;
}
.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mobile-btn {
    font-size: 22px;
    padding: 15px 20px;
    margin: 5px;
}

.letter-btn,.enter-btn{
    font-size: 18px;
    padding: 10px 0px;
    margin: 3px;
}
.MainQuizTop .word-display-wrap,.ManiResult{
    width: 62%;
}
.MainQuizBOttom.margin-bottom-result {
    align-items: flex-start;
    justify-content: flex-start;
}
.MainQuizBOttom.margin-bottom-result .ManiResult {
    width: 100% !important;
    gap: 10px !important;
    display: flex !important;
}

.alert.alert-danger.hide-msg {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0%);
    background: #fff;
    padding: 20px;
    border-radius: 7px;
    padding: 13px 100px;
}
.back-btn {
    padding: 6px 20px;
    font-size: 15px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    display: flex
;
    align-items: center;
    gap: 7px;
    justify-content: center;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    border: 1px solid #000;
}
a.back-btn svg {
    width: 20px;
    height: 20px;
}
a.back-btn svg path {
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
}
.char-row {
    display: flex
;
    align-items: center;
    justify-content: center;
}
.SocialMediaWrap a svg {
    width: 100%;
    height: 100%;
}

a.practiceBtn {
    text-decoration: none;
    margin: 0;
    font-size: 1.5em;
    color: #333;
    font-size: 18px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    WIDTH: CALC(20% - 25PX);
}

.quiz-content {
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.practiceMain {
    display: flex;
    padding: 20px;
    gap: 30px;
    flex-wrap: wrap;
}
.btnCont {
    display: flex
;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.btnimg.rapidimg {
    background: #86BB6D;
}

.btnimg {
    background: #619BEC;
    padding: 10px;
    display: flex
;
    border-radius: 7px;
}
.btnimg img {
    width: 100%;
}
.btnCont h6 {
    font-size: 46px;
    margin-bottom: 0;
    font-weight: 100;
    margin: 0;
    color: #fff;
}
.btnCont svg {
    width: 48px;
    height: 48px;
}
.QuizTitleMob{
    display: none;
}
/* Responsive */
@media (max-width: 1440px) {
    header{
        height: 64px;
        padding: 0px 19.29px;
    }
    div#attempt-bar-visual{
        padding: 10px;

    }
    /* main.content {
        height: calc(100vh - 46px);
    } */
    .MainQuizTop .word-display-wrap, .ManiResult {
        width: 68%;
    }
    a.practiceBtn {
        font-size: 16px;
        WIDTH: CALC(25% - 23PX);
        border-radius: 5px;
    }
a.HeaderLogoWrap {
    width: 210px;
}
.CalnderCont {
    padding-top: 64px;
}
.HeaderBtnWrap a {
    height: 35px;
    font-size: 14px;
    border-radius: 2px;
    line-height: 10px;
}
.bar-chart .bar-row {
    margin-bottom: 5px;
}
footer {
    height: 46px;
    padding: 21px 20px;
}
.MainBody {
    padding-top: 64px;
    padding-bottom: 46px;
}
.InstructionCont {
    padding: 20px;
    gap: 18px;
    margin-bottom: 20px;
}
ul.Instruct-Ul li {
    font-size: 18px;
    font-weight: 500;

}
span.InstructionSpan {
    font-size: 16px;
    line-height: 22px;
    padding: 8px 15px 8px 42px;
}
ul.Instruct-Ul{
    gap: 10px;
}
span.InstructionSpan::before{
    width: 20px;
    height: 20px;
    background-size: contain;
}
span.InstructionSpan::before{
    left:16px;
}

.LeftCont {
    gap: 0;
}
.LeftContBtnWrap a {
    padding: 9px 15px;
    font-size: 15px;
    gap: 5px;
}
.LeftContBtnWrap a img {
    width: 16px;
}
.MainContentSec{
    padding: 0px 75px;
}
.LeftContBtnWrap span {
    font-size: 20px;
}
.LeftContBtnWrap{
    gap: 15px;
}
.LoginFirst{
    border-radius: 13px;
}
.LoginForm {
    border-radius: 6px;
    padding: 25px;
}
.LoginWrap{
    width: 404px;
    padding: 20px;
}
.LogoWrap img {
    width: 206px;
    height: 50px;
}
.LogoWrap{
    margin-bottom: 25px;
}
.LoginForm a {
    padding: 13px;
    font-size: 16px;
}
a.SignUp img {
    width: 22px;
    height: 23px;
    margin-right: 10px;
}
span.SubjectTitle {
    padding: 0 100px;
    font-size: 17px;
    border-radius: 2px;
    height: 36px;
    top: 15px;
    display: flex;
    align-items: center;
}
.MainQuizWrap {
    height: calc(100vh - 46px);
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.EmptyLIne, .FillCharactor,.SpaceGap {
    width: 58px;
    height: 58px;
    font-size: 26.49px;
}
.letter-btn,.enter-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4.71px;
}
#hangman-container {
    width: calc(32% - 17px);
    right: 17px;
    padding: 46px 62px;
    height: 50vh;
}
p{
    font-size: 14px;
}
.word-display-wrap, .KeyboardDisplay{
    width: 68%;
}
.Result-Wrap {
    gap: 20px;
}
.label, .value {
    padding: 10.8px 0px;
    font-size: 12px;
}
.QuizStatsBoxWrap,.AttemptBarVisualWrap {
    gap: 10px;
}
.Result-Wrap span {
    font-size: 16px;
    font-weight: 600;
}
.bar-chart .bar {
    height: 21.5px;
    padding: 8px 15px;
}
.ManiResult {
    gap: 13px;
    padding: 5px 20px 10px 20px;
}
.stats-box{
    gap:5px;
}
.bar-chart .bar-label {
    margin-right: 7px;
    font-size: 14px;
}
.ResultSocialMediaWrap a {
    height: 35px;
    font-size: 15px;
}
.barnumber{
    font-size: 13px;
}

.ResultSocialMediaWrap a{
    width: calc(50% - 5px);
}
.result-message {
    font-size: 15px;
    padding: 6px 30px;
    margin-bottom: 15px;
}
.days li:nth-child(1) {
    border-top-left-radius:7px;
  }
  .days li:nth-child(7) {
    border-top-right-radius:7px;
  }
  .days li:nth-child(29) {
    border-bottom-left-radius:7px;
  }
  .days li:nth-child(35) {
    border-bottom-right-radius:7px;
  }
  .wrapper {
    width: calc(100% - 150px);
}
.calendar .days li {
    height: 65px;
    font-size: 18px;
}

header .current-date {
    font-size: 24px;
    font-weight: 800;
}
/* .CalnderCont{
    padding-top: 80px;
} */
.CalnderTitle{
    margin-bottom: 54px;
}

}
@media (max-width: 1200px) {
    #hangman-container {
        padding:76px 55px;
    }
    .letter-btn,.enter-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}
@media (max-width: 992px) {
    .practiceMain{
        gap: 15px;
    }
    a.practiceBtn {
        width: calc(33.33% - 10px);
        PADDING: 10PX;
        border-radius: 5px;
    }
    a.practiceBtn {
        width: calc(33.33% - 10px);
        max-width: 33.33%;
        padding: 10px;
        font-size: 13px;
        border-radius: 5px;
    }
    a.HeaderLogoWrap {
        width: 150px;
    }
    button.letter-btn.mobile-btn.enter-btn {
        border: none;
        background: #E7F0FF !important;
        margin: 5px;
    }
    .MainQuizTop .word-display-wrap, .ManiResult {
        width: 100%;
        justify-content: center;
    }
    .LeftCont, .RightCont {
        width: 100%;
        align-items: flex-start;
        justify-content: center;
    }
    .RightCont img {
        /* object-fit: contain; */
        width: 100%;
        height: 58%;
        object-fit: fill;
    }
    .RightCont {
        display: flex;
        align-items: center;
    }
    .MainBody{
        padding-top: 40px;
    }
    .MainContentSec {
        display: flex;
        flex-direction: column-reverse;
        padding: 20px 45px;
    }
    /* main.content {
        height: calc(100vh - 49px);
    } */
    .result-message {
        font-size: 14px;
        margin-bottom: 10px;
        padding: 6px 4px;
        width: 40%;
        max-width: 40%;
        transform: translate(-50%, 51%);
    }
    .MainQuizWrap {
        height: calc(100vh - 111px);
        display: flex
;
        flex-direction: column;
        justify-content: space-between;
    }
    .MainQuizBOttom.margin-bottom-result {
        width: 100%;
    }
    .Result-Wrap{
        display: flex;
        flex-direction: row;
    }
    .MainQuizBOttom.mobile-keyboard-active{
        width: 100%;
    }
    .EmptyLIne, .FillCharactor,.SpaceGap {
        width: 45px;
        height: 45px;
        font-size: 21.49px;
    }
    .letter-btn,.enter-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
        margin: 5px;
    }
    div#hangman-container img.lost-game-result,div#hangman-container img.won-game-result {
        width: 100%;
        /* height: 232px; */
        object-fit: contain;
    }

    #hangman-container {
        padding: 40px 24px;
        border-radius: 5px;
    }

    span.SubjectTitle {
        padding: 9px 90.5px;
        font-size: 15px;
        top: 6px;
        right: 0;
        transform: translate(17%, 0px);
        width: fit-content;
    }
    .KeyboardDisplay {
        padding: 0 !important;
    }
    header {
        height: 46px;
    }
    #hangman-container {
        width: 55%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -65%);
        margin: 0;
        padding:12px 22px;
    }
    .MainQuizTop {
        height: 40%;
    }
    .KeyboardDisplay{
        width: 100%;
    }
    .word-display-wrap {
        margin: 46px 0px 0px 0px;
        padding: 40px 40px 62px 40px;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    #word-display {
        margin: 0;
        justify-content: center;
    }
    .MainQuizBOttom {
        height: 35%;
    }
    .label, .value {
        padding: 15.25px 0px;
    }
    
    .ManiResult {
        gap: 25px;
    }
    .alert.alert-danger.hide-msg {
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translate(-50%, 0%);
        background: #fff;
        padding: 20px;
        border-radius: 4px;
        padding: 5px 50px;
    }
}
@media (max-width: 767px) {
    .user-body {
        display: flex
    ;
        align-items: center;
    }
    .QuizTitleMob {
        display: flex;
        margin-bottom: 15px;
        gap: 5px;
    }
    .MainQuizWrap.MainQuizWrapResult {
        height: 100%;
        gap: 180px;
    }
    .QuizTitleWeb {
        display: none;
    }
    .LogoWrap{
        margin-bottom: 15px;
    }
    .btnCont svg {
        width: 32px;
        height: 32px;
    }
    .btnCont h6 {
        font-size: 24px;
        font-weight: 500;
    }
    .SocialMediaWrap {
        gap: 15px;
    }
    a.back-btn {
        padding: 0px 5px !important;
    }
    a.practiceBtn {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        font-size: 14px;
        border-radius: 5px;
    }
    a.back-btn span{
display: none;
    }
    .HeaderBtnWrap {
        gap: 5px;

    }
    .alert.alert-danger.hide-msg{
        padding: 5px 10px;
        font-size: 12px;
        top:45px;
    }
    .info-show {
        border: 1px solid #619BEC;
        padding: 5px;
        border-radius: 4px;
        color: #619BEC;
        font-size: 12px;
        margin: 0px 10px;
    }
    button.letter-btn.mobile-btn ,.enter-btn {
        border: 0.42px solid #000000;
        height: 61px !important;
        width: 32.02px !important;
        margin-right: 0 !important;
        font-size: 10.48px;
        font-weight: 400;
    }
    button.mobile-btn.extra-mobile-btn,button.mobile-btn.extra-mobile-btn-re,.enter-btn{
        width: 45.17px !important;
        background: #E7F0FF;
        border: none;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        height: 61px;
        border-radius: 3.636px;
        font-size: 10.48px;
        font-weight: 400;
    }

    .MainQuizBOttom.mobile-keyboard-active {
        height: 40vh;
        position: absolute;
        bottom: 40px;
        gap: 10px;
    }
    .MainQuizBOttom.mobile-keyboard-active  .KeyboardDisplay {
        display: flex;
        align-items: flex-end;
    }
    .char-row {
        display: flex
;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.71px;
    }
    .wrapper {
        width: 95%;
        border-radius: 6px;
        padding: 10px;
    }
    .days li:nth-child(1) {
        border-top-left-radius: 4px;
    }
    .days li:nth-child(7) {
        border-top-right-radius: 4px;
    }
    .days li:nth-child(29) {
        border-bottom-left-radius: 4px;
    }
    .days li:nth-child(35) {
        border-bottom-right-radius: 4px;
    }
    .calendar .weeks li {
        font-weight: 600;
        font-size: 8px;
        padding: 2px;
    }
    .calendar ul{
        margin: 10px 0px;
    }
    .calendar .days li {
        height: 44px;
        font-size: 14px;
    }
    .MainQuizBOttom {
        height: auto;
        width: 100%;
    }
    .letter-btn,.enter-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
        margin: 2px;
        line-height: normal;
        padding: 2px;
    }
    .SocialMediaWrap a {
        width: 16px;
        height: 16px;
    }
    span.InstructionSpan {
        font-size: 13px;
        line-height: 17px;
        padding: 5px 15px 6px 42px;
    }
    .ResultSocialMediaWrap a {
        height: 35px;
        font-size: 13px;
    }
    #hangman-container {
        width: 55%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -92%);
        margin: 0;
        padding: 25px 22px;
        height: 24vh;
    }
    header {
        height: 40px;
        padding: 0px 13px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        z-index: 99;
    }
    img.hangman-image.body-4 {
        width: 80%;
    }
    .MainResultWrap{
        padding: 0px;
    }
    .ResultSocialMediaWrap{
        flex-wrap: wrap;
    }
    a.HeaderLogoWrap {
        width: 120px;
        height: 11.25px;
    }
    .HeaderBtnWrap a {
        height: 30px;
        padding: 0px 15px;
        font-size: 12px;
    }
    span.SubjectTitle {
        padding: 8px 37.9px;
        font-size: 13px;
        top: 0;
        right: 0;
        transform: translate(-50%, 53px);
        width: fit-content;
        height: 30px;
        width: max-content;
    }

    .word-display-wrap {
        margin: 40px 0px 0px 0px;
        padding: 55px 13px 55px 13px;
    }
    .EmptyLIne, .FillCharactor,.SpaceGap {
        width: 28px;
        height: 28px;
        font-size: 13.05px;
    }
    .MainQuizTop {
        height: 30vh;
    }
    footer {
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    .result-message {
        font-size: 12px;
        padding: 3px 14px;
        transform: translate(-50%, 46%);
        width: 70%;
        max-width: 70%;
    }
footer p {
    margin: 0;
    font-size: 12px;
}
.MainQuizWrap {
    height: calc(100vh - 95px);
}

.Result-Wrap {
    flex-direction: column;
    gap: 15px;
}
.label, .value {
    padding: 10.25px 0px;
}
.QuizStatsBoxWrap, .AttemptBarVisualWrap{
    width: 100%;
}
footer{
    position: relative;
}
.MainContentSec, .InstructionCont {
    padding: 10px;
    gap: 5px;
    border-radius: 10px;
}
ul.Instruct-Ul li {
    font-size: 12px;
}
ul.Instruct-Ul {
    padding-left: 25px;
    gap: 5px;
}
    .MainContentSec {
        height: calc(100vh - 101px);
        justify-content: center;
    }
    .MainContentSec .RightCont {
        height: 28%;
    }
.RightCont img{
    height: 100%;
}
.MainContentSec .LeftCont {
    height: 45%;
    gap: 0px;
    align-items: center;
}
.LeftContBtnWrap a {
    padding: 7px 15px;
    font-size: 13px;
}
}
@media (max-width: 1024px) and (orientation: landscape) {
    .LogoWrap{
        margin-bottom: 15px;
    }
    .LogoWrap img {
        width: 165px;
        height: 25px;
    }

    /* #hangman-container {
        padding: 47px 30px;
    } */
    .letter-btn,.enter-btn{
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .MainQuizTop {
        height: 50vh;
    }
    .Result-Wrap {
        flex-direction: row;
    }
   
    .QuizStatsBoxWrap{
        width: 25%;
    }
    .MainQuizWrap {
        gap:160px;
    }
    div#hangman-container {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -12%);
        width: 23%;
        padding:15px;
        margin: 0;
    }
    .word-display-wrap, .KeyboardDisplay{
        width: 100%;
    }
    .ManiResult {
        gap: 15px !important;
        padding: 15px !important;
    }

    .MainQuizWrap {
        height:100%;
    }
    .ResultSocialMediaWrap{
        flex-wrap: nowrap;
    }
    span.SubjectTitle {
        padding: 8px 75.5px !important;
        transform: translate(61%, 0px) ;
    }
    img.lost-game-result,div#hangman-container img.won-game-result {
        width: 50%;
    }   
    .MainQuizWrap {
        /* gap: 200px; */
        gap:159px;
        display: flex;
        flex-direction: column;
    }

    .QuizStatsBoxWrap {
        width: 30%;
    }
    .label, .value{
        font-size: 11px;
    }
    footer{
        position: relative;
    }
    .word-display-wrap {
        margin: 0;
        padding: 40px;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .EmptyLIne, .FillCharactor,.SpaceGap{
        width: 28px;
        height: 28px;
    }

   
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
    span.SubjectTitle {
        transform: translate(31%, 0px);
    }
    .MainResultWrap .ManiResult {
        gap: 30px !important;
        padding: 10px 15px;
    }
    
    #hangman-container {
        width: 49%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -63%);
        margin: 0;
        padding: 25px 52px;
        height: 25vh;
    }
    .word-display-wrap {
        padding: 60px 40px 145px 40px;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .QuizStatsBoxWrap, .AttemptBarVisualWrap {
        gap: 25px;
    }
    .ManiResult {
        gap: 25px;
        padding: 10px 30px;
    }
    .label, .value{
        font-size: 13px;
    }
    .MainQuizBOttom {
        height: 33%;
        width: 100%;
    }
}
    @media screen and (device-width: 1180px) and (device-height: 820px) and (orientation: landscape) {
        
    .word-display-wrap{
        padding: 90px 40px 40px 40px;
        align-items: flex-start;
    }
    a.practiceBtn {
        width: calc(33.33% - 7px);
        max-width: 33.33%;
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
    }
    .practiceMain{
        gap: 10px;
    }
    
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    .word-display-wrap {
        margin: 46px 0px 0px 0px;
        padding: 30px 40px 83px 40px;
    }
    /* #hangman-container {
        width: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -118%);
        margin: 0;
        padding:22px;
    } */
    .MainQuizBOttom.margin-bottom-quiz {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .result-message {
        max-width: auto !important;
        width: auto !important;
        transform: translate(-50%, 28%);
        padding: 5px 16px;
        font-size: 13px;
    }
    #hangman-container {
        width: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -80%);
        margin: 0;
        padding: 22px;
        height: 25vh;
    }
    .MainQuizBOttom.margin-bottom-result {
        width: 100%;
    }
    
    .letter-btn,.enter-btn {
        width: 60px;
        height: 60px;
    }
    img.lost-game-result,div#hangman-container img.won-game-result {
        width: 100%;
        height: auto;
    }
    .ResultSocialMediaWrap {
        flex-wrap: nowrap;
    }
    footer{
        flex-direction: row;
    }
        .ManiResult {
            gap: 20px;
            padding: 29px 15px;
        }
        .QuizStatsBoxWrap, .AttemptBarVisualWrap {
            gap: 20px;
        }
        span.SubjectTitle {
            padding: 9px 90.5px;
            transform: translate(21%, 0px);
        }
        .Result-Wrap{
            flex-direction: row;
        }
        .QuizStatsBoxWrap {
            width: 34%;
        }
        .MainQuizWrap{
            gap:255px;
        }
}
@media screen and (max-width:992px) and (orientation:landscape){
    div#mobile-keyboard {
        width: 90%;
        max-width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .btnCont svg {
        width: 27px;
        height: 27px;
    }
    .QuizTitleMob {
        display: none;
        margin-bottom: 15px;
    }
    .QuizTitleWeb {
        display: flex
;
        margin-bottom: 5px;
        gap: 5px;
    }
    .btnCont h6 {
        font-size: 22px;
        font-weight: 500;
    }
    a.practiceBtn {
        width: calc(33.33% - 10px);
        PADDING: 10PX;
        border-radius: 5px;
        font-size: 12px;
    }
        .letter-btn,.enter-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .MainQuizBOttom.margin-bottom-quiz {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    span.current-date {
        font-size: 14px;
    }
    .MainQuizBOttom.mobile-keyboard-active{
        position: relative;
        height: auto;
        bottom: 0;
    }
    .calendar .weeks li{
        font-size: 10px;
    }
    .CalnderCont {
        padding-top: 40px;
    }
    .calendar ul {
        margin: 5px auto;
    }
    .calendar .days li {
        height: 40px;
    }
    .wrapper {
        width: 80%;
    }
    .ResultSocialMediaWrap a {
        height: 30px;
    }
    .label, .value {
        padding: 5.25px 0px;
    }
    .stats-box {
        gap: 5px;
    }
    .bar-chart .bar {
        height: 18px;
        padding: 7px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    }
    .stat-row{
        gap: 5px;
    }
    .barnumber,.bar-chart .bar-label {
        font-size: 12px;
    }
    .MainResultWrap .ManiResult {
        gap: 10px !important;
    }
    .Result-Wrap span {
        font-size: 14px;
    }
    .QuizStatsBoxWrap, .AttemptBarVisualWrap{
        gap: 7px;
    }
    .MainContentSec {
        padding: 0px 40px;
        flex-direction: row;
    }
    .MainContentSec .LeftCont {
        height: auto;
        gap: 0;
        align-items: flex-start;
    }
    .InstructionCont {
        margin-bottom: 10px;
    }
    .MainContentSec .RightCont{
        height: 80%;
    }
    .LeftContBtnWrap a {
        padding: 5px 13px;
        font-size: 11px;
    }
    .RightCont img {
        height: 100%;
    }
    /* .MainResultWrap{
        height: calc(100% - 0px);
        margin: 0px auto;
    } */
    div#attempt-bar-visual{
        padding: 5px;
    }
    #hangman-container {
        padding: 47px 30px;
        width: calc(32% - 17px);
        right: 31px;
        transform: translate(65%, -50%);
    }
    .word-display-wrap, .KeyboardDisplay {
        width: 100%;
        justify-content: center;
    }
    footer {
        display: flex;
        flex-direction: row;
    }
    .MainQuizTop,.MainQuizBOttom {
        height: 50%;
    }
    .word-display-wrap {
        margin: 0;
        padding: 87px 15px 20px !important;
        padding-bottom: 35px;
    }
    .letter-btn,.enter-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .MainQuizTop {
        height: 50vh !important;
    }
    .Result-Wrap {
        flex-direction: row;
    }
   
    .QuizStatsBoxWrap{
        width: 25%;
    }
    .MainQuizWrap {
        gap: 120px;
    }
    div#hangman-container {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -17%) !important;
        width: 25%;
        padding: 10px 14px;
    }
    .ManiResult {
        gap: 15px !important;
        padding: 15px !important;
    }

    .MainQuizWrap {
        height: 100%;
        /* gap: 100px !important; */
    }
    button.mobile-btn.extra-mobile-btn, button.mobile-btn.extra-mobile-btn-re, .enter-btn {
        width: 45.17px !important;
        background: #E7F0FF;
        border: none;
        display: flex
;
        align-items: center;
        justify-content: center;
        height: 61px;
        border-radius: 3.636px;
        font-size: 10.48px;
        font-weight: 400;
    }
    button.letter-btn.mobile-btn,button.mobile-btn.extra-mobile-btn, button.mobile-btn.extra-mobile-btn-re,.enter-btn{
        height: 50px !important;
    }
    .ResultSocialMediaWrap{
        flex-wrap: nowrap;
    }
    span.SubjectTitle {
        padding: 8px 53.5px !important;
        transform: translate(-50%, 47px) !important;
        height: 27px;
    }
    .QuizStatsBoxWrap {
        width: 30%;
    }
    .label, .value{
        font-size: 11px;
    }
   
    span.SubjectTitle {
        transform: translate(123%, 0px);
        font-size: 12px;
    }
    ul.Instruct-Ul li {
        font-size: 12px;
        font-weight: 500;
    }
    span.InstructionSpan {
        font-size: 14px;
        line-height: 15px;
        padding: 4px 12px 4px 39px;
    }
    span.InstructionSpan::before {
        left: 12px;
    }
    ul.Instruct-Ul {
        gap: 6px;
        margin-left: -4px;
    }
}
@media screen and (orientation: landscape) and (max-width: 1024px) and (max-height: 768px) {
    .ManiResult {
        gap: 20px;
        padding: 29px;
    }
    .practiceMain{
        gap: 15px;
    }
    a.practiceBtn {
        width: calc(33.33% - 10px);
        PADDING: 10PX;
        border-radius: 5px;
        font-size: 14px;
    }
    .MainQuizTop .word-display-wrap, .ManiResult{
        width: 100%;
    }
    span.SubjectTitle {
        padding: 9px 90.5px;
        transform: translate(105%, 0px) ;
    }
    .MainContentSec {
        padding: 0px 40px;
    }
    .RightCont {
        width: 40%;
        height: 48%;
    }
    .LeftCont{
        width: 55%;
    }
    .InstructionCont {
        padding: 12px;
        gap: 10px;
    }
    div#hangman-container img.lost-game-result,div#hangman-container img.won-game-result {
        width: 100%;
    
    }
    .ResultSocialMediaWrap a{
        font-size: 12px;
    }
    /* img.lost-game-result,div#hangman-container img.won-game-result {
        width: 40%;
    } */
    .result-message {
        font-size: 11px;
        margin-bottom: 10px;
        padding: 3px 4px;
        width: 70%;
        max-width: 70%;
        transform: translate(-50%, 43%);
    }
    .stats-box {
        gap: 10px;
    }
    .ResultSocialMediaWrap{
        flex-wrap: nowrap;
    }
    .QuizStatsBoxWrap{
        width: 43%;
    }
    .MainQuizTop {
        height: 29vh;
    }
    div#hangman-container {
        transform: translate(-50%, -109%);
        height: 30vh;
        padding: 10px;
    }
    .MainQuizBOttom.margin-bottom-result{
        width: 100%;
    }
    /* .MainQuizWrap {
        gap: 210px;
    } */
    .word-display-wrap {
        margin: 0;
        padding: 62px 40px 40px;
    }
    .MainQuizBOttom.margin-bottom-quiz {
        width: 100%;
        height: 45vh;
    }
}
@media screen and (orientation: portrait) and (width: 1024px) and (height: 1366px) {
    .Result-Wrap span {
        font-size: 20px;
        font-weight: 700;
    }
    .MainQuizTop .word-display-wrap, .ManiResult{
        width: 100%;
    }
    .LeftCont {
        width: 80%;
    }
    .RightCont {
        width: 80%;
        height: 50%;
    }
    .QuizStatsBoxWrap, .AttemptBarVisualWrap{
        gap: 30px;
    }
    .MainContentSec {
        flex-direction: column-reverse !important; 
        justify-content: center;
        gap: 150px;
    }
    .label, .value{
        padding: 26.25px 0px;
    }
    .word-display-wrap, .KeyboardDisplay{
        width: 100%;
    }
    .MainQuizTop, .MainQuizBOttom {
        height: 40%;
    }
    .word-display-wrap, .KeyboardDisplay{
        width: 100%;
    }
    .ManiResult{
        padding: 25px;
    }
    .MainQuizTop, .MainQuizBOttom {
        height: 35%;
        width: 100%;
    }
    .MainQuizWrap {
        height: calc(100vh - 137px);
        justify-content: space-between;
        display: flex
;
        flex-direction: column;
    }
    #hangman-container {
        width: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -84%);
        height: 25vh;
    }
    .MainQuizBOttom.margin-bottom-result{
        width: 100%;
    }
    #hangman-container {
        padding: 30px;
    }
    .word-display-wrap {
        margin: 46px 0px 0px 0px;
        padding: 35px 40px 120px 40px;
        align-items: flex-start;
    }
    .ResultSocialMediaWrap a {
        height: 53px;
    }
}
@media screen 
  and (width: 844px) 
  and (height: 390px) 
  and (orientation: landscape) {
    .MainQuizTop {
        height: 50vh;
    }
    div#hangman-container {
        transform: translate(-50%, -36%) !important;
        height: 35vh;
        padding: 10px;
    }
    .result-message {
        font-size: 11px;
        transform: translate(-50%, 44%);
    }
    .MainQuizWrap {
        gap: 150px !important;
    }
    .word-display-wrap {
        margin: 0;
        padding: 56px 40px 53px;
    }
    /* span.SubjectTitle{
        transform: translate(58%, 0px) !important;
    } */
    span.current-date {
        font-size: 14px;
    }
    .calendar .weeks li{
        font-size: 10px;
        padding: 5px;
    }
    .CalnderCont {
        padding-top: 40px;
    }
    .calendar ul {
        margin: 5px auto;
    }
    .calendar .days li {
        height: 40px;
    }   
    .wrapper{
        border-radius: 7px;
    }
    button.letter-btn.mobile-btn,.enter-btn {
        border: 0.42px solid #000000;
        height: 61px !important;
        width: 32.5px !important;
        font-weight: 400;
        margin-right: 0 !important;
        padding: 0;
    }
    div#mobile-keyboard {
        width: 90%;
    }
    
    .char-row {
        display: flex
    ;
        flex-wrap: wrap;
        justify-content: center;
    }
    button.mobile-btn.extra-mobile-btn, button.mobile-btn.extra-mobile-btn-re {
        width: 50.17px !important;
        background: #E7F0FF;
        border: none;
        display: flex
;
        align-items: center;
        justify-content: center;
        height: 61px;
        border-radius: 3.636px;
        font-size: 10.48px;
        font-weight: 400;
        height: 61px !important;
    }   
    .MainQuizBOttom {
        height: 50%;
    }
    div#attempt-bar-visual {
        padding: 10px;
    }
  }
  @media screen and (max-width: 1024px) and (min-height: 1366px) and (orientation: portrait) {
    .practiceMain{
        gap: 15px;
    }
    a.practiceBtn {
        WIDTH: CALC(33.33% - 10PX);
        font-size: 16px;
    }
}



