/* =======================
  Table Of Contents Start
  =======================
=> Colors





  =======================
  Table Of Contents End
========================*/
:root {
  --color-white: #ffffff;
  --color-white2: #f3e6e2;
  --color-black: #000000;
  --color-grey: #58595b;
  --color-grey2: #c7c7c9;
  --color-blue: #0072bb;
  --color-red: #ec1f24;
  --color-lightpink: #f6ece9;
  --color-gradient1: linear-gradient(
    -40deg,
    rgba(255, 241, 55, 1) 0%,
    rgba(152, 30, 33, 1) 30%,
    rgba(152, 30, 33, 1) 66%,
    rgba(255, 241, 55, 1) 100%
  );
  --color-gradient2: linear-gradient(
    -39deg,
    rgba(249, 203, 179, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(249, 203, 179, 1) 100%
  );

  --color-gradient3: linear-gradient(
    90deg,
    rgba(38, 36, 123, 1) 0%,
    rgba(0, 98, 175, 1) 40%,
    rgba(0, 98, 175, 1) 60%,
    rgba(38, 36, 123, 1) 100%
  );
  --color-gradient4: linear-gradient(
    -9deg,
    rgba(236, 47, 46, 1) 0%,
    rgba(68, 21, 20, 1) 30%,
    rgba(69, 22, 22, 1) 66%,
    rgba(236, 52, 50, 1) 100%
  );
  --color-gradient5: linear-gradient(
    0deg,
    rgba(244, 40, 41, 1) 0%,
    rgba(255, 110, 1, 1) 100%
  );
  --color-gradient6: linear-gradient(
    130deg,
    rgba(45, 102, 145, 0.95) 0%,
    rgb(1, 24, 48, 0.95) 60%
  );
}

/*====================
	 Typography
======================*/
/* =======================
 3 layout import 
========================*/
/* ============================
    1 default
===============================*/
/*====================
    Typography
======================*/
@font-face {
  font-family: "DIN Alternate Bold";
  src: url("../../frontendassets/fonts/DINAlternateBold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
/* @font-face {
  font-family: "Calibrib";
  src: url("../../frontendassets/fonts/calibrib.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
} */
@font-face {
  font-family: "Arial";
  src: url("../../frontendassets/fonts/arial.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}
/* @font-face {
  font-family: "Gothicb bold";
  src: url("../../frontendassets/fonts/GOTHICB.TTF") format("truetype");
  font-weight: bold;
  font-display: swap;
} */
@font-face {
  font-family: "Shonarb";
  src: url("../../frontendassets/fonts/Shonarb.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "DIN Alternate Bold", sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  word-spacing: 0px;
  word-wrap: break-word;
  background: #f5f7fe;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
div,
section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 600000s 0s, color 600000s 0s;
}

.ban-font {
  font-family: "Shonarb";
  font-weight: 500;
}

button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* ============================
    Main Box
===============================*/
.main-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  max-width: 500px;
  margin: 0 auto;
  background-image: url(../../frontendassets/img/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.thank-you-page-bg {
  background-image: url(../../frontendassets/img/bg.png);
}
.thank-you-page-bg-2 {
  background-image: url(../../frontendassets/img/bg2.png);
}

/* add a box shadow .main-box .app-content-border class */
.main-box .app-content-border {
  width: 340px;
  max-width: calc(100% - 60px);
  border: 1px solid rgba(203, 176, 115, 0.95);

  opacity: 0.93;
  margin: 0 0px 60px 0px;
  padding: 5px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -khtml-border-radius: 20px;
  border-radius: 20px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.7);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.main-box .app-content-border .app-content-box {
  background: var(--color-gradient6);
  /* border: 1px solid #fff; */
  padding: 30px 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
}
.main-box .app-content-border .app-content-box.reward {
  border: none;
}

/* =====================================
    Button with background image
========================================*/
.color-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #ed1e24;
  /* border: 1px solid var(--color-white); */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  cursor: pointer;
}

/* =====================================
    Button With Border design
========================================*/
.btn-border {
  display: block;
  background: #ffffff2e;
  /* border: 1px solid var(--color-white); */
  padding: 2px 2px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
  cursor: pointer;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
}

/* =====================================
    Facebook Button
========================================*/
.facebook-btn {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--color-blue);
  border: none;
  outline: none;
  padding: 5px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
}
.facebook-btn .icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  margin-right: 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
}
.facebook-btn .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-blue);
}
.facebook-btn .text {
  font-size: 14px;
  line-height: 14px;
  color: var(--color-white);
}

/* =====================================
    Main title
========================================*/
.main-title {
  text-align: center;
}
.main-title .heading {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.main-title .para {
  font-size: 14px;
  line-height: 18px;
  color: var(--color-white);
  margin-bottom: 15px;
}

/* =====================================
    Footer
========================================*/
.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 500px;
  margin: 0 auto;
  background-color: var(--color-black);
  padding: 20px 0px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer p {
  font-size: 20px;
  line-height: 20px;
  color: var(--color-white);
  text-align: center;
}

/* =====================================
    Form
========================================*/
form .input-label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--color-white);
  margin-left: 10px;
  margin-bottom: 2px;
  letter-spacing: 0.8px;
}
form .birthdate-input {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
form .birthdate-input .input-group {
  width: 30%;
}
form .birthdate-input .input-group .btn-bg .icon svg {
  width: 8px;
  height: 10px;
}
form .birthdate-input .input-group select {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-white);
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0px 5px 0px 12px;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  z-index: 1;
  font-family: "Arial";
}
form .birthdate-input .input-group select option {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-grey);
  padding: 5px;
}
form .default-select {
  position: relative;
  display: block;
}
form .default-select select {
  font-size: 12px;
  letter-spacing: 0.6px;
  font-family: "DIN Alternate Bold";
  color: var(--color-white);
  width: 100%;
  height: 40px;
  background: #ffffff2e;
  padding: 0px 7px 0px 15px;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  z-index: 1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
}
form .default-select select option {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-grey);
  padding: 5px;
  background: #ffffff2e !important;
}
form .default-select select option:hover {
  color: #ed1e24;
  background: #ffffff2e !important;
}
form .default-select .icon {
  position: absolute;
  top: 7px;
  right: 9px;
}
form .default-select .icon svg {
  height: 14px;
  width: 14px;
  fill: var(--color-white);
}
form .input-group {
  position: relative;
  margin-bottom: 15px;
}
form .input-group .btn-bg {
  height: 35px;
  display: flex;
  align-items: center;
}
form .input-group .btn-bg .icon {
  position: absolute;
  right: 0px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
form .input-group .btn-bg .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}
form .input-group .btn-bg input {
  font-family: "DIN Alternate Bold";
  font-size: 11px;
  line-height: 12px;
  font-weight: 100;
  color: var(--color-white);
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0px 10px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
  font-family: "Arial";
}
form .input-group .btn-bg input::placeholder {
  font-size: 12px;
  line-height: 14px;
  font-weight: 100;
  color: var(--color-white);
}
form .input-group.tel {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
}
form .input-group.tel .btn-bg {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  height: 50px;
}
form .input-group.tel .btn-bg .icon {
  left: 0;
}
form .input-group.tel .btn-bg input {
  text-align: left;
  padding-left: 40px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
}
form .consent-box .consent-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  padding: 0px 0px 15px 0px;
}
.consent-title1 {
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  padding: 20px 0px 15px 0px;
  color: var(--color-white);
}
.consent-OTP {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  padding: 20px 0px 0px 0px;
  color: var(--color-white);
}
form .consent-box .label {
  position: relative;
  display: block;
  cursor: pointer;
  margin: 5px 0px;
  /* margin-top: 15px; */
}
form .consent-box .label .checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form .consent-box .label .checkbox:checked ~ .checkmark::after {
  display: block;
}
/* form .consent-box .label .checkmark {
  position: absolute;
  top: 0;
  left: 100px;
  height: 20px;
  width: 20px;
  background-color: var(--color-white);
  border: 1px solid #ed1e24;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} */
