@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');

body { font-family: "Josefin Sans", sans-serif; line-height:1.3; font-size:15px; margin:0 auto; color:#fff; background: #40486c; }

a { text-decoration: none; cursor:pointer; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }

a:hover, a:focus { text-decoration: none; }

img { max-width:100%;}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #666;
    width: 100%;
}
button:focus,input:focus, select:focus {
    outline: none;
}

/** Floating Bubble **/
.float-container {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
}
#toggle {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.chat-contact {
    color: #031b33;
    font-size: 40px;
}
.close-contact {
    color: #fff;
    display: none;
    font-size: 20px;
    line-height: 0;
}
#toggle:checked + .menu__toggle > .menu__button .chat-contact {
   display: none;
}
#toggle:checked + .menu__toggle > .menu__button .close-contact {
  display: block;
}

#toggle:checked + .menu__toggle > .menu__button {
  background: #031b33;
--d: 70px;
}

#toggle:checked ~ .menu-round .menu__item:nth-child(1) {
  transition: all 250ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
  transform: translate3d(0, -5em, 0);
}
#toggle:checked ~ .menu-round .menu__item:nth-child(2) {
  transition: all 250ms 100ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
  transform: translate3d(-3.5em, -3.5em, 0);
}
#toggle:checked ~ .menu-round .menu__item:nth-child(3) {
  transition: all 250ms 200ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
  transform: translate3d(-5em, 0, 0);
}   
.menu__button {
    --d: 90px;
    width: var(--d);
    height: var(--d);
    background: #e7e39d;
    border: 4px solid #e7e39d;
    border-radius: 50%;
    position: absolute;
    bottom: calc(25px / 2);
    right: calc(25px / 2);
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 100ms ease;
    z-index: 2;
}
.menu__button:hover {
    transform: scale(1.08);
}
.menu-round {
    width: 70px;
    height: 70px;
    position: relative;
    z-index: 1;
    left: -20px;
    top: -30px;
}
.menu__item {
    color: #fff;
    padding: 5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    transition: all 250ms;
}
.menu__item i {
    font-size: 30px;
    color: #fff;
}
.menu__item i.fab.fa-whatsapp {
    font-size: 36px;
}
.menu__item:nth-child(1) {
  background: #00bae9;
}
.menu__item:nth-child(2) {
  background: #26b200;
}
.menu__item:nth-child(3) {
  background: #727272;
}


