#lottery_serial_form input::-webkit-outer-spin-button,
#lottery_serial_form input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}
#lottery_serial_form input[type=number] {-moz-appearance: textfield;}
.loggin_wrap {
  background: #fff3;
  color: #fff;
  border: 2px dashed #fffa;
  padding: 30px;
  width: 100%;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 24px;
  max-width: 100%;
	margin-bottom: 40px;
}
.lottery_single_page{
	background: url(/wp-content/plugins/lottery-plugin/assets/img/bg.webp) center center;
	height: auto;
	min-height: 100vh;
	padding: 100px 0 0;
	position: relative;
	background-color: #2f55d4 !important;
}
.lottery_single_page .container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.lottery_main_title {
	font-size: 50px;
	text-align: center;
	margin: auto;
	color: #fff;
	font-weight: 700;
}
.lottery_main_subtitle {
	margin: 10px auto 40px;
	font-size: 22px;
	color: #fffb;
	text-align: center;
	font-weight: 500;
}
.shape_main_page{
	-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	height: 250px;
	background: #fff;
	overflow: hidden !important;
	position: absolute;
	pointer-events: none;
	left: 0;
	bottom: -2px;
	right: 0;
}
#lottery_serial_form .form_group {
	width: 600px;
	max-width: 100%;
	background: #fff;
	border-radius: 50px;
	padding: 0;
	position: relative;
	margin: 20px auto 50px;
}
.lottory_logged_form #serial_number {
	height: 60px;
	padding: 10px 25px;
	font-size: 24px;
	text-align: center;
	color: #333;
	width: 100%;
	border-radius: 30px;
	border: 0;
	outline: 0;
	box-shadow: unset;
}
.lottory_logged_form #serial_number::placeholder , .lottory_not_logged_form #serial_number::placeholder {
	color: #888;
	font-size: 18px;
	text-align: right;
}
.rb_btn {
	background: #2f55d4;
	color: #fff;
	border-radius: 30px;
	text-align: center;
	min-width: 70px;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s all;
	cursor: pointer;
}
.rb_btn:hover {box-shadow: inset 0 0 100px #0003;background: #2f55d4;color: #fff;}
.lottery_serial_form_btn {
	position: absolute;
	left: 5px;
	top: 4px;
	min-width: 120px;
	font-size: 16px;
	height: 52px;
}
.lotter_main_img {
	transform: translateX(-20px);
	max-width: 650px;
	width: 100%;
	z-index: 10;
	position: relative;
	margin-top: 30px;
}
.btn_loading {
	font-size: 0 !important
}

.btn_loading::before {
	content: "";
	width: 26px;
	height: 26px;
	display: block;
	border-radius: 50%;
	border-style: solid;
	border-width: 2px;
	border-color: #fffa #fffa #fffa transparent;
	animation: btn_loading .8s infinite linear
}
@keyframes btn_loading {
	0% {transform: rotate(0deg)}
	100% {transform: rotate(360deg)}
}
.snackbar {
	visibility: hidden;
	min-width: 250px;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	padding: 17px;
	font-weight: 700;
	position: fixed;
	z-index: 111;
	left: 4%;
	bottom: 30px;
	font-size: 14px;
}
.snackbar:has(.alert_success) {	background-color: #b9f2b9;color: green;}
.snackbar:has(.alert_danger) {	background-color: #9a031e;}
.snackbar i{
	color: #fff;
	margin-left: 5px;
}
.snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s;
	animation: fadein 0.5s;
}
@keyframes fadein {
	from {bottom: 0;opacity: 0;}
	to {bottom: 30px;opacity: 1;}
}


@media (max-width: 991px){
	.loggin_wrap{min-width: auto;padding: 20px 10px;font-size: 18px;margin-bottom: 15px;}
	.lottery_main_title {font-size: 26px;}
	.lottery_main_subtitle {margin: 10px auto 30px;font-size: 13px;}
	#serial_number {height: 48px;padding: 10px 15px;font-size: 18px;}
	#serial_number::placeholder {font-size: 15px;}
	#lottery_serial_form .form_group{margin: 10px auto 30px;width: 100%;}
	.lottery_serial_form_btn {left: 4px;top: 3px;min-width: 85px;font-size: 14px;height: 40px;}
	.lotter_main_img {max-width: 300px;margin: 10px auto 0;}
	.shape_main_page{height: 100px;}
}