@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype'); 
  font-weight: 700;
}
@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype'); 
  font-weight: 800;
}
body {
	margin: 0;
	padding: 0;
} 
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#wrapper{
	position: absolute;
	width: 100%;
	height: 100%;
	font-family:'HelveticaNeue','Arial', sans-serif;
}
#banner-content{
	width: 100%;
	height: 100%
}
#content-animation{
	width: 100%;
	height: 100%;
}
#content-animation img{
	max-width: 100%;
	height: auto;
}

#background{
	background: url(../images/background.jpg) no-repeat; 
	background-size: cover;
	position: absolute;
    width: 100%;
    height: 100%;
}
#content-wrapper{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;	
	justify-content: center;
}
#content-wrapper p{
	width: 100%;
    text-align: left;
    color: #fff;
    margin: 0;
}
a{color:#58bff6;text-decoration: none;}
a:hover{color:#aaa; }
.pull-right{float: right;}
.pull-left{float: left;}
.clear-fix{clear:both;}
div.logo{
	position: relative;
    width: 50%;
    height: auto;
}
div.logo svg{
	width:180px;
	height:100px;
}
.logo-active{fill: #44aacc !important;}
#formWrapper{
	position: relative;
    width: 90%;
    height: 400px;
}
.darken-bg{background: rgba(0,0,0,.5) !important; transition:all .3s ease;}
form#form{
	position: absolute;
    width: 100%;
	height: 100%;
    border-radius: 16px;
}
div.form-item{
	position: relative; 
	display: block; 
	margin-top: 20px;
}
.field-wrapper{
	position: relative;
    width: 100%;
    height: 55px;
}
.field-server-wrapper{
	position: relative;
    width: 100%;
    height: 55px;
}
 input{transition: all .2s ease;}
 input.form-style{
	position: absolute;
	color: #b3b3b3;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    -moz-border-radius: 27px;
    /* -webkit-border-radius: 27px; */
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    font-family: 'HelveticaNeue', 'Arial', sans-serif;
    font-size: 105%;
    letter-spacing: .8px;
	padding-left: 50px;
}
div.form-item .form-style:focus{outline: none; border:1px solid #3DDB4C; color:black; }
div.form-item p.formLabel {
    transition: all .4s ease;
    color: #fff;
	font-size: 16px;
	margin-bottom: 5px !important;
	pointer-events: none;
}
.formTop{top:-22px !important; left:26px; background-color: #fff; padding:0 5px; font-size: 14px; color:#3DDB4C !important;}
.formStatus{color:#8a8a8a !important;}
input[type="submit"].login{
	width: 200px;
	height: 50px;
}
input[type="submit"].login:hover{background-color: #fff; border:1px solid #3ddb4c; color:#3ddb4c; cursor:pointer;}
input[type="submit"].login:focus{outline: none;}

#otp-wrapper{
	position: relative;
    width: 100%;
}
.container {
    padding: 15px 0px;
    width: 100%;
}
h1 {
	margin-bottom: 1.5rem;
	color: #2DA038;
	font-weight: 600;
	font-size: 2rem;
}
p {
	/*margin-bottom: 2rem;*/
	color: #fff;
	/*font-weight: 300;*/
}
.otp-input {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	gap: 10px
}
.otp-input input {
	background-color: #fff;
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    border: none;
    transition: all 0.3s ease;
	border-radius: 6px;
}
.otp-input input:focus {
	border-color: #F5CB36;
	box-shadow: 0 0 0 2px rgba(166, 86, 246, 0.3);
	outline: none;
}
.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.otp-input input[type=number] {
	-moz-appearance: textfield;
}
.otp-input input:disabled{
	border: 2px solid #b0b0b0;
}
button {
	background: #2DA038;
	color: white;
	border:1px solid #3ddb4c;
	padding: 12px 24px;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	margin: 5px;
	transition: all 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.5px;
}
button:hover {
	background: #fff;
	color: #3ddb4c;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(166, 86, 246, 0.3);
}
button:disabled {
	background: #cccccc;
	border-color: #999999;
	color: #666666;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.expired {
	color: red !important;
}
#timer {
	font-size: 18px;
}
@keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0.5; }
	100% { opacity: 1; }
}
.resend-text {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #b0b0b0;
}
.resend-link {
	color: #b0b0b0;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s ease;
	pointer-events: none;
}
.resend-link:hover {
	color: #A556F6;
	text-decoration: underline;
}
#telegram {
	color: #2DA038;
	font-weight: 500;
}
.disable{
	display: none;
}
.pullcenter{
	height: 10%;
	text-align: center;
}
.field-wrapper img{
	position: absolute;
	width: 5%;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.field-server-wrapper img{
	position: absolute;
	width: 5%;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.loaderWrapper{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	pointer-events: none;
}
.loader {
	border: 16px solid #f3f3f3; /* Light grey border */
	border-top: 16px solid #3498db; /* Blue border for the spinning part */
	border-radius: 50%; /* Make it a circle */
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite; /* Apply the spin animation */
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); } /* Start at 0 degrees */
	100% { transform: rotate(360deg); } /* End at 360 degrees */
  }

  .btn-continue{
    max-width: 65%;
    height: auto;
	margin: 0 auto;
  }
  .btn-continue:hover{
	 background: url(../images/btn-continue-glow.png) no-repeat;
	 background-size: cover;
  }
