@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

body { font-family: "Noto Sans SC", sans-serif; line-height:1.4; font-size:15px; margin:0 auto; color:#191919; background: #000; }

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%;
}
.float-icon {
	display: block;
    position: fixed;
    left: 0;
    top: 30%;
    z-index: 999;
    max-width: 190px;
	transform: translatey(0px);
	animation: float 3s ease-in-out infinite;
}
/** Header **/
.t-header {
    position: relative;
    z-index: 2;
    margin-bottom: -40px;
}
.header-top {
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
	height: 133px;
	color: #fff;
	border-bottom: 1.5px solid #f61717;
}
.header-sec {
    padding: 2px 0 0;
}
.logo {
    max-width: 300px;
    padding: 20px 0;
}
.header-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: space-evenly;
}
.login-form {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    grid-gap: 10px;
}
.log-field {
	align-self: center;
}
input.log_input {
    background: transparent;
    border: none;
    color: #fff;
    width: 155px;
    padding: 1px 5px;
	font-size: 13px;
	border-bottom: 2px solid #f61717;
}
input.log_input:focus {
	outline: none;
	box-shadow: none;
}
input.log_input::placeholder {
	color: #fff;
}
.forgot {
    color: #fff;
    font-size: 12px;
    align-self: center;
    font-weight: 600;
}
.forgot:hover {
    color: #f61717;
}
button.login-btn {
    background: #1e1512;
    width: 103px;
    height: 30px;
    margin: auto;
    padding: 4px 0;
    border: 2px solid #ffe7d3;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
	filter: drop-shadow(0 0 1px #f61717);
}
button.login-btn:focus, button.join-btn:focus {
	outline: none;
}
button.login-btn:hover, button.join-btn:hover {
	filter: drop-shadow(0 0 3px rgb(255,255,255,0.5));
	transform: scale(0.97);
	transition: 0.3s;
}
button.join-btn {
    background: #f61717;
    width: 103px;
    height: 30px;
    margin: auto;
    border: none;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
}
.lang-box {
	align-self: center;
}
.lang-btn {
    background: transparent;
        border: 1px solid transparent;
}
.lang-btn:focus {
	outline: none;
}
.lang-btn.dropdown-toggle::after {
    color: #fff;
}
.dropdown-menu.language {
    padding: 0 5px;
    background: rgba(0,0,0,0.7);
    min-width: auto;
    border: none;
}
.dropdown-menu.language a {
    padding: 1px 5px;
}
.dropdown-menu.language a:hover {
	background: transparent;
}
.dropdown-menu.language a:hover img {
	filter: drop-shadow(0px 0px 2px #fff);
}
.menu-sec {
    float: right;
    padding: 0;
}
ul.menu-wrapper {
	margin: 0;
	padding: 0;
}
ul.menu-wrapper li {
    /* margin: 0 4px; */
    padding: 0px 0;
    list-style-type: none;
    display: inline-block;
    text-align: center;
}

ul.menu-wrapper li a {
    color: #fff;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 2px 7px;
    border: 1px solid transparent;
    border-radius: 5px;
    display: block;
}
ul.menu-wrapper li.dropdown a img {
    display: block;
    margin: auto;
    max-width: 43px;
    filter: contrast(2) saturate(5);
    margin-bottom: -2px;
}
ul.menu-wrapper li.dropdown:hover a img {
	filter: drop-shadow(0 0 4px rgb(255, 255, 255,0.9));
}
ul.menu-wrapper li a:hover, .dropdown:hover .dropdown-toggle, ul.menu-wrapper li.active a {
	color: #f61717;
	border-radius: 5px;
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.7);
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 140px;
    box-shadow: 0px 0px 6px 1px #fa2020;
    margin-top: 0;
    z-index: 999;
	border: 1px solid #fa2020;
	border-radius: 10px;
	overflow: hidden;
}
ul.menu-wrapper li.dropdown .dropdown-content img {
	max-width: 100%;
}
ul.menu-wrapper li.dropdown:hover .dropdown-content a img {
	filter: none;
}
ul.menu-wrapper li .dropdown-content a:hover img {
	filter: none;
}
.dropdown:hover .dropdown-content {
	display: block;
	z-index: 999;
}
ul.menu-wrapper li .dropdown-content a {
    display: block;
	z-index: 9;
    padding: 0px;
	background: rgba(0,0,0,0.7);
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #f61717;
	overflow: hidden;
}
ul.menu-wrapper li .dropdown-content a:hover {
    background: rgba(246,23,23,0.5);
}

.announce-sec {
	background: url("../images/notice-bg.png")no-repeat center;
	height: 20px;
	color: #fff;
	font-size: 13px;
	margin-top: 11px;
}
.notice-wrapper {
	display: grid;
	grid-template-columns: 50px auto;
}
/* After login */

.after-login-wrapper {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-gap: 10px;
	align-items: center;
}
.userpoint span {
    display: block;
    line-height: 1.2;
    text-align: right;
	font-size: 13px;
}
.token-box {
    background: linear-gradient(to bottom, rgba(17,15,16,1) 0%, rgba(29,26,24,1) 100%);
    border: 1px solid #f61717;
    color: #fff;
    border-radius: 8px;
    padding: 5px 7px;
    font-size: 14px;
}
.giftbox {
    max-width: 45px;
}
.wallet-top-menu {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border: 1px solid #f61717;
    border-radius: 8px;
    height: 33px;
    font-size: 14px;
}
.balance-drop {
    text-align: center;
}
.wallet_top_btn {
    background: none;
    color: #fff;
    border: none;
    padding: 5px 3px;
}
.wallet_top_btn:focus {
	outline: none;
	box-shadow: none;
}

.option-drop {
	border-left: 1px solid #e95252;
    position: relative;
    text-align: center;
}
.dropdown-option {
    display: none;
    position: absolute;
    background: rgba(0,0,0,0.9);
    z-index: 2;
    top: 100%;
    left: 0;
    width: 130px;
    text-align: center;
    box-shadow: 0px 0px 4px 1px #f61717;;
    border: 1px solid #f61717;
    border-radius: 8px;
    overflow: hidden;
}
.option-drop:hover .dropdown-option {
    display: block;
    z-index: 2;
}
.option-drop:hover button.loginx_btn {
	background: #ffc001;
	color: #000;
}
.dropdown-option ul {
	padding: 0;
	margin: 0
}
.dropdown-option ul li {
	list-style-type: none;
}
.dropdown-option ul li a {
    color: #fff;
    padding: 4px 0;
    display: block;
    font-size: 14px;
}
.dropdown-option ul li a:hover {
	background: rgba(246,23,23,0.5);
    color: #fff;
}

.dropdown-balance {
    display: none;
    position: absolute;
    width: 400px;
    background: rgba(0,0,0,0.95);
    color: #fff;
    z-index: 2;
    text-align: center;
    border: 1px solid #f61717;
}
.balance-drop:hover .dropdown-balance {
	display: block;
}
.summary-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 9px 0px;
    font-size: 14px;
	padding-bottom: 10px;
}
.main-item, .main-amount {
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
	border-bottom: 1px solid #f61717;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
}
.platform-item {
    text-transform: uppercase;
    font-weight: 600;
    padding: 0px 10px;
}
.amount-item {
    text-align: right;
    height: 25px;
    padding: 0px 10px;
}
.balc {
    display: inline-block;
    margin: 0 3px;
}
button.btn-in {
    display: inline-block;
    border: none;
    margin: 0 5px;
    height: 100%;
    padding: 0px 10px;
    background: #78b714;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}
button.btn-in:hover {
	background: #9de032;
}
button.btn-out {
    display: inline-block;
    border: none;
    margin: 0 2px;
    height: 100%;
    padding: 0px 10px;
    background: #b71414;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}
button.btn-out:hover { 
	background: #e61b1b;
}



/** End Header **/

/** Home **/
.home-top-sec {
	background: url("../images/home_bg.jpg")no-repeat top center;
	padding: 60px 0 30px;
}
.hm-top-container {
    padding: 20px 0;
	margin-bottom: 50px;
}
.slider-wrapper {
    position: relative;
}
.carousel-inner {
    border-radius: 10px 10px 0 0;
    border: 2px solid #f61717;
}
a.prev-btn {
	position: absolute;
    left: -11px;
    bottom: -13px;
    z-index: 2;
}

a.next-btn {
	position: absolute;
    right: -11px;
    bottom: -13px;
    z-index: 2;
	transition: 0.1s;
}
a.prev-btn:hover, a.next-btn:hover {
	transition: 0.1s;
	filter: drop-shadow(0px 0px 3px rgb(246,23,23,0.8)) brightness(1.1);
	transform: scale(1.03);
}
a.slide-btn i {
    font-size: 30px;
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 3px solid #f61717;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.9);
}
.casino-categ-wrapper {
	width: 450px;
	height: 450px;
	position: relative;
}

@-webkit-keyframes spin {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
	100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
}
.spinning {
  -webkit-animation: spin infinite 3.5s linear;
  -moz-animation: spin infinite 3.5s linear;
  animation: spin infinite 3.5s linear;
  animation-fill-mode: forwards;
}

@-webkit-keyframes spinblue {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
	100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(-360deg);
}
}
.spinning-blue {
  -webkit-animation: spinblue infinite 15s linear;
  -moz-animation: spinblue infinite 15s linear;
  animation: spinblue infinite 15s linear;
  animation-fill-mode: forwards;
}

.esports-bx {
    left: 100px;
    top: 38px;
}
.sports-bx {
    top: 38px;
    right: 70px;
}
.fourd-bx {
    top: 153px;
    right: -8px;
}
.fishing-bx {
    right: 70px;
    top: 270px;
}
.casino-bx {
	left: 100px;
    top: 270px;
}
.slots-bx {
    top: 153px;
    left: 18px;
}
.rpd-wrapper {
    position: relative;
}
.rpoint-title {
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
	-webkit-text-stroke: 0.4px #f61717;
    width: 600px;
    height: 42px;
    margin: auto;
    padding: 5px;
    border: 3px solid #f61717;
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
    text-align: center;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.75);
    position: absolute;
    left: 0;
    right: 0;
    top: -17px;
}
.reward-wrapper {
    background: linear-gradient(to bottom, rgba(43,43,43,1) 0%, rgba(8,8,8,1) 100%);
    border: 3px solid #f61717;
    border-radius: 12px;
    height: 245px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.rwbox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
	position: relative;
}
.rwbox::before {
	content:url("../images/blue-bar.png");
	position: absolute;
	left: 0;
}
.reward-wrapper .rwbox:first-child::before {
	content: none;
}
.rcap {
    color: #f61717;
	font-weight: 400;
    text-transform: uppercase;
    padding-left: 10px;
}
.rcap h4 {
    color: #fff;
	-webkit-text-stroke: 0.8px #f61717;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 0;
}
.info-btn {
    background: linear-gradient(45deg, rgba(131,72,175,1) 0%, rgba(6,119,170,1) 100%);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
    width: 150px;
    height: 35px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #f6a1fe;
    border-radius: 10px;
    font-weight: 700;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.75);
    text-align: center;
    display: block;
    padding: 4px 0;
    position: absolute;
    right: -1px;
    bottom: -6px;
}
.info-btn:hover {
	color: #fff;
	filter: drop-shadow(0px 0px 2px rgb(255,255,255,0.6));
}
.contact-home-wrapper {
    position: relative;
    width: 1140px;
    margin-top: 70px;
	margin-bottom: 25px;
}
.contact-us-box {
    background: rgba(0,0,0,0.8);
    border: 2px solid #26b1ad;
    border-radius: 10px;
    width: 305px;
    height: 151px;
    color: #fff;
}
.contbox h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5dc7ff;
    margin-bottom: 3px;
}
.contbox {
    max-width: 260px;
    text-align: center;
    margin: auto;
    font-size: 12px;
    line-height: 1.2;
    padding: 19px 0;
}
.contact-media-wrapper {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	grid-gap: 10px;
}
.cmw-box {
    background: rgba(0,0,0,0.8);
    border: 2px solid #f61717;
    border-radius: 10px;
    height: 153px;
    text-align: center;
}
.cm-detail {
    border: 1.5px solid #f61717;
    border-radius: 35px;
    padding: 5px 2px 8px;
    color: #fff;
    margin: auto 4px;
    margin-bottom: 7px;
    font-size: 14px;
}
.cmw-box h4 {
	color: #feffd6;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}
.cmw-box img {
    margin-top: -29px;
    padding-bottom: 7px;
}

/** Footer **/
.footer-sec {
    padding: 10px 0 30px;
}
.provider-wrapper {
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    border: 2px solid #f61717;
    border-radius: 8px;
	text-align: center;
    width: 100%;
    padding: 25px 10px 6px 10px;
    margin-bottom: 40px;
}
.provider-wrapper img {
    max-width: 94px;
}
.provider-title {
    position: absolute;
    color: #fff;
	-webkit-text-stroke: 0.4px #f61717;
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    border: 1.5px solid #f61717;
    border-radius: 35px;
    font-weight: 600;
    font-size: 16px;
    max-width: 200px;
    margin: auto;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 6px 5px;
    top: -15px;
    left: 0;
    right: 0;
}
.fun-box {
	color: #727272;
	border: 1.5px groove #f61717 !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
	box-shadow:  0px 0px 0px 0px #000;
	font-size: 12px;
	line-height: 1.2;
	border-radius: 5px;
}
.fun-box legend {
    font-size: 13px;
    color: #f61717;
    font-weight: 400;
	text-align: center !important;
	width:auto;
	padding:0 10px;
	border-bottom:none;
}
.footer-menu {
    text-align: center;
    padding-bottom: 15px;
}
.menu-footer a {
	color: #909090;
	font-size: 14px;
	padding: 0 10px;
	line-height: 1;
	border-right: 1px solid #fff;
}
.menu-footer a:last-child {
	border-right: none;
}
.menu-footer a:hover {
	color: #f61717;
}
.copyright-sec {
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
	color: #cecece;
	padding: 10px 0 25px;
	text-transform: uppercase;
	font-size: 12px;
}

/*** Sports ***/
.sports-sec {
	background: url("../images/sports/sports_bg.jpg")no-repeat top center;
	background-size: cover;
	min-height: 933px;
	padding: 60px 0 30px;
	position: relative;
	margin-bottom: -110px;
	overflow: hidden;
}
.sports-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 35px;
	position: relative;
	margin-top: 100px;
}
.sportsbox a {
    position: relative;
    max-width: 350px;
    height: 170px;
    margin: auto;
    background: rgba(0,0,0,0.5);
    border: 2px solid #f61717;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.51);
}
.sportsbox a:hover {
	box-shadow: 0px 0px 7px 1px #f61717;
}
.sportsbox a:hover .plybtn {
	border: 2px solid #D6D6D6;
}
.sportsbox img {
    max-width: 275px;
}
button.plybtn {
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    width: 158px;
    text-align: center;
    margin: auto;
    color: #fff;
    border: 2px solid #f61717;
    font-size: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.75);
}
.football {
    position: absolute;
    left: -210px;
    top: 360px;
	-webkit-animation: float 3s ease-in-out infinite;
	animation: float 3s ease-in-out infinite;
}
.fireball {
    position: absolute;
	right: -208px;
    top: 264px;
	-webkit-animation: float 3s ease-in-out infinite;
	animation: float 3s ease-in-out infinite;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
        filter: drop-shadow(0 0 7px rgb(255,255,255,1)) brightness(1.05);
    }

    50% {
        -webkit-transform: translatey(-15px);
        transform: translatey(-15px);
        filter: drop-shadow(0 0 5px rgb(255,255,255,0.3));
    }

    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
        filter: drop-shadow(0 0 7px rgb(255,255,255,1)) brightness(1.05);
    }
}