form .consent-box .label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey2);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
form .consent-box .label .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #011830;
  border-bottom: 2px solid #011830;
  display: none;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
form .consent-box .label .agree {
  font-size: 12px;
  line-height: 18px;
  color: var(--color-white);
  display: block;
  margin-left: 130px;
}
/* form .consent-box .consent-text {
  font-family: "Arial", Arial;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  padding: 0;
} */
form .consent-box .consent-text {
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #dcdcdc;
  width: calc(100% - 40px);
  margin-left: 35px;
  padding: 0;
}
form .consent-box .sign-box {
  width: 100%;
  height: 100px;
  background-color: var(--color-grey2);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
  margin-top: 20px;
}
form .btn-box {
  width: calc(50% - 15px);
  margin: 0 auto;
  margin-top: 25px;
}
form .btn-box .next-btn,
form .btn-box .reset-btn {
  font-family: "Arial", Arial;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 10px;
}
form .btn-box .reset-btn {
  background: #fff;
  border: 2px solid #ed1e24;
  border-radius: 10px;
}
form .btn-box .next-btn .text,
form .btn-box .reset-btn .text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.5px;
}
form .btn-box .reset-btn .text {
  color: var(--color-red);
}
form .btn-box .next-btn .icon,
form .btn-box .reset-btn .icon {
  height: 10px;
  width: 10px;
}
form .btn-box .next-btn .icon svg,
form .btn-box .reset-btn .icon svg {
  height: 12px;
  width: 10px;
  fill: var(--color-white);
  margin-left: 4px;
}
form .dual-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
/* =====================================
    language Page & Button
========================================*/
.select-lang-page .app-content-border .app-content-box {
  padding: 30px;
}
.select-lang-page .lang-btn .eng-btn,
.select-lang-page .lang-btn .ban-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
}
.select-lang-page .lang-btn .eng-btn .text,
.select-lang-page .lang-btn .ban-btn .text {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  padding: 11px;
}
.select-lang-page .lang-btn .eng-btn {
  margin-bottom: 30px;
}
.select-lang-page .lang-btn .eng-btn .text {
  color: var(--color-white);
}
.select-lang-page .lang-btn .ban-btn {
  background: #fff;
  border: 1px solid #ed1e24;
  color: #ed1e24;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.5);
  padding: 2px;
}
.select-lang-page .lang-btn .ban-btn .text {
  line-height: 20px;
  background-color: transparent;
  /* color: var(--color-white); */
  padding: 9px 6px 5px 6px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
  font-size: 16px;
}

