* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*::selection {
    background: none;
}

*::-moz-selection {
    background: none;
}

:root {
    --blue: #0088FF;
    --graylight: #989FBD;
    --graydark: #29314F;
}

img {
    max-width: 100%;
    display: block;
}

body {
    background-color: #F3F5F9;
    font-family: 'Roboto', sans-serif;
}

body,
html {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
}

.mt11_layout {
    -webkit-overflow-scrolling: touch;
}

.main-container {
    max-width: 560px;
    margin: 0 auto;
    height: 100vh;
}

.game-container {
    width: 100vw;
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
}

.loading_content {
    text-align: center;
    color: #fff;
}

.iframe_container {
    background-size: 30%;
    background-image: url('/assets/images/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: #111421;
}

.iframe_container.landscape_view {
    background-size: 10%;
}

header {
    position: sticky;
    top: 0px;
    z-index: 40;
    background-color: #fff;
}

.header-container {
    background-color: var(--blue);
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    min-height: 56px;
}

.header-container .left {
    display: flex;
    align-items: center;
    min-height: 24px;
}

.header-container .center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-container .center img {
    width: 65%;
    max-width: 250px;
    margin: auto;
    min-height: 24px;
}

.header-container .back {
    display: inline-block;
    width: 24px;
    margin-right: 16px;
}

.header-container .gamelogo {
    width: 40px;
    height: 40px;
    margin-right: 16px;
}

.header-container .gamelogo img {
    border-radius: 6px;
}

.header-container .gametext h2 {
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    color: #fff;
    margin: 0;
}

.header-container .gametext span {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: #fff;
}

.header-container ul.right {
    display: flex;
    align-items: center;
}

.header-container ul.right li {
    list-style: none;
    margin-left: 8px;
}

.header-container ul.right li a {
    display: block;
    width: 24px;
}

.location_blocked {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #ca1818;
    padding: 8px 16px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 8%);
    position: relative;
    z-index: 1;
    min-height: 48px;
}

.error_content {
    padding: 50px 10px;
    text-align: center;
}

.location_blocked span.icon,
.location_blocked span.icon img {
    display: block;
    width: 36px;
    height: 36px;
}

.location_blocked span.text {
    font-weight: 500;
    font-size: 13px;
    text-align: left;
    color: var(--graylight);
    margin-left: 8px;
    color: #ffffff;
}

.bannerslider {
    margin: 16px 0;
}

.banner {
    display: block;
}

.banner img {
    border-radius: 8px;
    max-height: 85px;
}

.contaienr {
    padding: 0 16px;
}

h1.title {
    font-size: 12px;
    margin: 0;
    color: #000000;
    font-weight: 500;
    margin-bottom: 8px;
}

.autoscroll {
    width: 100%;
    /* max-width: 100%;
    overflow: auto; */
}

ul.small_tabs {
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    width: 100%;
}

ul.small_tabs li {
    white-space: nowrap;
    list-style: none;
    margin-left: 16px;
    width: 100%;
}

ul.small_tabs li a {
    width: 100%;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    color: var(--graylight);
    font-weight: 500;
    padding: 9px 16px;
}

ul.small_tabs li:first-child {
    margin-left: 0;
}

ul.small_tabs li a.active {
    background-color: var(--blue);
    color: #fff;
}

ul.filter {
    margin: 16px 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

ul.filter li {
    list-style: none;
    width: 100%;
    margin-left: 8px;
}

ul.filter li:first-child {
    margin-left: 0;
}

ul.filter li a {
    background-color: #fff;
    border-radius: 4px;
    display: block;
    font-size: 10px;
    color: var(--graylight);
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    padding: 2px 0;
}

ul.filter li a span.icons {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

ul.filter li a span.icons img {
    display: block;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    position: absolute;
    transition: 0.5s;
    opacity: 0;
}

ul.filter li a span.icons img.none {
    opacity: 1;
}

ul.filter li a.active {
    color: var(--graydark);
}

ul.filter li a.active span.icons img.none {
    opacity: 0;
}

ul.filter li a.active.down span.icons img.down {
    opacity: 1;
}

ul.filter li a.active.up span.icons img.up {
    opacity: 1;
}

.lobbylisting,
.listing_txn,
.lobbylisting_games {
    padding-bottom: 16px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    position: relative;
}

.lobbylisting .card,
.listing_txn .card,
.lobbylisting_games .card {
    margin-top: 8px !important;
}

.lobbylisting .card:first-child,
.lobbylisting_games .card:first-child {
    margin-top: 0;
}

.lobbylisting .card .row,
.lobbylisting_games .card>div>ul {
    display: flex;
    justify-content: flex-start;
}

.lobbylisting_games .card>div {
    display: flex;
    justify-content: space-between;
}

.lobbylisting .card .row>div {
    width: 100%;
}

.lobbylisting .card h4.price {
    font-weight: bold;
    color: var(--graydark);
    font-size: 12px;
    padding: 7px 0;
}

.lobbylisting .card ul.tags {
    display: flex;
    align-items: center;
    justify-content: start;
}

.lobbylisting .card ul.tags li {
    list-style: none;
    margin-left: 4px;
    border: 1px solid var(--graylight);
    font-size: 10px;
    color: var(--graylight);
    padding: 2px 4px;
    border-radius: 2px;
}

.lobbylisting .card ul.tags li:first-child {
    margin-left: 0;
}

.lobbylisting .card .players {
    color: var(--graylight);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
}

.lobbylisting .card .players img {
    width: 16px;
    height: 16px;
}

.lobbylisting .card .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lobbylisting .card .right .content {
    text-align: center;
}

.lobbylisting .card a.buynow,
.lobbylisting_games .card a.btnblue {
    background: linear-gradient(#418aff 0%, #3679f8 100%);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    display: block;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 0;
    text-transform: uppercase;
}

.lobbylisting .card a.buynow.free,
.lobbylisting_games .card a.btnblue.free {
    background: linear-gradient(#28dd28 0%, #42b421 100%);
}

.lobbylisting .card a.buynow .icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.lobbylisting .card .bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 8px;
    color: var(--graylight);
    padding: 3px 0;
}

.lobbylisting .card .bonus img {
    width: 12px;
    height: 12px;
    position: relative;
    top: -1px;
}

.modal {
    position: fixed;
    z-index: 200;
    width: 560px;
    top: 0;
    left: calc(50% - 280px);
    bottom: 0;
    display: none;
}

.modal.show {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.20);
}

.modal-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 34px 16px 16px;
    border-radius: 8px 8px 0px 0px;
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
}

.modal-body::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--graydark);
    opacity: 0.2;
    position: absolute;
    left: calc(50% - 20px);
    top: 8px;
}

.buy-modal h2,
.wallet-modal h2,
.location-modal h2,
.genral-modal h2,
.nointernet-modal h2 {
    font-weight: bold;
    font-size: 20px;
    line-height: normal;
    text-align: left;
    color: var(--graydark);
    margin-bottom: 16px;
    margin-top: 0;
    text-align: center;
}

.buy-modal table {
    width: 100%;
    margin-bottom: 16px;
}

.buy-modal table tbody tr td:first-child {
    text-align: left;
}

.buy-modal table tbody tr td {
    padding: 4px 0;
    text-align: right;
    font-weight: normal;
    font-size: 15px;
    color: var(--graylight);
    line-height: normal;
}

.buy-modal table tbody tr td b {
    font-weight: 500;
    font-size: 16px;
    color: var(--graydark);
}

.buy-modal table tbody tr td.red-text b {
    color: #FF6767;
}

.buy-modal table tbody tr.borderbottom td {
    border-bottom: 1px solid #F3F5F9;
    padding-bottom: 16px;
}

.buy-modal table tbody tr.ticket td {
    padding-top: 16px;
}

.buy-modal p.trems {
    font-weight: normal;
    font-size: 10px;
    text-align: center;
    color: var(--graylight);
    margin-bottom: 16px;
}

a.btn {
    display: block;
    text-decoration: none;
    border-radius: 6px;
    background-color: transparent;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    color: var(--graylight);
    padding: 10px 0;
    text-transform: uppercase;
}

a.blue_btn_outline {
    display: block;
    text-decoration: none;
    border-radius: 2px;
    background: transparent;
    border: 1px solid var(--blue);
    font-weight: 500;
    font-size: 10px;
    text-align: center;
    color: var(--blue);
    padding: 5.5px 16px;
    min-width: 88px;
}

a.btn.blue_btn {
    background-color: var(--blue);
    color: #fff;
}

a.btn.green_btn {
    background-color: #6AD842;
    color: #fff;
}

a.btn.red_btn {
    background-color: #FF6767;
    color: #fff;
}