/*** Esports ***/
.esports-sec {
	background: url("../images/esports/esport_bg.jpg")no-repeat top center;
	background-size: cover;
	height: 937px;
	padding: 60px 0 30px;
	position: relative;
	margin-bottom: -180px;
	overflow: hidden;
}
.esports-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 35px;
    position: relative;
    max-width: 800px;
    margin: auto;
    margin-top: 132px;
}
#particles-js {
    position: absolute;
    z-index: 0;
    width: 100%;
}

/*** Fishing ***/
.fishing-sec {
	background: url("../images/fishing/fish_bg_2.jpg")no-repeat top center;
	background-size: cover;
	/* height: 1120px; */
	padding: 75px 0 30px;
	position: relative;
	/* margin-bottom: -180px; */
	overflow: hidden;
}
.fishing-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 30px;
    text-align: center;
}
.fshbox img {
	transition: all 0.4s;
}
.fshbox:hover img {
	filter: drop-shadow(0 0 1px #fff);
	transform: scale(1.05);
	transition: all 0.4s;
}
.fishbox {
    position: relative;
    max-width: 620px;
	margin: auto;
}
.fish-play {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}
.fish-play:hover {
	filter: drop-shadow(0 0 5px rgb(52,250,251,0.6)) brightness(1.2);
	transform: scale(1.01);
}
.fish-1 {
    position: absolute;
    right: 175px;
	-webkit-animation: float 9s ease-in-out infinite;
    animation: float 9s ease-in-out infinite;
}
.fish-2 {
    position: absolute;
    left: 0;
    top: 200px;
	-webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
}
.fish-3 {
    position: absolute;
    right: 0;
    top: 336px;
	-webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
}
.fish-1:hover, .fish-2:hover, .fish-3:hover {
	filter: brightness(1.05) drop-shadow(0 0 3px rgb(255,255,255,0.5));
}
.bubble {
	position: absolute;
}
.transform-active {
	-webkit-animation: die 3s ease-in-out infinite;
}

@-webkit-keyframes die {
  0% {
    -webkit-transform: translatey(0) scaleY(-1);
            transform: translatey(0) scaleY(-1);
  }
  50% {
    -webkit-transform: translatey(12px) scaleY(-1);
            transform: translatey(12px) scaleY(-1);
  }
  100% {
    -webkit-transform: translatey(0) scaleY(-1);
            transform: translatey(0) scaleY(-1);
  }
}

/* BUBBLES KEYFRAMES */

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -120%;
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -120%;
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -120%;
    }
}

