@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:14px; margin:0 auto; color:#fff; background: #2f3658; }

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;
}
.logined {
	padding-bottom: 80px;
}

/** Floating Bubble **/
.float-container {
    position: fixed;
    bottom: 57px;
    right: 0px;
    z-index: 99;
}
#toggle {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.chat-contact {
	color: #031b33;
	font-size: 23px;
}
.close-contact {
    color: #fff;
    display: none;
    font-size: 15px;
	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;
}

#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: 50px;
    width: var(--d);
    height: var(--d);
    background: #e7e39d;
    border: 3px solid #e7e39d;
    border-radius: 50%;
    position: absolute;
    bottom: calc(25px / 2);
    right: calc(25px / 2);
    padding: 6px;
    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: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    left: -12px;
    top: -20px;
}
.menu__item {
    color: #fff;
    padding: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    transition: all 250ms;
}
.menu__item i {
    font-size: 24px;
	color: #fff;
}
.menu__item:nth-child(1) {
  background: #00bae9;
}
.menu__item:nth-child(2) {
  background: #26b200;
}
.menu__item:nth-child(3) {
  background: #727272;
}



/** Header **/
.menu-wrapper-home {
	padding-right: 5px;
}
.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: 12px;
    font-weight: 600;
    text-transform: uppercase;
    height: 30px;
    min-width: 70px;
    padding: 3px 10px 0;
    margin: 0 2px;
    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: 35px;
	-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: 12px;
    font-weight: 600;
    text-transform: uppercase;
    height: 30px;
    min-width: 70px;
    padding: 3px 10px 0;
    margin: 0 2px;
    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: 35px;
	-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-top {
    width: 100%;
    z-index: 99;
	background: #445174;
}
.header-menu {
    color: #fff;
    padding: 5px 0;
    height: 55px;
    position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-menu .logo {
    max-width: 110px;
    position: absolute;
    left: 50px;
    right: 0;
}
.header-menu .logo img {
	max-height: 50px;
}
.userpart {
    text-align: right;
    font-size: 12px;
    padding: 8px 5px;
}
.userpart .balance {
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #f0d802;
}
.userpart .balance .currency {
    color: rgba(255,255,255,0.8);
}
.menu-icon {
    position: relative;
    height: 46px;
    width: 46px;
}
.menu-icon .bar {
    position: relative;
    background: #fff;
    height: 1.5px;
    width: 18px;
    left: 14px;
    top: 22px;
}
.menu-icon .bar::before {
    content: '';
    background: #fff;
    height: 1.5px;
    width: 18px;
    position: absolute;
    left: 0;
    top: -6px;
}
.menu-icon .bar::after {
    content: '';
    background: #fff;
    height: 2px;
    width: 18px;
    position: absolute;
    left: 0;
    top: 7px;
}

.menu-center {
	display: flex;
	align-items: center;
}
.play-btn {
    display: block;
    color: #ffcd00;
    border: 1px solid #ffcd00;
    padding: 4px;
    max-width: 105px;
    margin: auto;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    top: 102px;
    left: 0;
    right: 0;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-20px);
}
.play-btn:hover {
	background: #ffcd00;
	color: #0d3a64;
	box-shadow: 0 2px 5px rgb(0,0,0,0.7);
}

