:root {
    --small-font: 14px;
    --normal-font: 16px;
    --large-font: 18px;
    --x-large-font: 20px
}
html, body, .koidomino-wrapper {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-size: var(--small-font);
    background-color: #080808;
    font-family: sans-serif;
}
body, img {
	-webkit-touch-callout: none;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
*, ::after, ::before {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #ffffff;
}
h2, h3, h4, h5, h6 {
    color: #eb0000;
}
.cf::before, .cf::before {
    display: table;
    content: " ";
    clear: both;
}
/* Wrapper Start */
.koidomino-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
/* Wrapper End */

.container {
    align-self: center;
    margin-left: auto;
    margin-right: auto
}
.mb-0 {
    margin-bottom: 0;
}
.mt-4 {
    margin-top: 4px;
}

/* Header Fixed Start */
.koidomino-wrapper .header-container {
    background-color: #eb0000;
    text-align: center;
    padding: 4px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0px 0px 8px 2px #000000;
}
.koidomino-wrapper .header-container a {
    display: block
}
.koidomino-wrapper .header-container .logo {
    display: block;
    flex-grow: 1;
}
/* Header Fixed End */

/* Main Start */
.koidomino-wrapper .main-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 62px;
    padding-bottom: 30px;
    font-family: verdana;
}
.main-container .content-header {
	text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-header .content-title {
    margin-bottom: 0;
    text-transform: uppercase;
	color: #eb0000;
}
.content-header .content-description {
    width: 95%;
    font-family: verdana;
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}
/* Main End */

/* Hero Start */
.main-container .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: content-box;
    padding-top: 20px;
    padding-bottom: 20px;
}
.hero-container .hero {
    display: block;
    border: 1px solid #eb0000;
    border-radius: 10px;
}
/* Hero End */