@-webkit-keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@-moz-keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

/* BUBBLES ANIMATIONS */

.x1 {
    -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: 34%;
    top: 10%;
	background: url("../images/fishing/bubble-1.png")no-repeat center;
	width: 73px;
	height: 105px;
}

.x2 {
    -webkit-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	-moz-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	
	left: 22%;
    top: 67%;
	background: url("../images/fishing/bubble-2.png")no-repeat center;
	width: 109px;
	height: 118px;
}
.x3 {
    -webkit-animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	left: 33%;
	top: 40%;
	background: url("../images/fishing/bubble-3.png")no-repeat center;
	width: 57px;
	height: 61px;
}

.x4 {
    -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	-moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	
	left: 20%;
	top: 0;
	background: url("../images/fishing/bubble-4.png")no-repeat center;
	width: 92px;
	height: 104px;
}

.x5 {
    -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	-moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	
	right: 35%;
	top: 50%;
	background: url("../images/fishing/bubble-5.png")no-repeat center;
	width: 43px;
	height: 62px;
}

.x6 {
    -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 21s linear infinite, sideWays 1s ease-in-out infinite alternate;
	
    right: 31%;
	top: 0;
	background: url("../images/fishing/bubble-6.png")no-repeat center;
	width: 119px;
	height: 103px;
}

.x7 {
    -webkit-animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
	
	right: 28%;
    top: 70%;
	background: url("../images/fishing/bubble-3.png")no-repeat center;
	width: 57px;
	height: 61px;
}

.x8 {
    -webkit-animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
	-moz-animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
	animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
	
	left: 80%;
	top: 10%;
	background: url("../images/fishing/bubble-7.png")no-repeat center;
	width: 25px;
	height: 24px;
}

.x9 {
    -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	-moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	
	left: 16%;
    top: 50%;
	background: url("../images/fishing/bubble-7.png")no-repeat center;
	width: 25px;
	height: 24px;
}

.x10 {
    -webkit-animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
	-moz-animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
	animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
	left: 80%;
	top: 80%;
	background: url("../images/fishing/bubble-1.png")no-repeat center;
	width: 73px;
	height: 105px;	
}

.fish {
	position: absolute;
	max-width: 120px;
    top: 17%;
	animation: swim 1.5s, left-right 14s;
	-webkit-animation: swim 1.5s, left-right 14s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear; 
}
.fish-group {
	position: absolute;
    top: 24%;
	animation: right-left 16s;
	-webkit-animation: right-left 16s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear; 
}

@-webkit-keyframes swim
{
  0% {
    -ms-transform: none;
    -webkit-transform: none; 
    transform: none;
  }
  50% {
    -ms-transform: rotate(12deg);
    -webkit-transform: rotate(12deg); 
    transform: rotate(12deg);
  }
  100% {
    -ms-transform: none;
    -webkit-transform: none; 
    transform: none;
  }
}

@keyframes swim
{
  0% {
    -ms-transform: none;
    -webkit-transform: none; 
    transform: none;
  }
  50% {
    -ms-transform: rotate(12deg);
    -webkit-transform: rotate(12deg); 
    transform: rotate(12deg);
  }
  100% {
    -ms-transform: none;
    -webkit-transform: none; 
    transform: none;
  }
}

@-webkit-keyframes left-right
{
  0% {margin-left: -134px}
	90% {margin-left: 100%;}
	100% {margin-left: 100%;}
}

@keyframes left-right
{
  0% {margin-left: -134px}
	70% {margin-left: 100%;}
	100% {margin-left: 100%;}
}

@-webkit-keyframes right-left
{
  0% {right: 0}
	90% {right: 100%;}
	100% {right: 100%;}
}

@keyframes right-left
{
  0% {right: 0}
	70% {right: 100%;}
	100% {right: 100%;}
}

/*** Casino ***/
.casino-sec {
	background: url("../images/casino/casino_bg.jpg")no-repeat top center;
	background-size: cover;
	height: 939px;
	padding: 60px 0;
	margin-bottom: -150px;
	overflow: hidden;
}
.casino-container {
	position: relative;
	text-align: center;
}
.casino-table {
    margin-top: -205px;
}
.casino-prov a {
    display: block;
    width: 180px;
    height: auto;
	padding: 15px 5px;
    z-index: 1;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    border: 1px solid #fff;
	margin-bottom: 15px;
}
.casino-prov a:hover, .casino-box.actives a {
	box-shadow: 0px 0px 7px 1px #f61717;
	border: 1px solid #fff;
}
.casino-prov a img {
	
}
.casino-prov a:hover img , .casino-prov .casino-box.actives a img {
	filter: none;
}
.casino-prov.pv1 {
	position: absolute;
	top: 100px;
	left: 0;
}
.casino-prov.pv2 {
	position: absolute;
	top: 150px;
	left: 200px;
}
.casino-prov.pv3 {
	position: absolute;
	top: 150px;
	right: 200px;
}
.casino-prov.pv4 {
	position: absolute;
	top: 100px;
	right: 0;
}



/*** Slots ***/
.slots-sec {
    background: url(../images/slots/slots_bg.jpg)no-repeat top center;
    background-size: cover;
    /* height: 1170px; */
    padding: 55px 0;
    /* margin-bottom: -400px; */
    overflow: hidden;
}
.slots-charac {
    position: relative;
}
.slots-wrapper {
    z-index: 1;
    position: relative;
}
.slots-wrapper a {
    display: block;
    width: auto;
    height: 90px;
    padding: 16px 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(72,8,2,0.5) 0%, rgba(18,5,0,0.5) 100%);
    border-radius: 15px;
    border: 1px solid #fff;
	box-shadow: 0px 0px 2px 0px #fff;
}
.slots-wrapper a:hover, .slots-wrapper .slots-box.actives a {
	box-shadow: 0px 0px 7px 1px #f61717;
	border: 1px solid #f61717;
}
.rows1 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px 10px;
    margin: 15px 0;
}
.rows2 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    max-width: 520px;
    margin: auto;
}
.slots-box {
    position: relative;
}
.stt {
	margin-top: 90px;
}
.tech-circle {
    width: 579px;
    height: 579px;
    position: absolute;
	right: -50px;
}
.scroll-img {
    position: absolute;
    top: 362px;
    left: -300px;
    -webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
}

