:root {
    --white-color: white;
    --black-color: black;
    --main-color: #D3D6DA;
    --green-color: #6AAA64;
    --gold-color: #C9B458;
    --hover-color: #787C7E;
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
/* Classes */
.true-color {
    background-color: var(--green-color);
    color: white;
}
.false-color {
    background-color: var(--hover-color);
    color: white;
}
.t-f {
    background-color: var(--gold-color);
    color: white;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Raleway', sans-serif;
}
input:focus {
    outline: none;
}
/* Start Component */
/* MODE */
.mode i {
    color: var(--dark-color);
}
/* Popup Message */
.not-in-list {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s;
    z-index: 333;
    transform: translate(-50%, -100px);
}
/* Popup Finish Game */
.game-finish {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px;
    background-color: #00000050;
    z-index: 222;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.popup {
    max-width: 330px;
    background-color: var(--white-color);
    color: var(--black-color);
    z-index: 333;
    padding: 35px;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 0px 7px 0px var(--black-color);
    transition: 0.5s;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(500px);
    opacity: 0;
    display: none;
}
.popup h1 {
    margin: 0 0 10px;
    font-size: 50px;
    letter-spacing: 15px;
}
.popup h1.winner {
    color: #e9ac05;
}
.popup h1.failed {
    color: #c00404;
}
.popup h3 {
    margin: 0 0 10px;
    text-align: center;
    font-size: 25px;
    letter-spacing: 5px;
}
.popup h3.winner {
    color: var(--green-color);
}
.popup h3.failed {
    color: var(--gold-color);
}
.popup p {
    margin-bottom: 60px;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}
.popup button {
    border: 0;
    background-color: var(--green-color);
    color: white;
    padding: 7px 20px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.popup button:hover {
    opacity: .9;
}
/* Main BTN */
.main-btn {
    width: 170px;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid var(--black-color);
    color: var(--white-color);
    background-color: var(--black-color);
    cursor: pointer;
    transition: 0.3s;
}
.main-btn:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}
.soon {
    font-size: 3rem;
    margin: 0;
    color: var(--green-color);
}
/* End Component */
/* Start Page */
.page {
    height: 100vh;
    overflow: auto;
    background-color: var(--white-color);
}
.page .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px);
    position: relative;
    overflow: auto;
    /* padding-bottom: 40px; */
}
@media(max-width: 567px) {
    .page .content {
        padding-bottom: 20px;
        align-items: flex-end;
    }
}
/* End Page */
/* Start Navbar */
.navbar {
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid #ddd;
}
/* ---------------------------- */
.navbar .my-profile > .toggle {
    font-size: 22px;
    cursor: pointer;
    color: var(--black-color);
}
/* Start Side Bar */
/* Start Side */
.navbar .my-profile > .side {
    min-width: 350px;
    height: calc(100vh - 70px);
    position: absolute;
    top: 100%;
    left: 0px;
    transition: 0.3s;
    padding: 20px 0;
    color: var(--black-color);
    background-color: var(--white-color);
    box-shadow: 2px 3px 6px 0px #c7c6c6;
    transform: translateX(calc(-100% - 30px));
    overflow: hidden;
    z-index: 111;
    display: none;
}
.navbar .my-profile > .show {
    display: block;
}
@media(max-width: 567px) {
    .navbar .my-profile > .side {
        width: 100%;
    }
}
.navbar .my-profile .show-side {
    transform: translateX(0);
}
.navbar .my-profile > .side .head {
    margin: 0px;
    padding: 0 20px;
    color: var(--black-color);
    border-bottom: 1px solid var(--main-color);
}
.navbar .my-profile > .side .head h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}
.navbar .my-profile > .side .head .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--black-color);
}
/* End Side */
/* Start Not User */
.navbar .my-profile > .not-user .signUp {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 10px;
}
.navbar .my-profile > .not-user .signUp p {
    max-width: 520px;
    padding: 10px;
    margin: 30px auto;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.6;
    text-align: center;
}
.navbar .my-profile > .not-user .signUp button:first-of-type {
    background-color: var(--black-color);
    color: var(--white-color);
}
.navbar .my-profile > .not-user .signUp button:first-of-type:hover {
    background-color: var(--hover-color);
    border-color:var(--hover-color);
}
.navbar .my-profile > .not-user .signUp button:last-of-type {
    background-color: transparent;
    color: var(--black-color);
}
.navbar .my-profile > .not-user .signUp button:last-of-type:hover {
    background-color: var(--black-color);
    color: var(--white-color);    
}
.navbar .my-profile > .not-user .signUp > span {
    font-weight: 600;
    margin: 5px 0;
}
/* End Not User */
/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* Start User */
.navbar .my-profile > .user > .profile {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.navbar .my-profile > .user > .profile .img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 1px solid var(--main-color);
    overflow: hidden;
}
.navbar .my-profile > .user > .profile .img > img {
    max-width: 100%;
}
.navbar .my-profile > .user > .profile .name {
    margin: 0 0 30px 0;
}
.navbar .my-profile > .user > .profile .name > h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.navbar .my-profile > .user > .profile .level {
    text-align: center;
    margin-bottom: 25px;
}
.navbar .my-profile > .user > .profile .level > p {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--hover-color);
}
.navbar .my-profile > .user > .profile .level .rate {
    position: relative;
    width: 250px;
    height: 17px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--main-color);
}
.navbar .my-profile > .user > .profile .level .rate > span {
    position: absolute;
    height: 100%;
    padding: 0 3px;
    left: 0;
    top: 0;
    text-align: right;
    color: white;
    background-color: var(--green-color);
}
.navbar .my-profile > .user > .profile .profile-points > p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-color);
}
.navbar .my-profile > .user .log-out {
    height: 33%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
}
.navbar .my-profile > .user .log-out button {
    width: 110px;
}
.navbar .my-profile > .user .log-out button:first-of-type {
    background-color: #c00404;
    border: 0;
    color: white;
}
.navbar .my-profile > .user .log-out button:first-of-type:hover {
    background-color: #da0f0f;
}
.navbar .my-profile > .user .log-out button:last-of-type {
    background-color: var(--black-color);
    color: var(--white-color);    
}
.navbar .my-profile > .user .log-out button:last-of-type:hover {
    background-color: var(--white-color);
    color: var(--black-color);    
}
/* End User */
/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* Start Sign Up and Log In */
/* ---------------------------------- */
.navbar .my-profile .form {
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
    color: var(--black-color);
}
.navbar .my-profile .form > h3 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 40px 0 15px;
}
.navbar .my-profile .form form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.navbar .my-profile .form form input {
    min-height: 45px;
    width: 320px;
    max-width: 320px;
    padding: 5px;
    border-radius: 10px 0;
    font-weight: 500;
    border: 1px solid var(--main-color);
    background-color: transparent;
    color: var(--black-color);
}
.navbar .my-profile > .sign-up > .form .gender {
    margin: 0;
    text-align: center;
}
.navbar .my-profile > .sign-up > .form .gender > span {
    display: inline-block;
    padding: 5px 7px;
    width: 70px;
    margin: 0 10px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    transition: 0.3s;
    cursor: pointer;
    color: var(--white-color);
    background-color: var(--black-color);
}
.navbar .my-profile > .sign-up > .form .gender > span.select {
    color: var(--main-color);
    background-color: var(--hover-color);
}
.navbar .my-profile .form form button:last-of-type {
    margin: 10px auto;
}
.navbar .my-profile .form form .with-social {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}
.navbar .my-profile .form form .with-social > p {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 10px 0;
}
.navbar .my-profile .form form .with-social > div {
    padding: 10px 25px;
    margin: 0 auto 10px;
    width: 300px;
    border-radius: 3px;
    text-align: left;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.navbar .my-profile .form form .with-social > div:hover {
    opacity: .9;
}
.navbar .my-profile .form form .with-social > div.google {
    background-color: #ea4335;
}
.navbar .my-profile .form form .with-social > div.facebook {
    background-color: #1877f2;
}
.navbar .my-profile .form form .with-social > div i {
    margin-right: 10px;
}
.navbar .my-profile .form form p.member {
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0 0;
}
.navbar .my-profile .form form p.member span {
    letter-spacing: 1px;
    margin-left: 5px;
    color: blue;
    cursor: pointer;
}
/* End Sign Up and Log In */
/* End Side Bar */
/* ---------------------------- */
.navbar .title h1 {
    margin: 0;
    letter-spacing: -1px;
    font-size: 1.5rem;  
    color: var(--black-color);
}
@media(max-width: 767px) {
    .navbar .title h1 {
        /* display: none; */
        font-size: 1.4rem;
    }
}
/* ---------------------------- */
.navbar .tools {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.navbar .tools span {
    font-size: 22px;
    cursor: pointer;
    color: var(--black-color);
}
.navbar .tools span:first-child {
    border: 2px solid var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 25px;
    width: 25px;
}
/* End Navbar */
/* Start Overlay */
.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px;
    background-color: #00000050;
    z-index: 222;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
/* Info */
/* ---------------------------- */
.overlay .info {
    max-width: 500px;
    background-color: var(--white-color);
    z-index: 333;
    padding: 60px 20px 10px;
    border-radius: 6px;
    box-shadow: 0 0px 7px 0px var(--black-color);
    position: relative;
    transition: 0.5s;
    transform: translateY(500px);
    opacity: 0;
    display: none;
    color: var(--black-color);
}
.overlay .info > .head > .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--black-color);
}
.overlay .info > .head > h3 {
    font-size: 1.75rem;
    margin: 0 0 7px;
    color: var(--black-color);
}
.overlay .info > .head > span {
    font-weight: 600;
}
.overlay .info > .ul-info {
    padding: 0 20px;
    font-weight: 500;
    font-size: 15px;
}
.overlay .info > .ul-info > li {
    margin-bottom: 8px;
    width: 100%;
    line-height: 1.5;
}
.overlay .info > .example {
    padding: 15px 0;
}
.overlay .info > .example > h4 {
    margin: 0 0 10px;
}
.overlay .info > .example .ex .row-ex {
    user-select: none;
}
.overlay .info > .example .ex .row-ex > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid var(--hover-color);
}
.overlay .info > .example .ex .row-ex > span.act-1 {
    color: var(--white-color);
    background-color: var(--green-color);
}
.overlay .info > .example .ex .row-ex > span.act-2 {
    color: var(--white-color);
    background-color: var(--gold-color);
}
.overlay .info > .example .ex .row-ex > span.act-3 {
    color: var(--white-color);
    background-color: var(--hover-color);
}
.overlay .info > .example .ex > p {
    font-size: 15px;
    font-weight: 500;
    margin: 7px 0px 20px;
}
/* Rank */
/* ---------------------------- */
.overlay .rank {
    max-width: 500px;
    max-height: 700px;
    background-color: var(--white-color);
    z-index: 333;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0px 7px 0px var(--black-color);
    position: relative;
    transition: 0.5s;
    transform: translateY(500px);
    opacity: 0;
    display: none;
}
.overlay .rank::-webkit-scrollbar {
    width: 10px;
}
.overlay .rank::-webkit-scrollbar-track {
    background-color: white;
}
.overlay .rank::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
.overlay .rank::-webkit-scrollbar-thumb:hover {
    background-color: var(--black-color);
}
.overlay .rank > .head {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    background-image: url(../pic/wallpaperflare.com_wallpaper.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.overlay .rank > .head > .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.25rem;
    cursor: pointer;
    color: white;
}
.overlay .rank > .head > h3 {
    text-align: center;
    color: gold;
    margin: 0;
    padding: 20px 0;
    font-size: 1.75rem;
}
.overlay .rank > .head > .top-players {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 40px 0 10px;
}
.overlay .rank > .head > .top-players > div {
    position: relative;
}
.overlay .rank > .head > .top-players > div:first-child {
    order: 2;
}
.overlay .rank > .head > .top-players > div:nth-child(2) {
    order: 1;
}
.overlay .rank > .head > .top-players > div:last-child {
    order: 3;
}
.overlay .rank > .head > .top-players > div > img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
}
.overlay .rank > .head > .top-players > div:first-child > img {
    height: 90px;
    width: 90px;
    border: 2px solid gold;
}
.overlay .rank > .head > .top-players > div:nth-child(2) > img {
    border: 2px solid var(--green-color);
}
.overlay .rank > .head > .top-players > div:last-child > img {
    border: 2px solid rgb(81, 116, 175);
}
.overlay .rank > .head > .top-players > div::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 27px;
    width: 27px;
    border-radius: 50%;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 1px solid white;
}
.overlay .rank > .head > .top-players > div:first-child::before {
    content: "1";
    background-color: gold;
}
.overlay .rank > .head > .top-players > div:nth-child(2)::before {
    content: "2";
    background-color: #6AAA64;
}
.overlay .rank > .head > .top-players > div:last-child::before {
    content: "3";
    background-color: rgb(81, 116, 175);
}
.overlay .rank > .ul-players {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 380px;
    overflow-x: hidden;
    overflow-y: auto;
}
/* Scrolling */
.ul-players::-webkit-scrollbar {
    width: 3px;
}
.ul-players::-webkit-scrollbar-track {
    background-color: white;
}
.ul-players::-webkit-scrollbar-thumb {
    background-color: var(--white-color);
}
.ul-players:hover::-webkit-scrollbar-thumb {
    background-color: var(--hover-color);
}
.ul-players::-webkit-scrollbar-thumb:hover {
    background-color: var(--black-color);
}
/* Scrolling */
.overlay .rank > .ul-players > li {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 40px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    margin: 7px 10px;
    background-color: var(--main-color);
    user-select: none;
    position: relative;
    counter-increment: num;
}
.overlay .rank > .ul-players > li::before {
    content: counter(num);
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    text-align: center;
}
.overlay .rank > .ul-players > li:first-child {
    background-color: gold;
}
.overlay .rank > .ul-players > li:nth-child(2) {
    background-color: var(--green-color);
}
.overlay .rank > .ul-players > li:nth-child(3) {
    background-color: rgb(81, 116, 175);
}
.overlay .rank > .ul-players > li > img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 20px;
}
.overlay .rank > .ul-players > li > .name {
    margin-right: 20px;
}
.overlay .rank > .ul-players > li > .points {
    flex: 1;
    text-align: right;
}
/* Setting */
/* ---------------------------- */
.overlay .setting {
    max-width: 550px;
    background-color: var(--white-color);
    z-index: 333;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0px 7px 0px var(--black-color);
    position: relative;
    transition: 0.5s;
    transform: translateY(500px);
    opacity: 0;
    display: none;
}
.overlay .setting .head .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--black-color);
}
.overlay .setting .head h3 {
    margin: 0;
    text-align: center;
    font-size: 1.75rem;
    color: var(--black-color);
}
.overlay .setting .ul-setting {
    padding: 0;
    color: var(--black-color);
}
.overlay .setting .ul-setting li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black-color);
    font-size: 17px;
    font-weight: 500;
}
.overlay .setting .ul-setting li:last-child {
    padding-top: 15px;
    font-size: 14px;
    color: var(--hover-color);
}
.overlay .setting .ul-setting li:not(:last-child) {
    border-bottom: 1px solid var(--main-color);
}
/* Start Dark Mode */
.overlay .setting .ul-setting li .mode {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    font-size: 22px;
    cursor: pointer;
    transition: 0.5s;
    color: var(--black-color);
}
/* End Dark Mode */
.overlay .setting .ul-setting li p {
    margin-right: 20px;
    font-weight: 600;
}
.overlay .setting .ul-setting li p span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hover-color);
}
.overlay .setting .ul-setting li a {
    color: var(--hover-color);
    text-decoration: none;
}
/* Start CheckBox */
.toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
}
.toggle-switch {
    width: 40px;
    height: 20px;
    margin-top: -20px;
    margin-left: -5px;
    background-color: #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.toggle-switch::before {
    font-family: var(--fa-style-family-classic);
    content: "\f00d";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    background-color: white;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.toggle-checkbox:checked + .toggle-switch {
    background-color: var(--green-color);
}
.toggle-checkbox:checked + .toggle-switch::before {
    content: "\f00c";
    left: 22px;
    color: var(--green-color);
}
/* End CheckBox */
/* Start Change Play Mode */
.overlay .setting .ul-setting > .change-mode {
    align-items: flex-start;
    flex-direction: column;
    color: var(--black-color);
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 15px;
}
.overlay .setting .ul-setting > .change-mode > p {
    margin-bottom: 0;
}
.overlay .setting .ul-setting > .change-mode > span {
    margin-right: 10px;
    line-height: 1.5;
    font-size: 13px;
    margin-top: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--hover-color);
}
.overlay .setting .ul-setting > .change-mode > .game-mode {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;    
}
.overlay .setting .ul-setting > .change-mode > .game-mode > span {
    padding: 5px 7px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    transition: 0.3s;
    cursor: pointer;
    color: var(--white-color);
    background-color: var(--black-color);
}
.overlay .setting .ul-setting > .change-mode > .game-mode > span.select {
    color: var(--main-color);
    background-color: var(--hover-color);
}
/* End Change Play Mode */
/* End Overlay */
/* ---------------------------- */
/* Start Game */
.game {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    height: 100%;
    width: 100%;
    padding: 30px 5px 15px;
    color: var(--black-color);
}
@media(max-width: 567px) {
    .game {
        gap: 10px;
        padding-bottom: 20px;
        height: 100%;
        padding-top: 25px;
        justify-content: space-between;
        align-items:stretch;
    }
}
/* ---------------------------- */
.game .inputs {
    min-width: 350px;
}
@media(max-width: 767px) {
    .game .inputs {
        min-width: 300px;
        padding: 0 10px;
    }
}
@media(max-width: 460px) {
    .game .inputs {
        min-width: 90%;
    }
}
.game .inputs .row-i {
    display: grid;
    gap: 5px;
}
.game .inputs .row-i span {
    max-width: 95%;
    max-height: 55px;
    margin-bottom: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.70rem;
    font-weight: bold;
    border: 2px solid #cccccc70;
    user-select: none;
    text-transform: uppercase;
    transition: 0.5s;
}
@media(max-width: 460px) {
    .game .inputs .row-i span {
        max-height: 50px;
    }
}
.game .inputs .row-i span::before {
    content: "";
    display: inline-block;
    padding-bottom: 75%;
}
.game .inputs .row-i span.border {
    border-color: var(--black-color);
}
/* ---------------------------- */
.game .letters {
    width: 500px;
    margin: 0 auto;
}
@media(max-width: 567px) {
    .game .letters {
        max-width: 100%;
    }
}
.game .letters .row-l {
    display: flex;
    gap: 3px;
    width: 100%;
    margin: 0 auto;
}
.game .letters .row-l:nth-child(2) {
    justify-content: center;
    width: 95%;
    margin: 0 auto;
}
.game .letters .row-l button {
    border: none;
    user-select: none;
}
.game .letters .row-l:last-child button:first-child {
    flex: 2;
    font-size: 13px;
}
.game .letters .row-l:last-child button:last-child {
    flex: 2;
}
.game .letters .row-l button {
    height: 50px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    cursor: pointer;
}
@media(min-width: 460px) {
    .game .letters .row-l button {
        height: 60px;
        font-size: 1.5rem;
    }
}
/* End Game */
/* ---------------------------- */
/* Start Animation */
 /* * animation shake-horizontal */
.shake-horizontal {
	-webkit-animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
 /* * animation shake-horizontal */

@-webkit-keyframes shake-horizontal {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    20%,
    40%,
    60% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    80% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    90% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
}
@keyframes shake-horizontal {
    0%,
    100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
    }
    20%,
    40%,
    60% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    }
    80% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
    }
    90% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
    }
}

/* End Animation */