.text-message{
	width: 100%;
	font-size: 14px;
}
.text-message:nth-child(1){
	margin-bottom: 22px !important;
}
.message{
	position: relative;
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-top: 20px;
}
.message p{
	/*width: 82% !important;*/
	flex-shrink: 5;
}
.powerby{
	position: absolute;
    bottom: 0;
    display: flex;
    column-gap: 5px;
    justify-content: center;
    left: 0;
    right: 0;
    width: 100%;
    align-items: center;
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.powerby p{
	font-size: 14px;
	margin: 0;
}
.spacing{
	width: 100%;
}

.form-server-error{
	position: relative;
	width: 90%;
	display: none;
	margin-top: 3px;
	pointer-events: none;
}
.error-server-text{
	position: absolute;
    color: #b3b3b3;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    -moz-border-radius: 27px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-image: linear-gradient(90deg, #E65B5E 0%, #D62E36 100%);
    font-family: 'HelveticaNeue', 'Arial', sans-serif;
    font-size: 100%;
    letter-spacing: .8px;
}
.form-error{
	position: relative;
	height: 0px;
	display: none;
	margin-top: 3px;
	pointer-events: none;
}
.error-wrapper{
	height: 100%;
}

.error-text{
	position: absolute;
    color: #b3b3b3;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    -moz-border-radius: 27px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-image: linear-gradient(90deg, #E65B5E 0%, #D62E36 100%);
    font-family: 'HelveticaNeue', 'Arial', sans-serif;
    font-size: 100%;
    letter-spacing: .8px;
}
.error-text p{
    width: fit-content !important;
    text-align: center;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: 35px;
    font-size: 12px;
}
.text-otp-wrapper{
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
}
.waiting-wrapper{
	display: flex;
	flex-direction: column;
	pointer-events: none;
	opacity: 0;
}
.otp-waiting{
	position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}
.text-otp-wrapper p{
	font-size: 14px;
}
.waiting-text-wrapper{
	display: flex;
	gap: 8px;
}
.loadingCircle {
	width: 55px;
	height: 55px;
	margin: 30px auto 0;
	background: #fff;
	display: block;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}
.circleOuter {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.circleLoader {
	width: 50px;
	height: 50px;
	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(125,185,232,0) 100%);
	position: absolute;
	right: 50%;
	bottom: 50%;
	transform-origin: bottom right;
	z-index: 1;
	animation: rotateLoader 1.5s linear infinite;
}
@keyframes rotateLoader {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.text-wrapper{
	display: flex;
	gap: 5px;
}
.resend-text{
	text-wrap: wrap;
    font-size: 18px;
    flex-basis: 190px;
}
.text{
	text-wrap: wrap;
    font-size: 16px;
    flex-grow: 1;
}
.resend-btn{
	position: relative;
	flex-grow: 2;
    border-radius: 10px;
    border: 1px solid #fff;
    text-align: center;
}
.resend-btn p{
	width: fit-content !important;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto !important;
	top: 50%;
	transform: translateY(-50%);
}
.text-won{
	position: relative;
    width: 75%;
    height: auto;
}
.win-item, .qrcode, .barcode, .voucher-code-wrapper{
	position: relative;
}
.voucher-code-wrapper{
	display: flex;
    flex-direction: column;
    gap: 10px;
}
.barcode{
	width: 80%;
    background: #fff;
    padding: 5px 0px;
	border-radius: 10px;
}
.item-img{
	width: 44%;
	margin: 0 auto;
}
.qr-img{
	width: 50%;
	margin: 0 auto;
}
.qr-img img{
	border-radius: 10px;
} 
.bar-img{
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.code{
	background: #3DFF2A;
	height: 35px;
	border: 1px solid #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.code p{
	font-family: poppins;
	font-size: 18px;
	text-align: center !important;
	font-weight: 800;
	-webkit-text-stroke: 1px black;
}
.btn-save{
	position: relative;
	width: 70%;
}
.btn-save:hover{
	background: url(../images/btn-continue-glow.png) no-repeat;
	background-size: cover;
}
.win-wrapper{
	gap: 2%;
}
.expire-date-wrapper{
	display: flex;
}