/* Login, Register & Whatsapp Start */
.button-container {
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    font-size: var(--x-large-font);
    width: 100%;
    box-sizing: border-box;
}
.button-container a {
    width: 50%;
    text-align: center;
    padding: 15px 20px;
    text-transform: uppercase;
    border-radius: 10px;
    font-weight: bold;
    font-family: verdana;
}
.mobile-button-container {
    margin-top: 0px;
    margin-bottom: 0px;
}
.mobile-button-container {
    display:none;
}
.login-button {
    background-image: -webkit-linear-gradient(top, #fddd32 0%,#ffb300 100%);
    background-image: linear-gradient(top, #fddd32 0%,#ffb300 100%);
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}
.login-button:hover {
    background: transparent;
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 14px 19px;
}
.register-button {
    background: #ff0000;
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}
.desktop-btn-container .register-button:hover {
    color: #fddd32;
    background: transparent;
    border: 1px solid #fddd32;
    padding: 14px 19px;
}
.mobile-button-container .register-button:hover {
    color: #fddd32;
    background: transparent;
    border: 1px solid #fddd32;
    padding: 14px 19px;
}
.whatsapp-button {
    background-image: -webkit-linear-gradient(top, #00ff66 0%,#008836 100%);
    background-image: linear-gradient(top, #00ff66 0%,#008836 100%);
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}
.whatsapp-button:hover {
    background-image: -webkit-linear-gradient(bottom, #00ff66 0%,#008836 100%);
    background-image: linear-gradient(bottom, #00ff66 0%,#008836 100%);
    color: #fff;
}
/* Login, Register & Whatsapp End */

/* Game Box Start */ 
.game_items_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 20px;
}
.game_items_inner_box {
    padding:3px;
    border-radius:10px;
    background-color:#000;
    color:#fff;
    box-shadow:#000000 0 6px 12px -2px,#111 0 3px 7px -3px;
}
.game_items_inner_box:hover {
box-shadow: rgb(235 0 0 / 40%) 0 4px 8px, rgb(235 0 0 / 30%) 0 7px 13px -3px, #eb0000 0 -3px 0 inset;
transform: translateY(-2px);
}
.game_items_inner_box img {
    border-radius: 10px 10px 0 0;
}
.game_items_inner_box-desc {
    margin: 10px;
    height: 150px;
}
.game_items_inner_box-title {
    color: #eb0000;
    font-weight: bold;
    font-family: verdana;
}
.game_items_inner_box-desc .text-small
{
    color: #fff;
    font-size:12px;
    font-family:verdana;
}
.game_items_inner_box-row-desc
{
    margin: 10px;
    text-align:center;
}
.boxbutton
{
    color: #eb0000;
    align-items: center;
    appearance: none;
    background-color: #000;
    border-radius: 20px;
    border-width: 0;
    box-shadow: rgb(232 7 7 / 40%) 0 -2px 4px, rgb(232 7 7 / 40%) 0 2px 4px, rgb(232 7 7 / 30%) 0 7px 13px -3px, #eb0000 0 -3px 0 inset;
    box-sizing: border-box;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 15px;
    font-weight: 700;
    font-family:verdana;
}
.boxbutton:hover {
    color: #ffffff;
}
.boxbutton:visited {
    color: #ff0000;
}
.boxbutton:visited:hover {
    color: #ffffff;
}
/* Game Box End */

/* Link Start */
.link-start {
	text-align: center;
}
.link-start h2 {
    color: #fff;
    margin-bottom: 2px;
	text-transform: uppercase;
}
.link_buttons_column
{
	display: grid;
	grid-template-columns: 1fr;
    grid-column-start: 1;
    grid-column-end: 1;
	grid-gap: 10px;
	padding: 10px;
	font-family:verdana;
}
.link_buttons_column a
{
	background: #eb0000;
	padding: 15px;
	text-align: center;
	color: #fff;
	border-radius: 10px;
	font-weight:bold;
	font-family:verdana;
}
.link_buttons_column a:hover
{
	/* background: #fff000; */
	background: transparent;
    padding: 13px;
    border: 2px solid #ff0000;
    color: #fff;
    box-sizing: border-box;
}
/* Link End */

/* Button Start */
.four_buttons_column
{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 15px;
padding: 10px;
}
.four_buttons_column a {
background: #ff0000;
padding: 15px;
text-align: center;
color: #fff;
border-radius: 10px;
font-weight:bold;
font-family:verdana;
}
.four_buttons_column a:hover
{
box-sizing: content-box;
padding: 13px;
background-color: transparent;
border: 2px solid #ff0000;
}

.two_buttons_column
{
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 15px;
padding: 10px;
font-family:verdana;
}
.two_buttons_column a
{
background: #eb0000;
padding: 15px;
text-align: center;
color: #fff;
border-radius: 10px;
font-weight:bold;
font-family:verdana;
}
.two_buttons_column a:hover
{
    box-sizing: content-box;
    padding: 13px;
    background-color: transparent;
    border: 2px solid #ff0000;
}
/* Button End */

/* Content Start */
.post-container {
    padding: 10px;
    color: #fff;
}
.post-container a, .post-container a:visited {
    color: #eb0000;
    font-weight: bolder;
}
.post-container a:hover, .post-container a:visited:hover  {
    color: #fff;
}
.post-container p, .post-container ul {
    font-family: arial;
}
.site-description-container {
    padding: 20px;
    background-color: #000;
    box-shadow:#000000 0 6px 12px -2px,#111 0 3px 7px -3px;
    border-radius: 10px;
}
.site-description-container p, ul  {
    font-size: 15px;
}
.site-description {
    background-color: #080808;
    padding: 10px
}
.site-content {
    margin-top:5px;
    margin-bottom:15px;
    font-family: verdana;
    font-size:12px;
}
.table-black {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    color: #fff;
    text-align: center;
    background-color: #080808;
    border: 1px solid #e6e9ee;
    border-collapse: separate;
    border-radius: 12px;
}
.table-black td
{
    line-height: 24px;
    border: 0px;
}
.table-black td a {
    color: #ff0000;
}
.table-black td a:hover {
    color: #fff;
}
.table-black td a:visited {
    color: #ff0000;
}
.table-black td a:visited:hover {
    color: #fff;
}
.table-black .first {
    border-bottom: 1px solid #fff;
}
.text-table {
    color: #fff;
}
/* Content End */

/* Footer Start */
.footer-container {
    width: 100%;
    color: #fff;
}
/* Copyright Start */
.copyright {
    padding: 25px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.copyright div {
    padding-bottom: 10px
}
.footer-container .copyright_footer_area_home
{
	/* margin-top: 50px; */
    padding-top: 10px;
	padding-bottom: 5px;
    width: 100%;
	background: #eb0000;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
}
.footer-container .copyright_footer_area_post
{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 5px;
    background: #eb0000;
}
.copyright_data_area
{
    padding:5px;
    text-align:center;
    color: #fff;
    text-transform: inherit;
}
.copyright_data_area p
{
    margin:0px;
    font-family:verdana;
    font-size:14px;
}
/* Copyright End */

/* Fixed Footer Start */
.fixed-footer {
    display: flex;
    justify-content: space-around;
    position: fixed;
    background-color: #080808;
    width: 100%;
    padding: 5px 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2157483639;
    box-shadow: 0px 0px 8px 1px #000000;
}
.fixed-footer a {
    flex-basis: calc((100% - 15px*6)/5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-family:verdana;
    font-size:13px;
}
.fixed-footer a.active {
    color: #0195ff;
    font-family: verdana;
    font-size: 13px;
}
.fixed-footer a {
    background-color: inherit;
    flex-basis: calc((100% - 15px*6)/5);
    max-width: 75px;
    color: #fff;
    font-size: var(--small-font);
    font-family:verdana;
    font-size:13px;
}
.fixed-footer a.active {
    color: #ff00b2
}
.fixed-footer .center {
    transform: scale(1);
    background: center no-repeat;
    background-size: contain;
    background-color: inherit;
    border-radius: 50%
}
.fixed-footer img {
    margin-bottom: 5px
}
.fixed-footer .live-chat-icon {
    animation: pulse 3s infinite
}
.fixed-footer a {
    color: #fff;
}
.fixed-footer a.active {
    color: #f60808
}
/* Fixed Footer End */
/* Footer End */

/* Media Screen Start */
@media (min-width: 800px) {
    .main-container {
        width: 970px;
        max-width: 100%;
    }
}
@media (max-width: 1200px) {
    .hero-container .hero {
        max-width: 100%;
        height: auto;
    }
    .game_items_box .game_items_inner_box-desc {
        overflow: hidden;
    }
    .main-container .game_items_box .game_items_inner_box img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .post-container img {
        max-width: 100%;
        height: auto;
    }
    .game_items_box {
        grid-gap: 10px;
    }
}
@media (max-width: 800px) {
    body {
        font-size: var(--small-font);
    }
    .koidomino-wrapper .main-container {
        max-width: 100%;
        padding-top: 60px;
    }
    .main-container .hero-container {
        max-width: 100%;
    }
    .hero-container .hero {
        max-width: 100%;
        height: auto;
    }
    .site-description-container img {
        max-width: 40%;
        height: auto;
    }
    .game_items_box .game_items_inner_box-desc {
        overflow: hidden;
    }
    .game_items_box .game_items_inner_box img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .four_buttons_column {
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
    .two_buttons_column
    {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        text-align: center;
    }
    .repeat_column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5px;
    }
    .last_grids {
        grid-column-start: 1;
        grid-column-end: 1;
    }
    .desktop-btn-container
    {
        display:none;
    }
    .mobile-button-container
    {
        display:flex;
        flex-direction: row;
    }
    .footer-container .copyright_footer_area_home, .footer-container .copyright_footer_area_post {
        padding-bottom: 65px;
    }
    #chat-widget-container {
        bottom: 50px !important;
        max-height: 90% !important;
    }
    .fixed-footer img.home_footer {
        max-width: 100%;
    }
}
@media(max-width:700px) {
    .koidomino-wrapper .header-container {
        padding-left: 8%;
        padding-right: 8%;
    }
    .koidomino-wrapper .header-container .logo {
        max-width: 100%;
        height: auto;
    }
    .main-container .content-header .content-title {
        font-size: 1.9em;
    }
    .main-container .game_items_box {
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
}
@media(max-width:550px){
    .site-description-container p, ul  {
        font-size: 13px;
    }
}
@media(min-width:799px) {
    body {
        font-size: var(--normal-font);
    }
    .last-footer
    {
        display: none;
    }
}
/* Media Screen End */

/* Animation of icon Start */
.animate-round {
    -webkit-animation-name: animate-round;
    animation-name: animate-round;
    -webkit-animation-duration: 4.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite
}

@-webkit-keyframes animate-round {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}
@keyframes animate-round {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}
/* Animation of icon End */