/* =====================================
    Current Brand
========================================*/
.current-brand .brand-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  min-height: 40px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
  background-color: #ffffff2e;
}
.current-brand .brand-btn .text {
  font-size: 12px;
  line-height: 18px;
  color: white;
  text-align: left;
}
.current-brand .brand-btn .icon {
  height: 14px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.current-brand .brand-btn .icon svg {
  height: 10px;
  width: 10px;
  fill: white;
}
.current-brand .brand-list {
  margin: 0;
  padding: 0;
  display: none;
  /* width: fit-content; */
  margin: 0 auto;
  /* margin-top: 10px; */
  padding: 5px 0px;
  /* background: var(--color-gradient3); */
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
}
.current-brand .brand-list.active {
  display: block;
}
.current-brand .brand-list li {
  font-size: 13px;
  line-height: 18px;
  /* font-weight: 700; */
  /* text-transform: uppercase; */
  text-align: center;
  color: var(--color-white);
  border: 1px solid #969696;
  list-style: none;
  padding: 8px 10px;
  margin: 5px 0px;
  cursor: pointer;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
}
.current-brand .brand-list li.active {
  font-size: 16px;
  color: var(--color-red);
  border-color: var(--color-red);
}

/* =====================================
    Otp Box
========================================*/
.otp-box .generate-otp-btn {
  width: 180px;
  padding: 6px;
  margin: 0 auto;
}
.otp-box .generate-otp-btn .text {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: white;
}
.otp-box .otp-text {
  font-size: 15px;
  line-height: 16px;
  color: red;
  margin-top: 30px;
}
.otp-box .input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.otp-box .input-group .btn-border {
  width: calc(16.6666666667% - 10px);
  padding: 1px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
}
.otp-box .input-group input {
  font-size: 24px;
  text-align: center;
  width: 100%;
  height: 45px;
  background-color: var(--color-grey2);
  box-sizing: border-box;
  border: none;
  outline: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
}

/* ============================
    login page
===============================*/
.login-page .divider {
  font-family: "DINAlternate bold";
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  text-align: center;
  color: var(--color-white);
  margin: 15px 0px;
}

/* ============================
    Video Page
===============================*/
.video {
  align-items: center;
  padding: 0px 20px;
}
.video .video-box {
  position: relative;
}
.video .video-box .skip-btn {
  position: absolute;
  bottom: 40px;
  right: 0;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  color: white;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
}
.video .video-box .skip-btn.active {
  display: none;
}

/* ============================
    Flavour choice Page
===============================*/
.flavour-choice .btn-img-group {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 50px;
}
.flavour-choice .btn-img-group .content {
  position: relative;
}
.flavour-choice .btn-img-group .content .btn1 {
  padding: 9px 6px 9px 50px;
}
.flavour-choice .btn-img-group .content .btn1 .image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: fit-content;
  background: linear-gradient(90deg, #ec2f2e 0%, #731b1d 100%);
  padding: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}
.flavour-choice .btn-img-group .content .btn1 img {
  width: 45px;
  display: block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
}
.flavour-choice .btn-img-group .content .btn1 .text {
  font-size: 10px;
  line-height: 12px;
  color: white;
  text-transform: uppercase;
  display: block;
}

/* ============================
    Subscription Page
===============================*/
.subscription-page {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.subscription-page .header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-black);
  padding: 20px;
}
.subscription-page .header .logo {
  width: 50%;
}
.subscription-page .header .logo img {
  width: 230px;
  display: block;
}
.subscription-page .header .search-icon {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.subscription-page .header .search-icon svg {
  width: 30px;
  height: 30px;
  fill: #d4d4d4;
  cursor: pointer;
}
.subscription-page .header .search-bar {
  position: absolute;
  top: -30px;
  left: 15px;
  width: calc(100% - 30px);
  visibility: hidden;
  opacity: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.subscription-page .header .search-bar.active {
  top: 100px;
  visibility: visible;
  opacity: 1;
}
.subscription-page .header .search-bar .search-input {
  font-size: 16px;
  line-height: 16px;
  color: var(--color-grey);
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  border: none;
  outline: none;
  padding: 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -khtml-border-radius: 50px;
  border-radius: 50px;
}
.subscription-page .watch-live {
  position: relative;
  margin-bottom: 50px;
}
.subscription-page .watch-live .image img {
  width: 100%;
  display: block;
}
.subscription-page .watch-live .btns {
  position: absolute;
  bottom: -15px;
  left: 20px;
  display: flex;
  align-items: center;
}
.subscription-page .watch-live .btns .live-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gradient5);
  padding: 15px 30px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -khtml-border-radius: 7px;
  border-radius: 7px;
}
.subscription-page .watch-live .btns .live-btn .icon {
  height: 15px;
  width: 15px;
}
.subscription-page .watch-live .btns .live-btn .icon svg {
  height: 15px;
  width: 15px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.5px;
}
.subscription-page .watch-live .btns .live-btn .text {
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  color: white;
  margin-left: 10px;
}
.subscription-page .watch-live .btns .share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-white);
  margin-left: 15px;
  cursor: pointer;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -khtml-border-radius: 7px;
  border-radius: 7px;
}
.subscription-page .watch-live .btns .share-icon svg {
  width: 22px;
  height: 22px;
}
.subscription-page form .btn-box .next-btn .text {
  text-transform: uppercase;
}