/*** Others ***/
.others-sec {
	background: url("../images/others/other-bg.jpg")no-repeat top center;
	background-size: cover;
	height: 750px;
	padding: 75px 0 30px;
	position: relative;
	margin-bottom: -150px;
	overflow: hidden;
}
.others-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 30px;
	text-align: center;
}
.othersbox img {
	transition: all 0.4s;
}
.othersbox:hover img {
	filter: drop-shadow(0 0 1px #fff);
	transform: scale(1.05);
	transition: all 0.4s;
}

/** 4D **/
.toto-sec {
	background: #0a0b06 url("../images/4d/toto_bg.jpg")no-repeat top center;
	padding: 45px 0;
	overflow: hidden;
}
.toto-top {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
	max-width: 500px;
    margin: auto;
	margin-top: 290px;
}
.toto-btn {
    position: relative;
    text-align: center;
    margin: auto;
}
.bet-btn {
    background: url(../images/4d/bet-btn.png)no-repeat center;
    width: 254px;
    height: 271px;
    margin: auto;
    text-align: center;
	text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
	text-shadow: 0 0 6px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payout-btn {
    background: url("../images/4d/payout-btn.png")no-repeat center;
    width: 254px;
    height: 271px;
    margin: auto;
    text-align: center;
	text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
	text-shadow: 0 0 6px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bet-btn:hover, .payout-btn:hover {
	color: #fff;
}
.toto-top img {
	position: absolute;
	top:0;
	left:0;
	overflow: hidden;
	width: 245px;
	height: 250px;
}
.toto-top a:hover {
	filter: brightness(1.15) drop-shadow(0 0 3px #fff);
	transform: scale(0.97);
	transition: all 0.3s;
}

.toto-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
	margin-top: 30px;
}
.toto-container-2 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
	max-width: 860px;
	margin: auto;
}
.lotto-box {
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.lott-title-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
	background: #9C9C9C;
}
.lott-title-box {
    line-height: 1.2;
    padding: 3px 10px;
}
.lott-type {
    font-size: 16px;
	font-weight: 600;
	display: block;
}
.cal-date {
    font-size: 12px;
}
.lott-logo {
    text-align: center;
}
.top-winner {
	text-align: center;
    font-size: 21px;
    margin: 7px 0;
}
tr.lot-place-num td {
    padding: 2px 0;
}
table.special {
    text-align: center;
    font-size: 20px;
}
.special tr td {
	border: 1px solid #9B9B9B;
}
tr.special-title {
    font-size: 17px;
    font-weight: 700;
	background: #9B9B9B;
	text-transform: uppercase;
	letter-spacing: 1px;
}
tr.special-title td { 
	padding: 1px;
}

.lott-title-grid.sandakan {
	background: #fdb913;
}
.sandakan .special-title {
	background: #fdb913;
	color: #000;
}
.special.sandakan tr td {
	border-color: #fdb913;
}

.lott-title-grid.magnum {
	background: #b8860b;
}
.magnum .special-title {
	background: #b8860b;
	color: #fff;
}
.special.magnum  tr td {
	border-color: #b8860b;
}

.lott-title-grid.pmp {
	background: #231f54;
}
.pmp .special-title {
	background: #231f54;
	color: #fff;
}
.special.pmp  tr td {
	border-color: #231f54;
}

.lott-title-grid.toto {
	background: #ec1c24;
}
.toto .special-title {
	background: #ec1c24;
	color: #fff;
}
.special.toto tr td {
	border-color: #ec1c24;
}

.lott-title-grid.singapore {
	background: #2c80fd;
}
.singapore .special-title {
	background: #2c80fd;
	color: #fff;
}
.special.singapore tr td {
	border-color: #2c80fd;
}

.lott-title-grid.sabah {
	background: #003c10;
}
.sabah .special-title {
	background: #003c10;
	color: #fff;
}
.special.sabah tr td {
	border-color: #003c10;
}

.lott-title-grid.srwk {
	background: #ff5400;
}
.srwk .special-title {
	background: #ff5400;
	color: #fff;
}
.special.srwk tr td {
	border-color: #ff5400;
}

/** Contact Us **/
.contact-sec {
	background: url("../images/contact/contact-bg.jpg")no-repeat top center;
	background-size: cover;
	padding: 60px 0;
}
.ctcbg {
	background: url("../images/contact/contact-small-bg.png")no-repeat top center;
	background-size: 100% 100%;
	padding: 30px;
}
.contactbox {
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    display: grid;
    grid-template-columns: 20% 20% 60%;
    color: #fff;
    border: 1px solid #f61717;
    align-items: center;
    padding: 5px;
	max-width: 600px;
	margin-bottom: 10px;
}
.ctinfo img {
	max-width: 70px;
}
.ctinfo a {
	color: #fff;
}
.ctinfo a:hover {
	color: #f61717;
}

/** Mobile **/
.mobile-sec {
	background: #000 url("../images/mobile/mobiledl-bg.jpg")no-repeat top center;
	min-height: 1252px;
	padding: 60px 0;
}
.mix {
    display: none;
}
.filter-menu-bar {
    margin: 15px 0;
    height: 54px;
}
.mbox {
    background: url(../images/mobile/mobile-btn.png)no-repeat center;
    background-size: 100% 100%;
    display: inline-block;
	width: 220px;
    height: 54px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
    font-size: 25px;
    text-align: center;
    padding: 7px;
	cursor: pointer;
}
.mbox:hover, .mbox.active {
	background: url("../images/mobile/mobile-btn-active.png")no-repeat center;
	background-size: 100% 100%;
	color: #fff;
}
.boxes {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.mobile-dl {
    display: inline-block;
}
.mobile-dl:hover {
	filter: brightness(1.15) drop-shadow(0 0 4px #fff);
} 
/** Promotion **/
.promo-sec {
	background: #000 url("../images/promo/promo_bg.jpg")no-repeat top center;
	padding: 60px 0;
}
.mix {
    display: none;
}
.filter-menu-bar {
    margin: 15px 0;
    height: 54px;
    text-align: center;
}
.promo-boxes {
	display: grid;
    grid-template-columns: repeat(2,1fr);
	grid-gap: 30px 30px;
    text-align: center;
	margin-top: 45px;
}
.promo-bx a {
	color: #fff;
	display: block;
}
.pmbox {
    background: url(../images/promo/promo-btn.png)no-repeat center;
    background-size: 100% 100%;
    display: inline-block;
    width: 220px;
    height: 61px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
    font-size: 19px;
    text-align: center;
    padding: 15px 10px;
    cursor: pointer;
}
.pmbox:hover, .pmbox.active {
	background: url("../images/promo/promo-btn-active.png")no-repeat center;
	background-size: 100% 100%;
	color: #fff;
}
.promo-bx {
	max-width: 500px;
	margin: auto;
	border:2px solid transparent;
}
.promo-bx:hover {
    border: 2px solid #f61717;
    box-shadow: 0px 0px 7px 1px #f61717;
}
.promo-dl {
    display: inline-block;
    width: auto;
    height: auto;
    margin: auto;
    z-index: 1;
    position: relative;
}

.promo-title-wrapper {
	background: linear-gradient(to bottom, rgba(43,43,43,1) 0%, rgba(8,8,8,1) 100%);
	width: 100%;
	height: 100px;
	text-align: center;
	margin: auto;
	text-transform: uppercase;
	padding: 10px 40px 10px;
}
.promo-title-wrapper h4 {
    color: #fff;
    -webkit-text-stroke: 0.4px #f61717;
    font-size: 19px;
    font-weight: 700;
    height: 34px;
    margin-bottom: 2px;
    line-height: 1;
    display: grid;
    align-items: center;
}
.promo-bx:hover .promo-title-wrapper, .promo-bx.actives .promo-title-wrapper {
	
}
.smtitle {
    font-size: 10px;
    font-weight: 600;
}
.date-promo {
    margin-top: 0px;
}

/** VIP **/
.vip-sec {
	background: url("../images/vip/vip_bg.jpg")no-repeat top center;
	min-height: 1500px;
	padding: 60px 0 30px;
}
.vip-wrapper {
	background: url("../images/vip/vip-frame.png")no-repeat top center;
	background-size: 100% 100%;
	min-height: 2000px;
	padding: 104px 70px 120px 70px;
	color: #fff;
}

.vp-box {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.9);
	margin: 10px 0;
}
.vpi-box {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    background: #212933;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.9);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 11px 0;
	height: 62px;
    line-height: 1.2;
    border-radius: 10px;
    align-items: center;
}
.purple-bar {
	background: #41076a;
	font-size: 18px;
}
.vipgreen {
	color: #6dff6d;
	font-weight: 700;
	text-transform: uppercase;
	padding: 8px 0;
	font-size: 22px;
	text-align: center;
	text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.9);
}
.tnc-box {
	background: #212933;
	color: #fff;
	border-radius: 10px;
	padding: 20px 0;
}
ul.tnclist {
	margin: 0;
}
ul.tnclist li {
	padding: 0 0 0 0;
	margin: 0;
}
.hl-yellow {
	color: #f6ff01;
}
.vip-join {
    background: url(../images/vip/join-vip.png)no-repeat center;
    width: 264px;
    height: 87px;
    padding: 0 0 11px;
    margin: auto;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    transition: 0.2s;
}
.vip-join:hover {
	filter: drop-shadow(0 0 3px rgb(255,255,255,0.9));
	transform: scale(0.95);
	transition: 0.2s;
}
.vip-join:focus {
	outline: none;
}

/** Wallet **/
.wallet-sec {
	background: #000 url("../images/wallet-bg.jpg")no-repeat top center;
	min-height: 820px;
	padding: 60px 0;
}
.wallet-wrapper {
    display: grid;
    grid-template-columns: 200px auto;
    padding: 15px 15px 45px;
}
.wallet-menu {
    background: linear-gradient(to bottom, rgba(43,43,43,1) 0%, rgba(8,8,8,1) 100%);
    border: 2px solid #f61717;
    width: 200px;
    min-height: 563px;
    padding: 8px 8px 27px; 
    color: #fff;
    position: relative;
	z-index: 2;
	border-radius: 10px 0 0 10px;
}
.wallet-board {
	position: relative;
    background: linear-gradient(to bottom, rgba(43,43,43,1) 0%, rgba(8,8,8,1) 100%);
	border: 2px solid #f61717;
	border-radius: 10px;
    width: auto;
    min-height: 543px;
    background-size: 100% 100%;
    margin-left: -9px;
	padding: 26px 20px 15px;
}
.user-account {
    text-align: center;
    font-size: 16px;
    margin: 15px -8px 0 -8px;
    height: 61px;
    padding: 4px;
    border-bottom: 2px solid #f61717;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.3);
}
.lvl-vip {
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.75);
}
.menu-account {
    margin: 0 -8px 0 -8px;
}
.menu-account a {
    display: block;
    border-bottom: 1px solid #f61717;
    color: #f3f3f3;
    padding: 4px 15px 5px;
    font-size: 14px;
    font-weight: 600;
}
.menu-account a:hover, .menu-account a.active  {
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
	color: #fff;
}
.menu-account a.btitle {
    color: #fff;
    font-size: 20px;
    text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
    padding: 1px 15px 3px;
    margin-top: 0;
    background: #353535;
}
.nhv {
	pointer-events: none;
}
.menu-account a:last-child {
	border-bottom: none;
}
.main-wallet-wrapper {
    display: grid;
    grid-template-columns: auto 110px 110px;
    padding: 15px 0;
}
.mw-box {
	font-size: 16px;
	text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
	text-align: right;
	color: #fff;
	padding: 0 15px;
	align-self: center;
	font-weight: 600;
}
.mw-box span {
    box-shadow: inset 1px 2px 5px -2px rgba(0,0,0,0.57);
    background: #4e4e4e;
    text-shadow: none;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 9px;
}
.all-out-btn {
    background: #1b1b1b;
    width: 100px;
    height: 35px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 0;
    border: 2px solid #ffffff;
    border-radius: 10px;
}
.deposit-btn {
    background: #1b1b1b;
    width: 103px;
    height: 35px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 0;
    border: 2px solid #f61717;
    border-radius: 10px;
}
.all-out-btn:hover, .deposit-btn:hover {
	filter: drop-shadow(0 0 1px rgb(255,255,255,0.9)) brightness(1.05);
	transform: scale(0.98);
}
.all-out-btn:focus, .deposit-btn:focus {
	outline: none;
}
.wallet-provider-wrapper {
	background: #1b1b1b;
	color: #fff;
	box-shadow: inset 1px 2px 5px -2px rgba(0,0,0,0.7);
	display: grid;
	grid-template-columns: repeat(6,1fr);
	border-radius: 10px;
	padding: 25px 10px;
	grid-gap: 15px 0;
}
.wp-box {
	cursor: pointer;
}
.wp-box:hover {
	filter: brightness(1.1);
}
.wp-logo {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    width: 125px;
    height: 62px;
    margin: auto;
    text-align: center;
    padding: 8px 0;
    border: 1px solid #f61717;
}
.wp-amount {
    background: #292929;
    color: #fff;
    border: 1px solid #f61717;
    text-align: center;
    font-size: 13px;
    border-radius: 15px;
    padding: 1px;
    font-weight: 600;
    width: 120px;
    margin: auto;
    margin-top: 4px;
}
.nav-tabs.wallet .nav-link {
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    width: 100px;
    height: auto;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 14px 10px;
	border: 1px solid transparent;
    margin-right: 12px;
    border-radius: 10px;
}
.nav-tabs.wallet {
    border-bottom: none;
	margin-bottom: 15px;
}
.nav-tabs.wallet  .nav-item.show .nav-link, .nav-tabs.wallet  .nav-link.active {
	color: #ffc502;
	border: 1px solid #fff;
}

/* HIDE RADIO */
.bank-input-wrap label [type=radio] { 
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
/* IMAGE STYLES */
.bank-input-wrap label [type=radio] + .bank-type {
	cursor: pointer;
}
.bank-input-wrap label [type=radio] + .bank-type img {
	cursor: pointer;
	filter:grayscale(0.8);
}
/* CHECKED STYLES */
.bank-input-wrap label [type=radio]:checked + .bank-type {
	border: 1px solid #f61717;
	background: #001520;
	background-position: right bottom;
	transition: none;
}
.bank-input-wrap label [type=radio]:checked + .bank-type img {
	filter:grayscale(0);
}
.bank-input-wrap label .bank-type {
	border: 1px solid #fff;
	border-radius: 6px; 
	color: #fff;
}
.bank-input-wrap label {
    margin: 0 5px;
    margin-bottom: 0;
}
.bank-input-wrap {
    background: #191919;
    padding: 9px 9px;
    border-radius: 8px;
    box-shadow: inset 0px 1px 5px -1px rgba(0,0,0,0.62);
	width: 430px;
}
.bank-input-wrap.method {
	background: #191919;
    padding: 9px 9px;
    border-radius: 8px;
    box-shadow: inset 0px 1px 5px -1px rgba(0,0,0,0.62);
	width: max-content;
}
.bank-type {
    display: block;
    text-align: center;
    font-size: 13px;
    padding: 6px 2px;
    color: #484848;
    font-weight: 600;
    width: 125px;
    height: 33px;
}
.banking-wrapper {
	padding: 10px 0;
}
.banking-wrapper h5, .dp-field h5 {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.bank-select-wrapper {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 10px;
    max-width: 650px;	
}
.bank-btn {
	background: none;
	border: none;
	padding: 0;
	border-radius: 6px;
	border: 1px solid transparent;
}
.bank-btn:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid #f61717;
}
.dropdown-menu.bank {
	background: url("../images/bank-info-board.png")no-repeat top center;
	width: 393px;
	height: 244px;
	border: none;
}
.dp-bank-detail {
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
    background: #252525;
    border-radius: 5px;
    border: 1px solid #f61717;
    width: 420px;
}
.acc-name {
        background: linear-gradient(to bottom, rgba(43,43,43,1) 0%, rgba(8,8,8,1) 100%);
    border: 1px solid #f61717;
    border-radius: 30px;
    padding: 2px;
    font-weight: 600;
	margin-top: 3px;
	margin-bottom: 10px;
    width:400px;
}

.depminmax {
    line-height: 1.7;
}
.dp-field {
	margin-bottom: 20px;
	position: relative;
}
select {
	 overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
input.dp-input, select.dp-input {
	width: 50%;
	padding: 3px 10px;
	border-radius: 35px;
	height: 30px;
	border: 1px solid #f61717;
	display: inline-block;
}
.dp-input:focus, .date-input:focus, .time-input:focus {
	box-shadow: none;
	outline: none;
	border: 1px solid #001520;
}
input.date-input {
	width:18%;
	padding: 3px 10px;
	border-radius: 35px;
	height: 30px;
	border: 1px solid #f61717;
	display: inline-block;
}
select.time-input {
	width:15%;
	margin-left: 3px;
	padding: 3px 10px;
	border-radius: 35px;
	height: 30px;
	border: 1px solid #f61717;
	display: inline-block;
}
button.upload-button {
    background: #f61717;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #ffffff;
    padding: 0px 10px;
    width: 12%;
    border-radius: 35px;
    height: 30px;
    text-transform: uppercase;
    margin-left: 5px;
}
.upload-btn {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}
.agree-field {
	color: #fff;
	font-size: 16px;
}
.agree-field input { 
	vertical-align: middle;
}
button.submit-btn {
    background: #f61717;
    color: #fff;
    border: 1px solid #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 24px;
    border-radius: 15px;
    box-shadow: 0px 5px 5px -1px rgba(0,0,0,0.65);
}
button.submit-btn:focus {
	box-shadow: 0px 5px 5px -1px rgba(0,0,0,0.65);
	outline: none;
}
button.submit-btn:hover {
	box-shadow: none;
	background: #5f0000;
}
.bank-option {
    display: block;
    text-align: center;
    font-weight: 600;
    border-radius: 7px;
    width: 155px;
    height: 43px;
	border: 1px solid transparent;
}
.bank-option img {
	filter: grayscale(0.8);
}

/* HIDE RADIO */
.ibank-option-wrapper label [type=radio] { 
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
/* IMAGE STYLES */
.ibank-option-wrapper label [type=radio] + .bank-option {
	cursor: pointer;
}
/* CHECKED STYLES */
.ibank-option-wrapper label [type=radio]:checked + .bank-option {
	border: 1px solid #01a8b0;
	background: #001520;
	background-position: right bottom;
	transition: none;
}
.ibank-option-wrapper label [type=radio]:checked + .bank-option img {
	filter:grayscale(0);
}
.ibank-option-wrapper label {
    margin: 0 5px;
    margin-bottom: 0;
}
button.promo-question {
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
}
button.promo-question:hover {
	color: #bc140e;
}
button.promo-question:focus {
	outline: none;
}
.promo-extent, .promo-extent a {
	color: #fff;
}
.promo-extent {
	padding: 10px 10px 0;
}
.promo-list {
	display: block;
	margin: 5px 0;
}
.promo-list:hover {
	color: #bc140e;
}



/*** Tansfer ***/
.transfer-total-wrapper {
	padding: 15px 0;	
}
.transfer-total-wrapper .mw-box {
    text-align: left;
}
.trans-wallet-wrapper {
    background: #1b1b1b;
    color: #fff;
    box-shadow: inset 1px 2px 5px -2px rgba(0,0,0,0.7);
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-radius: 10px;
    padding: 25px 10px;
    grid-gap: 10px 0;
}
.trans-title {
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
	margin: 4px 0 5px;
	font-weight: 600;
}

.trans-wallet-wrapper label .wp-box img {
	filter: grayscale(1);
}
.trans-wallet-wrapper label:hover .wp-box img {
	filter: grayscale(0);
}
/* HIDE RADIO */
.trans-wallet-wrapper label [type=radio] { 
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
/* IMAGE STYLES */
.trans-wallet-wrapper label [type=radio] + .wp-box {
	cursor: pointer;
}
/* CHECKED STYLES */
.trans-wallet-wrapper label [type=radio]:checked + .wp-box .wp-logo {
	box-shadow: 0 0 5px 1px rgba(255,255,255,0.9);
}
.trans-wallet-wrapper label [type=radio]:checked + .wp-box img {
	filter: grayscale(0) brightness(1.1);
}

button.max-button {
    background: #001520;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #f61717;
    padding: 0px 15px;
    width: auto;
    border-radius: 35px;
    height: 30px;
    text-transform: uppercase;
    margin-left: 5px;
}
button.max-button:hover {
	background: #f61717;
	color: #fff
    box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.65);
}
button.max-button:focus {
	outline: none;
}

/** Withdrawal **/
.wbtitle {
	color: #fff;
	font-weight: 600;
	text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
	text-transform: uppercase;
	font-size: 24px;
	margin: 10px 0;
}
.withdraw-wrapper {
	display: grid;
	grid-template-columns: 230px auto;
	grid-gap: 24px 4px;
}
.withdraw-wrapper h5 {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    align-self: center;
    margin-bottom: 0;
}
input:disabled  {
	background: #fff;
}
.date-field span {
	color: #fff;
	padding: 0 5px;
}
input.dp-input.trans-date {
    width: 23%;
}
.max-report {
	color: #949494;
	font-weight: 600;
	font-weight: 13px;
	padding: 3px 5px;
}
.trans-table {
    margin-top: 15px;
	color: #fff;
}
.trans-table table {
	text-align: center;
	width: 100%;
}
.trans-table table tr th {
    border: 1px solid #fff;
    padding: 4px;
	background: rgba(0,0,0,0.3);
}
.trans-table table tr td {
    border: 1px solid #fff;
    padding: 4px;
}
.trans-table table tr:nth-child(odd) {
	background: rgba(0,0,0,0.3);
}

/** Redemption **/
.redemp-sec {
	background: url("../images/reward_bg.jpg")no-repeat top center;
	padding: 60px 0;
	min-height: 1381px;
	color: #fff;
}
.redemp-wrapper {
	background: rgba(4,22,47,0.8);
	padding: 30px;
	border-radius: 12px;
	position: relative;
}
.redemp-wrapper::before {
    content: url(../images/gem.png);
    position: absolute;
    left: -13%;
    top: 38%;
}
.redeem-title {
	background: url("../images/exclusive-board.png")no-repeat top center;
	width: 824px;
	height: 145px;
	margin: auto;
	text-align: center;
	padding: 24px 15px;
	color: #fff;
	font-weight: 700;
	font-style: italic;
	font-size: 24px;
	text-transform: uppercase;
	text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
}
.redeem-wrapper {
	max-width: 900px;
	margin: auto;
	text-align: center;
}
.what-title {
	font-size: 26px;
	color: #3dff8f;
	font-weight: 700;
	text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
	text-transform: uppercase;
}
.item-redeem-wrapper {
	display: grid;
	grid-template-columns: 200px auto;
	grid-gap: 10px;
	margin-top: 15px;
}

.redeem-box {
	background: url("../images/redeem-btn.png") center;
	width: 179px;
	height: 50px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 19px;;
    padding: 11px 5px;
	cursor: pointer;
	margin-bottom: 15px;
}
.redeem-box.active {
	background: url("../images/redeem-btn-active.png") center;
}

.redeem-content {
    background: rgba(0,0,0,0.4);
    border: 1px solid #00aeef;
    border-radius: 12px;
    padding: 25px 15px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 25px 35px;
	min-height: 600px;
}
.rdmbox {
	position: relative;
	cursor: pointer;
}
.redem-bx {
    border: 1px solid #00aeef;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
	max-width: 210px;
	margin: auto;
}
.point-myr {
    display: grid;
    grid-template-columns: auto auto;
    border: 1px solid #00aeef;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 11px;
    padding: 2px 3px;
}
.point-myr div:first-child {
	border-right: 1px solid #00aeef;
}
.free-credit {
    border: 2px solid #00aeef;
    border-radius: 9px;
    padding: 1px 2px;
    font-size: 17px;
    text-transform: uppercase;
    margin: 10px -11px -11px;
}
.rdmbox:hover .redem-bx-table {
	visibility: visible;
}

.redem-bx-table {
    visibility: hidden;
	background: rgba(0,0,0,0.9);
	font-size: 11px;
    border: 2px solid #00aeef;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    max-width: 210px;
    margin: auto;
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.free-table table tr td{
	border: 1px solid #ff00ff;
	line-height: 1.2;
	padding: 6px 0;
}
.claim-btn {
	background: url("../images/claim-btn.png")no-repeat center;
	width: 190px;
	height: 48px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 18px;
	padding: 12px 5px;
	display: block;
	margin: 20px auto;
	text-align: center;
	text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.9);
}
.claim-btn:hover {
	color: #fff;
	text-shadow: none;
	filter: brightness(1.1);
}
.rules-wrapper {
    background: #022c4b;
    padding: 25px;
    border-radius: 11px;
}
.rules-wrapper h4 {
	color: #7afffd;
	font-size: 16px;
	text-transform: uppercase;
}
.rules-wrapper ul {
	padding: 0 0 0 15px; 
}

/** About **/
.about-sec {
	background: url("../images/home_bg.jpg")no-repeat top center;
	padding: 60px 0;
	color: #fff;
	min-height: 850px;
}
.info-menu-wrapper {
    background: rgba(0,0,0,0.6);
    border: 1px solid #f61717;
    overflow: hidden;
    border-radius: 7px;
    line-height: 1.2;
}
.info-menu-wrapper a {
	color: #fff;
	display: block;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 15px;
	border-bottom: 1px solid #f61717;
}
.info-menu-wrapper a:last-child {
	border-bottom: none;
}
.info-menu-wrapper a.active, .info-menu-wrapper a:hover { 
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
}
.info-wrapper {
	background: rgba(0, 0, 0, 0.3);
    border: 1px solid #f61717;
    border-radius: 7px;
	padding: 25px 30px;
}
ol.faq {
	padding: 0 0 0 15px;
}
ol.faq li {
	padding-bottom: 13px;
}

button.btn-tnc {
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    width: 100%;
    text-align: left;
    font-size: 15px;
    padding: 8px 15px;
    color: #fff;
    border: none;
    border-radius: 5px;
}
button.btn-tnc.collapsed {
    background: #292929;
	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 #f61717;
	padding: 2px;
}
.bank-table tr.trans1 td {
	background: rgba(0,0,0,0.5);
	color: #fff;
	border: 1px solid #f61717;
	padding: 2px;
}
.bank-table tr.dwbox td {
	background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
	color: #fff;
	border: 1px solid #f61717;
	font-weight: 600;
	padding: 2px;
}


@media (max-width: 1200px) { 
.container {
	max-width: 1100px;
}	
}

/* 24072023 */

i.fas.fa-copy {
    float: right;
    padding-right: 5px;
    padding-top: 3px;
}

.qr-deposit {
    padding: 10px;
}

.ibank-option-wrapper {
    padding-bottom: 20px;
}

.deposit-table th, td {
    border: 1px solid #f61717;
    border-collapse: collapse;
    color:#fff;
    width: 200px;
    padding: 5px;
  }

.deposit-tb{
    padding-bottom: 20px;
}

/* 29082023 */

.spribe-sec {
    background: #000 url(../images/spribe_bg.jpg)no-repeat top center;
    min-height: 820px;
    padding: 60px 0;
}

.spribe {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 10px;
    grid-row-gap: 25px;
}

.spribe-box {
    border: 1px solid #fff;
    width: 165px;
    background: linear-gradient(0deg, rgba(30,14,10,1) 0%, rgba(72,18,13,1) 100%);
    border-radius: 10px;
    padding: 15px;
}

.spribe-box:hover {
    animation: glowing 1500ms;
    transition: all 0.3s;
    filter: drop-shadow(1px 1px 10px #bb1d2d);
}

.logo {
    width: 235px !important;
}

.new-game {
    position: absolute;
    bottom: 45px;
    right: 62px;
    max-width: 35px !important;
}

/* 24102023 */
.gift-sec {
	background: url("../images/gift/gift_bg.jpg")no-repeat top center;
	background-size: cover;
	height: 100%;
	padding: 75px 0 30px;
	position: relative;
	overflow: hidden;
}

.gift-pos {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    grid-gap: 80px;
    grid-row-gap: 50px;
}

.gift-gamebox .game_img {
    overflow: hidden;
    bottom: 50px;
    position: relative;
}

.gift-gamebox {
    display: block;
    transition: all 0.3s;
    margin: 10px auto;
    /* box-shadow: -1px -1px 10px #9b121b, -1px 3px 10px 4px #9b121b; */
    border-radius: 10px;
}

.gift-wrap {
    background-color: #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 120px;
}

.gift-gamebox .game-title {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #fff;
    background: linear-gradient(0deg, rgba(110,12,25,1) 0%, rgba(161,22,39,1) 100%);
    padding-top: 10px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    display: flex;
    gap: 10%;
    justify-content: center;
}

.gift-play {
    background-color: #fff;
    color: #a22028;
    border-radius: 21px;
    padding: 5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 5px;
    width: 120px;
    border: none;
}

.gift-token-title {
    padding-top: 5px;
}

.gift-category {
    display: flex;
}

.gift-cat {
    display: flex;
    margin: 0 auto;
    gap: 40px;
    margin-bottom: 20px;
}

.reward-box2 {
    background-color: #000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.gift.active {
    background-color: #6b22d1 !important;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    
}

.nav>li>a{
    padding: 0;
}

.nav-tabs {
    border-bottom: none !important;
    gap: 65px;
    margin-bottom: 20pxs;
}

.reward-img {
    margin-left: 12px;
    margin-top: 10px;
}

.gift-content,
.gift-token-content {
    margin-top: 60px;
}

.gift{
    height:100%;
}

.nav-tabs .nav-link {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.tnc {
    color: #000;
}

.reward-box-text p {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding-top: 5px;
}

.gift.active .reward-box-text p {
    color: #6b22d1;
}

.reward-box{
    height:100%;
}

.gift-wrap {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    background-color: rgb(0 0 0 / 50%);
    /* box-shadow: 0px 1px 4px 1px #9b121b, 0px -2px 12px 1px #9b121b; */
    border: 1px solid #9b121b;
}

.gift-elec-gamebox .game_img {
    overflow: hidden;
    bottom: 35px;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.gift-elec-gamebox .game_p {
    width: 100%;
    overflow: hidden;
    bottom: 35px;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.gift-title {
    text-align: center;
}

.game_p p {
    margin-top:10px;
    color: #e33349;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
}

.game-title-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gift-gamebox .game-title {
    display: block;
}

.gift-token-time{
    color: #fff;
    font-weight: bold;
}

.gift-bonus .game-title{
    display: flex;
}

.gift-wrapper {
    margin-top: 90px;
}

.gift-box:last-child {
    grid-column: 2/3;
    justify-self: center;
    width: 100%;
}

.gift-play:focus {
    outline: none;
}

.modal-dialog.redeem {
    background: #fff;
    border: 2px solid #f61717;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.55);
    width: 693px;
    height: 438px;
    padding-top: 38px;
}

.modal-content.redeem {
    max-width: 600px;
    max-height: 400px;
    margin: auto;
    background: transparent;
    border: none;
}

.pop-content p {
    font-weight: bold;
    line-height: 0.8;
}

.pop-content textarea {
    height: 120px;
    border-radius: 5px;
}

.redeem hr {
    border-color: #f61717;
}

button.redeem-btn {
    background: #f61717;
    width: 103px;
    height: 30px;
    margin: auto;
    border: none;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
}

.pop-content .close {
    font-size: 25px;
}

.redeem-bottom {
    margin: 0 auto;
}

.pop-close .close:focus {
    outline: none;
}

.pop-close .close:hover {
    background: #f61717;
    color:#fff;
    opacity: 1 !important;
}

button.close-btn {
    background: #f61717;
    width: 103px;
    height: 30px;
    margin: auto;
    border: none;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
}

/* 25102023 */
.poker-sec {
	background: url("../images/poker/poker_bg.jpg")no-repeat top center;
	background-size: cover;
	height: 100%;
	padding: 75px 0 30px;
	position: relative;
	overflow: hidden;
}

.poker-wrapper {
    position: relative;
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

/* 28112023 */
.menu-new{
    position: relative;
}

.new-game-gift {
    position: absolute;
    bottom: 45px;
    right: 45px;
    max-width: 35px !important;
}

/* 02082024 */
.reg-wrapper .nav-tabs.active-tabs .nav-link.active {
    color: #fff;
    background: #f61717;
    border-color: #f61717;
}
.reg-wrapper .activ {
    color: #f61717;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    padding: 13px 0;
}
.reg-wrapper a.live-btn:hover {
    background: #f61717;
    color: #ffff;
}
.reg-wrapper a.live-btn {
    display: inline-block;
    background: #252a2f;
    color: #fff;
    padding: 5px 21px;
    border-radius: 30px;
    border: 1px solid #f61717;
    height: 30px;
    margin-top: 5px;
    font-size: 14px;
}

.reg-wrapper .nav-tabs {
    border-bottom: none !important;
    gap: 0px;
    margin-bottom: 20pxs;
}

.sms-activate input:focus {
    outline: none;
    border: 1px solid #f61717 !important;
}

.acc-activ img {
	padding: 10px;
	filter: brightness(0) saturate(100%) invert(15%) sepia(87%) saturate(5677%) hue-rotate(343deg) brightness(82%) contrast(116%);
}

.f-label {
    text-align: right;
    font-weight: 600;
    font-size: 14px !important;
    align-self: center;
}

/* 27082024 */
.resend-text {
    display: none;
}

.resend-btn {
    display: none;
}

.next-active {
	text-align: center;
	padding: 0px 0 10px !important;
}

.resend-otp {
    margin-top: 10px;
    text-align: center;
}

/* 04092024 */
/* Mission */

.mission-sec{
    background: url(../images/mission/mission_bg.jpg) no-repeat top center;
    padding-bottom: 45px;
}

.addition-bg {
    margin: 0 auto;
}

.token-btn {
    font-size: 30px;
    border-radius: 50px;
    padding: 15px;
    width: 254px;
    margin-bottom: 0;
    font-weight: 800;
    border: 3px solid #f61717;
    background: linear-gradient(181deg, rgba(0, 0, 0, 1) 0%, rgb(78 72 70) 53%, rgb(0 0 0) 100%);
    color: #fff;
}

.addition-bg img {
    margin-bottom: 15px;
}

.redeem-angpow-wrapper {
    display: flex;
    grid-gap: 45px;
    justify-content: center;
}

.angpow-box {
    position: relative;
    cursor: pointer;
    background-size: 100% 100%;
    /* margin-bottom: 45px; */
}

.token-icon img {
    position: relative;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.angpow-box:hover {
    /* filter: drop-shadow(0 0 5px #fff); */
}

.amt-credit {
    background: #c71724;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 6px;
    right: 0;
    top: 0;
    font-size: 24px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    font-weight: bolder;
}

.close {
    display: block;
    opacity: 1;
}

.open {
    display: none;
}

.angpow-box:hover .open,
.angpow-box.active .open {
    display: block;
    margin: 0 auto;

}

.angpow-box:hover .close,
.angpow-box.active .close {
    display: none;
    width: 80%;
}

.tnc-title-mission ul li {
    padding-bottom: 10px;
    list-style-type: none;
    padding-left: 0;
}

.tnc-title-mission p {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 35px;
}

.token-mission {
    margin-top: 25px;
}

.additional-reward {
    margin-top: 30px;
}

.detail-btn{
    border: none;
    background: transparent;
}

.missionredeem{
    background: #f61717;
    border: 0;
    border-radius: 5px;
    padding: 15px;
    font-size: 36px;
    font-weight: 800;
    width: 230px;
    color: #fff;
}

.token-word{
    text-transform: uppercase;
    background: #fff;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    position: relative;
    bottom: 30px;
    font-weight: 900;
}

.details-table tr th {
    background: #f61717;
    color:  #fff;
    border: 1px solid #f61717;
}

.details-table tr td {
    border: 1px solid #f61717;
    font-weight: 600;
}

.event-title {
    font-weight: 800;
    font-size: 20px;
    margin-top: 10px;
    text-align: left;
    color: #fff;
}

.modal-content.event {
    background: #fff;
    border: 0;
    text-align: center;
    width: 700px;
    padding: 10px;
}

.event-desc{
    color: #f61717;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 10px;
}

.modal-dialog.event {
    margin: 0 auto;
}

.mission-title {
    margin-top: 50px;
}

.angpow-box {
    position: relative;
    cursor: pointer;
    background-size: 100% 100%;
    /* margin-bottom: 45px; */
}
.token-icon{
    background: url(../images/mission/token-1.png)no-repeat center center;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
 
}
.token-icon span{
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0px 0px 12px #000;
    margin-bottom: 10px;
}
.angpow-box:hover .token-icon,.angpow-box.active .token-icon{
    background: url(../images/mission/token-tick.png)no-repeat center center;
    filter: drop-shadow(0 0 5px #fff);
}
.angpow-box:hover .token-icon span,.angpow-box.active .token-icon span{
    display: none;
}

.mission-body{
    background: #140502;
}

.tnc-sec {
    margin-top: 40px;
    color: #fff;
}

.mini-tnc {
    background: linear-gradient(to bottom, rgba(13,11,14,1) 0%, rgba(44,39,37,1) 28%, rgba(44,39,37,1) 53%, rgba(7,3,6,1) 100%);
    border: 2px solid #f61717;
    border-radius: 8px;
    padding: 10px 20px 6px 20px;
}

.tnc-title-mission ul, .tnc-title-mission p {
    padding: 0;
    margin: 0;
}

.tnc-title-mission ul {
    margin-top: 20px;
}

.modal-dialog.redeem-mission{
    background: #040100;
    border: 2px solid #f61717;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.55);
    width: 693px;
    height: 438px;
    padding-top: 0px;
    text-align: center;
}

.modal-content.redeem-mission {
    margin: auto;
    background: transparent;
    border: none;
    height: 100%;
    display: block;
}

.modal-content.redeem {
    background: #24262b;
    border: 0;
    text-align: center;
    width: auto;
    padding-bottom: 35px;
    border-radius:25px;

}
.pop-angpow {
    position: relative;
    filter: drop-shadow(0 0 50px #000000);
    padding: 10px;
    border-radius: 20px;
}

.pop-angpow .close span{
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
    border-radius: 50%;
    font-size: 36px;
    width: 40px;
    height: 40px;
    padding: 20px;
    display: block;
    line-height: 1px;
    border: none;
}

.pop-angpow .close {
    padding: 0;
    margin: 0;
    position: absolute;
    right: 5%;
}


.modal-backdrop.show{
    opacity: 0.8;
}

.modal-redeem {
    padding-top: 25px;
}

.token-pt {
    position: absolute;
    left: 0;
    right: 0;
    top: 90%;
    font-size: 50px;
    color: #fff;
    line-height: 1.2;
}


.detail-btn:focus {
    outline: none;
}

#eventdetails .modal-dialog.redeem-mission{
    background: #040100;
    border: 2px solid #f61717;
    border-radius: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.55);
    width: 693px;
    height: 575px;
    padding-top: 0px;
    text-align: center;
    padding: 20px;
}

.pop-event .close {
    color: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
}

ul.menu-wrapper li .dropdown-content.event-dropdown a {
    padding: 10px;
}

ul.menu-wrapper li .dropdown-content.event-dropdown a:hover {
    color: #fff;
}

.new-game-gift.mission-drop {
    bottom: 20px;
    right: 100px;
}

.new-game-gift.gift-drop {
    bottom: 58px;
    right: 87px;
}