@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;400;600;800&display=swap');
/* CSS Document */ 
:root {
	--allImg: 2; /*slide img*/
	--imgHeight: calc(100% * var(--allImg));
	--color-primary: #ffb400;
	--color-secondary:#100707;
	--color-accent: #f8f6f9;
	--color-primary-hsl: 273, 100%, 18%;
	--color-primary-h: 273;
	--color-primary-s: 100%;
	--color-primary-l: 12%;
	--color-secondary-hsl: 45, 100%, 50%;
	--color-secondary-h: 45;
	--color-secondary-s: 100%;
	--color-secondary-l: 50%;
	--color-text-primary: #fff;
	--color-text-secondary: #c3c3c3;
	--color-text-a: #5200C7;
	--color-text-accent: #ff2726;
	--color-text-normal: #EDEDED;
	--color-text-light: #F5F5F5;
	--color-text-dark: #9c9c9c;
	--color-text-gray: #b0b0b0;
	--color-text-yellow: #D0B774;
	--color-button-primary: #ffc507;
	--color-button-secondary:#b10b1b;
	--color-button-normal: transparent;
	--color-button-accent: #ffdf1b;
	--color-button-text-b: #FEFEFE;
	--color-button-text-a: #282828;
    --color-button-third:linear-gradient(173deg, #f3e7a1, #e8bd4b);
	--button-main-radius: 30px;
	--button-sec-radius: 18px;
	--color-primary-light: #151515;
	--color-primary-background:#28282b;
	--color-secondary-background:#000;
	--color-dark-background:#1b201d;
	--color-light-background:linear-gradient(90deg, rgb(0 0 0) -4.71%, rgb(28 26 26) 26.71%, rgb(0 0 0) 100%);
	/* --color-light-background:linear-gradient(90deg, rgb(157 17 17 / 71%) -4.71%, rgb(255 0 0 / 66%) 26.71%, rgb(210 3 3 / 42%) 100%); */
	--color-white-background:#EBEBEB;
	--color-accent-background:#ebc860;
	--header-background: linear-gradient(90deg,var(--color-grey28),#005440 var(--hm-left-right-void),#005440 calc(100vw - var(--hm-left-right-void)),var(--color-grey28));
	--color-white25p: hsla(0,0%,100%,.25);
	--color-white50p: hsla(0,0%,100%,.5);
	--color-border:#1c1c1c;
    --color-badge:#1b1a1b;
    --color-border-btn-third:#ffb900 ;
    --color-btn-gold: linear-gradient(to bottom, #e7d39d, #b19560);
    --color-btn-white: linear-gradient(246deg, #bcb5b5, #ffffff);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #000;
/*  height: 100%;*/
}
body {
  margin: 0px;
  border: 0px;
  color: var(--color-text-normal);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
/*  height: 100%;*/
} 
html, body {
	background-color: var(--color-primary-background);
	height: auto;
	overflow: auto;
	/* height: 100vh; */
    text-decoration: none!important;
    -webkit-text-decoration: none !important;
}
body{
	font-family: 'Noto Sans Thai', sans-serif;
	font-size: 16px;
    padding-top: 60px;
    padding-bottom: 50px;
}
h1 {
	font-size: 1.5rem;
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: var(--color-text-secondary);
}
a:active {
  color:var(--color-accent);
}
a:active, a:hover,a:focus {
  text-decoration: none;
  outline: 0;
}
a[disabled] {
  color: rgba(255, 255, 255, 0.25);
  cursor: not-allowed;
}
.btn-kickoff-red{
    color: #000000;
    background: var(--color-btn-gold);
    /* border-color: var(--color-border-btn-third)!important;
    background: var(--color-button-third);
    box-shadow: 0 0 10px 2px #6e581e; */
}
.btn-kickoff-black{
    color: #000;
    background: var(--color-btn-white);
    /* border-color: var(--color-button-text-a)!important; */
    /* border-color: #494545 !important;
    background: linear-gradient(342deg, black, #4e4c4c); */
}
.text-ufa-white{
    color: #000;
    background: var(--color-btn-white);
}

/* btn modal */
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
            border: 0;
            border-radius: .25em;
            background: linear-gradient(342deg, black, #4e4c4c);
            color: #fff;
            font-size: 1em;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover {
    background-color: #4e4c4c;
    color: #fff;
}
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(78, 76, 76, 0.5);
}
.onMouse{
    cursor: pointer;
}
p{
margin-top: 0;
margin-bottom: 0rem;
}

/********* header *********/
#main-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999; 
  display: flex;
  align-items: center;
  height: auto;
  min-height: 56px;
  padding: 8px 0px;
  line-height: 1;
}
.fixed-header, .fixed-footer{
    width: 100%;
    max-width: -webkit-fill-available;
    position: fixed;
	z-index: 999;
}
.fixed-header{
    top: 0;
    background-size: cover;
    align-items: baseline;
    background: linear-gradient(to bottom, rgba(51, 51, 51, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-bottom: 1px solid var(--color-border);
    /* border-bottom: 2px solid #b12b22;
    box-shadow: rgb(77 38 38) 3px 0px 30px -10px;
    background-image: url('../images/bg-sport.jpg'); */
}
#header-member-box {
  display: flex;
	align-items: center;
}
#header-member-name {
	font-size: 1em;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: var(--color-text-primary)!important;
	-webkit-text-decoration: none!important;
	text-decoration: none!important;
}
#header-member-total{
	background: var(--color-btn-gold);
    color: black;
    padding: 3px;
    border-radius: 8px;
    text-align: right;
    /* border: 1px solid #6b5720; */
}
.logo {
	max-width: 100px;
	width: 100%;
}
#noti-icon {
	font-size: 1.3em;
	height: 36px;
}
#member-name-icon {
  display: block;
  text-align: center;
	vertical-align: middle;
  width: 36px;
  height: 36px;
	padding: 8px;
	border-radius: 50px;
    background: var(--color-btn-gold);
}
#member-name-icon img{
	height: 100%;
    width: auto;
}
.icon-l {
	font-size: 3em;
}
/*********** body ************/
.wallet-container {
    margin-bottom: 0.5em;
    padding: 1em;
    color: var(--color-text-normal);
	font-size: 1em;
    line-height: 1;
	background: var(--color-light-background);
	border: 1px solid var(--color-border);
    border-radius: 10px;
}
.wallet-container-card {
    margin-bottom: 0.5em;
    padding: 1em;
    color: var(--color-text-normal);
	font-size: 1em;
    line-height: 1;
	background: linear-gradient(90deg, rgb(157 17 17 / 81%) -4.71%, rgb(255 0 0 / 79%) 26.71%, rgb(210 3 3 / 79%) 100%);
	border: 1px solid var(--color-border);
    border-radius: 10px;
}
.wallet-amount {
    font-weight: 600;
    font-size: 2em;
	margin-top: 8px;
	margin-bottom: 8px;
}
/* rank */
.box-rank{
	margin: auto;
	justify-content: center;
	text-align: center;
}
.box-rank .rank-title{
	font-size: 1em;
}
.box-rank img{
	height: 40px;
	cursor: pointer;
}
.box-rank #rank-icon{
	animation: rankWink 10s 1;
	margin-left: -10px;
}
@keyframes rankWink {
	0%,
	10%,
	100% {
		transform:scale(1);
	}
	25% {
		transform: scale(1.2);
	}
	28% {
		transform: scale(1);
	}
	28%,
	37% {
		transform: rotate(-10deg);
	}
	32%,
	45% {
		transform: rotate(10deg);
	}
	53% {
		transform: rotate(0deg)
	}
}
.progress-bar{
	font-weight: bold;
	height: 100%;
	transition: width 3s ease-in-out;
}
.market-progress{
	width: 100%;
	border: 2px whitesmoke solid;
	background: orangered;
	font-size: 0.5em;
	height: 1.2em;
}
.market-progress .progress-bar {
	color: unset;
	background: limegreen;
}
.rank-progress{
	width: 100%;
	border: 2px var(--color-light-background) solid;
	border-radius: 20px;
	font-size: 0.5em;
	height: 1.8em;
}
.rank-progress .progress-bar {
	border-radius: 20px;
	color: var(--color-text-dark);
	background: var(--color-primary-background);
	
}
/* badges */
#badges-box{
	display: flex;
	flex-wrap: nowrap;
	column-gap: 3px;
	justify-content: center;
}
#badges-box .badge-member{
	display: flex;
    width: 1.6em;
    align-items: center;
    justify-content: center;
}
#badges-box .badge-member img{
	width: 2.2em;
	height: auto;
}
/* app box */
.menu-mobile {
	display: flex;
    color: var(--color-text-normal);
    font-size: 0.8em;
    text-align: center;
    flex-direction: column;
    align-items: center;
	border:1px solid #bca26dab;
	border-radius: 10px
}
.menu-mobile-icon {
	position: relative;
    width: 3rem;
    height: 3rem;
	 padding-top: 0.3rem; 
    /*background: #350656;*/
/*    background-color: var(--color-secondary-background);*/
    border-radius: 50px;
}
.menu-mobile-icon img {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 2rem;
/*    transform: translate(-50%,-50%);*/
}