/* ============================
    Leaderboard Page
===============================*/
.leaderboard-page .app-content-border,
.reward-page .app-content-border {
  width: 100%;
}
.leaderboard-page .app-content-border .app-content-box,
.reward-page .app-content-border .app-content-box {
  padding: 5px 0px;
}
.reward-page .app-content-border .app-content-box {
  padding: 20px 20px 10px 20px;
}
.leaderboard-page .banner,
.reward-page .banner {
  width: calc(100% - 10px);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url(../../frontendassets/img/thank-you-bar.png); */
  /* background: var(--color-gradient3); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  /* border: 1px solid var(--color-white); */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
}
.leaderboard-page .banner .text,
.reward-page .banner .text {
  font-size: 22px;
  line-height: 22px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: #192f82;
}
.reward-page .banner .text {
  background: #000039;
  padding: 15px 30px;
  color: var(--color-red);
  border: 1px solid #1f1f50;
  border-radius: 10px;
  /* clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%); */
}
.leaderboard-page .banner .text .normal,
.reward-page .banner .text .normal {
  font-size: 18px;
  display: block;
  font-weight: 500;
  color: #fff;
}
.leaderboard-page .banner2,
.reward-page .banner2 {
  width: calc(100% - 10px);
  background-image: url(../../frontendassets/img/leaderboard-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 10px;
  margin: 10px auto;
  border: 1px solid var(--color-red);
  border-radius: 10px;
}
.reward-page .banner2 {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 40px;
  background-color: #01014a;
}
.leaderboard-page .banner2 .text,
.reward-page .banner2 .text {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 5px;
}
.leaderboard-page .banner2 .para,
.reward-page .banner2 .para {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: var(--color-white);
  font-weight: 700;
}
.leaderboard-page .board {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background-color: #6ed0f7;
}
.leaderboard-page .board .board-heading {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-left: 15px;
  margin-bottom: 10px;
}
.leaderboard-page .board .title-box {
  display: flex;
  align-items: center;
  background-color: #6ed0f7;
  padding: 5px 10px;
  margin-bottom: 10px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -khtml-border-radius: 7px;
  border-radius: 7px;
}
.leaderboard-page .board .title-box .img {
  width: 80px;
}
.leaderboard-page .board .title-box .name {
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #201718;
  width: 45%;
}
.leaderboard-page .board .title-box .score {
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #201718;
  text-align: right;
  width: calc(65% - 80px);
  padding-right: 30px;
}
.leaderboard-page .board .board-content .box {
  display: flex;
  align-items: center;
  background-color: #c7ebfb;
  padding: 5px 10px;
  margin-bottom: 10px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  -khtml-border-radius: 7px;
  border-radius: 7px;
}
.leaderboard-page .board .board-content .box .img {
  width: 80px;
}
.leaderboard-page .board .board-content .box .img img {
  width: 60px;
  display: block;
  border: 2px solid var(--color-white);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -khtml-border-radius: 100%;
  border-radius: 100%;
}
.leaderboard-page .board .board-content .box .name {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-grey);
  width: 45%;
}
.leaderboard-page .board .board-content .box .score-point {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-grey);
  text-align: right;
  width: calc(65% - 80px);
  padding-right: 30px;
}
.leaderboard-page .board1 .board-heading {
  color: #201718;
}
.leaderboard-page .board2 {
  background-color: transparent;
}
.leaderboard-page form .btn-box {
  margin-top: 5px;
  margin-bottom: 10px;
}
.banner.thankyou {
  border: 1px solid var(--color-red);
  background-color: #000039;
}