/** Header **/
.nflex-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.login-btn {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    border: 1px solid #697aa7;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    width: 140px;
    padding: 6px 2px 2px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.login-btn:hover {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
}
.login-btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    height: 40px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index:  -1;
    filter: brightness(1.3);
    transition: 0.3s ease-in-out;
}
.login-btn:hover:before {
    -webkit-transform: translateX(0);
          transform: translateX(0);
}
.register-btn {
    background: linear-gradient(to bottom, rgba(255,235,181,1) 0%, rgba(186,167,119,1) 100%);
    border: 1px solid #fffeb2;
    border-radius: 5px;
    color: #42330e;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    width: 140px;
    padding: 6px 2px 2px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
}
.register-btn:hover {
    background: linear-gradient(to bottom, rgba(255,235,181,1) 0%, rgba(186,167,119,1) 100%);
}
.register-btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255,235,181,1) 0%, rgba(186,167,119,1) 100%);
    height: 40px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index:  -1;
    filter: brightness(1.3);
    transition: 0.3s ease-in-out;
}
.register-btn:hover:before {
    -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header-menu {
    background: #445174;
    color: #fff;
    position: relative;
    padding: 0 15px;
    border-bottom: 1px solid #59688f;
}
.header-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.logo img {
    max-height: 50px;
}
.menu-center {
    display: flex;
    align-items: center;
}
ul.nav.main-nav li a.navlink {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 22px 13px;
    height: 100%;
    display: inline-block;
}
ul.nav.main-nav li:hover a.navlink {
    background: #222944;
    color: #dfc787;
}
.dropmenu {
    background: url(../images/dropdown-bg.jpg)no-repeat top center;
    background-size: cover;
    box-shadow: inset 0px 7px 5px -4px rgba(0, 0, 0, 0.5), 0px 7px 5px -4px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    opacity: 0;
    padding: 15px 0;
    visibility: hidden;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    visibility: hidden;
}
.main-nav li.nav-item:hover .dropmenu {
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}
.dm-item {
    display: inline-block;
    position: relative;
    margin: 4px 4px;
    max-width: 9%;
}
.prv-name {
    background: #445174;
    color: #dfc787;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0 0 5px 5px;
}
.play-btn {
    display: block;
    color: #dfc787;
    border: 1px solid #dfc787;
    border-radius: 4px;
    padding: 6px 2px 2px;
    max-width: 90px;
    margin: auto;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
}
.play-btn:hover {
    background: #dfc787;
    color: #222944;
    box-shadow: 0 2px 5px rgb(0,0,0,0.7);
}
.dm-item:hover .prv-name {
    color: #222944;
    background: #dfc787;
}
.dm-item:hover img {
    filter: brightness(0.5);
}
.dm-item:hover .play-btn {
    transition-delay: 0.3s;
    transition: 0.3s;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.player-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.player-wrapper {
    background: #222944;
    color: #fff;
    border-radius: 5px;
    display: flex;
    padding: 5px 10px;
    align-items: center;
    height: 50px;
    margin: 0 0 0 auto;
}
.welcome-player {
    font-size: 12px;
    margin-bottom: 2px;
}
.yellow-text {
    color: #dfc787;
}
.balance-box {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(to bottom, rgba(255,235,181,1) 0%, rgba(186,167,119,1) 100%);
    border: 1px solid #fffeb2;
    border-radius: 5px;
    color: #42330e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 3px 0 5px;
    max-width: 138px;
}
a.refresh-icon {
    color: #42330e;
    margin: 0 3px;
    font-size: 11px;
}
.cplayer-option {
    display: flex;
    align-items: center;
    margin-left: 5px;
}
a.wbox {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    border: 1px solid #697aa7;
    height: 33px;
    width: 33px;
    font-size: 16px;
    color: #c5d0ed;
    text-align: center;
    padding: 5px;
    border-radius: 3px;
    box-shadow: inset 0px -2px 5px 0px rgba(0,0,0,0.75);
    filter: drop-shadow(0px 2px 1px rgb(0,0,0,0.8));
    margin: 0 2px;
}
a.wbox:hover {
    background: linear-gradient(to top, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    color: #dfc787;
}
a.wbox:hover i {
    filter: drop-shadow(0 0 1px #dfc787);
}
.quick-menu {
    margin: 0 5px; 
}
.quick-menu a {
    color: #dfc787;
    font-size: 13px;
    position: relative;
}
.quick-menu a:hover {
    color: #fff;
}
.quick-menu a::after {
    content: '|';
    display: inline-block;
    padding: 0 5px;
    color: #dfc787;
}
.quick-menu a:last-child::after {
    content: none;
}
.balance-wrap {
    position: relative;
    cursor: pointer;
}
.balance-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    z-index: 99;
    max-height: 550px;
    overflow: auto;
}
.balance-content::-webkit-scrollbar {
    width: 3px;
}
.balance-content::-webkit-scrollbar-track {
  background: #EFEFEF;
}
.balance-content::-webkit-scrollbar-thumb {
  background: #445174;
}
.balance-wrap:hover .balance-content {
    display: block;
}
.summary-wrapper {
    background: #fff;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 2px 0px;
    font-size: 13px;
    padding-bottom: 10px;
    width: 100%;
    color: #000;
}
.main-item, .main-amount {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    color: #fff;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.main-amount{
    justify-content: flex-end;
}
.platform-item {
    text-transform: uppercase;
    font-weight: 500;
    padding: 0px 10px;
    display: flex;
    align-items: center;
}
.amount-item {
    text-align: right;
    height: 25px;
    padding: 0px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.link-wrap {
    position: relative;
}
.drop-wrap {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    background: #445174;
    border-radius: 4px;
    display: none;
}
.drop-wrap a {
    color: #fff;
    padding: 2px 8px;
    display: block;
    margin: 5px 0;
}
.drop-wrap a:hover {
    color: #dfc787;
}
.link-wrap:hover .drop-wrap {
    display: block;
}


/** Footer **/
.footer-sec {
    background: #272e50;
    border-top: 1px solid #8390b3;
}
.footer-menu {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-menu a {
    color: #c5d0ed;
    font-size: 12px;
    padding: 15px;
    text-transform: uppercase;
}
.footer-menu a:hover {
    color: #dfc787;
}


/** Promotion **/
.promo-card {
    margin-bottom: 15px;
}
.promo-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    background: linear-gradient(to bottom, rgba(52,64,115,1) 0%, rgba(34,41,68,1) 100%);
    color: #fff;
    border: 1px solid #40486c;
    cursor: pointer;
}
.pm-desc {
    padding: 10px 20px;
    position: relative;
}
.main-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gold-text {
    color: #dfc787;
}
.pm-smcaption {
    max-height: 80px;
    font-size: 13px;
    overflow: hidden;
    line-height: 1.2;
}
.pm-more-btm {
    position: absolute;
    left: 20px;
    bottom: 20px;
}
button.register-btn.promo {
    font-size: 13px;
    height: 32px;
    font-weight: 700;
    width: auto;
    padding: 6px 15px 2px;
    text-transform: none
}
.promo-content {
    background: #0a0d1a;
    color: #c5d0ed;
    padding: 20px 20px;
    font-size: 14px;
}
.pm-title-sm {
    font-size: 18px;
}
.promo-content ul, .promo-content ol {
    padding-left: 18px;
}
.promo-content ul li, .promo-content ol li {
    padding-bottom: 5px;    
}

/** Info page **/
.info-sec {
    background: #262d4e url("../images/comm-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 30px 0;
}
.info-title {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    border: 1px solid #40486c;
    color: #dfc787;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 15px 5px;
}
.content-info {
    background: #0a0d1a;
    color: #fff;
    min-height: 400px;
    padding: 20px 20px;
}
.title-sm {
    color: #dfc787;
    font-weight: 500;
    margin-bottom: 4px;
}
.content-contact {
    background: url("../images/bn_contact.png")no-repeat center;
    background-size: 100% 100%;
    height: 500px;
    color: #fff;
    padding: 60px;
    position: relative;
}
.contact-text {
    max-width: 500px;
    font-weight: bold;
    font-size: 46px;
    padding-top: 35px;
}
.contact-wrapper {
    /* position: absolute; */
    /* bottom: 15px; */
    width: 100%;
}
.contact-box {
    /* border: 1px solid #ddc586; */
    border-radius: 4px;
    padding: 4px 0;
    max-width: 360px;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 70px auto;
    align-items: center;
}
.contact-icon {
    text-align: center;
    border-right: 1px solid #ddc586; 
    font-size: 12px;
    color: #ddc586;
}
.contact-icon i {
    font-size: 26px;
}
.detail-ct {
    color: #fff;
    text-align: left;
    font-size: 20px;
    padding-left: 15px;
}
.detail-ct a {
    color: #fff;
}
.detail-ct a:hover {
    color: #ddc586;
}
button.btn-tnc {
    background: linear-gradient(to bottom, rgba(255,235,181,1) 0%, rgba(186,167,119,1) 100%);
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 5px 15px;
    color: #42330e;
    border: none;
    border-radius: 5px;
}
button.btn-tnc.collapsed {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    color: #fff;
}
button.btn-tnc:focus {
    outline: none;
}
.tnc-card {
    margin-bottom: 5px;
}
.tnc-body {
    background: rgba(0,0,0,0.3);
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}
.tnc-body ol {
    padding-left: 15px;
}
.tnc-body ol li {
    padding-bottom: 8px;    
}
.bank-table tr.trans td {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 1px solid #697aa7;
    padding: 3px 3px 1px;
}
.bank-table tr.trans1 td {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 1px solid #697aa7;
    padding: 2px;
}
.bank-table tr.dwbox td {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    border: 1px solid #697aa7;
    color: #fff;
    font-weight: 500;
    padding: 2px;
}



/** Inbox **/
a.wbox.incoming::after {
    content: '';
    background: #FF0000;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    position: absolute;
    right: 5px;
    top: 6px;
}
.inbox-sec {
    background: url("../images/inbox-bg.jpg")no-repeat top center;
    background-size: cover;
    padding: 30px 0;
    min-height: 95vh;
}
.msg-title {
    text-align: center;
    padding: 15px 15px 30px;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 9px rgb(0 0 0 / 80%);
}
.inbox-container {
    background: rgba(0,0,0,0.5);
    max-width: 1300px;
    margin: auto;
    width: 100%;
    padding: 45px;
}
.inbox-wrapper {
    margin-bottom: 35px;
}
.mailbox {
    display: grid;
    grid-template-columns: 7% 76% 10% 7%;
    align-items: center;
    background: linear-gradient(to bottom, rgba(52,64,115,1) 0%, rgba(34,41,68,1) 100%);
    border: 1px solid #40486c;
    border-radius: 3px;
    padding: 8px 0px;
    margin-bottom: 12px;
    cursor: pointer;
}
.mail-icon {
    font-size: 22px;
    text-align: center;
    border-right: 1px solid #40486c;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mail-title {
    padding: 0 15px;
}
.mailbox-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.mail-caption {
    color: #c5d0ed;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 820px;
    white-space: nowrap;
}
.mail-date {
    color: #c5d0ed;
    font-size: 13px;
    padding: 5px 10px;
}
.mdate {
    padding: 3px 0;
}
.remove-icon {
    font-size: 20px;
    text-align: center;
    border-left: 1px solid #40486c;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.remove-icon a {
    color: #c5d0ed;
}
.remove-icon a:hover {
    color: #fff;
}
.mailbox.unread .mail-icon, .mailbox.unread .mailbox-title {
    color: #dfc787;
}
.modal-dialog.inbox {
    max-width: 650px;
    overflow: auto;
    border-radius: 5px;
    font-size: 14px;
}
.msg-content {
    padding: 20px 25px;
}
.inbox-title {
    color: #323232;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.daterow {
    color: #222944;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}
.daterow .mdate {
    margin-right: 10px;
}
.msgbox {
    line-height: 1.4;
}

.menu__item a {
    position: relative;
}
span.inbox-num {
    background: #FF0000;
    color: #fff;
    font-size: 9px;
    text-align: center;
    height: 13px;
    width: 13px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -7px;
    top: -2px;
}

/** Header Language dropdown - 27/10/2021 **/
.dropdown.langdropdown {
    background: #374061;
    padding: 6px 10px;
    border-radius: 5px;
}
a.lang-btn {
    color: #d4def7;
}
a.lang-btn img {
    max-width: 28px;
}
.lang-btn.dropdown-toggle::after {
    vertical-align: 0;
}
.dropdown-menu.language {
    min-width: auto;
    padding: 4px 10px;
    text-align: center;
    background: rgba(54,65,93,0.9);
    border: none;
    top: 10px!important;
    left: -10px!important;
}
.dropitem img {
    max-width: 28px;
}

/** Mobile Download **/
.download-sec {
    padding: 30px 0;
    min-height: 550px;
}
.mix {
    display: none;
}
.filter-menu {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.dlbox {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    border: 1px solid #697aa7;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    width: 145px;
    margin: 0 5px;
    padding-top: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.dlbox.active {
    background: #ccd5ed;
    color: #38415f;
}
.dlbox-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.dlwrap {
    text-align: center;
    margin: 10px;
    cursor: pointer;
}
.dl-img img {
    transition: 0.3s;   
}
.dlwrap:hover .dl-img img {
    transition: 0.3s;
    transform: scale(1.02);
    filter: brightness(1.10) drop-shadow(0 3px 4px rgb(0,0,0,0.5));
}
.dl-img {
    margin-bottom: 10px;
}
button.register-btn.download {
    font-size: 13px;
    font-weight: 700;
    height: 30px;
    padding: 7px 3px;
}

/** Promo Filter Updated 25/11/2021 **/
.mix {
    display: none;
}
.filter-promo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.pmbox {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    border: 1px solid #697aa7;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 110px;
    text-align: center;
    padding: 7px 10px 5px;
    margin: 0 10px;
    cursor: pointer;
}
.pmbox.active {
    background: linear-gradient(to bottom, rgba(255,235,181,1) 0%, rgba(186,167,119,1) 100%);
    border: 1px solid #fffeb2;
    color: #42330e;
}

/*updated 17/12/2021*/
.contact-icon img{
    width: 45px;
}





