.app-box-each {
	display: block;
	max-width: 20%;
	padding: 8px;
	align-items: self-end;
    justify-content: center;
}
.menu-mobile-wrapper{
/*	row-gap: 10px;*/
	padding-left: 0.5em;
	padding-right: 0.5em;
}

/****** ****** *********/


/********* form *********/

.modal-input {
    position: relative;
    margin: 10px 0px;
}

.-m-form-control {
color: var(--color-text-light);
    background-color: var(--color-dark-background);
    width: 100%;
    font-size: 1em;
    border: none;
    padding-left: 40px;
}

.form-control input{
	max-width: 250px;
}

.input-icon {
	position: absolute;
    width: 1em;
    top: 0.6em;
    left: 1em;
    text-align: center;
    color: var(--color-accent);
}

.form-control:focus {
	box-shadow: 0 1px 0 0 var(--color-primary);
/*    box-shadow: 0 0 1pt 2pt var(--color-primary);*/
}
.bg-input{
	color: var(--color-text-light);
    background-color: var(--color-dark-background);
    width: 100%;
    font-size: 1em;
    border: none;
    padding-left: 40px;
}

.input-red {/*rename*/
    display: block;
    width: 100%;
    border-left: 3px solid var(--color-secondary);
	border-right: 1px solid var(--color-light-background);
	border-bottom: 1px solid var(--color-light-background);
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-red:focus {
    border: none;
    box-shadow: 0 0 1pt 2pt var(--color-light-background);
}
/********  button *********/

.btn-play {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: #fff;
    margin: -25px auto;
    font-size: 3rem;
    z-index: 999;
    position: relative;
}

.btn-play img {
	animation-name: rotate;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotate{
    from{ transform: rotate(-360deg); }
    to{ transform: rotate(360deg); }
}

/* .btn:hover {
    color: unset;
} */
.btn-money {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9em;
    width: 80px;
    margin: 5px;
	padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    background-color: var(--color-white-background);
    border-radius: 25px;
	border: none;
	border-right: 1px solid var(--color-light-background);
    border-bottom: 1px solid var(--color-light-background);
}

.btn-money:focus {
    color: var(--color-text-light) !important;
    border: 1px solid var(--color-white-background);
    background-color: var(--color-dark-background);
}

.btn-main {
    display: flex;
    font-weight: 600;
    justify-content: center;
    align-items: center;
	width:fit-content;
    min-width: 80px;
    height: 2.6rem;
    margin: 0 0 0 0.3em;
    padding: 0.85em 1.2em;
    font-size: 0.9em;
    line-height: 1;
/*    letter-spacing: 0.8px;*/
    border-radius: var(--button-main-radius);
    border: 1px solid;
    cursor: pointer;
}

.btn-round {
    display: flex;
    font-weight: 600;
    justify-content: center;
    align-items: center;
	width:fit-content;
    min-width: 50px;
	max-width: 250px;
    height: 2.7em;
    margin: 0 0 0 0.3em;
    padding: 0.85em 1.2em;
    font-size: 0.75em;
    line-height: 1;
/*    letter-spacing: 0.8px;*/
    border-radius: var(--button-sec-radius);
    border: 1px solid;
    cursor: pointer;
}
.btn-primary-a {
    color: var(--color-button-primary);
    /* background-color: var(--color-button-primary); */
    border-color: var(--color-button-primary);
}
.btn-green {
    color: var(--color-button-text-b);
	border:none;
    background-color: var(--color-button-secondary);
}
.btn-normal {
	color: var(--color-text-primary);
    background-color: var(--color-button-primary);
    border-color: transparent;
}
.btn-accent {
	color: var(--color-button-text-a);
    background-color: var(--color-button-accent);
    border-color: transparent;
}
.btn-accent:hover{
	color: var(--color-button-text-a);
}
.btn-white {
	color: var(--color-button-text-b);
    border-color: var(--color-white50p);
}
.btn-yellow{
	color: var(--color-button-text-a);
    background-color: var(--color-button-primary);
}
.btn-gold{
	color: var(--color-button-text-a);
    background: var(--color-btn-gold);
}
.btn-danger {
    color: var(--color-button-text-b);
    background-color: red;
    border-color: unset;
    border-style: none;
}

.btn-cancel {
    color: var(--color-primary);
    background-color: none;
    border-color: red;
    border-style: solid;
    border-width: 2px;
}


.btn-outline-warning {
    border-color: var(--color-primary)!important;
    border-radius: 10px;
}


/*********** footer *************/
#main-footer {
    color: var(--color-text-normal);
    position: fixed;
    z-index: 998;
    font-size: 0.9em;
	border-radius: 10px;
    margin: 0.5em;
    padding-bottom: 5px;
    background: var(--color-secondary-background);
}

#main-footer .h3{
	margin-bottom: 0px;
}
.fixed-footer{
    bottom: 0;
} 
/************ ****** ************/