/* ============================
   Confirmation Page
===============================*/
.confirmation .para {
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: var(--color-black);
  padding: 20px 0px;
}
.confirmation .confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.confirmation .confirm-btn .btn1,
.confirmation .confirm-btn .btn2 {
  width: 120px;
}

.confirmation .confirm-btn.new-con {
  display: block;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.confirmation .confirm-btn .btn1.new1,
.confirmation .confirm-btn .btn2.new2 {
  width: 80%;
  margin: 5px auto;
}
.confirmation .confirm-btn .btn1 a,
.confirmation .confirm-btn .btn2 a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 100;
  padding: 10px;
  display: block;
  text-align: center;
}
.confirmation .confirm-btn .btn1 a {
  color: var(--color-white);
  padding: 11px;
}
.confirmation .confirm-btn .btn2 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 12px;
  background: #e32c33;
}
.confirmation .confirm-btn .btn2 .btn-bg {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
}
.confirmation .confirm-btn .btn2 a {
  color: var(--color-red);
  background-color: var(--color-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -khtml-border-radius: 10px;
  border-radius: 10px;
}
.btn-image-new {
  background: #ffffff4d;
  border: 1px solid;
  border-radius: 15px;
}
.btn-image-new.redborder {
  background: #ffffff4d;
  border: 1px solid var(--color-red);
  border-radius: 15px;
}

.main-title .heading.passion {
  font-size: 20px;
  margin-bottom: 10px;
}
.purchase-new {
  border: 1px solid #978b8c;
  border-radius: 10px;
  padding: 10px 10px;
}
.purchase-new .para {
  font-size: 15px;
  color: #fff;
}
/* ============================
   Thanks You Page
===============================*/
.thank-you-page .tick-icon {
  height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0px 0px 0px;
}
.thank-you-page .tick-icon svg {
  height: 60px;
  width: 60px;
  fill: var(--color-white);
}
.thank-you-page .big-text {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: var(--color-white);
  margin: 15px 0px 30px 0px;
}

/* ============================
   Progress Bar
===============================*/
.skill-wrapper .progress-bar-wrapper {
  margin-top: 20px;
}
.skill-wrapper .progress-bar-wrapper .progress-bar-item .progress-bar-bg {
  width: 100%;
  height: 24px;
  background: #ed1e24;
  overflow: hidden;
}
.skill-wrapper
  .progress-bar-wrapper
  .progress-bar-item
  .progress-bar-bg
  .progress-bar-counter {
  position: relative;
  width: 0;
  height: 100%;
  background: var(--color-white);
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 1;
  animation: progressSideLeft 3s ease;
  -webkit-animation: progressSideLeft 3s ease;
}
.skill-wrapper
  .progress-bar-wrapper
  .progress-bar-item
  .progress-bar-bg
  .progress-bar-counter::before {
  content: attr(data-value);
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: var(--color-black);
  background: transparent;
  padding-right: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.skill-wrapper .progress-bar-wrapper .progress-bar-item .progress-subtitle {
  font-size: 16px;
  line-height: 18px;
  color: var(--color-white);
  text-align: center;
  margin-top: 30px;
}
@keyframes progressSideLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
  }
  to {
    display: block;
    opacity: 1;
    transform: none;
  }
}
/* ============================
   Big Image Page
===============================*/
.big-image-page {
  background-image: url(../../frontendassets/img/gamifi.png);
}
.big-image-page .big-image img {
  width: 100%;
}
.gamific {
  color: var(--color-white);
  font-size: 40px;
}

