:root {
    --mobile-font: 11px;
    --tablet-font: 13px;
    --small-font: 14px;
    --normal-font: 16px;
    --large-font: 18px;
    --x-large-font: 20px
}
html, body, .melatipoker-wrapper {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: var(--small-font);
    background-color: #000;
    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;
}
.cf::before, .cf::after {
    display: table;
    content: " ";
    clear: both;
}
/* Wrapper Start */
.melatipoker-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 */
.melatipoker-wrapper .header-container {
    background-color: #111;
    text-align: center;
    padding: 4px;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0px 0px 8px 2px #000000;
}
.melatipoker-wrapper .header-container a {
    display: block
}
.melatipoker-wrapper .header-container .logo {
    display: block;
    flex-grow: 1
}
/* Header Fixed End */

/* Main Start */
.melatipoker-wrapper .main-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 62px;
    padding-bottom: 15px;
    font-family: verdana;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.white {
    color: #fff;
}
.melatipoker-wrapper .content-header {
	text-align: center;
}
.melatipoker-wrapper .content-header .content-title {
    margin-bottom: 0;
    text-transform: uppercase;
    background: -webkit-linear-gradient(317deg, #34b513 0%, #41e01a 100%);
    background: linear-gradient(317deg, #34b513 0%, #41e01a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.melatipoker-wrapper #melatipoker {
    color: #fff;
}
/* Main End */

/* List of Provider Start */
.provider-slot {
    display: flex;
    text-align: center;
    font-family: sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.provider-slot-sidebar {
    background-color: #111111;
    box-shadow: 0px 0px 8px 2px #000000;
    /* border: 1px solid #02bca2; */
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
}

.provider-slot-sidebar .btn-provider {
    flex: 1 1 150px;
    display: block;
    border: 1px solid #34ff00;
    box-shadow: 0px 0px 8px 2px #000000;
    width: 100%;
    max-width: 200px;
    height: auto;
    background: #111;
    border-radius: 5px;
    margin: 5px;
    text-align: center;
    padding: 5px;
}

.provider-slot-sidebar a:hover {
    background: #000;
}

.provider-slot-sidebar p {
    margin: 0;
    margin-bottom: 5px;
}
@media(max-width:799px) {
    .provider-slot {
        max-width: 100%;
    }
    .provider-slot-sidebar .btn-provider {
        flex: 1 1 100px;
        max-width: 100%;
    }
}
/* List of Provider End */

/* Percent Bar Start */
@-webkit-keyframes progress-bar-stripes {
	from {
		background-position: 1rem 0
	}

	to {
		background-position: 0 0
	}
}

@keyframes progress-bar-stripes {
	from {
		background-position: 1rem 0
	}

	to {
		background-position: 0 0
	}
}
.yellow{
    background-color: #ffc107;
}

.green{
    background-color: #28a745;
}

.red{
    background-color: #dc3545;
}
.card-content .percent {
    height: 27px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #111;
    /* border-radius: 0.25rem; */
    position: relative;
    z-index: 1;
    border-radius: 5px;
    width: 90%;
    margin: 5px auto;
    border: 1px dashed #34ff00;
}

.percent p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(14px);
    color: #fff;
    margin: 0;
}

.percent-bar {
    /* background-color: #ffc107; */
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    /* background-color: #007bff; */
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    z-index: 10;
}
/* Percent Bar End */

/* List of Game Slot Start */
.game-slot {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 0;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.game-slot {
    /* border: 1px solid #02bca2; */
    background: #111111;
    box-shadow: 0px 0px 8px 2px #000000;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}
.game-slot .card {
    flex: 1 0 150px;
    margin: 5px;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: none;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}
.game-slot .card {
    display: none;
    align-items: center;
    flex-direction: column;
    color: #000;
    background-color: #000;
    box-shadow: 0px 0px 4px 1px #000000;
    min-width: 0;
    word-wrap: break-word;
}
.card .card-content {
    height: auto;
    margin: 5px;
    margin-bottom: 4px;
    color: #fff;
    font-size: 12px;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}
.card-content .hover-btn {
    position: absolute;
    opacity: 0;
    background-color: rgba(0,0,0,0.9);
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    z-index: 10;
    width: 90%;
    max-width: 90%;
    height: 77%;
    margin-top: 5px;
    margin-bottom: 5px;
    align-self: center;
    border: dashed 1px #34ff00;
}
.card-content:hover .hover-btn{
    opacity: 100%;
}
.hover-btn .play-btn {
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    align-items: center;
    /* width: 100%; */
    padding: 8px;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    margin: 42% 30px 42% 30px;
    background: #196912 url('../img/lines.png');
    color: #fff;
    border-radius: 18px;
    transition: all .3s ease;
}
.play-btn:hover{
    background: #1ba00f url('../img/lines.png');
}
.card-content .img-zoom {
    background: #111;
    border: dashed 1px #34ff00;
    transition: all 0.45s ease-in-out;
    vertical-align: middle;
    /* border-style: none; */
    border-radius: 10px;
    position: relative;
    max-width: 90%;
}
.hover-btn:hover ~ .img-zoom {
    /* transform: scale(1.2); */
    position: relative;
}
.card .pola-gacor {
    position: relative;
    bottom: 0;
    margin: 0;
    margin-top: 5px;
    width: 82%;
    height: 34%;
    overflow: hidden;
    border-radius: 10px;
    color: #fff;
    border-left: #34ff00 1px solid;
    border-right: #34ff00 1px solid;
    padding: 5px 0;
}
.pola-gacor .pola-content .pola-title {
    margin: 0;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #34ff00;
}
.pola-gacor hr {
    display: block;
    width: 100%;
    margin: 2px 0;
    border-color: #34ff00;
    border-width: 0.1em;
}
.pola-gacor .pola-content .pola-description {
    line-height: normal;
    font-size: 13px;
    word-wrap: break-word;
}
.pola-description p {
    margin: 0;
}
.pola-description .pola-bet {
    margin-top: 5px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase; 
    color: #fff;
}
/* List of Game Slot End */

/* Load More Start */
.loadMore {
    display: block;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    background-image: linear-gradient(to bottom, #34b513 0%, #104706 100%);
    color: #fff;
    font-weight: bold;
    margin-top: 50px;
}
.loadMore:hover {
    background-image: linear-gradient(to top, #34b513 0%, #104706 100%);
    color: #fff;
}
.loadMore:visited {
    background-image: linear-gradient(to bottom, #34b513 0%, #104706 100%);
    color: #fff;
}
.loadMore:visited:hover {
    background-image: linear-gradient(to top, #34b513 0%, #104706 100%);
    color: #fff;
}
/* Load More End */

/* Login, Register & Whatsapp Start */
.button-container {
    padding: 5px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    font-size: var(--x-large-font);
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
}
.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: #111111  url('../img/lines.png');
    box-shadow: 0px 0px 10px 1px #000000;
    color: #34ff00;
	margin-left: 5px;
    margin-right: 5px;
}
.login-button:hover {
    background: transparent;
    color: #34ff00;
    border: 1px solid #34ff00;
    padding: 14px 19px;
}
.register-button {
    background: #111111  url('../img/lines.png');
    box-shadow: 0px 0px 10px 1px #000000;
    color: #34ff00;
    margin-left: 5px;
    margin-right: 5px;
}
.register-button:hover {
    background: transparent;
    color: #34ff00;
    border: 1px solid #34ff00;
    padding: 14px 19px;
}
.whatsapp-button {
    background: #111111  url('../img/lines.png');
    box-shadow: 0px 0px 10px 1px #000000;
    color: #34ff00;
    margin-left: 5px;
    margin-right: 5px;
}
.whatsapp-button:hover {
    background: transparent;
    color: #34ff00;
    border: 1px solid #34ff00;
    padding: 14px 19px;
}
/* Login, Register & Whatsapp 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: linear-gradient(180deg, #58ea01 0%, #40ae00 100%); */
	background: #111;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
}
.footer-container .copyright_footer_area_post
{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 5px;
    background: linear-gradient(180deg, #58ea01 0%, #40ae00 100%);
    background: #111;
    position: relative;
	bottom: 0;
	left: 0;
	right: 0;
}
.copyright_data_area
{
    padding:5px;
    text-align:center;
    color: #000;
    text-transform: inherit;
}
.copyright_data_area p
{
    color: #fff;
    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 (max-width: 900px) {
    .card .pola-gacor {
        height: auto;
        margin-bottom: 2%;
    }
}
@media (min-width: 800px) {
    .main-container {
        width: 970px;
        max-width: 100%;
    }
}
@media (max-width: 800px) {
    body {
        font-size: var(--small-font);
    }
    .melatipoker-wrapper .main-container {
        max-width: 100%;
        padding-top: 60px;
    }
    .game-slot {
        max-width: 100%;
        margin-top: 5px;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .game-slot .card {
        padding-bottom: 5px;
    }
    .game-slot .card .card-content {
        height: auto;
    }
    .hover-btn {
        display: none;
    }
    .img-zoom {
        height: auto;
    }
    .desktop-btn-container
    {
        display:none;
    }
    .mobile-button-container
    {
        display:flex;
        flex-direction: row;
        /* gap: 12px; */
    }
    .provider-slot {
        margin-bottom: 10px;
    }
    .button-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .button-container a {
        width: 90%;
    }
    .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) {
    .game-slot {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .melatipoker-wrapper .header-container {
        padding-left: 5%;
        padding-right: 5%;
    }
    .melatipoker-wrapper .header-container .logo {
        max-width: 100%;
        height: auto;
    }
    .content-header .content-title {
        font-size: 1.9em;
    }
    .pola-description p {
        font-size: var(--tablet-font);
    }
}
@media(min-width:799px) {
    body {
        font-size: var(--normal-font);
    }
    .last-footer
    {
        display:none;
    }
}
@media(max-width:600px) {
    .game-slot {
        grid-template-columns: 1fr 1fr;
    }
    .card .pola-gacor .pola-content .pola-title {
        font-size: 12px;
    }
    .pola-content .pola-description .pola-bet {
        font-size: 12px;
    }
}
@media(max-width:500px) {
    .pola-description p {
        font-size: var(--mobile-font);
    }
}
/* 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 */