#creditPlayer {
	color: var(--color-secondary);
}
#member-name {
	font-size: 1.1em;
	text-overflow: ellipsis;
  	overflow: hidden;
	white-space: nowrap;
}

#moneyDiv {
    background-color: #282828;
    border-radius: 10px;
}
#main-content{
	margin-bottom: 80px;
}
#top-menu {
	flex-wrap: nowrap;
	max-width: 550px;
	margin:auto;
	padding-left: 10px;
	padding-right: 10px;
}
#top-menu > div > div{
    font-size: 0.8em;
    color: #9d9d9d;
    border-radius: 10px;
    position: relative;
    margin-top: -7px;
    border: solid 1px #484848;
    background-color: #000000;
	margin-left: 0.1em;
	margin-right: 0.1em;
}
.list-group-item.active {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-text-primary);
}
.main-icon{
	width: 100%;
}

.box-life {
	font-size: 0.8em;
	color: #E2E2E2;
	font-weight: 800;
}
.box-life img{
	width: 30px;
}
.box-life span{
	color: #FF6C6F;
}

.box-slide{
    margin-top: 0.3em;
    margin-bottom: 0.3em;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
	max-width: 800px;
	max-height: 250px;
	aspect-ratio: 9/3;
}

.box-slide .slide-img{
	width: auto;
    height: auto;
    max-width: 100%;
    position: relative;
	aspect-ratio: 9/3;
    -webkit-animation: slide-down 15s infinite;
    -moz-animation: slide-down 15s infinite;
    animation: slide-down 15s infinite;
}