.modal .modal-close {
    position: absolute;
    top: -30px;
    right: 10px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

body.modalopen {
    overflow: hidden;
}

.wallet-modal .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-modal .row .col-left span {
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    display: block;
    text-align: left;
    color: var(--graylight);
    margin-bottom: 4px;
}

.wallet-modal .row .col-left span.big {
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-align: left;
    color: var(--graydark);
    display: block;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.wallet-modal .row .col-left span.big img {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.btn.small {
    padding: 8px 16px;
    font-size: 12px;
}

.toglerrow {
    align-items: center;
    justify-content: space-between;
    transition: 0.05s;
    display: flex;
    margin-top: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F3F5F9;
}

.toglerrow .col span,
.row.accinfo .col span {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: var(--graylight);
}

.toglerrow .col h5,
.row.accinfo .col h5 {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    color: var(--graydark);
    display: flex;
    align-items: center;
}

.toglerrow .col h5 img,
.row.accinfo .col h5 img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.bottomspace {
    margin-bottom: 16px;
}


/* Location Popup */

.location-modal h2,
.genral-modal h2 {
    margin-bottom: 6px;
}

.location-modal p,
.genral-modal p,
.nointernet-modal p {
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: var(--graylight);
}

.genral-modal p {
    margin-bottom: 16px;
}

.location-modal img {
    max-width: 240px;
    margin: 0 auto 16px;
}

.row_btns {
    display: flex;
}

.row_btns a {
    margin-right: 16px;
}

.row_btns a:last-child {
    margin-right: 0px;
}

.row_btns a {
    width: 100%;
}


/* Option Model */

.option-modal ul li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #F3F5F9;
}

.option-modal ul li:last-child {
    border: none;
}

.option-modal ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.option-modal ul li a span.img {
    padding: 8px;
    margin-right: 16px;
}

.option-modal ul li a span.img img {
    width: 24px;
    height: 24px;
}

.option-modal ul li a h2 {
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: var(--graydark);
}

.option-modal ul li a p {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: var(--graylight);
    margin-top: 4px;
}


/* History Page CSS */

.listing_txn {
    padding-top: 8px;
}

.listing_txn .card {
    position: relative;
}

.listing_txn .card .rowamount span.datetime {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: var(--graylight);
}

.listing_txn .card .rowamount h3 {
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: var(--graydark);
    margin-top: 4px;
}

.listing_txn .card .rowamount span.money {
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    color: var(--graydark);
}

.listing_txn .card .rowamount .col.right {
    display: flex;
    align-items: center;
}

.listing_txn .card .rowamount a.toglerbtn {
    display: block;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    text-align: center;
    padding: 8px;
}

.listing_txn .card .rowamount a.toglerbtn img {
    width: 16px;
    height: 16px;
    display: inline-block;
    transition: 0.5s;
}

.listing_txn .card.open .rowamount a.toglerbtn img {
    transform: rotate(180deg);
}

.listing_txn .card .rowamount {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listing_txn .card .tgglerara {
    display: none;
    border-top: 1px solid #F3F5F9;
    margin-top: 8px;
}

.listing_txn .card.open .tgglerara {
    display: block;
}

.listing_txn .card .tgglerara>h5 {
    font-weight: 500;
    font-size: 12px;
    text-align: left;
    color: var(--graydark);
    margin-top: 8px;
}

.listing_txn .card .tgglerara span.smallinfo {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: var(--graylight);
}

.listing_txn .card .tgglerara .row.accinfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 12px;
}

.contest_cat {
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.contest_cat .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contest_cat .left {
    display: flex;
    align-items: center;
}

.contest_cat .left span.img {
    width: 24px;
    height: 24px;
    border-radius: 32px;
    overflow: hidden;
    margin-right: 8px;
}

.contest_cat .left .text_info h2 {
    font-size: 12px;
    margin: 0 0 2px;
    color: var(--graydark);
    font-weight: 500;
    text-transform: uppercase;
}

.contest_cat .left .text_info p {
    font-size: 10px;
    color: var(--graylight);
}

.lobbylisting_games .card .row {
    align-items: center;
}

.lobbylisting_games .card .row span.small {
    font-size: 8px;
    color: var(--graylight);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.lobbylisting_games .card .row span.small img {
    width: 16px;
    height: 16px;
}

.lobbylisting_games .card .row h5 {
    font-size: 14px;
    color: var(--graydark);
    font-weight: bold;
    display: flex;
    margin-bottom: 8px;
}

.lobbylisting_games .card .row h5 img {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.lobbylisting_games .card a.btnblue {
    display: inline-block;
}

.lobbylisting_games .card .row .right {
    text-align: right;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    width: 150px;
}

.lobbylisting_games .card .row .right .offer_price {
    margin-right: 4px;
    padding: 0 2px;
    position: relative;
    font-size: 14px;
    color: var(--graydark);
    font-weight: 500;
}

.lobbylisting_games .card .row .right .offer_price::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    top: calc(50% - 0.5px);
    background-color: #FF6767;
    border-radius: 2px;
}

.lobbylisting_games .card .bottomText ul li {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 9px;
    font-weight: 500;
    color: var(--graylight);
    padding-right: 4px;
    margin-right: 4px;
    border-right: 1px solid #F3F5F9;
}

.lobbylisting_games .card .bottomText ul li.red {
    color: #ff6767;
}

.lobbylisting_games .card .bottomText ul li.green {
    color: #28dd28;
}

.lobbylisting_games .card .bottomText ul li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.lobbylisting_games .card .bottomText ul li img {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    top: -1px;
    margin-right: 2px;
}

.btn.outline_gray {
    font-size: 10px;
    color: var(--graylight);
    font-weight: bold;
    border-radius: 4px;
    border: 1.5px solid var(--graylight);
    padding: 3px 16px;
}

.content_body {
    padding: 16px;
    min-height: 100vh;
}

.result_container {
    min-height: 85vh;
}

.content_body>.card {
    margin-bottom: 16px;
}

.content_body>.card:last-child {
    margin-bottom: 0;
}

.header_clapsble {
    margin: -8px 0px -8px;
    padding: 12px 0px;
    position: relative;
}

.header_clapsble h2 {
    font-size: 14px;
    color: var(--graydark);
    margin: 0;
    font-weight: 500;
}

.header_clapsble a {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: -8px;
    display: block;
    padding: 12px;
    transition: 0.5s;
}

.card.open .header_clapsble a {
    transform: rotate(180deg);
}

.body_clapsble {
    height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid #F3F5F9;
    margin-top: 0;
}

.card.open .body_clapsble {
    height: auto;
    opacity: 1;
    margin-top: 8px;
    overflow: visible;
}

.con_details .toglerrow {
    margin: 0;
    padding: 0;
    border: none;
    flex-wrap: wrap;
    justify-content: space-between;
}

.con_details .toglerrow .col {
    width: calc(50% - 4px);
    margin-top: 8px;
    position: relative;
    padding-left: 40px;
}

.con_details .toglerrow .col img {
    position: absolute;
    top: calc(50% - 16px);
    width: 32px;
    height: 32px;
    left: 0;
}

.rulesslider {
    margin: 0 -8px 0;
    width: auto;
}

.rulesslider .rule {
    border: 1px solid #FFCC5B;
    display: flex;
    min-height: 100px;
    align-items: center;
    border-radius: 4px;
    padding: 8px;
    margin-top: 8px;
    margin-left: 8px;
}

.rulesslider .rule p {
    font-size: 10px;
    color: #B36916;
    line-height: 16px;
    margin: 0;
}

.genralrule p {
    font-size: 12px;
    color: var(--graylight);
    line-height: 16px;
    font-weight: normal;
    margin-top: 8px;
}

footer {
    background: #fff;
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.08);
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.overlayconfirmation {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.20);
    z-index: 50;
    transition: 0.5s;
}

.overlayconfirmation.open {
    opacity: 1;
    height: 100%;
}

footer .container {
    padding: 0px 16px 8px;
}

footer .container .card {
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #F3F5F9;
    margin-bottom: 8px;
}

.body_clapsble .buy-modal {
    margin-top: 8px;
}

.body_clapsble .buy-modal table {
    margin: 0;
}

.animation {
    position: relative;
    overflow: hidden;
}

.animation::after {
    content: "";
    display: block;
    width: 50px;
    height: 80px;
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    top: calc(50% - 40px);
    transform: rotate( 30deg);
    left: -1%;
    animation: btnanimation 1s linear 0s infinite;
}


/* Splash CSS */

.splash {
    width: 100%;
    min-height: 100vh;
    background-image: url("/assets/images/bg_splash.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.spalsh_content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-around;
    padding: 16px;
    align-items: center;
}

.find_player_content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-around;
    padding: 16px;
    align-items: center;
}

.landscape_view .find_player_content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 16px;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.spalsh_content .main_logo,
.spalsh_content .main_logo img {
    max-width: 249px;
}

.spalsh_content .foot_info,
.spalsh_content .foot_info img {
    width: 100%;
}

.spalsh_content .hero {
    width: 60%;
    max-width: 249px;
}

.game_logo img {
    width: 152px;
    height: 152px;
    border-radius: 16px;
    border: 1px solid #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: scaleanim 1s ease-in-out infinite;
}

.foot_text {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    color: #fff;
    animation: opanim 1s ease-in-out infinite;
}

@keyframes scaleanim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes opanim {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Games Result Screen */


/* .scoreherder {
    border-radius: 0px 0px 8px 8px;
    background: linear-gradient(#08f 0%, #0062ed 100%);
    margin: -16px;
    padding: 40px 16px 56px 16px;
}

.scoreherder .row {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.scoreherder span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.scoreherder h2 {
    font-weight: 900;
    font-size: 52px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.players_score {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.players_score thead tr th {
    background-color: var(--graydark);
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    padding: 9px 4px;
}

.players_score tbody tr.me_user td {
    background-color: rgba(0, 136, 255, 0.2);
}

.players_score tbody tr td {
    background-color: #F3F5F9;
    padding: 8px 4px;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #29314f;
    border-top: 8px solid #fff;
}

.players_score thead tr th,
.players_score tbody tr td {
    text-align: right;
}

.players_score thead tr th:first-child,
.players_score tbody tr td:first-child {
    text-align: left;
    padding-left: 8px;
    border-radius: 8px 0px 0px 8px;
}

.players_score thead tr th:last-child,
.players_score tbody tr td:last-child {
    padding-right: 8px;
    border-radius: 0px 8px 8px 0px;
}

.players_score tbody tr td .user {
    display: flex;
    align-items: center;
}

.players_score tbody tr td .user span {
    display: block;
    margin-right: 8px;
}

.players_score tbody tr td .user span:last-child {
    margin-right: 0;
}

.players_score tbody tr td .user span.img {
    width: 32px;
    flex: 0 0 32px;
    height: 32px;
    border-radius: 40px;
    overflow: hidden;
} */

footer .container.btns {
    padding: 8px 16px;
}

footer .container.btns .row {
    display: flex;
}

footer .container.btns>a {
    margin-top: 8px;
}

footer .container.btns>a:first-child {
    margin-top: 0px;
}

footer .container.btns .row a.btn {
    width: 100%;
}

footer .container.btns .row>a {
    margin-right: 8px;
    border: 2px solid transparent;
}

footer .container.btns .row>a:last-child {
    margin-right: 0;
}

.btn.cancle_btn {
    color: var(--graylight);
    border: 2px solid var(--graylight) !important;
    width: 104px !important;
}

a.btn.dark {
    position: relative;
}

a.btn.dark span {
    position: relative;
    z-index: 2;
    display: block;
}

a.btn.dark:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -2px;
    right: -2px;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.08);
}


/* a.btn.dark.loadinganim::after {
    animation: widthanim 10s linear 0s;
} */

.buttonTimerAnimation::after {
    animation: widthanim 20s linear 0s;
}

#toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgba(0, 136, 255, 0.8);
    color: #ffffff;
    text-align: center;
    border-radius: 12px;
    padding: 14px;
    position: fixed;
    z-index: 999999;
    left: 50%;
    bottom: 30px;
    font-size: 12px;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* SNACKBAR */

#snackbar {
    display: none;
    position: absolute;
    top: -58px;
    left: 0;
    background: rgba(255, 165, 0, 1);
    width: 100%;
    -webkit-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, 0.12), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 14px 0 rgba(0, 0, 0, 0.12), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 14px 0 rgba(0, 0, 0, 0.12), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    line-height: 18px;
    z-index: 99999;
}

