@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: #ffc600;
	--color-secondary: #fbe256;
	--color-accent: #d800df;
	--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: #ffc600;
	--color-text-secondary: #f98bff;
	--color-text-a: #5200C7;
	--color-text-accent: #d800df;
	--color-text-normal: #EDEDED;
	--color-text-light: #F5F5F5;
	--color-text-dark: #222222;
	--color-text-gray: #b0b0b0;
	--color-button-primary: #ffc600;
	--color-button-secondary:#65009D;
	--color-button-normal: #EBEBEB;
	--color-button-accent: #d800df;
	--color-button-text-b: #FEFEFE;
	--color-button-text-a: #222222;
	--color-primary-light: #e279ff;
	--color-primary-background:#1e1625;
	--color-secondary-background:#7608d3;
	--color-dark-background:#480d42;
	--color-light-background:#9314ff;
	--color-white-background:#EBEBEB;
	--color-accent-background:#ff4ef9;
}
*, *::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; */
}
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-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-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;
}



/********* 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-color: var(--color-primary-background);
}
#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-secondary);
	text-decoration: none;
}
#header-member-total{
	background-color: var(--color-primary);
    color: black;
    padding: 2px;
    border-radius: 8px;
    text-align: right;
    border: 1px solid #a35800;
}
p {
    margin-top: 0;
    margin-bottom: 0rem;
}
.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-color: var(--color-secondary-background);
}
#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: 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%)));
    border: 1px solid hsl(var(--color-primary-h),var(--color-primary-s),calc(var(--color-primary-l) + 22%));
    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;
}
.menu-mobile-icon {
	position: relative;
    width: 3rem;
    height: 3rem;
	 padding-top: 0.3rem; 
    /* margin-bottom: 2px; */
	/*    background: linear-gradient(325deg,#4002a2 10%,#490b61);*/
    background: #350656;
/*    border: 1px solid #4f0c88;*/
    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;
}

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

.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-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-dark-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);
    border: 1px solid var(--color-primary-light);
	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;
	max-width: 250px;
    height: 2.4em;
    margin: 0 0 0 0.3em;
    padding: 0.85em 1.2em;
    font-size: 0.9em;
    line-height: 1;
/*    letter-spacing: 0.8px;*/
    border-radius: 22px;
    border-style: none;
    cursor: pointer;
}
.btn-primary-a {
	color: var(--color-button-text-a);
    background-color: var(--color-button-primary);
    border-color: var(--color-primary-background);
}
.btn-normal {
	color: var(--color-button-text-a);
    background-color: var(--color-button-normal);
    border-color: transparent;
}
.btn-accent {
	color: var(--color-button-text-b);
    background-color: var(--color-button-accent);
    border-color: transparent;
}
.btn-white {
	color: var(--color-button-text-a);
    background-color: var(--color-white-background);
    border-color: transparent;
}
.btn-yellow{
	color: var(--color-button-text-a);
    background-color: var(--color-button-primary);
}
.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-primary-a a:link,.btn-primary-a a:visited,.btn-primary-a a:hover,.btn-primary-a a:active, .btn-white a:link,.btn-white a:visited,.btn-white a:hover,.btn-white a:active, .btn-normal a:link,.btn-normal a:visited,.btn-normal a:hover,.btn-normal a:active, .btn-yellow a:link,.btn-yellow a:visited,.btn-yellow a:hover,.btn-yellow a:active, .btn-cancel a:link,.btn-cancel a:visited,.btn-cancel a:hover,.btn-cancel a:active{
	text-decoration: none;
    color: var(--color-button-text-a);
}

.btn-danger a:link,.btn-danger a:visited,.btn-danger a:hover,.btn-danger a:active,.btn-accent a:link,.btn-accent a:visited,.btn-accent a:hover,.btn-accent a:active  {
	text-decoration: none;
	color: var(--color-button-text-b)!important;
}
.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-color: 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: #480d42;
    border-color: #480d42;
    color: #ff4ef9;
}
.main-icon{
	width: 90%;
}

.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-primary-light)!important;
}
.bg-main-color{
	background-color:var(--color-primary)!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: #606060;
    border-bottom: thin solid #4b006d;
    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: #4b006d; 
	}
	.noti-header hr{
		margin: 5px;
		color: #4b006d;
		opacity: 1;
	}
	.noti-detail {
		font-size: 0.8em;
	}
	.noti-date{
		font-size: 0.9em;
		text-align: left;
		color: #4b006d;
	}
.text-s {
	font-size: 0.8rem;
}
.text-xs {
	font-size: 0.7em;
}
.text-15em{
	font-size: 1.5em;
}
#creditS {
	font-size: 2em;
	font-weight: 600;
}
.main-text-color {
	color: var(--color-text-primary);
}
.style-a-text-color {
	color: var(--color-text-a);
}
.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);
}
.comment {
	font-size: 0.8em;
    background-color: #c0c0c0;
    color: #000000;
    border-radius: 8px;
    padding: 3px;
}
.inside-box {
	background-color: var(--color-white-background);
    border-radius: 10px;
    padding: 1em;
	color: #4f4f4f;
}
.inside-box #rank-icon img{
	width: 40px;
}
.payment-img{
	max-height: 80px;
	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;
}

/**** wallet ****/
/* Custom CSS for SweetAlert */
.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(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%)));
    background-image: -moz-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%)));
    background-image: -o-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%)));
    background-image: 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%)));
    }
    .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;
	}
}
@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;
}
/**- ----- --- -- - - -- - - - -- - */