@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ======================= COMMON ======================= */
:root {
    --color-primary: #CB4335;
    --color-second: #212F3D;
    --color-background: #eef0f7;
    --color-blue: #1F618D;
    --color-blue-thin: #2980B9;
    --color-grey: #94a1af;
    --bg-footer: #101316;
    --background-primary: linear-gradient(45deg, #CB4335,#FADBD8,#CB4335);
    --text-yesterday: #2f2d2d;
    --alpha-test-today: #287e41;
    --alpha-test-tomorrow: #275534;
    --open-beta-today: #f12323;
    --open-beta-tomorrow: #8f2424;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--color-background);
    font-family: 'Inter', sans-serif;
}
p {
    padding: 0;
    margin: 0;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-top: 1px solid #ccc;
}
.mt-1 {
    margin-top: 10px;
}
.dt-hidden {
    display: none;
}
.mobile {
    display: none;
}
.alpha-test-today {
    color: var(--alpha-test-today);
}
.alpha-test-tomorrow {
    color: var(--alpha-test-tomorrow);
}
.open-beta-today {
    color: var(--open-beta-today);
}
.open-beta-tomorrow {
    color: var(--open-beta-tomorrow);
}
.text-yesterday {
    color: var(--text-yesterday);
}
.text-error {
    color: #E74C3C;
}
.text-valid {
    color: #27AE60;
}
.form-control.error {
    border-color: #E74C3C;
}
.form-control.valid {
    border-color: #27AE60;
}
/* ======================= END COMMON ======================= */

/* ======================= HEADER ======================= */
.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.loading.active {
    opacity: 1;
    visibility: visible;
}
.loading img {
    width: 80px;
}
.header {
    background: #252634;
    margin: 0 auto;
    z-index: 999;
    width: 100%;
}
.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.navbar-wrap {
    flex-grow: 1;
}
.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.navbar-wrap ul li {
    display: block;
    position: relative;
}
.navbar-wrap ul li a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px;
    color: #cfcdcd;
    display: block;
    line-height: 1;
    position: relative;
    text-decoration: none;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    transition: .3s linear;
}
.navbar-wrap > ul > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 36px;
    width: 83%;
    transform: translateY(-50%) skewX(-17deg);
    background: var(--color-primary);
    right: 0;
    margin: 0 auto;
    z-index: -1;
    opacity: 0;
    transition: .3s linear;
    box-shadow: 0px 1px 8.37px 0.63px rgb(0 0 0 / 28%);
}
.navbar-wrap > ul > li > a.active {
    transform: translateY(0%) skewX(-17deg);
    background-color: var(--color-primary);
    color: #fff;
}
.navbar-wrap > ul > li > a:hover {
    color: #fff;
}
.navbar-wrap > ul > li > a:hover:before {
    opacity: 1;
}
.navbar-wrap ul li .submenu {
    position: absolute;
    z-index: 9;
    background-color: #fff;
    border-radius: 0;
    display: block;
    left: 0;
    opacity: 0;
    padding: 18px 0;
    right: 0;
    top: 100%;
    visibility: hidden;
    min-width: 230px;
    border: 1px solid #f5f5f5;
    background: #ffffff;
    box-shadow: 0px 30px 70px 0px rgb(137 139 142 / 15%);
    margin: 0;
    transform: scale(1 , 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
}
.navbar-wrap ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.navbar-wrap ul li .submenu li a {
    padding: 0 10px 0 25px;
    line-height: 40px;
    font-weight: 700;
    color: #5d5d5d;
    text-transform: uppercase;
}
.navbar-wrap ul li .submenu li a:hover {
    color: var(--color-primary);
}
.mobile-nav-toggle {
    display: none;
}
.mobile-menu {
    display: none;
}
/* ======================= END HEADER ======================= */

/* ======================= CONTENT ======================= */
.content {
    padding: 15px 0;
}
.content-inner {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /*  padding: 0 15px 10px 15px;*/
}
.photo-wrap {
    margin-bottom: 15px;
}
.photo-center a {
    display: block;
    margin-bottom: 5px;
}
.title {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin: 10px 0 0 0;
    padding: 10px 0;
    text-transform: uppercase;
    border-bottom: 2px solid #2979a2;
    color: var(--color-second);
}
.bg-primary-color .title{
    background: linear-gradient(45deg,#ffffad,#ffffe0,#ffffad);
}
.box {
    cursor: pointer;
    margin-bottom: 10px;
}
.box-primary {
    background: linear-gradient(45deg,#ffffad,#ffffe0,#ffffad);
    
    
}
.box .box-header {
    display: flex;
    justify-content: flex-start;
    padding: 5px 0;
}
.box .box-header .col-left {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.box .box-header .col-center {
    width: 60%;
}
.box .box-header .col-center img {
    /*height: 83px;*/
}
.box .box-header .col-right {
    width: 25%;
    padding-left: 15px;
    display: flex;
    justify-content: center;
}
.rank-number {
    width: 50px;
    height: 50px;
    font-family: 'Teko', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1f618d;
    font-size: 25px;
    font-weight: bold;
    /*box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;*/
    border-radius: 50%;
    /*border: 1px solid #F4D03F;*/
    transition: all .3s;
}
.btn-view-more {
    display: block;
    font-size: 13px;
    background-color: var(--color-blue-thin);
    padding: 5px 8px;
    color: #fff;
    text-decoration: none;
    transition: all .3s;
    border-radius: 5px;
}
.btn-view-more:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--color-blue);
}
.name-game {
    text-decoration: none;
    color: var(--color-blue);
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.2em;
    font-family: 'Inter', sans-serif;
    transition: all .3s;
    display: block;
    width: 100%;
    font-size: 15px;
}
.name-game:hover {
    color: var(--color-blue-thin);
}
.vip-icon {
    width: 100%;
    position: relative;
}
.vip-icon img {
    width: 180px;
}
.time-open {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    padding: 0 15px;
    margin-top: 18px;
    font-weight: 600;
    color: var(--color-second);
}
.box-content {
    display: none;
}
.content-inner-box {
    display: flex;
    justify-content: center;
}
.content-primary {
    background: linear-gradient(to bottom,#FADBD8,#F1948A,#F1948A);
}
.content-inner-box .col-left {
    width: 15%;
}
.content-inner-box .col-center {
    width: 60%;
    padding: 15px 0;
}
.content-inner-box .col-right {
    width: 25%;
    padding-left: 15px;
}
.content-inner-box .col-center p {
    font-size: 14px;
    margin-bottom: 0;
}
.content-inner-box .col-center p a {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-blue);
}
.content-inner-box .col-center p a:hover {
    text-decoration: underline;
    color: var(--color-blue-thin);
}
.toolbox {
    padding: 0 15px;
}
.blur {
    background: linear-gradient(to right,#f8ffae,#78ead4);
}
.filter-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px;
}
.btn-filter {
    font-style: normal;
    white-space: normal;
    letter-spacing: 0;
    cursor: pointer;
    text-transform: none;
    font-weight: 600;
    border-radius: 6px;
    margin-left: 10px;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 8px;
    text-align: center;
}
.filter-text {
    font-size: 15px;
}
.filter-box a.alpha-test {
    top: 0;
    right: 0;
    color: #fff;
    background-color: #287e41;
    transition: all .3s;
}
.filter-box a.alpha-test:hover {
    background-color: #1f6833;
}
.filter-box a.open-beta {
    top: 0;
    right: 0;
    min-width: 170px;
    color: #fff;
    background-color: #f12323;
    transition: all .3s;
}
.filter-box a.open-beta:hover {
    background-color: #cf1717;
}
.search-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px;
    flex-wrap: wrap;
}
.search-box form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.search-box form input {
    width: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 6px 15px;
    font-size: 12px;
    border: 1px solid #ccc
}
.search-box form input:focus {
    outline: none;
}
.search-box form button {
    padding: 6px 15px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #fff;
    background-color: var(--color-blue-thin);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0;
}
.search-box form button:hover {
    background-color: var(--color-blue);
}
.fast-search {
    padding: 15px 0;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.fast-search a {
    padding:  0 5px;
    color: #043c4d;
}
.fast-search a:hover {
    color: #953113;
}
.bg-second-color .title {
    font-size: 15px;
    font-weight: normal;
    text-transform: none;
    background: linear-gradient(to top,#fff,#eef7fa,rgba(233,242,248,.87));
}
.box-second {
    background: linear-gradient(to top,#fff,#eef7fa,rgba(233,242,248,.87));
}
.box-second .box-header {
    padding-bottom: 10px;
}
.middle-info {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 5px;
}
.middle-info .col {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.middle-info .col span {
    width: 120px;
    font-size: 13px;
}
.font-size-13 {
    font-size: 13px;
}
.open-beta-tomorow {
    color: #922B21;
}
.alpha-test-tomorow {
    color: #196F3D;
}
.block-footer {
    background-image: linear-gradient(180deg,#fff 10%,#eef0f7);
    background-repeat: repeat-x;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.block-footer .block-header {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
}
.block-footer .block-body {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 30px;
    font-size: 15px;
}
.block-footer .block-body .block-logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.block-footer .block-body .block-logo img {
    width: 75px;
    height: 75px;
}
.block-footer .block-body .block-text {
    width: 80%;
    font-size: 15px;
}
.block-footer .block-body .block-text p {
    margin-bottom: 5px;
}
.list-version {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}
.list-version li a {
    font-size: 13px;
    font-weight: bold;
    display: block;
    margin: 0 5px;
    color: var(--color-second);
}
.list-version li a:hover {
    color: var(--color-primary);
}
.news .news-title {
    font-size: 20px;
    font-weight: bold;
}
.news-inner {
    display: flex;
    justify-content: flex-start;
    padding: 5px;
    background-image: linear-gradient(180deg,#f5f4f4 10%,#eef0f7);
    border: 1px solid #d9d9d9;
    margin-top: 10px;
    position: relative;
    text-decoration: none;
}
.highlight-news {
    background: linear-gradient(to right,#fae9e9,#f8f67a);
}
.news-inner:hover {
    box-shadow: 0 0 7px rgb(0 0 0 / 20%);
}
.news-inner .news-image {
    width: 30%;
    padding: 10px 30px 10px 10px;
}
.news-inner .news-image img {
    width: 100%;
    height: 107px;
}
.news-inner .news-image img:hover {
    filter: brightness(120%);
}
.news-inner .news-content {
    width: 70%;
    padding: 10px;
}
.news-inner .news-content h3 {
    font-size: 17px;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
}
.news-inner .news-content p {
    font-size: 15px;
    color: var(--color-grey);
    margin: 0;
    padding-bottom: 10px;
}
.news-inner .news-content .widget-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-news .game-kind {
    font-size: 14px;
    font-weight: bold;
    color:var(--color-blue-thin);
    transition: all .3s;
}
.widget-news .game-kind:hover {
    color: var(--color-blue);
}
.widget-news .date-update {
    font-weight: lighter;
    font-size: 14px;
    color: #566573;
}
.anchor-view {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 15px;
    color: #F1C40F;
    transition: all .3s;
    text-decoration: none;
    font-size: 15px;
}
.anchor-view:hover {
    color: #B7950B;
}
.most-viewed {
    display: block;
    margin-top: 20px;
}
.fa-thumbtack {
    color: #043c4d;
    position: absolute;
    margin-top: -15px;
    transform: rotate(-40deg);
    transform-origin: center center;
}
.viewed-header {
    font-weight: 600;
    text-align: center;
    padding: 10px 2px;
    font-size: 14px;
    margin: 0;
    background: linear-gradient(to right,#f8ffae,#78ead4);
}
.viewed-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
}
.viewed-list li a {
    display: block;
    text-decoration: none;
    color: var(--color-second);
    padding: 5px 2px;
    font-size: 14px;
    border-bottom: 1px dashed #ccc;
    transition: all .2s;
}
.viewed-list li a:hover {
    color: var(--color-primary);
}
.view-more {
    background: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 8px 8px 5px;
    color: var(--color-blue-thin);
    font-size: 14px;
    transition: all .2;
    text-decoration: none;
}
.view-more:hover {
    color: var(--color-blue);
}
.breabcrum-box {
    padding: 10px 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    list-style: none;
}
.breabcrum-box li {
    padding: 2px 4px;
}
.breabcrum-box li i {
    color: var(--color-second);
    display: inline-block;
    clear: none;
    font-size: 12px;
    padding-left: 1px;
    padding-right: 1px;
}
.breabcrum-box li a {
    color: var(--color-blue-thin);
    text-decoration: none;
}
.question-head {
    text-align: center;
    border-top: 1px solid #ebebeb;
    margin-top: 30px;
    padding-top: 20px;
}
.question-head h4 {
    font-size: 16px;
    font-weight: bold;
    color: #633;
    margin-bottom: 10px;
}
.question-head p {
    font-size: 14px;
    padding: 15px 0;
}
.question-body .question-inner {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 10px 0;
}
.question-body .question-inner .question-text {
    width: 40%;
    margin: 0;
    font-weight: bold;
    padding: 0 10px;
}
.question-body .question-inner .answer-text {
    width: 60%;
    margin: 0;
}
.block-option {
    background-image: linear-gradient(180deg,#fff 10%,#eef0f7);
    background-repeat: repeat-x;
    padding-bottom: 10px;
}
.block-option .option-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
}
.block-option .option-body {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.block-option .option-body .option-image {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
}
.block-option .option-body .option-image img {
    max-width: 150px;
    border-radius: 10px;
    overflow: hidden;
}
.block-option .option-body .option-content {
    width: 60%;
    font-size: 14px;
}
.block-option .option-body .option-content p {
    margin-bottom: 5px;
}
p a {
    color: var(--color-primary);
    text-decoration: none;
    transition: .3s ease;
}
p a:hover {
    color: var(--color-second);
}
.c-share {
    position: relative;
    width: 3.4375em;
    height: 3.4375em;
}
.c-share__input {
    display: none;
}
.c-share__input:checked ~ .c-share__toggler .c-share__icon {
    transition: 0s;
      width: 0;
      height: 0;
      color: #639eff;
}
.social-share {
    margin-top: 5px;
}
.list-social-share {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.list-social-share li {
    padding: 6px 10px;
    color: #fff;
    margin-right: 10px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 5px;
}
.list-social-share li:nth-child(1) {
    background-color: #4267B2;
    transition: all .3s;
}
.list-social-share li:hover:nth-child(1) {
    opacity: 0.87;
    transition: all .3s;
}
.list-social-share li:nth-child(2) {
    background-color: #55ACEE;
    transition: all .3s;
}
.list-social-share li:hover:nth-child(2) {
    opacity: 0.87;
    transition: all .3s;
}
.list-social-share li:nth-child(3) {
    background-color: #32506D;
    transition: all .3s;
}
.list-social-share li:hover:nth-child(3) {
    opacity: 0.87;
    transition: all .3s;
}
.list-social-share li:nth-child(4) {
    background-color: #0077B5;
    transition: all .3s;
}
.list-social-share li:hover:nth-child(4) {
    opacity: 0.87;
    transition: all .3s;
}
.list-social-share li:nth-child(5) {
    background-color: #CB2027;
    transition: all .3s;
}
.list-social-share li:hover:nth-child(5) {
    opacity: 0.87;
    transition: all .3s;
}
.clock {
    font-size: 14px;
}
.content-game-wrap h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
}
.note-game {
    padding: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 14px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.similar-game {
    margin-top: 50px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    padding: 0 15px 10px 15px;
}
.similar-game h2 {
    margin-right: -15px;
    margin-left: -15px;
    font-size: 16px;
    font-weight: bold;
    color: #633;
    margin-bottom: 0;
    padding: 10px 0;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to right,#f8ffae,#78ead4);
}
.similar-game-box {
    width: 100%;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    flex-wrap: wrap;
    position: relative;
    margin-top: 10px;
    padding: 5px 0;
    justify-content: flex-start;
    text-decoration: none;
    border: 1px solid #d9d9d9;
    background-image: linear-gradient(180deg,#f5f4f4 10%,#eef0f7);
}
.top-game-vip {
    border: 1px solid #e9e563;
    background-image: linear-gradient(180deg,#fefddb 10%,#feffb4);
}
.similar-game-box:hover {
    box-shadow: 0 0 7px rgb(0 0 0 / 20%);
}
.similar-game-box .image-intro {
    width: 35%;
}
.similar-game-box .content-intro {
    width: 60%;
    padding: 10px;
    position: relative;
}
.similar-game-box .content-intro .vip {
    position: absolute;
    right: 0;
    bottom: 30px;
}
.similar-game-box .content-intro .vip img {
    width: 80px;
}
.similar-game-box .content-intro2 {
    width: 100%;
    padding: 10px;
}
.similar-game-box .image-intro img {
    max-width: 100%;
    max-height: 100%;
    width: 300px;
    height: 180px;
    padding: 10px;
}
.similar-game-box .image-intro img:hover {
    filter: brightness(120%);
}
.similar-game-box .content-intro h3 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    color: #2979a2;
}
.similar-game-box .content-intro h3:hover {
    color: red;
    text-decoration: underline;
}
.similar-game-box .content-intro p {
    font-size: 14px;
    color: var(--color-second);
    line-height: 1.8em;
}
.similar-game-box .content-intro p:hover {
    color: #bb4a03;
}

.similar-game-box .image-intro2 img {
    max-width: 100%;
    max-height: 100%;
    width: 300px;
    height: 180px;
    padding: 10px;
}
.similar-game-box .image-intro2 img:hover {
    filter: brightness(120%);
}
.similar-game-box .content-intro2 h3 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    color: #2979a2;
}
.similar-game-box .content-intro2 h3:hover {
    color: red;
    text-decoration: underline;
}
.similar-game-box .content-intro2 p {
    font-size: 14px;
    color: var(--color-second);
    line-height: 1.8em;
}
.similar-game-box .content-intro2 p:hover {
    color: #bb4a03;
}
.category-title {
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 18px;
    background: linear-gradient(to right,#f8ffae,#78ead4);
}
.load-more {
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: center;
    width: 100%;
}
.load-more a {
    background-color: #03799e;
    border-radius: 3px;
    border: none !important;
    color: white;
    display: inline-block;
    padding: 10px 10px;
    transition: all 0.25s ease-out;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.load-more a:hover {
    background-color: #0895c1;
}
.main-list {
    max-width: 66.66667%;
    margin-left: 10px;
    margin-bottom: 5px;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 5px;
    background-color: #f6eee1;
}
.main-list h4 {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}
.main-list ol li {
    font-size: 13.5px;
    margin-bottom: 3px;
}
.main-list ol li a {
    color: #bb4a03;
    background-color: transparent;
    text-decoration: none;
    transition: all .3s;
}
.main-list ol li a:hover {
    color: var(--color-second);
}
.blog-content {
    padding: 30px 15px 15px 15px;
}
.tutorial-menu {
    background: linear-gradient(to right,#fff,#faf5f1);
}
.tutorial-menu h2 {
    font-size: 17px;
    font-weight: 750;
    padding: 20px 0;
    color: #633;
}
.tutorial-box {
    margin-bottom: 15px;
}
.tutorial-box h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: uppercase;
    color: #044f8f;
}
.tutorial-box h3 a {
    color: #bb4a03;
    background-color: transparent;
    text-decoration: none;
}
.tutorial-box h3 a:hover {
    color: #0c91e5;
}
.tutorial-box p {
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
    margin-bottom: 0;
}
.tutorial-box p:before {
    position: absolute;
    left: 0;
    top: 8px;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #57bea3;
}
.tutorial-box p a {
    font-size: 15px;
}
.tutorial-box p a:hover {
    color: #0c91e5;
}
.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: content;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    background: #fff;
    padding: 0 10px;
}
.breadcrumb li {
    font-size: 14px;
    color: #b5b5b5;
}
.breadcrumb li a {
    font-size: 14px;
    padding: 8px 5px;
    display: inline-block;
    color: #41b6e3;
    text-decoration: none;
}
.breadcrumb li a.home-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 13px;
}
.breadcrumb li a.parent-item:before, .breadcrumb li.active-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 13px;
}
.game-label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-image: linear-gradient(180deg, #fff 10%, #eef0f7);
    background-repeat: repeat-x;
    padding: 0 15px;
    margin: 10px 0;
}
.game-label .label-heading {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}
.game-label .label-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.game-label .label-content figure {
    max-width: 75px;
    max-height: 75px;
    margin-right: 30px;
}
.game-label .label-content figure img {
    width: 100%;
}
.game-label .label-content .label-content-text {
    font-size: 15px;
    line-height: 1.8;
}
.form-heading {
    background-color: #F7F7F7;
    margin-bottom: 30px;
    padding: 15px;
}
.block-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.block-inner h3 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.block-inner .block-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 640px;
}
.block-inner .block-content img {
    width: 80px;
    margin-right: 20px;
}
.form-upload {
    margin: 30px 0;
    max-width: 850px;
    margin: 0 auto;
}
.upload-box {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-size: 15px;
}
.upload-box .upload-title {
    font-size: 18px;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
    margin: 0;
    padding: 10px 15px;
}
.upload-box .upload-body {
    padding: 10px 15px;
}
.upload-box .upload-body .note {
    width: 100%;
    text-align: right;
}
.frm-upload {
    margin: 15px 0;
}
.frm-upload .form-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}
.frm-upload .form-group label.error {
    top: 8px;
    position: absolute;
    right: 15px;
    color: #E74C3C;
    text-align: right;
}
.frm-upload .form-group label {
    font-size: 14px;
    width: 200px;
}
.frm-upload .form-group .form-check-label {
    width: auto;
    cursor: pointer;
}
.frm-upload .form-group .form-control {
    font-size: 14px;
}
.multi-input {
    display: flex;
    justify-content: center;
    align-items: center;
}
.multi-input select {
    width: 120px;
    margin-right: 15px;
}
.multi-input select option {
    text-align: center;
}
.note-list li a {
    text-decoration: none;
    color: #bb4a03;
}
.review-game-detail {
    font-size: 15px;
    color: #222;
}
.note2 {
    position: relative;
}
.btn-reload-review {
    position: absolute;
    right: 0;
    top: 0;
}
.note2 .note-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.note-list {
    font-size: 15px;
}
.note-list li {
    color: #222;
}
.review-game-detail h4 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.form-upload .card {
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.card-heading {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.alert-text {
    text-align: center;
    padding: 15px 0;
}
.button-redirect {
    padding-top: 20px;
}
.wiki-menu {
    background-color: #252525;
    color: #fff;
    margin-top: 10px;
}
.menu-heading {
    font-size: 14px;
    padding: 8px 10px;
}
.menu-body {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
}
.menu-body li {
    position: relative;
    padding: 8px 12px;
    border-right: 1px solid rgba(255,255,255,.0976562);
    text-shadow: 1px 1px 0 rgb(0 0 0 / 13%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
}
.menu-body li:hover {
    background-color: #fff;
}

.menu-body li:hover > a, .menu-body li:hover > i {
    color: #222;
}
.menu-body li a {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    margin-right: 5px;
}
.menu-body .wiki-dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #252525;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 300px;
    z-index: 999;
    background-color: #444;
    display: none;
}
.menu-body .wiki-dropdown li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.0976562);
}
.menu-body .wiki-dropdown li a {
    justify-content: flex-start;
}
.menu-body li:hover .wiki-dropdown {
   display: block;
}
.desc-game {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.result-link {
    font-size: 13px;
    color: #006d21;
    display: block;
    padding: 3px 0;
}
.desc-game .desc {
    font-size: 16px;
    color: #222;
}
.ads-content {
    margin: 0;
    box-sizing: border-box;
    background-image: url('../images/bg-game.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ads-intro h1 {
    color: #ECF0F1;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
    padding-top: 60px;
}
.ads-intro p {
    color: #ECF0F1;
    margin-bottom: 10px;
}
.character {
    position: relative;
}
.elf-character {
    float: right;
    max-width: 420px;
    position: absolute;
    right: 0;
    top: 30px;
}
.btn-ads {
    background-color: #229954;
    border-radius: 50px;
    display: block;
    padding: 10px 20px;
    margin-top: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #fff;
    transition: all .3s;
}
.btn-ads:hover {
    background-color: #196F3D;
    color: #fff;
}
.ads-partner {
    padding: 30px 0;
}
.ads-partner .row .col-md-2 {
    z-index: 999;
}
.ads-partner h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #ECF0F1;
    margin-top: 30px;
    margin-bottom: 30px;
}
.ads-why {
    padding: 30px 0;
    background-color: #ECF0F1;
}
.ads-why h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #023316;
}
.character-icon {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.character-icon img {
    max-width: 50px;
}
.character-text {
    display: block;
    width: 100%;
    text-align: center;
    color: #023316;
}
.ads-post {
    background-color: #fff;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.post-content {
    padding-top: 20px;
    padding-bottom: 50px;
}
.post-content .post-head img {
    width: 220px;
    float: right;
}
.post-content .post-head h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: bold;
}
.post-content .post-head ul {
    margin-top: 10px;
}
.post-content .post-head ul li a {
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    color: var(--color-primary);
}
.post-content .post-head ul li a:hover {
    color: #922B21;
}
.post-content .post-body {
    margin-top: 15px;
}
.post-content .post-body h2 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #633;
    margin: 15px 0;
}
.post-content .post-body p {
    margin-bottom: 5px;
}
.ads-faq {
    padding: 15px 0;
    background-color: #f3f6fa;
}
.ads-faq h2 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #633;
    margin: 15px 0;
}
.ads-faq p {
    text-align: center;
}
.ads-faq .row {
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.ads-faq .row h4 {
    font-size: 17px;
    font-weight: bold;
}
.ads-faq .row p {
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
}
.example-3d {
    width: 100%;
}
.btn.faq {
    width: 380px;
}
.form-contact {
    background-color: #fff;
    padding: 30px;
    color: var(--color-primary);
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.form-contact h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}
.form-contact p {
    color: #222;
}
.form-contact .fb-page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.what-timmumoira {
    height: auto;
    background-color: #fff;
    position: relative;
}
.testimonials {
    position: absolute;
    left: 0;
    top: -60px;
    background-color: transparent;
    width: 100%;
}
.testimonials .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px 35px;
}
.policy-box {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}
.policy-box figure {
    height: 140px;
    width: 100%;
    text-align: center;
}
.policy-box p {
    width: 100%;
    text-align: center;
}
.policy-box figure img {
    height: 120px;
}
.block-heading.pd-top {
    padding-top: 70vh;
    padding-bottom: 8vh;
}
.block-heading h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.card {
    border: none;
}
.card.card-what {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    border-bottom: 3px solid var(--color-primary);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.card.card-what .card-head {
    padding: 0 30px;
}
.card.card-what .card-head h4 {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    color: var(--color-primary);
}
.intro-text p {
    margin-bottom: 8px;
}
.partner {
    padding-top: 18px;
    padding-bottom: 50px;
}
.partner .partner-list {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.partner .partner-list:first-child h3 {
    font-size: 18px;
    font-weight: bold;
    color: #3f4341;
}
.partner .partner-list li {
    padding: 0 15px;
}
.partner .partner-list li img {
    width: 100%;
}
input#file {
    display: none;
}
input#file + label {
    background-color: #4d8cf2;
    padding: 8px;
    color: #fff;
    border: 2px solid #9ec3ff;
    border-radius: 9px;
    margin-left: 20px;
    width: 180px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.fa-spinner {
    animation: spin 2s linear infinite;
    margin-right: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ======================= END CONTENT ======================= */

/* ======================= FOOTER ======================= */
.footer {
    min-height: 40vh;
    background: var(--bg-footer);
    position: relative;
    padding: 30px 0;
}
.img-character {
    position: absolute;
    right: 60px;
    top: -30vh;
    width: 300px;
}
.list-menu h2 {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}
.list-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-menu ul li a {
    text-decoration: none;
    color: var(--color-grey);
    margin-bottom: 5px;
    font-size: 15px;
    display: block;
    transition: all .1s;
}
.list-menu ul li a:hover {
    color: #e1e781;
}
.social-wrap .social-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.social-wrap .social-list li a {
    position: relative;
    display: block;
    color: #6666;
    font-size: 20px;
    height: 40px;
    width: 40px;
    background: #171515;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 15px;
    text-align: center;
    transition: .5s;
}
.social-wrap .social-list li a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: -1;
    transition: scale(0.9);
    transition: .5s;
}
.social-wrap .social-list li a:hover:before {
    filter: blur(3px);
    transition: scale(1.2);
    box-shadow: 0 0 15px #F1C40F;
}
.social-wrap .social-list li a:hover {
    color: #F1C40F;
    box-shadow: 0 0 15px #F1C40F;
    text-shadow: 0 0 15px #F1C40F;
}
.slogan {
    font-size: 15px;
    color: #fff;
    padding: 20px 0;
}
.social-wrap h4 {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 8px;
}
.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
}
.copy-right .text-copyright {
    font-size: 15px;
    color: var(--color-grey);
    padding: 0;
    margin: 0;
}
.copy-right .term-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.copy-right .term-navigation li a {
    display: block;
    margin-right: 10px;
    text-decoration: none;
    color: var(--color-grey);
    font-size: 15px;
    transition: all .1s;
}
.copy-right .term-navigation li a:hover {
    color: #e1e781;
}
.mu8x
{
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-top: none;
}


/* ======================= END FOOTER ======================= */

table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey !important;
    width: 100%;
}
table th {
    background-color: #854e26;
    padding: 3px;
    border-bottom: 1px solid #b2a794;
    color: #fff;
    font-size: 13px;
}
table td {
    background-color: #f6eee1;
    padding: 3px;
    border-bottom: 1px solid #b2a794;
    color: #000;
    font-size: 13px;
}