#snackbar.show {
    animation: fade-in-down 1s normal forwards;
    display: block;
}

#snackbar p {
    margin: 2px 0;
    padding: 0 8px;
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
}

#snackbar .clear {
    clear: both;
}

#snackbar.show .progress-value {
    animation: progress_load 3s normal forwards;
    width: 100%;
    height: 10px;
    background-color: #00000050;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    animation-delay: 1s;
}

@keyframes progress_load {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

@keyframes fade-in-down {
    0% {
        top: -100px;
        opacity: 0;
    }
    100% {
        top: 56px;
        opacity: 1;
    }
}


/* End Snackbar */


/* Loading Aniation */

.loading_web {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading_web .center_logo,
.loading_web .bg,
.loading_web .loadin_layer,
.loading_web .loadin_icons {
    position: absolute;
    transition: 0.5s;
}

.loading_web .bg,
.loading_web .loadin_layer,
.loading_web .loadin_icons {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loading_web .center_logo {
    width: 56px;
    height: 56px;
    top: calc(50% - 28px);
    left: calc(50% - 28px);
    z-index: 1;
}

.loading_web .bg {
    z-index: 2;
}

.loading_web .loadin_layer {
    z-index: 3;
    animation: loadinganim 1.5s linear 0s infinite;
}

.loading_web .loadin_icons {
    z-index: 4;
}

.loading_web .loadin_icons span.icon {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    transition: 0.5s;
    opacity: 0.5;
    filter: brightness(0);
}

.loading_web .loadin_icons span.icon:nth-child(1) {
    left: calc(50% - 8px);
    top: 2px;
    animation: iconanimation 1.5s linear 0s infinite;
}

.loading_web .loadin_icons span.icon:nth-child(2) {
    top: calc(50% - 8px);
    right: 2px;
    animation: iconanimation 1.5s linear 0.375s infinite;
}

.loading_web .loadin_icons span.icon:nth-child(3) {
    left: calc(50% - 8px);
    bottom: 2px;
    animation: iconanimation 1.5s linear 0.75s infinite;
}

.loading_web .loadin_icons span.icon:nth-child(4) {
    top: calc(50% - 8px);
    left: 2px;
    animation: iconanimation 1.5s linear 1.25s infinite;
}


/* Loading Animation Ended */


/* Matchmaking */


/* Find Players */

.find_player {
    background-color: #111421;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

.find_player_center {
    margin: 10px 0px;
    position: relative;
    width: 280px;
    height: 280px;
}

.find_player_center img.bg_img {
    width: 280px;
    height: 280px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: findplayeranim 3s ease-in-out infinite;
    transition: 0.5s;
}

@keyframes findplayeranim {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(100deg);
    }
    40% {
        transform: rotate(80deg);
    }
    60% {
        transform: rotate(250deg);
    }
    80% {
        transform: rotate(200deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.find_player_center .player_self,
.find_player_center .player_other {
    width: 88px;
    height: 88px;
    background-color: #fff;
    border: 1px solid #fff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    top: calc(50% - 44px);
    transition: 0.5s;
}

.find_player_center .player_self img,
.find_player_center .player_other img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.find_player_center .player_self span.name,
.find_player_center .player_other span.name {
    color: #fff;
    white-space: nowrap;
    text-align: center;
    display: block;
    width: 104px;
    margin-left: -8px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: 0.5s;
}

.find_player_center .player_self {
    left: calc(50% - 44px);
}

.find_player_center .player_other {
    right: calc(50% - 44px);
    opacity: 0;
}

.find_player_center span.vs {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.25em;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0);
    position: absolute;
    z-index: 3;
    width: 24px;
    height: 24px;
    line-height: 24px;
    display: block;
    top: calc(50% - 12px);
    left: calc(50% - 15px);
    opacity: 0;
}

.find_foot_text {
    text-align: center;
}

.find_foot_text p {
    font-weight: normal;
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin-bottom: 16px;
}

.find_foot_text span.counter {
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    color: #f8d16c;
    text-shadow: 0px 3px 26px #f7d16c;
}

.finding_done .find_player_center img.bg_img {
    opacity: 0;
    animation-play-state: paused;
}

.finding_done .find_player_center span.vs {
    opacity: 1;
}

.finding_done .find_player_center .player_self {
    left: 0;
}

.finding_done .find_player_center .player_other {
    opacity: 1;
    right: 0;
}

.finding_done .find_player_center .player_self span.name,
.finding_done .find_player_center .player_other span.name {
    opacity: 1;
}

.landscape_view .main_logo {
    position: absolute;
    right: 5%;
    top: 10%;
    transform: translate(-5%, -10%);
}


/* Matchmaking done */


/* Score Overlay */

.score_overlay .score {
    color: #fff;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.score_overlay .opponent .score {
    padding-right: 5px;
}


/* .score_overlay {
    display: flex;
    align-items: center;
    margin: auto;
    flex-direction: row;
    justify-content: center;
    position: relative;
    text-align: center;
    margin: 10px;
} */


/* .score_overlay {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 10px;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
} */

.score_overlay {
    text-align: center;
    padding: 10px;
    position: absolute;
    background: rgba(0, 0, 0, 1);
    width: 100%;
    vertical-align: middle;
    display: block;
}

.flex_start {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.flex_s {
    flex: 15%;
}

.flex_m {
    flex: 33.33%;
    min-width: 100px;
}

.flex_s .back img {
    width: 30px;
}

.iframe_container.landscape_view .score_overlay {
    width: auto;
}


/* .score_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: flex-start;
    font-size: 14px;
} */

.timer_container {
    color: #fff;
    display: inline-block;
    float: none;
    vertical-align: middle;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    /* position: absolute;
    left: 50%;
    right: 50%; */
}

.score_overlay .self,
.score_overlay .opponent {
    width: 90px;
    justify-content: left;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
}

.score_overlay .self {
    float: left;
    text-align: left;
}

.score_overlay .opponent {
    float: right;
    text-align: right;
}

.score_overlay .self img,
.score_overlay .opponent img {
    border-radius: 50%;
    width: 30px;
    position: relative;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}


/** feedback Form */

.feedback_form {
    width: 100%;
    padding: 10px;
}

.card_title {
    width: 100%;
    text-align: center;
}

.card_title h2 {
    font-size: 18px;
    font-weight: 800;
    text-transform: capitalize;
}

.card_title p {
    font-size: 14px;
    color: #7e7e7e;
    padding-top: 5px;
}

.card_in {
    background: #fff;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 30px 15px;
    border-radius: 4px;
}

.feedback_form input,
.feedback_form select,
.feedback_form textarea {
    border: none;
    outline: none;
    border-bottom: 1px solid #c3c6c8;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    min-height: 55px;
    padding: 10px 5px;
    font-family: 'Roboto', sans-serif;
}

.feedback_form select {
    background-color: #ffffff;
}

input.ng-invalid {
    border-bottom: 1px solid red;
}

a.foot_btn.fullbtn {
    width: 100%;
    background-color: var(--blue);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    max-width: none;
    border-radius: 8px;
    height: auto;
    padding: 10px;
    cursor: pointer;
    outline: none;
    display: block;
    text-decoration: none;
    text-align: center;
}

.zero_padding_top {
    padding-top: 0px;
}


/* Modal Nobody */

.no-match-modal .modal-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

#nomatchfound.landscape_view {
    width: 100vw;
    left: 0;
}

.nobody {
    min-height: 100vh;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nobody .center {
    text-align: center;
}

.nobody .center img {
    max-width: 88px;
    max-height: 88px;
    display: inline-block;
    margin-bottom: 24px;
}

.nobody .center h2 {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.nobody .center p {
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.nobody .row_btns a.btn {
    color: #fff;
}


/* No Internet  */

.nointernet-modal object {
    width: 216px;
    margin: 0 auto;
    display: block;
}

.nointernet-modal h2 {
    margin-top: 10px;
    margin-bottom: 0;
}

.nointernet-modal p {
    margin-top: 5px;
    font-size: 16px;
    margin-bottom: 20px;
}


/* End Feedback Form */


/* How Play Btns */

.how_play {
    display: flex;
}

.how_play a:first-child {
    margin-left: 0;
}

.how_play a {
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 4px;
    transition: 0.5s;
    text-transform: uppercase;
    font-size: 10px;
    color: #29314F;
    text-decoration: none;
    height: 24px;
    line-height: 16px;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
}

.how_play a.close img {
    width: 100%;
    transform: rotate( -90deg);
}

.how_play a.english,
.how_play a.hindi,
.how_play a.close,
.how_play.show a.howplaybtn {
    opacity: 0;
    width: 0;
    padding: 4px 0px;
    margin-left: 0;
}

.how_play.show a.english,
.how_play.show a.hindi,
.how_play.show a.close {
    opacity: 1;
    width: auto;
    min-width: 50px;
    text-align: center;
    padding: 4px 8px;
    margin-left: 4px;
    z-index: 2;
}

.how_play.show a.close {
    width: 24px;
    height: 24px;
    padding: 6px;
    min-width: 0px;
}

.videoWrapper {
    position: absolute;
    padding-bottom: 56.25%;
    height: 0;
    /* width: 100%; */
    left: 0;
    right: 0;
    top: calc(50% - 15%);
    margin: 16px;
    border-radius: 10px;
}

.videoWrapper .close {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #989fbd;
    box-shadow: 0px -3px 6px rgb(0 0 0 / 8%);
    position: absolute;
    top: -8px;
    z-index: 2;
    right: -8px;
    text-align: center;
    font-family: Roboto;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 19px;
    text-align: center;
    color: #989fbd;
    cursor: pointer;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.08);
}

.video_youtube {
    height: 100vh;
}

.youtubevide {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* .video_youtube {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
} */

@media only screen and (max-width: 560px) {
    .modal {
        left: 0;
        right: 0;
        width: 100%;
    }
}

@keyframes widthanim {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@keyframes loadinganim {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes btnanimation {
    from {
        left: -1%;
    }
    to {
        left: 110%;
    }
}

@keyframes iconanimation {
    0% {
        filter: brightness(1);
    }
    25% {
        filter: brightness(0);
    }
    50% {
        filter: brightness(0);
    }
    75% {
        filter: brightness(0);
    }
    100% {
        filter: brightness(0);
    }
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes animatebottom {
    from {
        bottom: -300px;
    }
    to {
        bottom: 0;
    }
}

#modebuymodal.modal.show .modal-body,
#modelwallet.modal.show .modal-body {
    animation: animatebottom 0.5s;
}


/** Lobby V3 ***/


/*contest and history*/

.contaienr {
    max-height: 100vh;
    overflow-y: auto;
}

.contaienr.bottom70 {
    padding-bottom: 70px;
    max-height: 90vh;
}

.contaienr.lobby_list {
    max-height: 75vh;
}

.contaienr.result_container {
    max-height: 90vh;
    min-height: 90vh;
}

.sticky_foot {
    background: url(../images/black_overlay.png) repeat-x center bottom;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding: 15px 10px;
    text-align: center;
}

.fill-color {
    fill: #989FBD;
}

.bottm_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 170px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0px auto;
    padding: 0px 15px;
}

.bottm_btns a {
    width: 50%;
    color: var(--graylight);
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.bottm_btns a span.icon {
    width: 24px;
    height: 24px;
    margin: 0px auto 2px;
    display: block;
}

.bottm_btns a.active {
    color: var(--blue);
}

.bottm_btns a.active .fill-color {
    fill: var(--blue);
}

.lobbylisting_games .card h6 {
    display: flex;
    align-items: center;
    color: var(--blue);
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.lobbylisting_games .card .async h6 {
    color: #0C2CD9;
}

.lobbylisting_games .card .async h6 .info img:hover+.tooltip,
.lobbylisting_games .card .async h6 .info img:focus+.tooltip {
    opacity: 1;
}

.lobbylisting_games .card .async h6 .info .tooltip {
    background-color: #29314f;
    padding: 8px;
    border-radius: 8px;
    position: absolute;
    width: 200px;
    left: calc(50% - 100px);
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    color: #fff;
    top: 24px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    opacity: 0;
}

.lobbylisting_games .card .async h6 .info .tooltip:after {
    content: "";
    position: absolute;
    top: -16px;
    left: calc(50% - 8px);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #29314f transparent;
}

.lobbylisting_games .card h6 .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
}

.lobbylisting_games .card h6 .icon.info {
    margin-right: 0;
    margin-left: 8px;
    position: relative;
}

span.gray_outline {
    display: inline-block;
    color: var(--graylight);
    border: 1px solid var(--graylight);
    font-size: 11px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 4px;
    margin-right: 2px;
    vertical-align: bottom;
}

span.gray_outline img {
    max-width: 8px;
}

.lobbylisting_games .card a.btn span.icon {
    display: inline-block;
    margin-left: 5px;
}

.lobbylisting_games .card a.btn {
    display: flex;
    align-items: center;
}

.lobbylisting_games .card .left {
    width: calc(60% - 75px);
}

.lobbylisting_games .card .row:first-child .left {
    width: 100%;
}

.tag_box {
    display: flex;
}

.lobbylisting_games .card .center {
    width: calc(40% - 75px);
}

.card .bonus_amount {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 10px;
    color: #ff6767;
    font-weight: bold;
    white-space: nowrap;
    margin-top: 5px;
}

.card .bonus_amount img {
    vertical-align: middle;
    margin-right: 2px;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.history_list {
    padding-top: 16px;
}

.history_list h2 {
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    color: #29314f;
    margin: 16px auto 8px;
}

.history_list h2:first-child {
    margin-top: 0;
}

.history_list .card {
    border-radius: 8px;
    background: #fff;
    margin-bottom: 8px;
    cursor: pointer;
}

.history_list .card a {
    text-decoration: none;
}

.top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.top_row p {
    color: var(--graylight);
    font-size: 14px;
    font-weight: bold;
}

.top_row .right_column p {
    display: flex;
    align-items: center;
    color: var(--blue);
    font-size: 12px;
}

.top_row .right_column.async p {
    color: #0C2CD9;
}

.top_row .right_column p span {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.midd_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.midd_row .left_column {
    display: flex;
    align-items: center;
    /* width: 70%; */
}

.midd_row .vs_icn {
    width: 17px;
    margin-right: 15px;
}

.midd_row .left_column p {
    display: flex;
    align-items: center;
}

.midd_row .right_column p {
    font-size: 12px;
    font-weight: bold;
}

.midd_row .avtar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
    margin-right: 10px;
}

.midd_row .avtar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.midd_row .left_column p strong {
    color: var(--graylight);
    font-size: 12px;
    font-weight: 500;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    /* overflow: hidden; */
    /*max-width: 105px; */
}

.midd_row .left_column p strong small {
    margin-top: 2px;
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #989FBD;
}

.btm_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btm_row p {
    color: #686E83;
    font-size: 10px;
    font-weight: 500;
}

.btm_row p span {
    color: #B3B8CE;
}

p.lost_color {
    color: #FE6D00;
}

p.won_color {
    color: #19BE00;
}

.no_history {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    margin: auto;
    height: 50px;
    position: absolute;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.buy-modal h2 {
    text-align: left;
    font-size: 16px;
}

p.no_ticket img {
    display: inline-block;
    vertical-align: middle;
}

p.no_ticket span {
    font-size: 12px;
    padding: 0 5px;
}


/** Lobby V3 ***/


/* Browsers which partially support CSS Environment variables (iOS 11.0-11.2). */

@supports (padding-top: constant(safe-area-inset-top)) {
    .header-container {
        padding-top: calc(constant(safe-area-inset-top) + 8px);
    }
    .main-container {
        padding-bottom: constant(safe-area-inset-bottom);
    }
    footer {
        padding-bottom: constant(safe-area-inset-bottom);
    }
    .spalsh_content {
        padding-top: calc(constant(safe-area-inset-top) + 16px);
        padding-bottom: calc(constant(safe-area-inset-bottom) + 16px);
    }
    #toast {
        bottom: calc(constant(safe-area-inset-bottom) + 30px);
    }
    .sticky_foot {
        padding-bottom: calc(constant(safe-area-inset-bottom) + 15px);
    }
    #modebuymodal.modal.show .modal-body,
    #modelwallet.modal.show .modal-body {
        padding-bottom: calc(constant(safe-area-inset-bottom) + 16px);
    }
    /* .iframe_container {
        padding-bottom: constant(safe-area-inset-bottom);
    } */
    .find_player {
        padding-bottom: constant(safe-area-inset-bottom);
    }
}


/* Browsers which fully support CSS Environment variables (iOS 11.2+). */

@supports (padding-top: env(safe-area-inset-top)) {
    .header-container {
        padding-top: calc(env(safe-area-inset-top) + 8px);
    }
    .main-container {
        padding-bottom: env(safe-area-inset-bottom);
    }
    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .spalsh_content {
        padding-top: calc(env(safe-area-inset-top) + 16px);
        padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
    }
    #toast {
        bottom: calc(env(safe-area-inset-bottom) + 30px);
    }
    .sticky_foot {
        padding-bottom: calc(env(safe-area-inset-bottom) + 15px);
    }
    #modebuymodal.modal.show .modal-body,
    #modelwallet.modal.show .modal-body {
        padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
    }
    /* .iframe_container {
        padding-bottom: env(safe-area-inset-bottom);
    } */
}

.disable {
    display: none;
}


/* GameSkite */

.iframe_container_child {
    position: relative;
    width: 100%;
    height: calc(100vh - 56px);
}

.iframe_container.landscape_view .iframe_container_child {
    height: 100vh;
}


/* Iframe Aspect Ratio */

[style*="--aspect-ratio"]> :first-child {
    width: 100%;
}

[style*="--aspect-ratio"]>img {
    height: auto;
}

@supports(--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }
    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    [style*="--aspect-ratio"]> :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}


/* History Info */

.winners {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s 0s ease-in-out;
}

.card.open .winners {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.winners hr {
    margin-top: 8px;
    display: block;
    border: none;
    border-top: 1px solid #F3F5F9;
}

.winners .width_inc {
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: -8px;
}

.winners table {
    border: none;
    border-spacing: 0;
    width: 100%;
}

.winners table td,
.winners table th {
    padding: 8px;
    border: none;
    text-align: left;
}

.winners table tr th:first-child,
.winners table tr td:first-child {
    padding-left: 16px;
}

.winners table tr th:last-child,
.winners table tr td:last-child {
    padding-right: 16px;
    text-align: right;
}

.winners table tr th {
    font-weight: 500;
    font-size: 12px;
    color: #686e83;
}

.winners table tr td {
    font-weight: 500;
    font-size: 14px;
    color: #686e83;
}

.profile_cell {
    display: flex;
    align-items: center;
}

.profile_cell .left,
.profile_cell .left img {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    flex: 0 0 40px;
    margin-right: 8px;
}

.profile_cell .right {
    max-width: 118px;
}

.profile_cell .right span.name {
    white-space: nowrap;
    text-overflow: clip;
    overflow: hidden;
    display: block;
    width: 100%;
}

.profile_cell .right span.price {
    font-weight: bold;
    font-size: 14px;
    color: #29314f;
    margin-top: 4px;
    display: block;
}

.winners table tr.highlight td {
    background: #0088ff21;
}


/* Loader */

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    height: calc(100vh - 40px);
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.modal-show .overlay,
.loader-show .overlay {
    visibility: visible;
    opacity: 0.4;
}

.loader-show .load {
    opacity: 1;
    visibility: visible;
}

.load {
    visibility: hidden;
    opacity: 0;
    z-index: 1050;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
}

.load {
    position: fixed;
    top: 0px;
    height: 100%;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.20);
}

.load_bg {
    background: #fff;
    padding: 0px;
    border-radius: 8px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.loader {
    color: #0088FF;
    font-size: 6px;
    text-indent: -99999em;
    margin: 0px auto;
    position: absolute;
    width: 10em;
    height: 10em;
    bottom: 0%;
    box-shadow: inset 0 0 0 0.4em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    top: calc(50% - 5em);
    left: calc(50% - 5em);
}

.loader:before,
.loader:after {
    position: absolute;
    content: '';
}

.loader:before {
    width: 5.2em;
    height: 10.2em;
    background: #fff;
    border-radius: 10.2em 0 0 10.2em;
    top: -0.1em;
    left: -0.1em;
    -webkit-transform-origin: 5.2em 5.1em;
    transform-origin: 5.2em 5.1em;
    -webkit-animation: load2 2s infinite ease 1.5s;
    animation: load2 2s infinite ease 1.5s;
}

.loader:after {
    width: 5.2em;
    height: 10.2em;
    background: #fff;
    border-radius: 0 10.2em 10.2em 0;
    top: -0.1em;
    left: 5.1em;
    -webkit-transform-origin: 0px 5.1em;
    transform-origin: 0px 5.1em;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}

@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Loader End */


/* Games Result Screen */


/* .match_name{
    position: relative;
    float: right;
    font-size: 12px;
} */

.result_ui,
.find_player_ui {
    background-color: #111421;
    background-image: linear-gradient(rgba(17, 20, 33, 0.9), rgba(17, 20, 33, 0.9)), url(/assets/images/game_background.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.find_player_ui {
    max-width: 100%;
}

.result_ui .header-container,
.result_ui header {
    background-color: transparent;
    box-shadow: none;
}

.result_ui .result_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 16px;
}

.result_container .first_half {
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
}

.result_container .first_half h3 {
    font-size: 24px;
    font-weight: 300;
}

.result_container .first_half h1 {
    font-size: 100px;
    font-style: italic;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 90px;
}

.result_container .first_half h1.winner {
    color: #D2A131;
    background: linear-gradient(45deg, rgba(186, 148, 62, 1) 0%, rgba(236, 172, 32, 1) 20%, rgba(186, 148, 62, 1) 39%, rgba(249, 244, 180, 1) 50%, rgba(186, 148, 62, 1) 60%, rgba(236, 172, 32, 1) 80%, rgba(186, 148, 62, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 1.5s infinite;
    background-size: 200%;
    background-position: left;
}

@keyframes shine {
    to {
        background-position: right
    }
}

.result_container .first_half span.score {
    display: block;
    width: 100%;
    padding: 10px 0px;
    font-size: 24px;
    font-weight: bold;
}

.result_container .custom-canvas {
    position: absolute;
    width: 100%;
    height: 150%;
    top: -25%;
    left: 0;
}

.gradiant_score {
    position: relative;
    background-image: linear-gradient(to right, rgba(0, 136, 255, 0), rgba(0, 136, 255, 0.3), rgba(0, 136, 255, 0));
}

.gradiant_score::before,
.gradiant_score::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 136, 255, 0), rgba(0, 136, 255, 0.3), rgba(0, 136, 255, 0));
}

.gradiant_score::before {
    top: 0;
}

.gradiant_score::after {
    bottom: 0;
}

.result_container .winner_table {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
}

.result_container .winner_table .header {
    display: flex;
    border-radius: 8px;
    background: #29314F;
    font-size: 14px;
    color: #fff;
    padding: 10px 0px;
    font-weight: 500;
    margin-bottom: 8px;
}

.result_container .winner_table .header .rank,
.result_container .winner_table ul.user_list li .rank_data {
    width: 70%;
    flex: 0 0 70%;
    padding-left: 8px;
}

.result_container .winner_table ul.user_list li .rank_data.async_waiting {
    width: 100%;
    flex: 0 0 100%;
}

.result_container .winner_table .header .score,
.result_container .winner_table .header .price,
.result_container .winner_table ul.user_list li .score_data,
.result_container .winner_table ul.user_list li .price_data {
    width: 15%;
    flex: 0 0 15%;
}

.result_container .winner_table .header .price,
.result_container .winner_table ul.user_list li .price_data {
    padding-right: 8px;
    text-align: right;
}

.result_container .winner_table ul.user_list {
    padding: 0px;
    margin: 0px;
}

.result_container .winner_table ul.user_list li:last-child {
    margin-bottom: 0px;
}

.result_container .winner_table ul.user_list li {
    list-style: none;
    padding: 8px 0px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.result_container ul.user_list li .rank_data {
    display: flex;
    align-items: center;
}

.result_container ul.user_list li .rank_data span.number {
    width: 16px;
    flex: 0 0 16px;
    display: block;
}

.result_container ul.user_list li .rank_data span.profile {
    width: 32px;
    flex: 0 0 32px;
    height: 32px;
    border-radius: 32px;
    overflow: hidden;
    display: block;
    margin-right: 8px;
}

.result_container ul.user_list li .rank_data span.name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 16px;
    text-overflow: ellipsis;
}

.result_container .table_id {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: #B3B8CE;
    text-align: center;
}

.branding {
    text-align: center;
}

.branding img {
    width: 110px;
    margin-top: 24px;
    display: inline-block;
}

.result_ui footer {
    background-color: transparent;
    box-shadow: none;
}

footer .container.btns {
    padding: 8px 16px;
}

footer .container.btns .row {
    display: flex;
}


/* footer .container.btns>a:first-child {
    margin-top: 0px;
} */

footer .container.btns .row a.btn {
    width: 100%;
}

footer .container.btns .row>a {
    margin-right: 8px;
    border: 2px solid transparent;
}

footer .container.btns .row>a:last-child {
    margin-right: 0;
}

.btn.cancle_btn {
    color: var(--graylight);
    border: 2px solid var(--graylight) !important;
    width: 104px !important;
}

a.btn.dark {
    position: relative;
}

a.btn.dark span {
    position: relative;
    z-index: 2;
    display: block;
}

a.btn.dark:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -2px;
    right: -2px;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.08);
}

a.btn.dark.loadinganim::after {
    animation: widthanim 10s linear 0s;
}

footer .container.btns .btn {
    margin-top: 8px;
    border: 2px solid transparent;
}

.result_container .first_half .loading_div {
    display: none;
}


/* .result_container .first_half.loading h1 {
    display: none;
} */

.result_container .first_half.loading .loading_div {
    display: block;
    margin: 13px auto;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--blue);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.result_container .score_saved {
    margin-bottom: 48px;
}

.result_container .score_saved .find_match_header p {
    max-width: 300px;
    margin: 0 auto;
}

.result_container ul.user_list li .rank_data span.name small {
    display: block;
    margin-top: 2px;
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: #fff;
}

.result_container ul.user_list li .tooltip {
    position: absolute;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    z-index: 10;
    top: 50px;
}

.result_container ul.user_list li .tooltip h2 {
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    color: #29314f;
    margin-bottom: 8px;
}

.result_container ul.user_list li .tooltip p {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: #686e83;
}

.result_container ul.user_list li .tooltip a.close {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    /* filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16)); */
    padding: 7px;
    border-radius: 50%;
    top: -10px;
    right: -10px;
}

.result_container ul.user_list li .tooltip:after {
    content: "";
    position: absolute;
    top: -16px;
    left: 38px;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}


/* Games Result Screen End */


/* Player Matching Start */

.find_player_ui .contaienr>.row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 32px);
}

.find_player_ui .contaienr>.row .first {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 0 0 100%;
    min-height: calc(100vh - 64px);
}

.find_match_header {
    text-align: center;
    color: #fff;
}

.find_match_header h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 4px;
}

.find_match_header p {
    font-size: 14px;
    font-weight: 500;
}

.find_match_header p span {
    display: inline-block;
}

.find_match_header p img {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    margin: 0;
    top: 5px;
}

.find_match_header p span.winer {
    color: #F8D16C;
}

.find_match_header p span.dash {
    margin: 0 8px;
}

.find_match_header p span.fee {
    color: #5ACC5A;
}

.player_find .row {
    display: flex;
    align-items: center;
}

.player_find .row .center {
    width: 10%;
    flex: 0 0 10%;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: -5px;
    text-align: center;
    color: #fff;
    margin: 0;
}

.player_find .row .left,
.player_find .row .right {
    width: 45%;
    flex: 0 0 45%;
}

.player_find .player,
.player_find .loading,
.player_find .async_battle,
.player_find .async_battle_saved {
    text-align: center;
    position: relative;
    height: 88px;
}

.player_find .player img,
.player_find .async_battle_saved .user_profile>img {
    display: block;
    width: 88px;
    height: 88px;
    border: 2px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0;
}

.player_find .player span.name,
.player_find .loading span.name,
.player_find .async_battle_saved span.name {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-top: 16px;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.start_time {
    display: block;
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    color: #fff;
}

.start_time span {
    color: #F8D16C;
}

.player_find .loading .secound,
.player_find .async_battle .async_icon {
    display: block;
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin: auto;
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid #2a314d;
    border-radius: 50%;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #f8d16c;
}

.player_find .loading svg {
    width: 88px;
    height: 88px;
    position: absolute;
    top: 0;
    left: calc(50% - 44px);
    transform: rotate(-90deg);
}

.player_find .loading svg .circle {
    stroke-dasharray: 270;
    stroke-dashoffset: 0;
}

.player_find .loading svg .circle.dash {
    animation: dash 30s linear 0s 1 normal;
}

.player_find .async_battle .async_icon img {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
}

.player_find .async_battle .tooltip,
.player_find .async_battle_saved .tooltip {
    position: absolute;
    background: #fff;
    width: 264px;
    border-radius: 8px;
    padding: 8px;
    right: calc(50% - 132px);
    margin-right: 90px;
    bottom: 0;
    margin-bottom: -90px;
    transition: 0.5s;
}

.player_find .async_battle .tooltip::after,
.player_find .async_battle_saved .tooltip:after {
    content: "";
    position: absolute;
    top: -16px;
    right: 32px;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.player_find .async_battle .tooltip h2,
.player_find .async_battle_saved .tooltip h2 {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #29314f;
}

.player_find .async_battle_saved .user_profile {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto;
}

.player_find .async_battle_saved .user_profile .async_icon {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.main-container.landscape .result_container .score_saved {
    margin-bottom: 0px;
}

.landscape .score_saved .find_match_header {
    margin-bottom: 0;
}


/* Player Matching End */


/* When landscape On Start */

.main-container.landscape {
    max-width: 100%;
    height: 100vh;
    /*change by dev */
    overflow: hidden;
}

.main-container.landscape .branding {
    display: none;
}

.main-container.landscape .result_container>.row {
    display: flex;
    align-items: center;
}

.main-container.landscape .result_container .row>div {
    width: 50%;
    flex: 0 0 50%;
}

.main-container.landscape .result_container .row>div:first-child {
    padding-right: 8px;
}

.main-container.landscape .result_container .row>div:last-child {
    padding-left: 8px;
}

.main-container.landscape .result_container {
    padding: 16px;
}

.main-container.landscape .result_container .winner_table {
    padding: 4px;
}

.main-container.landscape .result_container .winner_table .header {
    margin-bottom: 4px;
    font-size: 12px;
    padding: 6px 0px;
}

.main-container.landscape .result_container .winner_table ul.user_list li {
    margin-bottom: 4px;
    padding: 4px 0px;
    position: relative;
}

.main-container.landscape .result_container {
    justify-content: center;
}

.main-container.landscape footer .container.btns {
    display: flex;
    justify-content: center;
}

.main-container.landscape footer .container.btns>.green_btn,
.main-container.landscape footer .container.btns>.blue_btn,
.main-container.landscape footer .container.btns>.row {
    width: calc(50% - 8px);
}

.main-container.landscape footer .container.btns>.green_btn {
    margin-right: 16px;
}


/* Find Player Screen Landscap Start */

.landscape.find_player_ui .contaienr>.row .first {
    justify-content: center;
}

.landscape .player_find .async_battle .tooltip {
    margin-bottom: -70px;
}

.landscape .player_find .async_battle_saved .tooltip {
    margin-bottom: -80px;
}

.landscape .find_match_header {
    margin-bottom: 16px;
}


/* Find Player Screen Landscap End */


/* When landscape On End */


/* 22 Dec Changes Start */

.result_container ul.user_list li .rank_data span.name small {
    white-space: normal;
}

.find_match_header h2 span.check {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #5acc5a;
    border-radius: 50%;
    padding: 8px 6px;
    position: relative;
    top: 3px;
}

.find_match_header p.dis {
    display: none;
}

.result_container .por_dis {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    max-width: 264px;
    margin: 10px auto 0;
}

.landscape .find_match_header p.dis {
    display: block;
}

.landscape .result_container .por_dis {
    display: none;
}


/* 22 Dec Changes End */


/* Game Loading Css Start */

.gamelogo {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.gameloading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #29314f;
    opacity: 0.7;
    padding: 7px;
}

.loading_strock {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 2px;
}

.gameloading .loading_strock svg {
    margin: 0 auto;
    transform: rotate(-90deg);
    background: transparent;
    border-radius: 50%;
    display: block;
}

.gameloading .loading_strock svg circle {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 10;
    stroke-dasharray: 0 32;
    /* transition: stroke-dasharray 3s ease; */
}


/* Game Loading Css End */


/* Repport Modal, Wallet Modal css*/

#reportproblem {
    width: 100%;
}

#reportproblem .modal-body {
    max-width: 560px;
    overflow: auto;
}

#modelwallet {
    width: 100%;
}

#modelwallet .modal-body {
    max-width: 560px;
    overflow: auto;
}


/*---Loading Image For HowToPlay Iframe---*/

.iframe_howtoplay {
    background-size: 30%;
    background-image: url('/assets/images/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    background-color: #111421;
}

@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 270;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 270;
    }
}


/* custom Debugger */

.debugger_custom {
    display: none;
    width: 100%;
    height: 100vh;
    overflow: auto;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    color: #fff;
    max-width: 560px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 30px;
}

.debugger_custom.show {
    display: block;
}

.debugger_custom ul {
    list-style: auto;
}

.debugger_custom ul li {
    border-bottom: 1px solid #ffffff;
    padding: 10px;
}

.debugger_custom ul li p {
    font-size: 14px;
    line-height: 20px;
    word-break: break-word;
}

.log_toggler {
    position: fixed;
    width: auto;
    bottom: 10%;
    max-width: 560px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: block;
    background: #fff;
}


/*-----Dev Changes -------*/

.result_container .first_half h2 {
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 90px;
}

.matchfound_overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 1);
    z-index: 2;
    cursor: none;
}