.player-center {
	display: flex;
	align-items: center;
	align-content: flex-end;
}
.player-wrapper {
    background: #052442;
    color: #fff;
    border: 1px solid #051c33;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 160px auto;
    padding: 5px 10px;
    align-items: center;
    height: 50px;
    margin: 0 0 0 auto;
}
.welcome-player {
    font-size: 12px;
    margin-bottom: 2px;
    text-align: right;
}
.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: 10px;
}
a.wbox {
    display: inline-block;
    background: linear-gradient(to bottom, rgba(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
    height: 33px;
    width: 33px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 5px;
    border: 1px solid #0f4f8c;
    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(9,58,103,1) 0%, rgba(3,27,50,1) 100%);
	color: #ffcd00;
}
a.wbox:hover i {
	filter: drop-shadow(0 0 1px #ffcd00);
}
.balance-wrap {
	position: relative;
	cursor: pointer;
}





/** Homepage **/
.world-sec {
    background: #031b33 url(../images/index_02.jpg)no-repeat bottom center;
    background-size: 100%;
    padding: 20px 0 10%;
    text-align: center;
}
.smbox {
    position: relative;
    background: #072847;
    text-align: center;
    max-width: 300px;
    margin: 15px auto;
    overflow: hidden;
    border-radius: 10px;
}
.smbox.big {
    max-width: 330px;
}
.boxname {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 0;
    text-shadow: 1px 1px 1px #000;
}
.smbox.big {
    max-width: 510px;
}	
.smbox-img {
    max-height: 280px;
    overflow: hidden;
}
.smbox-img img {
    width: 100%;
    object-fit: contain;
}



button.login-btn.smb {
    display: block;
    margin: auto;
    margin-bottom: 15px;
}
.world-content {
    margin: 40px auto 15px;
    max-width: 700px;
}
.world-title {
    font-size: 30px;
    text-transform: uppercase;
}
.footer-sec {
    padding: 10px 0;
}
.lisence-wrapper {
    text-align: center;
    padding: 20px 0;
}
.img-wrap {
    display: inline-block;
    width: 100px;
    box-sizing: border-box;
    padding: 5px;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    margin: 5px;
}
.img-wrap img {
    width: 80%;
}
.tnc {
	padding: 20px 18px;
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
	display: grid;
	grid-template-columns: 60px auto;
	font-size: 13px;
}
.tnc .icon img {
    max-width: 50px;
}
.tnc .tnc-content h4 {
    font-size: 16px;
    color: #ff583e;
	margin-bottom: 4px;
}
.join-btn {
    color: #2f2f2f;
    border: 2px solid #f0c103;
    background-color: #f0c103;
    background-image: linear-gradient(45deg, #f0da03 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background 300ms ease-in-out;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
}
.switch-desktop.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    max-width: 250px;
    margin: 15px auto 20px auto;
    padding: 10px 15px;
    height: 50px;
    color: #fff;
}
.switch-desktop.mobile i {
	margin-right: 10px;
	font-size: 20px;
}

/** Page Lobby **/
.notification-wrapper{
    line-height: 25px;
    background-color: #171b2c;
    color: #fff;
    font-size: 11px;
    position: relative;
    display: flex;
}
.notification-wrapper .icon{
    background-color:#ddc586;
    position: relative;
    padding-left: 5px;
	font-weight: 600;
    color: #2f3658;
    width: 110px;
    z-index: 1;
    font-size: 11px;
}
.marquee-parent {
    position: relative;
    display: block;
    /*padding: 0px 0.7rem 0px 1.5rem;*/
    height: 25px;
    width: calc( 100% - 70px);
    overflow: hidden;
  }
.marquee-child {
    display: block;
    width: 100%;
    height: 30px;
    position: absolute;
    /*animation: marquee 10s linear infinite;*/
    white-space: nowrap;
}
.marquee-child:hover {
    animation-play-state: paused;
    cursor: pointer;
}
@keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}
.notification-wrapper .icon:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-left: 20px solid #ddc586;
    position: absolute;
    top: 0;
    right: -20px;
}
.swiper-container-lobby-thumb{
    margin:5px 10px 2px 10px !important;
}

.swiper-container-horizontal>.swiper-pagination-thumb{
    text-align: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 2px;
}
.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
}
.prov-title {
    color: #ddc586;
    text-transform: uppercase;
    background-color: #192145;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px 4px;
}
.prov-title i {
	padding-right: 5px;
}
.prov-title img {
    max-height: 18px;
    vertical-align: sub;
	padding-right: 1px;
}
.provider-sec {
    background: #2f3658;
}
.swiper-container {
	width: 100%;
	height: 100%;
	padding: 5px 10px 25px;
}
.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 5px;
}
.swiper-pagination-bullet {
    background: #171b30;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #6671a3;
}
.dm-item {
	display: inline-block;
	position: relative;
}
.prv-name {
    background: #445174;
    color: #ddc586;
    text-align: center;
    text-transform: none;
    padding: 4px 4px 2px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 0 0 5px 5px;
}
.footer-menu-sec {
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
}
.footer-menu {
    background: linear-gradient(to bottom, rgba(97,112,153,1) 0%, rgba(36,41,66,1) 100%);
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    text-align: center;
    height: 60px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
	text-transform: uppercase
}
.ft-menu i {
    display: block;
    font-size: 21px;
    margin-bottom: 4px;
    color: #c5d0ed;
}
.ft-menu img {
	display: block;
	max-height: 24px;
	margin: auto;
	margin-bottom: 4px;
}