@keyframes slide-down{   
  0%,100%{top:calc(100% * -1);}
  50%,100%{top:calc(100% * -1);}
  60%{top: calc(100% * 0);}
  95%{top: calc(100% * 0);}
} 

.-m-footer .container{
	max-width: 550px;
}
.-m-footer .container .h3{
	margin-bottom: 0px;
}
.img-promotion {
    width: 90%;
}
.bg-secondary{
	background-color: var(--color-secondary-background)!important;
}
.bg-primary{
	background-color: var(--color-primary-background)!important;
}
.bg-hilight{
	background-color: var(--color-primary)!important;
}
.bg-light{
	background-color: var(--color-primary-light)!important;
}
.bg-bank {
    background-image: url(../images/banknote-bg1.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
/* .bg-warning{
	background-color:var(--color-accent-background)!important;
} */
.bg-main-color{
	background:var(--color-btn-gold)!important;
}
.bg-accent {
	background-color: var(--color-accent);
}
.on-cursor {
    cursor: pointer;
}

.radio-container {
    padding: 5px;
}

.radio-container:hover {
    border: #EBAC3B 1px solid;
    border-radius: 15px;
}

.nav-icn-game .game-icon img{
	display: block;
	width: 100%;
	height: 100%;
}
.nav-link {
	padding: 0;
}

.moneyInputDiv {
    border-radius: 10px;
}


.swal2-popup {
    background-color: #222;
}

.noti-detail {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: center;
    color: #fff;
    border-bottom: thin solid #198754;
    padding: 5px;
    margin: 8px 0px;
}
.swal2-popup {
    background-color: #dfdfdf;
    color: #140707;
}
	.noti-body .text-header{
		font-size: 0.9em;
	}
	.noti-header h4{ 
		font-size: 1.2em;
		color: var(--color-accent); 
	}
	.noti-header hr{
		margin: 5px;
		color: var(--color-accent); 
		opacity: 1;
	}
	.noti-detail {
		font-size: 0.8em;
	}
	.noti-date{
		font-size: 0.9em;
		text-align: left;
		color: var(--color-text-yellow);
	}
.text-s {
	font-size: 0.8rem;
}
.text-xs {
	font-size: 0.7em;
}
.text-15em{
	font-size: 1.5em;
}
.mt-10{
	margin-top: 10px;
}
.mt-40{
	margin-top: 40px;
}
.space-hr{
	margin: 10px 0px 10px 10px;
}
#creditS {
	font-size: 2em;
	font-weight: 600;
}
.main-text-color {
	color: var(--color-text-primary);
}
.style-a-text-color {
	color: var(--color-text-yellow);
}
.accent-text-color{
	color: var(--color-text-accent);
}
.normal-text-color {
	color: var(--color-text-normal);
}
.sec-text-color {
	color: var(--color-text-secondary);
}
.text-gray {
	color: var(--color-text-gray);
}
.text-yellow{
	color:var(--color-text-yellow);
}
.text-primary-green{
	color:var(--color-primary-light);
}
.comment {
	font-size: 0.8em;
    background-color: #c0c0c0;
    color: #000000;
    border-radius: 8px;
    padding: 3px;
}
.img-content{
	margin: -30px -30px -20px;
}
.inside-box {
	background-color: var(--color-dark-background);
    border-radius: 10px;
    padding: 1em;
	color: white;
}
.inside-box #rank-icon img{
	width: 40px;
}
.payment-img{
	max-height: 150px;
	width: auto;
}
.member-name{
	font-size: 1.5em;
}
#mytext {
	color:black;
	font-weight: 600;
	/* border: 1px solid var(--color-dark-background); */
	border-radius: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 20px;
	font-size: 1.3em;
}
#promotionSelect img{
	max-width: 180px;
	border: solid 1px #FF4A4D;
	border-radius: 10px;
}