#countdownTimer {
    width: 200px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 45%;
    margin-left: -100px;
    color: white;
    font-size: 1em;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    /* solve for flicker problem */
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden
}

#countdownTimer.puffer {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scale(1.6, 1.6);
    -moz-transform: scale(1.6, 1.6);
    -ms-transform: scale(1.6, 1.6);
    -o-transform: scale(1.6, 1.6);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}

.matchfound_overlay .text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: #fff;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}


/*----- Dev Changes End-----*/


/* 100% Cash Bonus Start  */

.lobbylisting_games .card a.fullbonus {
    background: linear-gradient(#bd7cff 0%, #9a2ddd 100%);
}

.lobbylisting_games .card .right span.leble {
    background: linear-gradient(to right, #ffba00 0%, #ff4141 100%);
    margin-right: -8px;
    margin-top: -4px;
    font-size: 12px;
    padding: 3px 8px 3px 24px;
    white-space: nowrap;
    color: #ffffff;
    font-weight: 500;
    position: relative;
}

.lobbylisting_games .card .right span.leble img {
    display: inline-block;
    filter: brightness(0) invert(1);
    width: 16px;
    height: 16px;
    position: absolute;
    top: calc(50% - 8px);
    left: 4px;
}

.lobbylisting_games .card .right span.leble::after {
    content: "";
    height: 20px;
    width: 5px;
    background-image: url(/assets/images/lebel_first.svg);
    display: block;
    position: absolute;
    top: 0;
    left: -5px;
}

.lobbylisting_games .card .right .normal_text {
    font-size: 11px;
    font-weight: 500;
    color: #686E83;
}


/* 100% Cash Bonus End  */


/* Turnamment Css Start */

.lobbylisting_games .card .row .left {
    text-align: left;
}

.lobbylisting_games .card.tournamentCard .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.lobbylisting_games .card.tournamentCard h6 {
    color: #7C2BC1;
}

.lobbylisting_games .card.tournamentCard span.time {
    font-weight: 500;
    font-size: 12px;
    text-align: right;
    color: #686e83;
    margin: 0;
}

.lobbylisting_games .card.tournamentCard .row h5 {
    margin-bottom: 0;
    font-size: 22px;
}

h5.winnings {
    font-size: 22px;
}

.lobbylisting_games .card.tournamentCard .left,
.lobbylisting_games .card.tournamentCard .right {
    width: 100%;
    padding: 0;
}

.lobbylisting_games .card.tournamentCard .row.tournament_row {
    margin-bottom: 8px;
}

.lobbylisting_games .card.tournamentCard .row.tournament_row>.left,
.tournament_info .tournament_row>.left {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 0;
    margin: 0 8px 0 0;
}

.lobbylisting_games .card.tournamentCard .row.tournament_row>.left img,
.tournament_info .tournament_row>.left img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.tournament_info .row.tournament_row>.right,
.lobbylisting_games .card.tournamentCard .row.tournament_row>.right {
    flex-direction: column;
}

.tournament_info .process,
.lobbylisting_games .card.tournamentCard .process {
    margin: 8px 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #f3f5f9;
}

.tournament_info .process span.fill,
.lobbylisting_games .card.tournamentCard .process span.fill {
    transition: 0.5s;
    display: block;
    height: 4px;
    border-radius: 2px;
    background: #08f;
}

.tournament_info span.spots,
.lobbylisting_games .card.tournamentCard span.spots {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: #989fbd;
    display: block;
}

span.gray_outline {
    display: flex;
    align-items: center;
}

span.gray_outline img {
    max-width: 10px;
}

span.gray_outline span.text {
    margin-right: 9px;
    margin-left: 4px;
}

.userProfile {
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(0, 136, 255, 0.1);
}

.card.tournamentCard .userProfile .profile {
    display: flex;
    align-items: center;
    width: 100%;
}

.card.tournamentCard .userProfile .profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.card.tournamentCard .userProfile .profile .info {
    width: 100%;
}

.card.tournamentCard .userProfile .profile .info .name {
    display: block;
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    text-align: left;
    color: #29314f;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card.tournamentCard .userProfile .profile .info .price {
    font-weight: normal;
    font-size: 12px;
    line-height: normal;
    text-align: left;
    color: #686e83;
    display: block;
}

ul.profile_stats {
    display: flex;
    align-items: center;
}

ul.profile_stats li:first-child {
    margin-left: 0;
}

ul.profile_stats li {
    list-style: none;
    margin-left: 20px;
}

ul.profile_stats li span.head_small {
    font-weight: normal;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    color: #686e83;
    display: block;
}

ul.profile_stats li span.dark {
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #29314f;
    display: block;
}

.tooltip_new {
    display: block;
    position: relative;
    /* making the .tooltip span a container for the tooltip text */
}

.tooltip_new:before {
    content: attr(data-text);
    position: absolute;
    width: 70px;
    padding: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    display: none;
    z-index: 100;
    font-size: 10px;
    font-weight: 500;
    box-sizing: border-box;
}

.tooltip_new:before {
    bottom: calc(100% + 8px);
    left: calc(50% - 35px);
}

.tooltip_new:hover:before {
    display: block;
}

.tooltip_new::after {
    content: "";
    display: block;
    border: 4px solid rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
    /* background:; */
    position: absolute;
    top: -8px;
    left: calc(50% - 2px);
    display: none;
}

.tooltip_new:hover::after {
    display: block;
}

.lobbylisting .card a.buynow.rejoin,
.lobbylisting_games .card a.btnblue.rejoin {
    padding-top: 10px;
    padding-bottom: 2px;
    position: relative;
    background: linear-gradient(#696e81 0%, #2a314d 100%);
}

.lobbylisting .card a.buynow.rejoin span.rejoin_text,
.lobbylisting_games .card a.btnblue.rejoin span.rejoin_text {
    position: absolute;
    top: 2px;
    display: block;
    width: 100%;
    left: 0;
    font-weight: 500;
    font-size: 8px;
    text-align: center;
    color: #fff;
    text-transform: none;
}

.top_row .right_column.turnament_icon p {
    color: #7C2BC1;
}

.highrank_row {
    margin-bottom: 8px;
}

.highrank_row ul {
    margin: 0;
    padding: 0;
    border: 1px solid #F3F5F9;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.highrank_row ul li:first-child {
    border: none;
}

.highrank_row ul li {
    list-style: none;
    width: 100%;
    padding: 8px;
    border-left: 1px solid #F3F5F9;
}

.highrank_row ul li span {
    display: block;
}

.highrank_row ul li span.head {
    font-weight: normal;
    font-size: 12px;
    line-height: normal;
    text-align: left;
    color: #686e83;
    margin-bottom: 4px;
}

.highrank_row ul li span.dark_data {
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    text-align: left;
    color: #29314f;
}

.highrank_row ul li span.dark_data.won {
    color: #19BE00;
}

.body_header {
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    position: sticky;
    top: 0;
}

.tournament_info .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tournament_info h6 span.icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
}

.tournament_info h6 {
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #7c2bc1;
    display: flex;
    align-items: center;
}

.tournament_info span.time {
    font-weight: 500;
    font-size: 12px;
    text-align: right;
    color: #686e83;
    display: block;
}

.mb_8 {
    margin-bottom: 8px;
}

.tournament_info .tournament_row>.right {
    width: 100%;
}

ul.text_info_list {
    margin: 0;
    padding: 0;
}

ul.text_info_list li:last-child {
    margin-bottom: 0;
}

ul.text_info_list li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

ul.text_info_list li p {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    color: #B3B8CE;
}

ul.text_info_list li p b {
    color: #686E83;
}

ul.text_info_list li img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.leader_board,
.winningRank,
.tourRoules {
    border-radius: 8px;
    background: #fff;
    margin-bottom: 16px;
    margin-top: 16px;
    overflow: hidden;
}

ul.user_list {
    margin: 0;
    padding: 0;
}

ul.user_list li {
    display: flex;
    align-items: center;
}

ul.user_list li:last-child {
    border-bottom: none;
}

ul.user_list li {
    padding: 12px 0;
    margin: 0 8px;
    border-bottom: 1px solid #F3F5F9;
}

ul.user_list li.user_me {
    margin: 0;
    padding: 12px 8px;
    border: none;
    background: rgba(0, 136, 255, 0.1);
}

ul.user_list li span.rank {
    min-width: 50px;
}

ul.user_list li span.rank,
ul.user_list li span.user_profile .user_info .name,
ul.user_list li span.score {
    font-weight: bold;
    font-size: 14px;
    color: #29314f;
}

ul.user_list li span.user_profile {
    display: flex;
    align-items: center;
    width: 100%;
}

ul.user_list li span.user_profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
}

ul.user_list li span.user_profile .user_info .name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

ul.user_list li span.score {
    text-align: right;
}

ul.user_list li span.user_profile .user_info .prize {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: #686e83;
    display: block;
    margin-top: 4px;
}

.table_header {
    border-radius: 8px 8px 0px 0px;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.table_header span {
    display: block;
    font-weight: bold;
    font-size: 12px;
    color: #686e83;
    padding: 8px;
}

.table_header span.rank {
    min-width: 98px;
}

.table_header span.score {
    text-align: right;
}

.table_header span.prize {
    width: 100%;
}

.tabs {
    margin-bottom: -16px;
    margin-left: -16px;
    margin-right: -16px;
}

.tabs ul {
    margin: 0;
    padding: 0 16px;
    display: flex;
    position: relative;
}

.tabs ul li {
    list-style: none;
    width: 100%;
}

.tabs ul li a {
    display: block;
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #989fbd;
    position: relative;
    transition: 0.5s;
    outline: none;
    background: transparent;
}

.tabs ul li.active a {
    color: #0088FF;
}

.tabs .slider {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 2px 2px 0px 0px;
    background: transparent;
    transition: 0.5s;
    background-color: #0088FF;
}

.tab_container {
    overflow: hidden;
}

.our_tabs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.our_tabs>.tab-data {
    width: 100%;
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    -o-flex: 0 0 100%;
    flex: 0 0 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.our_tabs>.tab-data.active {
    height: auto;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.p0 {
    padding: 0;
}

.tab_container {
    padding: 16px;
}

.winningRank {
    margin: 0;
}

.winningRank .table_header {
    padding: 8px;
    justify-content: space-between;
}

.rank_table ul {
    margin: 0;
    padding: 8px;
}

.rank_table ul li:nth-child(2n+1) {
    background-color: transparent;
}

.rank_table ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    border-radius: 4px;
    background: #f3f5f9;
}

.rank_table ul li span {
    font-weight: bold;
    font-size: 14px;
    display: block;
    color: #29314f;
}

.rank_table ul li span.rank {
    color: #989FBD;
}

.not_joined_info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.not_joined_info img {
    width: 16px;
    height: 16px;
}

.not_joined_info span.text {
    font-weight: normal;
    font-size: 14px;
    text-align: left;
    color: #29314f;
    margin-left: 8px;
}

.m0 {
    margin: 0;
}

.tourRoules {
    padding: 8px;
}

.tourRoules h2 {
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    color: #29314f;
    margin-bottom: 10px;
}

.tourRoules ol {
    padding-left: 16px;
}

.tourRoules ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
}

.tourRoules ol li:last-child {
    margin: 0;
}

.tourRoules p,
.tourRoules ol li {
    font-weight: normal;
    font-size: 14px;
    text-align: left;
    color: #989fbd;
    line-height: 20px;
}

.tornmentFooter {
    padding: 16px;
    text-align: center;
}

.tornmentFooter .bonus_life {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tornmentFooter .bonus_life span.icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.tornmentFooter .bonus_life {
    font-weight: 500;
    font-size: 14px;
    color: #ff6767;
    margin-bottom: 5px;
}

.tornmentFooter .no_changes {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #686e83;
}

.tornmentFooter .no_changes b {
    color: #29314F;
}

.tornmentFooter p.time {
    font-weight: normal;
    font-size: 12px;
    text-align: center;
    color: #686e83;
}

.tornmentFooter p.time b {
    color: #686E83;
}

a.footbtn {
    width: 100%;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: linear-gradient(#418aff 0%, #3679f8 100%);
    color: #fff;
    text-transform: uppercase;
    font-family: Roboto;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #fff;
    padding: 16px;
    margin: 8px 0;
}

a.footbtn span.icon {
    margin-left: 4px;
}

a.footbtn.rejoin {
    background: linear-gradient(#696e81 0%, #2a314d 100%);
}

.tornmentFooter.fixed {
    position: fixed;
    width: 560px;
    left: auto;
    right: auto;
    bottom: 0;
}

@media only screen and (max-width: 560px) {
    .tornmentFooter.fixed {
        width: 100%;
        left: 0;
        right: 0;
    }
}


/* Turnamment Css End */


/* Turnamment Result Css Start */

ul.small_tabs {
    padding: 0;
    margin-bottom: 16px;
}

ul.small_tabs li {
    width: auto;
    margin-left: 8px;
}

.mt16 {
    margin-top: 16px;
}

.mb0 {
    margin-bottom: 0 !important;
}

.tournamentResult .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: calc(100vh - 32px);
}

.tournamentResult .row .top {
    width: 100%;
}

.tournamentResult ul.tourResult {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tournamentResult ul.tourResult li {
    list-style: none;
    text-align: center;
}

.tournamentResult ul.tourResult li span.small {
    display: block;
    font-family: Roboto;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin-bottom: 4px;
}

.tournamentResult ul.tourResult li span.data {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.prfoile_loading {
    width: 92px;
    height: 92px;
    padding: 4px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.prfoile_loading img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 5;
}

.prfoile_loading .outer_loader {
    position: absolute;
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: 0;
}

.prfoile_loading .outer_loader img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    animation: loadinganim 1.5s linear 0s infinite;
}

.tournamentResult .ran_cal {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-top: 16px;
    display: block;
    transition: 0.5s;
    animation: deepEffect 1.5s linear 0s infinite;
}

@keyframes deepEffect {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.landscape .tournamentResult .row {
    flex-direction: row;
    flex-wrap: wrap;
}

.landscape .tournamentResult .row>div {
    width: 50%;
}

.main-container.landscape .tournamentResult .branding {
    display: block;
}

.landscape .tournamentResult ul.tourResult {
    flex-direction: column;
}

.landscape .tournamentResult ul.tourResult li {
    margin-top: 16px;
}

.landscape .tournamentResult ul.tourResult li:first-child {
    margin-top: 0;
}

.tournamentResult .branding img {
    margin-top: 0;
}

.tournamentResult {
    position: relative;
}

.tournamentResult .custom-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Turnamment Result Css End */