#CLUBE_TOKEN_CONTAINER .FRAME{
	position:fixed;
	width:100%;
	height:100%;
	top:0; left:0;
	background-color: rgba(0,0,0,.5);
	z-index: 999992;
	display:flex;
	align-items: center;
	justify-content: center;
}

#CLUBE_TOKEN_CONTAINER .WINDOW{
	width:90%;
	height:90%;
	max-width: 520px;
	max-height: 370px;
	background-color: #FFFFFF;
	display:flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 5px;
	box-shadow:
		0 2.8px 2.2px rgba(0, 0, 0, 0.02),
		0 6.7px 5.3px rgba(0, 0, 0, 0.028),
		0 12.5px 10px rgba(0, 0, 0, 0.035),
		0 22.3px 17.9px rgba(0, 0, 0, 0.042),
		0 41.8px 33.4px rgba(0, 0, 0, 0.05),
		0 100px 80px rgba(0, 0, 0, 0.07)
	;
	transition: all 1s;
}
#CLUBE_TOKEN_CONTAINER .HEADER_TOP{
	height: 50px;
	background-color: var(--color--secondary);
	position:relative;
}
#CLUBE_TOKEN_CONTAINER .HEADER_TOP .HEADER_LOGO{
	background-image: url('../../global/logo-249x163.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 188px;
	height: 88px;
	position: relative;
	z-index: 99;
}
#CLUBE_TOKEN_CONTAINER .HEADER_BOTTOM{
	height: 10px;
	background-color: var(--color--primary);
}
#CLUBE_TOKEN_CONTAINER .CONTENT{
	flex:1;
	overflow-x: hidden;
	overflow-y: auto;
	scroll-behavior: smooth;
	position:relative;
	display:flex;
	flex-direction: column;
}

#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW{
	flex: 1;
	padding: 25px 5px 5px 5px;
    box-sizing: border-box;
	overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}



#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW_SPINNER{
	display:flex;
	align-items: center;
	justify-content: center;
}

#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW_SPINNER .lds-dual-ring:after{
	border-color: grey transparent grey transparent;
}

#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_TOKEN{
	display: flex;
    flex-direction: column;
	align-items: center;
    justify-content: center;
}
#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_TOKEN h1{ 
	text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0 0 0;
}
#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_TOKEN p{ 
	text-align: center;
    margin: 20px 0;
    font-size: 14px;
    font-weight: 400;
}
#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_TOKEN input{ 
	text-align: center;
    width: 100%;
    max-width: 130px;
    margin: 0 auto;
	padding: 0;
    border: none;
    border-bottom: 2px solid #666666;
    letter-spacing: 0;
    font-size: 40px;
    border-radius: 4px;
	outline: none;
	-webkit-appearance: none;
}


#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_ERROR{
	display:flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_ERROR h1{
	font-size: 32px;
    text-align: center;
    padding: 20px;
}

#CLUBE_TOKEN_CONTAINER .CONTENT_VIEW.CONTENT_ERROR .ERROR_MESSAGE{
	font-size: 22px;
    text-align: center;
    padding: 20px;
}



#CLUBE_TOKEN_CONTAINER .ACTION {
	height: 50px;
	padding: 10px 25px;
	box-sizing: border-box;
	border-top: 1px solid #EFEFEF;
}
#CLUBE_TOKEN_CONTAINER .ACTION button{
	font-size: 12px;
	display: inline-block;
	width: unset;
	height: 100%;
	padding: 0 20px;
	margin: 0 5px;
	border-radius: 3px;
	cursor: pointer;
	box-sizing: border-box;
}
#CLUBE_TOKEN_CONTAINER .ACTION{
	height: 50px;
	padding: 10px 25px;
	box-sizing: border-box;
	border-top: 1px solid #EFEFEF;
}
#CLUBE_TOKEN_CONTAINER .ACTION button{
	font-size: 12px;
	display: inline-block;
	width: unset;
	height: 100%;
	padding: 0 20px;
	margin: 0 5px;
	border-radius: 3px;
	cursor: pointer;
	box-sizing: border-box;
}
#CLUBE_TOKEN_CONTAINER .ACTION button.PRIMARY{
	background-color: var(--color--primary);
	color: #FFFFFF;
	border:1px solid var(--color--primary);
}
#CLUBE_TOKEN_CONTAINER .ACTION button.SECONDARY{
	background-color: transparent;
	color: var(--color--primary);
	border:1px solid var(--color--primary);
}
#CLUBE_TOKEN_CONTAINER .ACTION button:disabled{
	opacity: .5;
}

#CLUBE_TOKEN_CONTAINER .BOTTOM{
	height: 10px;
	background-color: var(--color--secondary);
}


@media (max-width: 580px) {

	#CLUBE_TOKEN_CONTAINER .WINDOW{
		width:100%;
		height:100%;
		max-width: unset;
		max-height: unset;
		border-radius: 0;
	}

	#CLUBE_TOKEN_CONTAINER .HEADER_TOP{
		height: 35px;
	}

	#CLUBE_TOKEN_CONTAINER .HEADER_TOP .HEADER_LOGO{
		margin:auto;
		height: 78px;
	}

	#CLUBE_TOKEN_CONTAINER .BOTTOM{
		display:none;
	}
}
