@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
*{outline:none;}
*:active, *:focus{outline:none;}
:root {
  color-scheme: light;
}
a:focus {
    outline: 0px!important;
    outline-offset: 0!important;
	color:#fff;
}
.clear{clear:both;}
h3{font-size: 28px;
    line-height: 38px;}
body{ font-family: 'Roboto', sans-serif; font-weight: 400; font-size:13px; margin:0px; padding:0px; color:#3a3b42; background:url(../images/bg.jpg) no-repeat left 80px fixed; background-size:100%;}
@media (min-width: 1921px) {
	body{ background:url(../images/bg_xl.jpg) no-repeat left 125px fixed; background-size:100%;}
}

header{
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    height: 80px;
    padding: 5px 20px 0 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 99;
    background: #fff;
    display: flex;
    align-items: center;
}
/* Thin rainbow strip — matches images/header-border-top.png */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-image: url(../images/header-border-top.png),
        linear-gradient(
            90deg,
            #671018 0%,
            #e31c24 11%,
            #6b2d8e 22%,
            #152a5c 33%,
            #2d6dcc 44%,
            #5ec8e8 55%,
            #1a9f4e 70%,
            #c5e545 84%,
            #1a4d2e 100%
        );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    pointer-events: none;
}

header img{max-height:56px; width:auto; height:auto; display:block; vertical-align:middle;}
span.error{
  color: #fd9090;
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}
.error_wrap {
    text-align: left;
    margin-top: 5px;
}
.logo{height:130px;}
.termsConditions label{font-weight:normal;}
.termsConditions ol li{margin-bottom:15px;}
/* keep duplicate selector compatible, but styled above */
/* Outer column: centers the glass card */
.registrationBg {
    width: 48%;
    left: auto;
    right: 0;
    position: fixed;
    top: 80px;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 8;
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
}
.registrationBg .registration {
    pointer-events: auto;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 520px;
}
.registrationBg .registration.otp_verify, .registrationBg .registration.enter_mobile{
position: relative; top: auto;
}
.terms{color:#ffa729; text-decoration:underline;}
.terms:hover{color:#fff; text-decoration:none;}
.registration.enter_mobile .terms_accept_group.terms_link_error .terms {
	color: #fd9090;
}
.registration.enter_mobile .terms_accept_group.terms_link_error .terms:hover {
	color: #ff6a6a;
}
.registration.enter_mobile .required_checkbox_error .terms_accept_text {
	color: #fd9090;
}
.registration.enter_mobile .marketing_opt_group.required_checkbox_error .terms_accept_label,
.registration.enter_mobile .marketing_opt_group.required_checkbox_error .terms_accept_text {
	color: #fd9090;
}
.registration.enter_mobile .terms_accept_text > span[aria-hidden="true"] {
	color: #fd9090;
}
.registration.enter_mobile .consent_error_banner {
	margin: 0 0 10px;
	padding: 8px 12px;
	background: #e8f8ff;
	color: #ff0002;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
}
.registration.enter_mobile .consent_error_banner p {
	margin: 0;
}
.registration.enter_mobile .consent_error_banner p + p {
	margin-top: 4px;
}
label{font-weight:500;}
@media (max-height: 760px) {
    .registrationBg {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

/* Glass card + dual glow border (inner cyan line + outer warm/cool bloom) */
.registration {
    background: linear-gradient(
        165deg,
        rgba(35, 95, 140, 0.42) 0%,
        rgba(20, 70, 115, 0.5) 45%,
        rgba(25, 85, 125, 0.45) 100%
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    width: 100%;
    max-width: 485px;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 55px 45px 55px;
    z-index: 9;
    color: #fff;
    text-align: center;
    min-height: 0;
    border-radius: 48px;
    border: 1px solid rgba(160, 240, 255, 0.85);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 40, 70, 0.15),
        inset 0 0 80px rgba(100, 200, 255, 0.06),
        0 0 0 1px rgba(255, 220, 140, 0.35),
        0 0 20px rgba(255, 215, 120, 0.45),
        0 0 48px rgba(120, 200, 255, 0.35),
        0 0 72px rgba(255, 200, 100, 0.2),
        0 16px 48px rgba(0, 20, 50, 0.35),
        inset 0 -36px 50px -28px rgba(255, 210, 140, 0.12);
    isolation: isolate;
    overflow: visible;
}
/* Top-center light flare (pseudo stays behind form content via negative z-index) */
 
.registration > * {
    position: relative;
    z-index: 1;
}
.registration h2,
.registration h6,
.registration form {
    text-align: center;
}
.registration .mobile_input_wrap {
    text-align: left;
}
.registration.enter_mobile .submit_full,
.registration.otp_verify .submit_full,
.registration.reg .submit_full {
    margin-left: auto;
    margin-right: auto;
}
	.mrp{display: block;
    font-weight: 700;
    font-size: 18px;
    color: #1f8241;}
.footerLink{    position: absolute;
    color: #ffa729;
    bottom: 0px;
    text-align: center;
    background: rgba(0, 0, 0, .1);
    padding: 10px 20px;
    left: auto;
    right: 0;
    min-width: 250px;}
.footerLink:before{
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 25px solid rgba(0, 0, 0, .1);
}
.footerLink a{color:#ffa729; padding:0 8px;}
.termsConditions{width:1000px;}
.termsConditions ol{padding-left:18px;}
.termBox{border: 3px solid rgba(255, 255, 255, .8); background: #2c3d6c; padding:0 15px 15px;;font-size:14px;}
.termBox h4{margin-top:20px; color:#ffb93a;}
.termBox h3{
    background: #b63037;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 15px;
    margin: 0px -15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.37);
}
.row{    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;}
.col{-ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; padding: 0 10px;}
.responsive{width:100%;}
.termBox .accept {
    margin-top: 10px;
    border: 0px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff0002;
    padding: 0px 22px 0 ;
    font-size: 15px;
    height: 40px;
    line-height: 42px;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
}
.novalid{       color: #ffb733;
    margin-top: 25px;
    font-size: 16px;}
.termBox ul li, .termBox ol li{padding:2px 0 5px;}
.termBox a{color:#ffb93a;}
.alphbet{list-style:lower-alpha;}
.form-check {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 19px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #d5def3;
    border: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
}

/* On mouse-over, add a grey background color */
.form-check:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.form-check input:checked ~ .checkmark {
  background-color: #2196F3;
  border:0px;
  box-shadow:none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-check .checkmark:after {
          left: 8px;
    top: 3px;
    width: 6px;
    height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
	.redeem{background:rgba(59, 81, 141, .75); min-height:100%; 
    width: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 160px 0px 0; z-index:9; color:#fff;}
.scratch_box{width:90%; border:5px solid rgba(255, 255, 255, .8); text-align:center; position: relative;}

.scratch_box h2{background:#b63037; margin:0px; padding:40px 0; font-size: 34px; }
.registration h2{font-size: 28px;
    font-weight: 700;
    margin-top: 0px;
    letter-spacing: 1px; text-transform: uppercase;}
	.registration.verification h2{font-size: 26px;}
	.registration.email_verification h6 {
    font-size: 19.5px;
	}
	.registration.reg h6 {
    font-size: 18px;
	}
	.registration.enter_mobile h6 {
    font-size: 17px;
	}
    .product_box .box .radioBox {
        visibility:hidden; position: absolute;}

	.registration h1{font-size: 26px; color:#e82b2d;     background: #fff;
    border-radius: 5px;
        padding: 7px 0;
    text-align: center;
    font-weight: bold;}
	.phone {
		-webkit-animation: wiggle .05s alternate ease infinite;
		animation: wiggle .05s alternate ease infinite;
	}
	@-webkit-keyframes wiggle {
	from { -webkit-transform: rotate(0deg); }
	to   { -webkit-transform: rotate(30deg); }
}

@keyframes wiggle {
	from { transform: rotate(0deg); }
	to   { transform: rotate(30deg); }
}
	.registration.verification h6 {
    font-size: 22px;
    letter-spacing: 1.5px;
	}
	.verification p, .email_verification p{font-size: 18px;
    margin-top: 15px;}
.registration h6{font-size: 15.9px;
    font-weight: 400;
    margin-left: 2px;
    letter-spacing: .5px; margin-bottom:40px; padding-bottom:15px; border-bottom:1px solid rgba(255, 255, 255, .2); }
.form-control {
    height: 50px;
    font-size: 16px;
    color: #111;
    border: 0px; 
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 15px;
}
.form_group{padding-bottom:5px;}

/* Single mobile number field — label + icon input + full-width submit */
 
.registration.enter_mobile .mobile_field_group {
	padding-bottom: 25px;
}
.registration.enter_mobile .mobile_label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff;
	letter-spacing: 0.4px;
	text-align: center;
}
.registration .mobile_input_wrap {
	display: flex;
	align-items: stretch;
	min-height: var(--registration-control-h);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.registration .mobile_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	flex-shrink: 0;
	background: #e8ecf7;
	color: #3b4d89;
	font-size: 22px;
	border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.registration.enter_mobile .mobile_input_wrap .form-control {
	flex: 1;
	min-width: 0;
	margin-bottom: 0;
	border: 0;
	border-radius: 0;
	height: var(--registration-control-h);
	min-height: var(--registration-control-h);
	box-sizing: border-box;
	box-shadow: none;
}
.registration.enter_mobile .submit_full {
	width: 100%;
	height: var(--registration-control-h);
	min-height: var(--registration-control-h);
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	line-height: 1;
	padding: 0 15px;
	border-radius: 10px;
	box-shadow: 3px 3px rgba(0, 0, 0, 0.22);
}
.registration.enter_mobile .submit_full .fa {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin-top: 0;
	padding-right: 12px;
	line-height: 1;
}

/* Terms + optional marketing — custom checkbox (glass card) */
.registration.enter_mobile .terms_accept_group,
.registration.enter_mobile .marketing_opt_group {
	padding-bottom: 5px;
    padding-top: 0;
	text-align: center;
}
.registration.enter_mobile .marketing_opt_group {
	padding-top: 0;
	padding-bottom: 5px;
}
.registration.enter_mobile .terms_accept_label {
	display: inline-flex;
	align-items: flex-start;
	gap: 14px;
	cursor: pointer;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.92);
	text-align: left;
	max-width: 100%;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	    width: 100%;
}
.registration.enter_mobile .terms_accept_text {
	flex: 1;
	min-width: 0;
	padding-top: 0px;
}
.registration.enter_mobile .custom_checkbox {
	position: relative;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
}
.registration.enter_mobile .custom_checkbox_input {
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}
.registration.enter_mobile .custom_checkbox_face {
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	border-radius: 6px;
	border: 1px solid rgba(200, 245, 255, 0.85);
	background: rgba(255, 255, 255, 0.12);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 2px 8px rgba(0, 30, 60, 0.2);
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	pointer-events: none;
}
.registration.enter_mobile .custom_checkbox_input:focus + .custom_checkbox_face {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.35),
		0 2px 8px rgba(0, 30, 60, 0.2),
		0 0 0 3px rgba(120, 210, 255, 0.45);
}
.registration.enter_mobile .custom_checkbox_input:hover + .custom_checkbox_face {
	border-color: rgba(230, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.18);
}
.registration.enter_mobile .custom_checkbox_input:checked + .custom_checkbox_face {
	border-color: rgba(255, 200, 120, 0.95);
	background: linear-gradient(155deg, #ffd078 0%, #ff9a2e 55%, #f07818 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.55),
		0 2px 10px rgba(255, 140, 40, 0.35);
}
.registration.enter_mobile .custom_checkbox_input:checked + .custom_checkbox_face::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid rgba(26, 35, 50, 0.92);
	border-width: 0 2.5px 2.5px 0;
	border-radius: 0 1px 0 0;
	transform: rotate(45deg);
	box-sizing: border-box;
}

/* Terms popup */
.terms_popup_overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	background: rgba(8, 15, 30, 0.62);
	z-index: 999;
}
.terms_popup_overlay.is_open {
	display: flex;
}
.terms_popup_card {
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	color: #2a3140;
	text-align: center;
	border-radius: 14px;
	padding: 24px 20px 20px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.terms_popup_card h4 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 700;
}
.terms_popup_card p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.5;
}
.terms_popup_btn {
	min-width: 120px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, #ffbe55 0%, #f4931f 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 9px 18px;
}
.terms_popup_btn:hover,
.terms_popup_btn:focus {
	background: linear-gradient(180deg, #ffca73 0%, #f8a73b 100%);
	color: #fff;
}

/* OTP verify page */
.registration.otp_verify .otp_field_group {
	padding-bottom: 25px;
}
.registration.otp_verify .otp_input_wrap {
	min-height: var(--registration-control-h, 48px);
}
.registration.otp_verify .otp_input {
	height: var(--registration-control-h, 48px);
	min-height: var(--registration-control-h, 48px);
	letter-spacing: 2px;
	font-size: 16px;
	font-weight: 700; 
}
.registration.otp_verify .submit_full {
	width: 100%;
	height: var(--registration-control-h, 48px);
	min-height: var(--registration-control-h, 48px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border-radius: 10px;
	line-height: 1;
}
.registration.otp_verify .submit_full .fa {
	float: none;
	margin-top: 0;
	padding-right: 12px;
}
.registration.otp_verify .otp_actions_row .otp_row_btn .fa {
	float: none;
	margin: 0;
	line-height: 1;
	vertical-align: middle;
}
.registration.otp_verify .otp_actions_row .submit_full .fa {
	font-size: 15px;
	padding-right: 8px;
}
.registration.otp_verify .otp_actions_row .submit.resend .fa {
	font-size: 13px;
	padding-right: 6px;
}
.registration.otp_verify .otp_back_link {
	display: inline-block;
	margin-top: 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	opacity: 0.9;
}
.registration.otp_verify .otp_back_link:hover {
	opacity: 1;
	text-decoration: underline;
}
.registration.otp_verify .otp_actions_row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 6px;
}
.registration.otp_verify .otp_actions_row .otp_row_btn {
	margin: 0;
	width: auto;
}
.registration.otp_verify .otp_actions_row .submit.resend {
	flex: 0 1 auto;
	min-width: 120px;
	height: var(--registration-control-h, 48px);
	min-height: var(--registration-control-h, 48px);
	line-height: 1;
	font-size: 13px;
	font-weight: 700;
	padding: 0 14px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-color: #e8ecf7;
	color: #3b4d89;
	border: 0;
	text-transform: none;
	box-shadow: none;
}
.registration.otp_verify .otp_actions_row .submit.resend:hover:not(:disabled) {
	background-color: #dce3f5;
	color: #2f3d6e;
}
.registration.otp_verify .otp_actions_row .submit.resend:focus:not(:disabled),
.registration.otp_verify .otp_actions_row .submit.resend:active:not(:disabled) {
	background-color: #d0d9f0;
	color: #2a3662;
	outline: none;
}
.registration.otp_verify .otp_actions_row .submit.resend:disabled {
	opacity: 0.75;
	cursor: not-allowed;
}
.registration.otp_verify .otp_actions_row .submit_full {
	flex: 1 1 0;
	min-width: 0;
	margin-top: 0;
	width: auto;
	height: var(--registration-control-h, 48px);
	min-height: var(--registration-control-h, 48px);
}
.registration.otp_verify .otp_actions_row .submit_full.otp_row_btn {
	font-size: 15px;
	padding: 0 14px;
}
.registration.otp_verify .otp_resend_status_row {
	padding-bottom: 4px;
}
.registration.otp_verify .otp_resend_status {
	display: block;
	min-height: 18px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

/* Registration details page */
.registration.reg .details_field_group {
	padding-bottom: 14px;
}
.registration.reg .details_field_group .form-control {
	height: var(--registration-control-h, 52px);
	min-height: var(--registration-control-h, 52px);
	border-radius: 10px;
	box-sizing: border-box;
}
.registration.reg .date_input_wrap {
	position: relative;
}
.registration.reg .date_input_wrap .form-control {
	padding-right: 44px;
}
.registration.reg .date_input_icon {
	position: absolute;
	right: 14px;
	top: 14px; 
	color: #4f7394;
	font-size: 18px;
	pointer-events: none;
}
.registration.reg .invoice_group {
	text-align: left;
}
.registration.reg .invoice_upload_wrap {
	position: relative;
	display: flex;
	align-items: center;
	min-height: var(--registration-control-h, 52px);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.registration.reg .invoice_upload_wrap .fa {
	width: 48px;
	min-height: var(--registration-control-h, 52px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #3b4d89;
	background: #e8ecf7;
	border-right: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 18px;
}
.registration.reg .invoice_upload_wrap .invoice_placeholder {
	flex: 1;
	padding: 0 14px;
	color: #6f7884;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.registration.reg .invoice_upload_wrap .invoice_placeholder.has-file {
	color: #1f2f47;
	font-weight: 600;
}
.registration.reg .invoice_upload_wrap .invoice_upload_btn {
	margin-right: 8px;
	padding: 8px 14px;
	border-radius: 8px;
	background: linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
	color: #1f4f86;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.registration.reg .invoice_upload_wrap .invoice_file {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.registration.reg .invoice_upload_wrap:hover .invoice_upload_btn {
	background: linear-gradient(180deg, #ffffff 0%, #dce9ff 100%);
}
.registration.reg .invoice_upload_wrap:focus-within .invoice_upload_btn {
	outline: 2px solid rgba(31, 79, 134, 0.3);
	outline-offset: 1px;
}
.registration.reg .invoice_upload_wrap .invoice_file::file-selector-button,
.registration.reg .invoice_upload_wrap .invoice_file::-webkit-file-upload-button {
	margin: 0;
	padding: 0;
	border: 0;
	width: 0;
	opacity: 0;
}
.registration.reg .submit_full {
	width: 100%;
	height: var(--registration-control-h, 52px);
	min-height: var(--registration-control-h, 52px);
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border-radius: 10px;
	line-height: 1;
}
.registration.reg .submit_full .fa {
	float: none;
	margin-top: 0;
	padding-right: 12px;
	line-height: 1;
}

/* Thank you page */
.registration.thankyou_page {
	max-width: 560px;
}
.registration.thankyou_page .thankyou_redesign {
	text-align: center;
	padding-top: 8px;
	position: relative;
	overflow: visible;
}
.registration.thankyou_page .thankyou_redesign::before,
.registration.thankyou_page .thankyou_redesign::after {
	content: "";
	position: absolute;
	inset: -20px -16px;
	pointer-events: none;
	z-index: 0;
}
.registration.thankyou_page .thankyou_redesign::before {
	background:
		radial-gradient(circle at 7% 18%, rgba(255, 240, 155, 0.95) 0 3px, rgba(255, 240, 155, 0) 9px),
		radial-gradient(circle at 82% 16%, rgba(255, 241, 168, 0.95) 0 3px, rgba(255, 241, 168, 0) 9px),
		radial-gradient(circle at 91% 46%, rgba(107, 236, 255, 0.9) 0 2px, rgba(107, 236, 255, 0) 8px);
	filter: drop-shadow(0 0 6px rgba(255, 232, 140, 0.45));
}
.registration.thankyou_page .thankyou_redesign::after {
	background:
		radial-gradient(circle at 3% 36%, rgba(255, 255, 255, 0.82) 0 1.6px, rgba(255, 255, 255, 0) 6px),
		radial-gradient(circle at 74% 8%, rgba(255, 255, 255, 0.8) 0 1.5px, rgba(255, 255, 255, 0) 6px),
		radial-gradient(circle at 79% 70%, rgba(255, 255, 255, 0.74) 0 1.4px, rgba(255, 255, 255, 0) 5px);
	opacity: 0.95;
}
.registration.thankyou_page .thankyou_redesign > * {
	position: relative;
	z-index: 1;
}
.registration.thankyou_page .thankyou_gift_card {
	position: relative;
	margin: 0;
	padding: 26px 24px 28px;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	overflow: visible;
}
.registration.thankyou_page .thankyou_gift_card::before,
.registration.thankyou_page .thankyou_gift_card::after {
	position: absolute;
	line-height: 1;
	pointer-events: none;
	z-index: 2;
}
.registration.thankyou_page .thankyou_gift_card::before {
	content: "✦";
	top: -16px;
	left: 8px;
	font-size: 24px;
	color: #ffe680;
	text-shadow: 0 0 10px rgba(255, 231, 128, 0.7);
}
.registration.thankyou_page .thankyou_gift_card::after {
	content: "✦";
	right: 14px;
	bottom: -25px;
	font-size: 21px;
	color: #8feeff;
	text-shadow:
		-235px -168px 0 #ffe680,
		0 0 10px rgba(137, 236, 255, 0.7);
}
.registration.thankyou_page .thankyou_heading {
    margin: 0 0 10px;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffe680;
    text-shadow: 0 2px 0 rgba(79, 53, 0, 0.4), 0 8px 18px rgba(0, 0, 0, 0.3);

}
.registration.thankyou_page .thankyou_heading::before {
	content: none;
}
.registration.thankyou_page{padding: 45px 40px 20px;}
.registration.thankyou_page .thankyou_subtitle {
	margin: 6px 0 0;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 400;
	color: #e5f2ff;
}
.registration.thankyou_page .thankyou_prize {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #1dffc2;
    display: inline-block;
    padding: 15px 15px;
    border-top: 1px dashed rgb(160 240 255 / 40%);
    border-bottom: 1px dashed rgba(160, 240, 255, 0.40);
    background: rgb(255 255 255 / 10%);
    min-width: 200px;
}
.registration.thankyou_page .thankyou_code {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px auto 0;
    padding: 12px 28px;
    background: #ffffff45;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 20%); 
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #ffffff;
}
.registration.thankyou_page .thankyou_code .fa {
	font-size: 20px;
}
.registration.thankyou_page .thankyou_validity {
	margin: 22px 0 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 400;
	color: #e8f6ff;
	text-align: center;
}
.registration.thankyou_page .thankyou_claim_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 24px auto 0;
	padding: 14px 34px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ff8a17 0%, #e15000 100%);
	border: 2px solid rgba(255, 216, 128, 0.9);
	color: #ffffff;
	font-size: 50px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-decoration: none;
	box-shadow: 0 0 18px rgba(255, 133, 27, 0.6), 0 10px 22px rgba(0, 0, 0, 0.3);
}
.registration.thankyou_page .thankyou_claim_btn:hover {
	text-decoration: none;
	color: #ffffff;
	filter: brightness(1.04);
}

@media (max-width: 767px) {
	.registration.thankyou_page .thankyou_gift_card {
		padding: 24px 18px 22px;
	}
	.registration.thankyou_page .thankyou_heading {
		font-size: 44px;
	}
	.registration.thankyou_page .thankyou_subtitle {
		font-size: 18px;
	}
	
	.registration.thankyou_page .thankyou_code {
		font-size: 20px;
		padding: 11px 22px;
	}
	.registration.thankyou_page .thankyou_code .fa {
		font-size: 18px;
	}
	 
	.registration.thankyou_page .thankyou_claim_btn {
		font-size: 36px;
		padding: 12px 28px;
	}
}
@media (max-width: 520px) {
	.registration.thankyou_page .thankyou_heading {
		font-size: 34px;
	}
	.registration.thankyou_page .thankyou_subtitle {
		font-size: 16px;
	}
	 
	.registration.thankyou_page .thankyou_code {
		font-size: 17px;
		padding: 10px 18px;
	}
	.registration.thankyou_page .thankyou_code .fa {
		font-size: 16px;
	}
	 
}
/* Select offer page */
.registration.select_offer_page {
	max-width: 560px;
}
.registration.select_offer_page .offer_list.ref_cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	margin: 12px 0 16px;
}
.registration.select_offer_page .offer_ref_card {
	--accent: #0a4fb3;
	position: relative;
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 14px;
	align-items: stretch;
	padding: 20px;
	border-radius: 12px;
	background: #e8ecf7;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16); 
	overflow: hidden;
}
.registration.select_offer_page .offer_ref_card.theme_blue { --accent: #0a4fb3; }
.registration.select_offer_page .offer_ref_left {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.registration.select_offer_page .offer_ref_badge {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: #ffffff;
	color: #0a4fb3;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 8px 16px rgba(10, 79, 179, 0.18);
	border: 1px solid rgba(59, 77, 137, 0.18);
}
.registration.select_offer_page .offer_ref_mid {
	text-align: left;
	color: #3b4d89;
}
.registration.select_offer_page .offer_ref_title {
	font-size: 13px;
	font-weight: 500; 
	position: relative;
	padding-left: 128px;
}
.registration.select_offer_page .offer_ref_title .k {
	font-weight: 400;
}
.registration.select_offer_page .offer_ref_title .sep {
	padding: 0 6px;
	color: #3b4d89;
}
.registration.select_offer_page .offer_ref_title .v {
	color: #3b4d89;
	font-weight: 500;
	 
}
.registration.select_offer_page .offer_ref_line {
	margin-top: 8px;
	font-size: 13px;
	color: #3b4d89;
	font-weight: 400;
	    position: relative;
    padding-left: 128px;
}
 
.registration.select_offer_page .offer_ref_line .sep {
	padding: 0 6px;
	color: #3b4d89;
}
.registration.select_offer_page .offer_ref_line .v {
	color: #3b4d89;
	font-weight: 500;
}
.registration.select_offer_page .offer_ref_line .k, .registration.select_offer_page .offer_ref_title .k{width:120px;     display: inline-block; position: absolute;
    left: 0;
    top: 0px;}
.registration.select_offer_page .offer_ref_meta {
	margin-top: 12px;
    display: grid;
    grid-template-columns: 120px auto;
    gap: 15px;
    align-items: center;
}
.registration.select_offer_page .offer_ref_meta .meta_item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.registration.select_offer_page .offer_ref_meta .meta_icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 79, 179, 0.12);
	color: #0a4fb3;
	font-size: 14px;
	flex: 0 0 28px;
}
.registration.select_offer_page .offer_ref_meta .meta_icon.status {
	background: rgba(0, 160, 90, 0.12);
	color: #0a8f4f;
}
.registration.select_offer_page .offer_ref_meta .meta_label {
	font-size: 12px;
	color: rgba(59, 77, 137, 0.85);
	font-weight: 500;
	line-height: 1.1;
}
.registration.select_offer_page .offer_ref_meta .meta_value {
	font-size: 13px;
	color: #3b4d89;
	font-weight: 600;
	line-height: 1.1;
	margin-top: 4px;
}
.registration.select_offer_page .offer_ref_meta .meta_value.status.active {
	color: #0a8f4f;
}

.registration.select_offer_page .offer_ref_meta .meta_text {
	text-align: left;
}

@media (max-width: 520px) {
	.registration.select_offer_page .offer_ref_meta {
		gap: 12px;
	}
	.registration.select_offer_page .offer_ref_meta .meta_item {
		justify-content: flex-start;
	}
	.registration.select_offer_page .offer_ref_meta .meta_item:last-child {
		justify-content: flex-end;
	}
	.registration.select_offer_page .offer_ref_meta .meta_item:last-child .meta_text {
		text-align: right;
	}
}

.registration.select_offer_page .offer_ref_actions {
	grid-column: 1 / -1;
	margin-top: 10px;
	display: flex;
	justify-content: flex-start;
}
.registration.select_offer_page .offer_card_upload_btn {
	border: 0;
	border-radius: 10px;
	height: 42px;
	padding: 0 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(180deg, #5cb85c 0%, #4cae4c 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px; 
	min-width: 170px;
	    margin-left: 69px;
}
.registration.select_offer_page .offer_card_upload_btn:hover,
.registration.select_offer_page .offer_card_upload_btn:focus {
	filter: brightness(1.04);
	outline: none;
}
.registration.select_offer_page .offer_upload_file_hidden {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.registration.select_offer_page .offer_select_btn {
	width: 100%;
	height: 44px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 86%, #ffffff 14%) 0%, var(--accent) 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 10px 18px color-mix(in srgb, var(--accent) 35%, transparent);
}
.registration.select_offer_page .offer_select_btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}
.registration.select_offer_page .offer_ref_card.is_active {
	border-left-color: var(--accent);
}
.registration.select_offer_page .offer_ref_card.is_active:hover {
	transform: translateY(-1px);
	transition: transform 0.12s ease;
}
.registration.select_offer_page .offer_ref_card.is_active:hover .offer_select_btn {
	filter: brightness(1.03);
}
.registration.select_offer_page .offer_ref_card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: color-mix(in srgb, var(--accent) 22%, transparent);
}
.registration.select_offer_page .offer_ref_card.is_active::after {
	background: color-mix(in srgb, var(--accent) 35%, transparent);
}

.registration.select_offer_page .offer_ref_note {
	grid-column: 1 / -1;
	margin: 10px -14px -14px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(17, 138, 58, 0.10);
	color: #118a3a;
	font-size: 13px;
	font-weight: 700;
	border-top: 1px solid rgba(31, 47, 71, 0.08);
}
.registration.select_offer_page .offer_ref_note .fa {
	color: #118a3a;
}

@media (max-width: 766px) {
	.registration.select_offer_page .offer_ref_title, .registration.select_offer_page .offer_ref_line {
     
    padding-left: 105px;
}
	.registration.select_offer_page .offer_ref_card {
		grid-template-columns: auto;
		grid-template-rows: auto auto;
	}
	.registration.select_offer_page .offer_ref_line .k, .registration.select_offer_page .offer_ref_title .k {
    width: 90px; 
}
.registration.select_offer_page .offer_card_upload_btn{margin: 0 auto;}
.registration.select_offer_page .offer_ref_left { 
    justify-content: center;
}
	.registration.select_offer_page .offer_ref_meta {
		grid-template-columns: 110px 1fr;
	}
}

.registration.select_offer_page .offer_upload_wrap {
	margin-top: 4px;
}
.registration.select_offer_page .offer_upload_wrap {
	position: relative;
	display: flex;
	align-items: center;
	min-height: var(--registration-control-h, 52px);
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.registration.select_offer_page .offer_upload_wrap .fa {
	width: 48px;
	min-height: var(--registration-control-h, 52px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #3b4d89;
	background: #e8ecf7;
	border-right: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 18px;
}
.registration.select_offer_page .offer_upload_placeholder {
	flex: 1;
	padding: 0 14px;
	color: #6f7884;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.registration.select_offer_page .offer_upload_placeholder.has-file {
	color: #1f2f47;
	font-weight: 600;
}
.registration.select_offer_page .offer_upload_btn {
	margin-right: 8px;
	padding: 8px 14px;
	border-radius: 8px;
	background: linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
	color: #1f4f86;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.registration.select_offer_page .offer_upload_file {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.registration.select_offer_page .offer_new_reg_btn {
	margin-top: 6px;
	text-decoration: none;
}

/* Scratch card page - light UI similar to provided design */
.scratch_page .scratch_layout {
	max-width: 900px;
	margin: 115px 24px 24px auto;
	padding: 30px 25px 20px;
	display: grid;
	grid-template-columns: 1fr 1.12fr;
	gap: 28px;
	align-items: center;
	align-content: center; 
	background:linear-gradient(315deg, #EBF8F7, #FFF4E6); 
	border-radius: 22px;
	 box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.scratch_page .scratch_left,
.scratch_page .scratch_right {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	color: #163a5e;
}
.scratch_page .scratch_left {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.scratch_page .scratch_right h3 {
	margin: 0 0 16px;
	font-size: 30px;
	font-weight: 600;
	color: #1f4f86;
	text-align: left;
}
.scratch_page .scratch_card_box {
	position: relative;
	width: 100%;
	max-width: 290px;
	margin: 0 auto;
	border-radius: 22px;
	overflow: hidden;
	border: 0px solid rgba(69, 56, 37, 0.55);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.scratch_page .scratch_result {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0px;
	background: #f5f5f5;
	color: #1e2a3b; 
	transition: opacity 0.25s ease;
}
.scratch_page .scratch_result.revealed {
	opacity: 1;
	visibility: visible;
}
.scratch_page .gift_win_card {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
	position: relative;
	display: flex;
	flex-direction: column;
}
.scratch_page .gift_win_top {
	height: 44%;
	background: #1fb0cb;
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scratch_page .gift_win_bottom {
	flex: 1;
	background: #fff;
	color: #173258;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.scratch_page .gift_win_icon {
	position: absolute;
	left: 50%;
	top: 44%;
	transform: translate(-50%, -50%);
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #87d6e7;
	color: #f59b2b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.scratch_page .scratch_canvas {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	cursor: crosshair;
	touch-action: none;
	transition: opacity 0.25s ease;
}
.scratch_page .scratch_canvas.done {
	pointer-events: none;
	opacity: 0;
}
.scratch_page .scratch_redirect_msg {
	margin: 12px 0 0;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 500;
	color: #1f4f86;  
	text-align: center;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.scratch_page .scratch_redirect_msg.show {
	opacity: 1;
}
.scratch_page .profile_list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.scratch_page .detail_card {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
	padding: 14px;
	border-radius: 10px;
	background: #f1f1f1;
	border: 1px solid #d8d8d8;
}
.scratch_page .detail_icon {
	width: 44px;
	height: 44px;
	border-radius: 9px;
	background: #d6e8ef;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #08a0c2;
	font-size: 22px;
	flex-shrink: 0;
}
.scratch_page .detail_content {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.scratch_page .detail_content small {
	font-size: 14px;
	font-weight: 500;
	color: #5f6d8a;
}
.scratch_page .detail_content strong {
	font-size: 15px;
	font-weight: 500;
	color: #1d2a3f;
	word-break: break-word;
}
@media (max-width: 449px) {
	.registration.thankyou_page .thankyou .title {
		font-size: 34px;
	}
	 
	.registration.thankyou_page .gift_preview {
		max-width: 240px;
        margin-bottom: 20px;
	}
}
@media (max-width: 900px) {
	.scratch_page .scratch_layout {
		grid-template-columns: 1fr;
		margin-top: 92px;
		gap: 20px;
        margin: 20px 4%;
        width: 92%;
	}
	.scratch_page .scratch_right h3 {
		font-size: 24px;
	}
	.scratch_page .scratch_card_box {
		max-width: 290px;
	}
	.scratch_page .gift_win_top {
		font-size: 28px;
	}
	.scratch_page .gift_win_bottom {
		font-size: 22px;
	}
	.scratch_page .gift_win_icon {
		width: 84px;
		height: 84px;
		font-size: 42px;
	}
	.scratch_page .detail_content strong {
		font-size: 14px;
	}
}

.registration .submit{margin-top: 10px;
    border: 0px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff0002;
     padding: 2px 15px 2px 15px;
    font-size: 18px;
    height: 50px;
	border-radius: 8px;
    line-height: 50px; transition: 0.2s all ease-in-out; -webkit-transition: 0.2s all ease-in-out; -moz-transition: 0.2s all ease-in-out;}
	.back{margin-top: 10px;
    border: 0px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff0002;
    padding: 0px 22px;
    font-size: 15px;
    height: 40px;
    line-height: 42px; transition: 0.2s all ease-in-out; -webkit-transition: 0.2s all ease-in-out; -moz-transition: 0.2s all ease-in-out;}
	.registration .submit.resend{background-color: #e7edff;  }
	
	.registration .submit:hover, .back:hover {
    background-color: #e7edff; color:#223154; box-shadow: 3px 3px rgba(0, 0, 0, 0.3);
	
}
.registration .submit:active, .back:active, .registration .submit:focus, .back:focus{outline:none; background-color: #e7edff; color:#223154;;}
	.submit .fa{padding-right: 15px;
    font-size: 25px;
    margin-top: 11px;
    float: left;}
	
.form_group.add .form-control{margin:0px; border-radius:4px 4px 0 0;}
.form_group.add .form-control.center_fild{border-radius:0px; border-top:1px solid #ccc; border-bottom:1px solid #ccc; box-shadow:none;}
.form_group.add .form-control.lastchild{margin:0px; border-radius:0px 0px 4px 4px; box-shadow:none; margin-bottom:5px;}
.scrachting{ height:200px; line-height:200px; }
.scratchAfter{height:205px; border-top:5px solid rgba(255, 255, 255, .8);     position: relative; overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: url('../img/coin.ico'), grab;
	cursor: url('../img/coin.ico'), -webkit-grab; }
.canvas {
	position: absolute;
	top: 0;
	z-index: 10;
    left: 0px;
	cursor: pointer;
	width:100%;
}
.scratch{padding-top:75px;}
.winner-box {
	position: relative;
	visibility: hidden;
	background: #2c3d6c;
	font-size:24px;
	color: #fff;
	text-shadow: 1px 1px 2px #000;
	height: 100%;
    padding-top: 50px;
}
.profile h4{background:#b63037; color:#fff; font-size:20px; font-weight:500; padding:8px 15px; margin:0px;}
.profile ul{margin:0px; padding:0px; list-style:none; border:5px solid rgba(255, 255, 255, .8);}
.profile ul li{ color:#2c3d6c; font-size:16px; color:#fff; border-bottom:1px dashed rgba(75, 103, 181, .65); background:#2c3d6c;      width: 100%; padding-top:12px; 
    float: left;}
.profile ul li span{float:left; width:175px; background:#283761; color:#e5ecff; padding:12px 15px; border-right:1px dashed rgba(75, 103, 181, .65); text-align:right; margin-right:20px;     margin-top: -12px;}
.congratulation{width:auto; min-width:560px; margin:0px auto 20px;  border:5px solid rgba(255, 255, 255, .8);background:#283761; display:inline-block; padding-bottom:25px;}
.congratulation h2{background: #b63037; 
    margin: 0px;
    padding: 40px 0;
    font-size: 50px;
    font-weight: 500; }
	.congratulation.chooseYourGift h2{
    margin: 0px 0 25px;
    padding: 20px 0; }
.chooseYourGift{border: 4px solid #fff;     margin-bottom: 0px; padding-bottom:0px;
    border-radius: 10px;}
.chooseYourGift h3 img{width:50px;}

.congratulation h3{font-size:30px; margin-bottom:20px; }
.chooseYourGift h3{background: #fff;     font-size: 24px;
    text-align: left;
    color: #333;
    margin: 15px 0px 20px -30px;
    display: inline-block;
    padding-right: 50px;
    border-radius: 0 30px 30px 0;}
.chooseYourGift .box{text-align:center; margin: 0 15px 15px;}
.product_box {border-top: 5px solid rgba(255, 255, 255, .8);padding: 30px 50px 0; }
.chooseYourGift .product_box {border-top: 0px ;     padding: 0px 30px 10px;  }
.box{background:#fff; border-radius:5px; padding:10px 10px 0; width:220px; display:inline-block; margin:0 15px; position:relative; vertical-align:top}
.box p{background:#f1f1f1; color:#283761; border-top:1px dashed #ccc; font-size:15px; font-weight:500; padding:10px 0; margin:0 -10px; border-radius: 0 0 5px 5px;    min-height: 60px;}
.selectSize{background:#f1f1f1; padding: 10px 0 10px;
    margin: -5px -10px 0px;
    border-radius: 0 0 5px 5px;   }
.selectSize ul{margin:0px; padding:0px;}
.selectSize ul li{margin: 0px 2px 10px;
    cursor: pointer;
    min-width: 28px;
    height: 28px;
    text-align: center;
    background: #fff;
    border-radius: 25px;
    display: inline-block;
    color: #333;
    border: 1px solid #ddd;
    padding: 5px 10px; font-size:12px;}
.selectSize ul li.active{background:#283761; color:#fff; border-color:#283761;}
.selectSize ul li.disabled{background:#eee; color:#555; text-decoration: line-through; border:1px solid #ddd; cursor:not-allowed;}
.moreGift .box p {min-height:75px;}
.box img{width:100%;}
.box .boxImg{border-radius:5px; margin:0 auto 10px; width:180px; height:180px; line-height: 180px; }
.redeem_btn{padding: 8px 45px;     display: inline-block;
    font-size: 20px;
    color: #fff;
    background: #ef3a43;
    border-radius: 30px; text-transform: uppercase;
    font-weight: 500; box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.45);
     transition: 0.2s all ease-in-out; -webkit-transition: 0.2s all ease-in-out; -moz-transition: 0.2s all ease-in-out;}
	 
	 
.moreGift .redeem_btn{position:absolute; bottom:-21px; left:50%; margin-left:-79px; font-size:18px;}
.moreGift .box{margin-bottom:20px;}
.redeem_btn.blue{background:#fff; color:#111;}
.redeem_btn:hover, .redeem_btn:focus{background:#3a7fe8; color:#fff; text-decoration:none;     box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.45);}
.redeem_btn.blue:hover{background:#3a7fe8; color:#fff;}
.big_pro{text-align:center;background:rgba(255, 255, 255, .75); padding:10px; border-radius:5px; border:1px solid #fff; margin-right:30px;}
.big_pro img{border-radius:5px;}
.thankyou h3{margin:0px 0 30px; }
.thankyou h3.title{border-bottom:1px solid rgba(255, 255, 255, .20); display: inline-block;
    min-width: 500px; padding-bottom:5px;}
.registration .thankyou h3.title{min-width:100%;}
.thankyou h3 .under_process{display:block; color:#b3b3b3;}
.hide{display:none;}
.without_addredd .profile, .without_addredd .scratch{float:none!important; margin:0 auto; max-width:530px;}
.without_addredd .scratch_box{width:100%;}
.without_addredd .scratch {
    padding-top: 30px;
}
.scratch_img{
    position: absolute;
    z-index: 99;
    left: 50%;
    margin-left: -150px;
    bottom: 75px;
}
.scratch_box .loading{position: absolute;
    bottom: 0;
    left: 10px;
    z-index: 999;
    margin-bottom: 0px;}
.loading:after {
  content: ' .';
  font-size:30px;
  animation: dots 1s steps(5, end) infinite;}

@keyframes dots {
  0%, 20% {
    color: #28f300;
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);}
  40% {
    color: #28f300;
    text-shadow:
      .25em 0 0 rgba(0,0,0,0),
      .5em 0 0 rgba(0,0,0,0);}
  60% {
    text-shadow:
      .25em 0 0 #28f300,
      .5em 0 0 rgba(0,0,0,0);}
  80%, 100% {
    text-shadow:
      .25em 0 0 #28f300,
      .5em 0 0 #28f300;}
	  }
.registration.enter_mobile,
.registration.otp_verify,
.registration.reg {
	--registration-control-h: 48px;
}
.popup{position:fixed; left:0px; top:0px; background:rgba(0, 0, 0, .75); width:100%; height:100%; z-index: 99999;}
.popup h3{    margin-top: 0px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;}
.popup p{margin-bottom: 25px;}
.popupBox{width: 540px;
    height: 250px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin:-125px 0 0 -270px;
    background: #fff;
    color: #333;
    font-size: 20px;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    font-weight: 500;}
.document{float:left; margin-bottom:25px; width: calc(100% - 60px); border-bottom: 2px solid #637294;
    margin-top: 8px; font-size:16px;}
.uploadbtn{float:left;  width: 60px; height:60px; overflow: hidden; background:#fff; border-radius:50%; position: relative;}
.uploadImg{position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
	min-height:100%;}
.upload{width:60px; height:60px; opacity:0; filter:alpha(opacity=0); cursor:pointer;}
#uploadDoc .form_group{padding-bottom:10px; padding-top:15px;     position: relative;}
.fileName {
    position: relative;
    top: -20px;
    left: 0px;
    color: #e4aeac;
    width: 80%;
    display: block;
}

.progress {border-radius: 10px;}
.redeemSingleGift{padding-top:15px;}
.chooseYourGift .redeemSingleGift {
   padding-top: 0;
    background: #fff;
    padding: 15px 0;
    margin-top: -15px;
}
.moreGift{padding:15px 50px 0;  }
.divider{width:100%; height:3px; background:#fff; margin:15px 0; background: rgba(255, 255, 255, 0.55);}
.box.active:after{content: "\f00c"; position:absolute; right:15px; top:15px; display: inline-block;
    font: normal normal normal 14px/1 FontAwesome; font-size:20px; background: #3498db;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%; }
.box.active:before{content: ""; position:absolute; right:0px; top:0px;width:100%;background: rgba(0, 0, 0, 0.45);
    height: 100%;
    border-radius: 5px; }
.editMode{    padding-top: 25px;}
.editMode .submit{display:none; margin: 0 auto 25px; }
.editMode .edditingMode .submit{display:block; }
.editMode .edditingMode .document{margin:0px; }
.row-flex {
  display: flex;
  flex-wrap: wrap;
}
.editMode .document{    width: 100%;
    border: 0px;
    line-height: 24px;
    margin-bottom: 25px;}
.editBox .uploadbtn{    float: none;
    margin: 0 auto;
	width: 100%;
    height: 100%;
    border-radius: 5px;
}
.editBox .uploadImg{     position: relative;
    max-width: 100%;
    height: auto;
	width:auto;
    text-align: center;
    line-height: 195px;
	min-height:auto;	
}
.editBox .upload {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
	 z-index: 99;
}
.editBox{    border: 1px solid #ddd;  overflow: hidden;
    width: 195px;
    height: 195px;
    line-height: 181px; border-radius: 5px;     padding: 5px;
    background: #fff;     position: relative;}
.editBox .fa{    position: absolute;
    z-index: 9;
    color: #555;
    font-size: 25px;
    right: 5px;
    top: 5px;
    background: #fff;
    padding: 5px; 
    border-radius: 0 0 0 5px;}
	.dateSelct h4{ color:#000; height:44px; padding:0px 10px; margin:0px; font-size:15px; font-weight:500; line-height:44px; }
	.fiftyFifty{width:50%; background:#d0d8ec; 
    margin-bottom: 10px;}
	.selectDes{background:#d9544f; color:#fff;  padding:10px 20px; display:block; border-radius:5px; font-size:18px; width:100%; margin-bottom:35px;}
	.selectDes:hover, .selectDes:focus{color:#fff; text-decoration:none; background:#bd4945;}
	.selectDes .fa{padding-left:20px; float:right; vertical-align:middle; line-height:27px; border-left:1px solid rgba(255, 255, 255, 0.45);}
	.holiday{max-width:525px;}
	.registration .holiday{min-width:400px;}
	.selectDesBox{position:fixed; left:0px; top:0px; width:100%; height:100%; background:rgba(0, 0, 0, .95); overflow: auto;  z-index:999999; padding:20px; display:none;}
	.selectDesBox.SideScreen{top:125px; width:calc(100% - 500px); height:calc(100% - 125px); }
    .selectDesBox.SideScreen h4{color:#fff; text-align:left;}
    #selectDestinationIcon {text-align: right;
        float: right;
        padding-right: 5px;
    display:inline-block; cursor:pointer;}

	.selectedDestinations{margin-bottom: 25px;}
	.selectedDestinations h4{display:none; }
	.selectDesBox ul, .selectedDestinations ul{margin:0px; padding:0px; position:relative; }
	.selectDesBox ul li{display:inline-block; width:150px; text-align:center; background:#fff; color:#333; border-radius:4px; margin:10px 5px; overflow:hidden; position:relative; cursor:pointer; opacity:.80;}
	.selectedDestinations ul li{display:block; width:100%; background:#fff; color:#333; border-radius:4px; margin:10px 0; overflow:hidden; position:relative; cursor:pointer; }
	.selectDesBox ul li img{width:100%;}
	.selectedDestinations ul li img{width:auto; height:56px;}
	.selectedDestinations.noIcon ul li img{width:auto; height:65px;}
	.selectedDestinations ul li:after{content: "\f07d";  font: normal normal normal 14px/1 FontAwesome;     position: absolute;
    top: 20px;
    right: 10px;
    font-size: 18px;}
	.selectedDestinations.noIcon  ul li:after{content: ""; }
	.selectedDestinations.noIcon  ul li{    cursor: default; }
		.selectDesBox ul li:hover, .selectDesBox ul li.selected{opacity:1;}
	.selectDesBox ul li.selected:after{width:100%; content:"\f046"; position:absolute; left:0px; top:0px; width: 100%; z-index:9;     font: normal normal normal 14px/1 FontAwesome; text-align:right; color:#45edf5; font-size:18px; padding:10px 10px 0 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);}
	.selectDesBox ul li p{    padding: 10px 5px;
    min-height: 56px;
    position: relative;
    z-index: 9999;
    background: #fff;
    margin: 0px;}
	.selectedDestinations ul li p{     padding: 10px 5px 0; font-weight: 500;
    min-height: 56px;
    position: relative;
    z-index: 9999;
    background: #fff;
    margin: 0px;
    display: inline-block;
    width:70%;
    vertical-align: middle; font-size: 15px;}
	.selectedDestinations.noIcon ul li p{ padding: 5px 5px 0; vertical-align: top;}
	.selectedDestinations ul li p span{display: block;
    font-size: 13px;
    color: red;
    font-weight: 400;}
.hrLine{width:100%; height:3px; margin:5px 0 35px; background:#768ec7;}
	.selectDesBox ul li.selected p{color:#ef3a43;}
	.selectDecBTN{border-top:1px solid rgba(255, 255, 255, 0.25); padding-top:15px; margin-top:20px; text-transform:uppercase;}
.dateSelct .form_group{position:relative;}
.dateSelct .form-control{background:url(../images/callender.jpg) no-repeat 99% 7px #fff; margin-bottom:0px; border-radius:0px;} 
.dateSelct .form_group .fa{position:absolute; right:10px; top:10px; color:#333; font-size:21px;}
.registration.holidayDatePrefrance{width:auto; min-width:500px;}
.selectDesBox.SideScreen h4{color:#fff;}
.massageBox{background:#fff; padding:15px;}
.hrLine{display:none;}
#ui-datepicker-div{z-index:99!important;}
.mobileBanner{display:none; }
@media (max-width: 1440px) {
	
 
	.registration h6 {
    font-size: 14px; 
    padding-bottom: 8px; 
}
	.registration {
    width: 40%;
	}
	 
	.selectDesBox.SideScreen {	
    width: calc(100% - 40%); text-align:center;
}
	.dateSelct h4{  height:38px; line-height:38px; }
 

.form-control {
    height: 42px;
}
.registration .submit {
    padding: 2px 15px 2px 15px;
    font-size: 15px;
    height: 42px;
    line-height: 38px;
}
.submit .fa {
    padding-right: 12px;
    font-size: 20px;
    margin-top: 9px;
    float: left;
}
}
@media (max-width: 1366px) {
	.selectedDestinations.noIcon ul li p {
    width: 65%;
}

.form-control {
    font-size: 14px;
}
.holidayDatePrefrance {
    width: 100%;
}
}
@media (max-width: 1199px) {
body{background:#1188a0;  }
.scratch_page .scratch_layout {
    max-width: 100%;
    margin:80px 0 0; 
    gap: 0;
    width: 100%;
    border-radius: 0; 
    box-shadow: none;
}
.registration.thankyou_page {
    padding: 45px 10px 20px;
}
.mobileBanner{display:block; width:100%; }
.registrationBg {
    width: 100%;
    left: auto;
    right: 0; 
    top: 0px;
	position: inherit;
    min-height: calc(100vh - 80px);
    display: block; 
    padding: 80px 0 30px ; 
    background:#1188a0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
}
.registrationBg .registration { 
    width: 90%;
    max-width: 520px;
    margin: 0 auto 24px;
}
.registrationBg .registration.reg {
    width: 90%;
    max-width: 520px;
    margin: 0 auto 24px;
}
}
@media (max-width: 1023px) {
	.hrLine{display:block;}
 
    .scratch {
   
    width: 100%;
    float: left;
}
    .scratch_box{width:330px;margin:0 auto;}
.thankyou h3.title {
    min-width: 215px;
}
.big_pro img {
    width: 180px;
}
.big_pro {
    margin-right: 20px;
    padding: 6px;
}
.holidayDatePrefrance, .registration .holiday {
    min-width: 100%;
}
}
@media (max-width: 766px) {
  
	body { 
    background-size: 100%;
}
.registrationBg .registration.otp_verify, .registrationBg .registration.enter_mobile {
    position: absolute;
    top: auto;
    bottom: 10px;
    left: 4%;
    margin-bottom: 0px;
}
 
	.selectedDestinations.noIcon ul li img{float:left;}
	.selectedDestinations.noIcon ul li p{float:left; width: 65%; }
	.selectDesBox.SideScreen {
    top: 0;
    width: 100%;
    height:100%;
}
	.registration.holidayDatePrefrance{width:100%;  min-width: auto; }
	.congratulation {
    min-width: 94%;
    width: 94%;
}
    
.congratulation h2 {
    font-size: 36px;
}
.congratulation h3 {
    font-size: 18px;
}
.product_box {
    padding: 0 10px;
}
.editMode .form_group{width:100%;}
	.registration h2 {
    font-size: 18px;
}
.footerLink {
    position: relative;
	}
	.registration.enter_mobile h6 {
    font-size: 13px;
}
}
@media (max-width: 449px) {
	
	
    .logo_img{ max-width:135px; }
    .registration h6 { 
        margin-bottom: 24px;
    }
	
.registration.enter_mobile .submit_full { 
    margin-top: 0;
}

.registrationBg {
    min-height: auto;
    padding: 0;
    overflow: visible;
}
.registrationBg .registration,
.registrationBg .registration.reg {
    width: 92%;
    max-width: 520px;
    margin: 0px auto 24px;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
}
.registration.otp_verify .otp_back_link { 
    margin-top: 0px;
}
.registrationBg .registration.reg, .registration.thankyou_page {margin: -265px auto 24px;}
	.registration {
    padding: 28px 20px 24px;
    width: 92%;
    max-width: 100%;
    top: calc(40px + 50vh);
    border-radius: 36px;
}
 
.logo {
    height: auto;
	width:100%;
}
	.thankyou{margin:0px;}
.selectDesBox {
    padding: 15px;
    text-align: center;
}
	.editBox {
    width: 250px;
    height: 250px;
    line-height: 235px;
    overflow: hidden;
    margin: 0 auto 0px;
}
	.box {
    width: 96%;
   max-width: 300px;
   margin: 0 0px 35px;
}
.moreGift .box {
    margin-bottom: 40px;
}
.congratulation {
   margin-top:0px;
}
.box img {
    width: 100%;
}
	.big_pro {
    float: none!important;
    margin: 0 auto;
    padding: 6px;
	
}
.big_pro img {
    width: 100%;
}
.thankyou h3.title {
    display: block;
    margin: 20px auto;
    min-width: 215px;
    width: 100%;
}
.thankyou h3 {
    margin: 0 auto;
    width: 100%;
}
	.profile ul li {
    font-size: 16px;
    background: #2c3d6c;
    width: 100%;
    padding: 12px;
    float: left;
}
	.profile ul li span {
    float: left;
    width: 100%;
    background: none;
    color: #e5ecff;
    padding: 0 0 3px;
    border-right: 0px dashed rgba(75, 103, 181, .65);
    text-align: left;
    margin-right: 0;
    margin-top: 0;
    font-size: 14px;
	height: auto!important;
}
	.redeem {
    padding: 125px 0px 20px;
	}
	.scratch_box {
    width: 100%;
	float: left;
    margin-top: 15px;
	    margin-bottom: 20px;
	}
	.scratch_box h2 {
    padding: 25px 0;
    font-size: 20px;
}
	header{position:relative; padding:13px 10px 8px 10px; height: auto;
    text-align: center; justify-content: center; align-items: center;}
header img{max-width:98%;}
	.registration.holidayDatePrefrance{width:100%; padding: 125px 15px 15px; }
	
	 
	.registration h6 {
    font-size: 13px;
	}
	.registration.verification h6 {
    font-size: 16.6px;
}
.registration.verification h2 {
    font-size: 20px;
}
.registration.email_verification h6 {
    font-size: 15px;
}
.registration.reg h6 {
    font-size: 13.8px;
}

 
.registration .submit {
    padding: 2px 35px 2px 35px;
    font-size: 18px;
    height: 56px;
    line-height: 50px;
	margin-top:0px;
	box-shadow:3px 3px rgb(0 0 0 / 30%);
}
.form_group {
    padding-bottom: 20px;
}
.submit .fa { 
    font-size: 22px;
    margin-top: 12px; 
}
.registration .otp .submit{  padding:2px 25px;}
.registration .submit.resend { 
    font-size: 14px;
	padding:2px 15px;
	color: #223154;
}

.submit.resend .fa {
    font-size: 16px;
    margin-top: 16px;
}
}

@media (max-width: 399px){
    .scratch_box{width:330px;margin:0 auto;}

	.scratch_box h2 {
    font-size: 18px;
}
	.registration.reg h6 {
    font-size: 12.5px;
}
.registration.email_verification h6 {
    font-size: 13px;
}
 
.registration.enter_mobile h6 {
    font-size: 11px;
}
.registration.verification h6 {
    font-size: 14.4px;
}

}
@media (max-width: 359px){
		.registration.reg h6 {
    font-size: 12px;
}
	.registration.verification h2 {
    font-size: 16px;
}
.registration.verification h6 {
    font-size: 13px;
}

 
 
}