h1.sys-game-title {
    text-align: center;
    margin: 5% 0 5% 0;
    color: #fff;
}

#game-board {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.letter-box {
    border: 1px solid #00ffba;
    border-radius: 0px;
    margin: 0px;
    font-size: 2.5rem;
    font-weight: 700;
    height: 4rem;
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    background: #1B1B2A;
    color: #fff;
}

.filled-box {
    border: 1px solid #cecece;
}

.animate__flipInX {
    color: #fff;
}

.letter-row {
    display: flex;
}

#keyboard-cont {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#keyboard-cont div {
    display: flex;
}

.second-row {
    margin: 0.5rem 0;
}

.keyboard-button {
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem;
    margin: 0 3px;
    cursor: pointer;
    text-transform: uppercase;
    background: #1B1B2A;
    border: 1px solid #00ffba;
    color: #fff;
}

p.instr-box {
    display: inline-block;
    margin: 0;
    padding: 14px;
    background: #00ffba;
    border-radius: 5px;
    color: #000;
    float: left;
    margin-left: 15px;
    cursor: pointer;
}
p.instr-box img {
    width: 21px;
    height: auto;
    display: block;
}
.alert-msgs {
    position: absolute;
    top: 0;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    width: 650px;
}

.alert-msgs p.error-msg {
    background: #ffd9d9;
    display: table;
    margin: 10px auto 0 auto;
    padding: 10px 100px 10px 20px;
    width: auto;
    color: #9f0c0c;
}

.alert-msgs p img {
    width: 18px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.alert-msgs p.success-msg {
    background: #bdf3cc;
    display: table;
    margin: 10px auto 0 auto;
    padding: 10px 100px 10px 20px;
    width: auto;
    color: #1f6533;
}

.alert-msgs p.error-msg span {
    font-family: Zoho_Puvi_SemiBold;
    font-weight: bold;
    text-transform: uppercase;
}

.alert-msgs p.error-msg,
.alert-msgs p.success-msg {
    display: none;
}

p.timer-clock {
    width: 120px;
    display: inline-block;
    position: absolute;
    left: 0px;
    margin: 0;
    padding: 10px 10px 10px 10px;
    background: #00ffba;
    border-radius: 5px;
    top: 0px;
    color: #000;
}

p.timer-clock img {
    vertical-align: middle;
    width: 20px;
    height: auto;
    margin: 0 10px 0 0;
}

p.play-again {
    width: auto;
    display: inline-block;
    position: absolute;
    right: 0px;
    margin: 0;
    padding: 10px 10px 10px 10px;
    background: #00ffba;
    border-radius: 5px;
    top: 0px;
    color: #000;
}

p.play-again img {
    vertical-align: middle;
    width: 20px;
    height: auto;
    margin: 0 10px 0 0;
}

p.play-again:hover {
    cursor: pointer;
}

.exam_letters,
.letters6,
.letters7 {
    display: none;
}

section#Game-sec {
    background: #1B1B2A;
    position: relative;
}

.game-intro-section {
    width: 100%;
    background: #1B1B2A;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    color: #fff;
    padding: 70px 0;
}

.game-intro-section h1 {
    margin: 10% 0 0 0;
}

#game_animate {
    width: 350px;
    margin: 0 auto;
}

#game_animate.active {
    position: relative;
    animation: gamemv 500ms;
    animation-iteration-count: 1;
}

.instr-contents.active {
    position: relative;
    animation: gamemv1 500ms;
    animation-iteration-count: 1;
}
.game-wrap-box{margin-top:7%;}
.instr-animation {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    margin: 0% 0 0 0;
}

.instr-contents {
    width: 40%;
    display: inline-block;
    vertical-align: top;
/*    margin: 5% 0 0 0;*/
}

.instr-contents ul {
    width: 100%;
    list-style: none;
}


.instr-contents ul li {
    font-size: 1.1em;
    text-align: left;
    line-height: 1.5em;
    margin: 0 0 25px 0;
	position:relative;
}
.instr-contents ul li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00feba;
    border-radius: 50px;
    left: -25px;
    top: 8px;
}
.play-game-buttons {
    color: #fff;
    display: inline-block;
    width: 100%;
    margin: 5% 0 0 0;
    text-align: left;
}

.play-game-buttons a {
    background: #00FEBA;
    padding: 10px 30px;
    border-radius: 25px;
    text-align: left;
	opacity: 0.7;
}	

.play-game-buttons a:hover {
    cursor: pointer;
    background: #fff;
    color: #000;
}

.Game-container-box {
    opacity: 0;
}

#Game-sec .disable-play {
    opacity: 0.6;
    pointer-events: none;
}

@keyframes gamemv {
    0% {
        left: 0px;
    }
    100% {
        left: -150px;
        opacity: 0;
    }
}

@keyframes gamemv1 {
    0% {
        right: 0px;
    }
    100% {
        right: -150px;
        opacity: 0;
    }
}