.btn-bg.btn2-bg {
  text-align: center;
}

/* =======================
 4 components import 
========================*/
/* =======================
 5 themes import 
========================*/

/*# sourceMappingURL=style.css.map */

.custom-select {
  position: relative; /* Position for dropdown icon */
  /* box-shadow: 2px 1px 0px rgba(0, 0, 0, 0.5); */
  /* height: 40px; */
}

.dropdown-label {
  margin-bottom: 5px; /* Space between label and dropdown */
  font-weight: bold;
  color: #333; /* Label color */
}

.select-box {
  /* border: 2px solid #007bff; Border color */
  border-radius: 15px; /* Rounded corners */
  background-color: #ffffff2e; /* Background color */
  cursor: pointer; /* Change cursor to pointer */
  padding: 7px 10px; /* Padding */
  display: flex; /* Align icon and text */
  justify-content: space-between; /* Space between text and icon */
  align-items: center; /* Center vertically */
}

.selected {
  display: block;
  flex: 1;
  color: #ffffff;
  font-size: 12px;
  font-family: "Arial";
}

.icon {
  margin-left: 5px;
  pointer-events: none;
  color: #fff;
  margin-top: -2px;
  font-size: 12px;
}

.options {
  display: none; /* Hide options by default */
  position: absolute; /* Position below the select box */
  width: 100%; /* Full width */
  background-color: #011830;
  border: 2px solid var(--color-red);
  border-radius: 15px;
  z-index: 1; /* Stack on top */
  padding: 10px; /* Padding for options */
}

.option {
  padding: 2px; /* Padding for options */
  border-bottom: 1px solid var(--color-red); /* Bottom border for separation */
  color: #ffffff; /* Text color */
  font-size: 12px;
}

.option:last-child {
  border-bottom: none; /* No border for last option */
}

.option:hover {
  background-color: #007bff; /* Highlight color on hover */
  color: white; /* Text color on hover */
}

.option.active {
  font-weight: bold; /* Bold active option */
  color: red; /* Color of active option */
}

.show {
  display: block; /* Show when class "show" is added */
}

.d-none {
  display: none !important; /* Hide element */
}

.text-danger {
  /* color: var(--color-white); */
  color: red;
}