/** Promotion updated - 11/6/2021 **/
.promo-sec {
    background: #071c2f;
    padding: 20px 0;
    margin-bottom: -20px;
}
.promo-card {
	margin-bottom: 15px;
}
.promo-wrap {
   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;
	padding: 5px;
}
.pm-img {
	border: 1px solid #40486c;
}

.pm-desc {
    padding: 10px 5px 5px;
	position: relative;
	display: none;
}
.promo-wrap.collapsed .pm-desc {
	display: block;
}
.main-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gold-text {
    color: #dfc787;
}
.pm-smcaption {
    max-height: 42px;
    font-size: 12px;
    overflow: hidden;
    line-height: 1.2;
}
.promo-content {
    background: #000d1a;
    color: #c5d0ed;
    padding: 10px 10px;
    font-size: 13px;
}
.pm-title-sm {
    font-size: 17px;
	margin-bottom: 5px;
}
.promo-content ul, .promo-content ol {
	padding-left: 18px;
}
.promo-content ul li, .promo-content ol li {
	padding-bottom: 5px;	
}

/** Inbox **/
.logined.dark {
	background: #272d4f;
}
.inbox-sec {
	background: #272d4f url("../images/comm-bg.jpg")no-repeat top center;
	background-size: cover;
	padding: 15px 0;
	min-height: 80vh;
	padding: 0 10px;
}
.msg-title {
    text-align: center;
    padding: 15px 15px 20px;
    font-size: 22px;
    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: 10px 10px 20px;
}
.inbox-wrapper {
    margin-bottom: 20px;
}
.mailbox {
    display: grid;
    grid-template-columns: 10% 80% 10%;
    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: 6px 0px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mail-icon {
    font-size: 14px;
    text-align: center;
    border-right: 1px solid #40486c;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mail-title {
    padding: 0 5px;
}
.mailbox-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 1px;
}
.mail-caption {
    color: #87c4ff;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 800px;
    white-space: nowrap;
}
.mail-date {
	display: flex;
    color: #c5d0ed;
    font-size: 10px;
    padding: 3px 2px 0;
}
.mdate {
    margin-right: 10px;
}
.mdate i {
	margin-right: 3px;
}
.remove-icon {
    font-size: 14px;
    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: 3px;
	font-size: 14px;
	color: #000;
}
.modal-content.inbox {
    border: none;
}
.msg-content {
    padding: 15px 20px 20px;
}
.inbox-title {
    color: #323232;
    font-size: 20px;
    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.inbox i::after {
    content: '';
    background: #FF0000;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    position: absolute;
}

.menu__item a {
	position: relative;
}
span.inbox-num {
    background: #FF0000;
    color: #fff;
    font-size: 7px;
    text-align: center;
    height: 11px;
    width: 11px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -6px;
    top: -2px;
}

/** Download **/
.download-sec {
    padding: 15px 10px;
}
.dlbox-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
	grid-gap: 15px 5px;
}
.dlwrap {
    text-align: center;
	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: 12px;
    font-weight: 700;
    height: 28px;
    padding: 7px 10px;
}


/** Promo Filter Updated 25/11/2021 **/
.promo-sec {
    height: 90vh;
}
.mix {
	display: none;
}
.filter-promo {
	margin-bottom: 15px;
	text-align: center;
}
.pmbox {
	display: inline-block;
    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: 13px;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 90px;
    text-align: center;
    padding: 7px 5px 4px;
    margin: 5px 2px;
	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;
}






