.copy{
    display: block;
    position: relative;
    margin-top: -2.5em;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.copy-hidden {
	opacity: 0;
}
.copy-show{
    -webkit-animation: fadeOut 3s;
    animation: fadeOut 2s;
    animation-fill-mode: forwards;
}
@-webkit-keyframes fadeOut {
    0% { opacity: 0;}
	10% { opacity: 1;}
    70% { opacity: 1;}
    100% { opacity: 0;}
}  
@keyframes fadeOut {
    0% { opacity: 0;}
	10% { opacity: 1;}
    70% { opacity: 1;}
    100% { opacity: 0;}
}
/*********** move from .php ************/
.grecaptcha-badge { 
	visibility: hidden;
}
.w-30{
	width: 30px;
}
/**** wallet ****/
/* Custom CSS for SweetAlert */
/*new css*/
.box-body{
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 25px;
    height: 100%;
}
.box-header{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
	gap:10px;
}
.box-content {
    text-align: center;
    background: var(--color-light-background);
    padding: 10px;
    position: relative;
    flex-direction: column;
    width: 100%;
	max-width: 550px;
    border-radius: 25px;
    border: 1px solid var(--color-border);
    height: 100%;
    box-shadow: 0 0 2px var(--color-border);
}
.box-content-wallet{
	text-align: center;
/*    background: var(--color-light-background);*/
    padding: 10px;
    position: relative;
    flex-direction: column;
    width: 100%;
    border-radius: 25px;
/*    border: 1px solid var(--color-light-background);*/
    height: 100%;
/*    box-shadow: 0 0 2px var(--color-light-background);*/
}
.box-wallet{
    display: inline-block;
    border: 3px solid var(--color-border);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    text-align: center;
    background: var(--color-light-background);
    /* background: linear-gradient(90deg, rgb(157 17 17 / 71%) -4.71%, rgb(255 0 0 / 66%) 26.71%, rgb(210 3 3 / 42%) 100%); */
	/*display: inline-block;*/
 /*   border: 3px solid #e5d587;*/
 /*   border-radius: 50%;*/
 /*   width: 200px;*/
 /*   height: 200px;*/
	/*text-align: center;*/
 /*   background: radial-gradient(ellipse at center, var(--color-secondary-background) 0%, #090909 100%);*/
}
.new-white{
    color: #ffffff;
    margin-left: 0px;
    background: -moz-linear-gradient(270deg, rgb(235 234 229) 5%, #fffdf4 25.76%, rgb(198 196 192) 56.84%, rgb(224 223 216) 72%);
    background: -o-linear-gradient(270deg,rgb(235 234 229) 5%, #fffdf4 25.76%, rgb(198 196 192) 56.84%, rgb(224 223 216) 72%);
    background: linear-gradient(180deg, rgb(235 234 229) 5%, #fffdf4 25.76%, rgb(198 196 192) 56.84%, rgb(224 223 216) 72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.new-gold {
    color: #D9B05E;
    margin-left: 0px;
    background: -moz-linear-gradient(270deg, rgba(255, 246, 191, 1.00) 0%, rgba(252, 230, 104, 1.00) 27.76%, rgba(218, 166, 81, 1.00) 77.84%, rgba(255, 224, 67, 1.00) 100%);
    background: -o-linear-gradient(270deg, rgba(255, 246, 191, 1.00) 0%, rgba(252, 230, 104, 1.00) 27.76%, rgba(218, 166, 81, 1.00) 77.84%, rgba(255, 224, 67, 1.00) 100%);
    background: linear-gradient(180deg, rgba(255, 246, 191, 1.00) 5%, #f9e68b 25.76%, rgb(134, 99, 13) 56.84%, rgb(162, 151, 93) 72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.profile-bank{
	display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto auto;
    gap: 0px 5px;
    width: 100%;
/*    margin-top: 5px;*/
}
.profile-img img{
	width: 50px;
}
.detail-bank{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.detail-member{
	display: grid;
    grid-auto-flow: row;
    justify-content: space-around;
    grid-template-columns: auto auto;
    gap: 10px 5px;
    width: 100%;
}
.box-modal{
    background:#1b1b1b;
}
.profile-img{
	width: 100%
}
.profilemember-img img{
	width: 100px;
	border-radius: 50%;
	border: 1px solid var(--color-primary-light);
	box-shadow: 0 0 2px var(--color-primary-light);
}
.box-content-icon{
	display: flex;
	flex-wrap: wrap;
/*	display: grid;*/
    /* border: 1px solid red; */
    justify-content: space-between;
    width: 100%;
/*    grid-template-columns: repeat(auto-fit, 60px);*/
    gap: 8px;
}
.box-icon{
	display: block;
    position: relative;
    border-radius: 10px;
    width: 100px;
/*    background-color: var(--color-secondary-background);*/
/*    border: 1px solid var(--color-secondary-background);*/
/*	border:1px solid #41464b;*/
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}
.member-phone{
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.box-menu{
	display: flex;
    flex-direction: column;
}
/* end new css*/
.custom-popup {
	width: 400px!important;
	/* Set the width to auto to fit the image */
	height: 400px;
	margin: 0px;
	/* width: auto !important;  */
	background: transparent !important;
	/* Make the background transparent */
	box-shadow: none !important;
	/* Remove the box shadow */
}

.custom-image {
	width: 100%;
	/* Set the image width to 100% of the popup */
	height: 100%;
	/* Set the image height to 100% of the popup */
	object-fit: cover;
	/* Ensure the image covers the entire popup */
}
.swal2-image {
	margin: 0!important;
}
	.splash-img{
		text-align: center;
		max-width: 100%;
		margin-bottom: 10px;
	}
	.splash-img img{
		max-width: 800px;
		width: 100%;
		height: auto;
		border-radius: 10px;
	}
/******* ********************* ******/
.-m-header {
    /* position: fixed; */
    display: block;
    /* top: 0;
    left: 0;
    right: 0;
    padding: 0px 0px;
    z-index: 900; */
    height: 65px;
    /* background-color: #222; */
}

.-m-footer {
    background-color: white;
    color: #a60000;
    position: fixed;
    z-index: 999;
}
/*หน้าคู่มือ*/
.howto_boxheader {
    background-image: -webkit-linear-gradient(325deg, hsl(0, 100%, 25%) 30%, hsl(0, 100%, 45%));
    background-image: -moz-linear-gradient(325deg, hsl(0, 100%, 25%) 30%, hsl(0, 100%, 45%));
    background-image: -o-linear-gradient(325deg, hsl(0, 100%, 25%) 30%, hsl(0, 100%, 45%));
    background-image: linear-gradient(325deg, hsl(0, 100%, 25%) 30%, hsl(0, 100%, 45%));
    border: 1px solid hsl(0, 100%, 30%);
}

    .howto_boxheader_radius {
    border-radius: 8px;
    }
    .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    }
    .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    }
    .accordion-button:not(.collapsed) {
    color: #212529;
    background-color: #D7D7D7;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }
    .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    }

    .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
    }
/*หน้าเติมเงิน*/
/* Custom CSS for SweetAlert */
	.custom-popup {
		width: 400px;
		/* height: 400px; */
		margin: 0px;
		background: transparent !important;
		box-shadow: none !important;
	}
	.custom-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.swal2-image {
		margin: 0;
	}
/*หน้าโปรโมชั่น*/
.-m-img-bg-border-radius-a {
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .1), rgba(0 ,0 ,0 , .15));
        border-radius: 10px;
    }

    .-m-min-height-a {
        min-height: 270px;
        text-align: center;
        min-height: auto;
    }

    .-m-imgPro-a {
        width: 90%;
        transition: transform .2s;
    } 

    .-m-img-noPro-a {
        width: 90%;
        transition: transform .2s;
    } 
    
    .-m-imgPro-a:hover {
        -ms-transform: scale(1.1); /* IE 9 */
        -webkit-transform: scale(1.1); /* Safari 3-8 */
        transform: scale(1.1); 
    }
/* display */
.fx-sb{
	display: flex;
	justify-content:space-between;
}
.fx-col {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.fx-row {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
}

/* layout */
.pr-5 {
	padding-right: 5px;
}
.pr-10 {
	padding-right: 10px;
}
.pr-15 {
	padding-right: 15px;
}
.pl-5 {
	padding-left: 5px;
}
.pl-10 {
	padding-left: 10px;
}
.pl-15 {
	padding-left: 15px;
}
.ml-5 {
	margin-left: 5px;
}
.mr-5 {
	margin-right: 5px;
}

.max-content {
	width: max-content;
}
.max-w550 {
	max-width: 550px;
}
.max-w400 {
	max-width: 400px;
}
.w-50-p{
	width:50px;
}

@media screen and (min-width: 768px){
	.app-box {
    	margin-bottom: 32px;
	}
	.app-box-each {
		max-width: 12%;
	}
	.bank-logo {
		width: 50px;
	}
	.box-content-icon{
		justify-content: center;
	}
	.box-icon{
		width: 300px;
	}
}
@media (min-width: 992px){
	.app-box-each {
		max-width: 10%;
	}
}
/**- ----- --- รอเช็คว่าต้องใช้หรือเปล่า *
.profile-img {
    border-radius: 50%;
    height: 40px;
}
.account-box {
	max-width: 550px;
}
.account-header {

    background-color: #871414;
	color: var(--color-secondary);
    padding: 15px;
	padding-top: 8px;
    border-radius: 20px;
    background: linear-gradient(325deg,hsl(var(--color-primary-h),var(--color-primary-s),calc(var(--color-primary-l) + 8%)) 30%,hsl(var(--color-primary-h),var(--color-primary-s),calc(var(--color-primary-l) + 30%)));
}
.account-header hr{
	margin-bottom: 5px;
}
.account-header h6{
	color: #F4F4F4;
}
.account-header .comment{
	font-size: 0.8em;
    color: black;
    display: block;
	background-color: var(--color-primary-light);
	border-radius: 8px;
	padding: 5px;
}
.bank-logo {
    width: 40px;
    filter: brightness(100%);
}

#menu-user-money{
    position: fixed;
    z-index: 60;
    display: flex;
    justify-content: center;
	cursor: pointer;
    bottom: -70px;
    width: 100%;
    max-width: 500px;
    padding: 0px 10px;
    -webkit-transition: 0.5s ease-in-out;
   -moz-transition: 0.5s ease-in-out;
   -o-transition: 0.5s ease-in-out;
   transition: 0.5s ease-in-out;
}
#menu-user-money .money-menu{
    display: flex;
    flex-grow: 1;
    background-color: #dd1c1e;
    padding: 10px 5px;
    text-align: center;
    justify-content: center;
    font-size: 1.2rem;
}
#menu-user-money .money-menu a{
    width: 100%;
}
#menu-user-money .money-menu:first-child{
      border-top-left-radius: 20px;			 
}
#menu-user-money .money-menu:last-child{
      border-top-right-radius: 20px;			 
}
.anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.anticon[tabindex] {
    cursor: pointer;
}
.anticon svg {
    display: inline-block;
}
.redo-button {
    will-change: transform;
    transition: all .25s ease;
}


.-m-menu-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #323232;
    color: #e95c5c;
}
.-m-text-color32 {
    color: #323232;
}

.-m-text-colore95 {
    color: #e95c5c;
}
.-m-header-bg {
    background-color: #222;
}
/**- ----- --- -- - - -- - - - -- - */