:root {
  --color-primary: #10206e;
  --color-white: #fff;
  --color-yellow: #EBDA63;
  --color-grey: #b9b9b9;
  --color-black: #000000;
  --gradient-line-light: #D3A855;
  --gradient-line-dark: #0f111d;
  --font-primary: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #2448f6 url(../../images/app-bg.webp) no-repeat top 0px center;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.4;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-size: cover;
}

* {
  box-sizing: border-box;
}

main {
  overflow-x: clip;
}

::selection {
  background: rgba(17, 17, 17, 0.5);
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 2px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #392E3C;
}

::-webkit-scrollbar-thumb {
  background: #D3A855;
  border-radius: 15px;
}

a {
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--color-black);
}

figure {
  margin: 0;
}

p {
  margin-bottom: 10px;
}

iframe {
  display: block;
}

strong {
  font-weight: 600;
}

input,
select,
textarea,
button {
  font-family: inherit;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
}

.gradient-primary, .form-control, .form-select {
  border: solid 1px transparent;
  box-shadow: 0px 0px 3.8px 0px rgb(132, 87, 0);
  background: linear-gradient(var(--color-primary)) padding-box, linear-gradient(to right, var(--gradient-line-light), var(--gradient-line-dark)) border-box;
}

.underline {
  text-decoration: underline;
}

.form-control, .form-select {
  width: 100%;
  padding: 8px 15px;
  font-size: 15px;
  color: var(--color-white);
  border-radius: 15px;
  font-weight: 400;
  height: 46px;
}
.form-select {
  appearance: none;
  background: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.94567 7.60508C5.83473 7.60572 5.72476 7.58445 5.62206 7.5425C5.51935 7.50055 5.42594 7.43874 5.34717 7.36062L0.289382 2.30283C0.130649 2.1441 0.0414734 1.92881 0.0414734 1.70432C0.0414734 1.47984 0.130649 1.26455 0.289382 1.10582C0.448116 0.947086 0.663404 0.85791 0.887887 0.85791C1.11237 0.85791 1.32766 0.947086 1.48639 1.10582L5.94567 5.57353L10.405 1.11425C10.5662 0.976149 10.7737 0.903986 10.9858 0.91218C11.198 0.920375 11.3992 1.00832 11.5493 1.15845C11.6995 1.30858 11.7874 1.50983 11.7956 1.72198C11.8038 1.93414 11.7316 2.14157 11.5935 2.30283L6.53575 7.36062C6.37874 7.51635 6.16682 7.60414 5.94567 7.60508Z" fill="%23EAD675"/></svg>') no-repeat right 13px center, linear-gradient(var(--color-primary)) padding-box, linear-gradient(to right, var(--gradient-line-light), var(--gradient-line-dark)) border-box;
  padding-right: 35px;
}
.form-label {
  display: block;
  color: #FFF;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.font-20 {
  font-size: 20px !important;
}
.font-24 {
  font-size: 24px !important;
}
.font-25 {
  font-size: 25px !important;
}
.font-26 {
  font-size: 26px !important;
}

.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

.text-black {
  color: var(--color-black) !important;
}
.text-white {
  color: var(--color-white) !important;
}
.text-yellow {
  color: var(--color-yellow) !important;
}
.text-grey {
  color: var(--color-grey) !important;
}
.text-center {
  text-align: center !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: start !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.vertical {
  display: flex;
  flex-direction: column;
}
.vertical > p {
  margin: 0;
}

.y-center {
  display: flex;
  align-items: center;
}

.w-fit {
  width: fit-content;
}

.flex-grow-1 {
  flex-grow: 1;
}

.mx-auto {
  margin-inline: auto;
}
.my-auto {
  margin-block: 0;
}

.mt-auto {
  margin-top: auto;
}

.ms-auto {
  margin-left: auto;
}
.gap-xs {
	gap: 5px !important;
}
.gap-sm {
    gap: 10px !important;
}
.gap-md {
    gap: 15px !important;
}
.gap-lg {
    gap: 20px !important;
}
.mx-none {
  max-height: none !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

.btn {
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.btn-primary {
  padding: 8px 15px;
  height: 46px;
  font-weight: 600;
  font-size: 17px;
  border-radius: 15px;
  color: #694500;
  min-width: 174px;
  background: linear-gradient(94.15deg, #F9F76C -21.24%, #D3A955 91.05%);
  border: 1px solid #FFED84;
  box-shadow: -2px 5px 0px 0px #845700;
}
.btn-text {
  color: #DCB039;
  font-size: 15px;
  text-decoration: underline;
}
.btn-border {
  border: solid 1px #D3A855;
  border-radius: 13px;
  background: var(--color-primary);
  height: 40px;
  padding: 5px 15px;
  font-size: 14px;
}
.btn-border .arrow {
  width: 9px;
  height: 14px;
  margin-top: 1px;
  background: url('data:image/svg+xml,<svg width="9" height="15" viewBox="0 0 9 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.70192 0.821144C7.90043 0.816448 8.09546 0.873812 8.25982 0.985239C8.42418 1.09667 8.54967 1.2566 8.6188 1.44275C8.68793 1.62889 8.69726 1.83197 8.64547 2.02367C8.59369 2.21537 8.48338 2.38613 8.32992 2.51214L2.49092 7.51214L8.32992 12.5121C8.43493 12.5903 8.52274 12.6892 8.58788 12.8027C8.65303 12.9162 8.69411 13.042 8.70858 13.172C8.72305 13.3021 8.7106 13.4338 8.67199 13.5589C8.63339 13.6839 8.56947 13.7997 8.48419 13.899C8.39892 13.9983 8.29413 14.079 8.17633 14.1361C8.05853 14.1931 7.93025 14.2254 7.79947 14.2307C7.66869 14.2361 7.53821 14.2145 7.41614 14.1672C7.29407 14.12 7.18303 14.0481 7.08992 13.9561L0.404922 8.23914C0.299864 8.14958 0.215495 8.03829 0.15764 7.91295C0.0997859 7.7876 0.0698242 7.6512 0.0698242 7.51314C0.0698242 7.37509 0.0997859 7.23869 0.15764 7.11334C0.215495 6.988 0.299864 6.8767 0.404922 6.78714L7.08992 1.06214C7.2589 0.911803 7.4758 0.826389 7.70192 0.821144Z" fill="%23D3A855"/></svg>') no-repeat center/9px;
}
.share-ico{
	width: 17px;
	height: 17px;
	margin-top: 1px;
	background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.2308 1L18.5385 9.30769L10.2308 17.1538V12.0769C3.76923 12.0769 1 19 1 19C1 11.1538 3.30769 6.07692 10.2308 6.07692V1Z" stroke="%23D3A855" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / 17px;
}
.custom-radio .radio-btn {
  display: flex;
  align-items: center;
  gap: 10px 15px;
  position: relative;
  margin: 0;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: normal;
}
.custom-radio .radio-btn .checkmark {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(94.15deg, #F9F76C -21.24%, #D3A955 91.05%);
  border: 1px solid #FFED84;
  display: grid;
  place-items: center;
  color: #070d3a;
  font-size: 20px;
  font-weight: 500;
  flex: 0 0 auto;
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-radio input:checked + .radio-btn .checkmark:after {
  display: block;
}
.custom-radio input:checked + .radio-btn {
  background: linear-gradient(90deg, #102f6e 0%, #3911bd 100%) padding-box, linear-gradient(to right, var(--gradient-line-light), var(--gradient-line-dark)) border-box;
  opacity: 1;
}
.custom-radio .radio-btn .answer {
  font-size: 22px;
}
.alert-danger {
  text-align: center;
  color: #58151c;
  background: #f8d7da;
  border: solid 1px #f1aeb5;
  border-radius: 10px;
  font-size: 14px;
  line-height: normal;
  padding: 8px 15px;
}
.alert-success {
  text-align: center;
  color: #fff;
  background: #198754;
  border: solid 1px #051b11;
  border-radius: 10px;
  font-size: 14px;
  line-height: normal;
  padding: 8px 15px;
}
.invalid-feedback {
  display: block;
  color: #ec0a20;
  margin-top: 5px;
  font-size: 14px;
  line-height: normal;
}
.page-container {
  max-width: 575px;
  width: 100%;
  min-height: 100dvh;
  padding-inline: 20px;
  padding-bottom: 35px;
  gap: 30px;
  position: relative;
}
.page-container::before, .page-container::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.page-container::after {
  inset: 130px 7px 0;
}
.page-container:has(.myaccount-grid) .page-header {
  padding-top: 50px;
  grid-template-columns: 1fr;
}
.page-container:has(.myaccount-grid) .logo {
  /* max-width: 110px; */
  margin-inline: auto;
}
:has(.top-header ) .page-container {
 min-height: calc(100dvh - 90px);
}
.page-container:has(.myaccount-grid) .page-info {
  grid-column: inherit;
}
.page-header {
  justify-content: center;
  padding-top: 60px;
  gap: 15px 20px;
  flex-shrink: 0;
}
.page-header:has(.logo + *) {
  padding-top: 80px;
  align-items: center;
  grid-template-columns: 76px 1fr;
}
.page-body {
  gap: 30px;
}
.page-info {
  gap: 12px;
  grid-column: span 2;
}
.page-footer {
  gap: 15px;
  color: #d2a955;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .page-container:has(.scroll) {
    /* min-height: inherit; */
    height: calc(100dvh - 90px);
  }
}

@media (max-width: 575px) {
  .scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-right: -7px;
    padding-right: 7px;
  }
}
.divider {
  max-width: 100%;
}

.time-info {
  text-align: end;
  line-height: normal;
  gap: 8px;
}
.time-info span {
  color: var(--color-grey);
  font-size: 17px;
}

.info-text {
  color: var(--color-grey);
  font-size: 13px;
}

.field-container {
  gap: 25px;
}

.question-container {
  gap: 25px;
}

.question-container:has(:checked) :not(:checked) + .radio-btn {
  opacity: 0.5;
}

.result-container {
  gap: 45px;
}
.result-container .icon {
  position: relative;
  animation: mover 1s infinite alternate;
}
.result-container .icon::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: #392E3C;
  filter: blur(45px);
  z-index: -1;
  border-radius: 50%;
  width: 174px;
  height: 174px;
}

.myaccount-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr minmax(120px, auto);
  gap: 14px;
}
.myaccount-grid .card {
  padding-block: 22px;
}
.myaccount-grid .card .btn-border{
    height: 38px;
}
.myaccount-grid .card .btn{
    margin-top: 5px;
}
.myaccount-grid .card:nth-child(6 of .card) {
  grid-column: span 2;
}
.myaccount-grid .card:nth-child(4 of .card) {
  grid-row: span 2;
}

.card {
  padding: 8px 17px;
  border-radius: 20px;
  font-size: 17px;
  overflow: hidden;
  position: relative;
  min-height: 115px;
  line-height: normal;
  gap: 20px;
}
.card .count {
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
}
.card .content {
  position: relative;
  z-index: 1;
  gap: 7px;
}
.card .content .subtitle{
	font-size: 15px;
}
.card .coin-pattern {
  position: absolute;
  inset: 0 0 auto auto;
}
.card .event-pattern {
  position: absolute;
  inset: 0 15px auto auto;
}
.card .badge-pattern {
  position: absolute;
  inset: 5px auto auto 5px;
}

.coin-container {
  gap: 20px;
  height: 100%;
}
.coin-card {
  font-size: 16px;
  align-items: center;
  gap: 8px;
  grid-template-columns: 1fr auto 100px;
  background: var(--color-white);
  border-radius: 20px;
  color: var(--color-black);
  padding: 15px 20px;
  position: relative;
  box-shadow: -2px 5px 0px 0px #845700;
  cursor:pointer;
}
.coin-card.disabled > *:not(.coin-divider) {
  opacity: 0.5;
}
.coin-info {
  align-items: start;
  gap: 6px;
}
.coin-count {
  text-align: center;
  color: #8B8B8B;
  gap: 2px;
}
.coin-count .count {
  font-size: 30px;
  line-height: 1;
}
.coin-divider {
  position: relative;
  height: 100%;
  border-right: dashed 1px #C4C4C4;
}
.coin-divider::before {
  content: "";
  background: #122fba;
  width: 25px;
  height: 13px;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
}
.coin-divider span {
  background: #845700;
  width: 25px;
  height: 13px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px 20px 0 0;
}
.coin-divider span::after {
  content: "";
  background: #122fba;
  position: absolute;
  inset: 5px 0 -5px -1px;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 575px) {
  .coin-container {
    max-height: calc(100vh - 495px);
    overflow: auto;
    margin-right: -7px;
    padding-right: 7px;
  }
}

.event-container {
  gap: 18px;
}
.event-item {
  border-radius: 20px;
  padding: 13px 17px;
  gap: 15px;
  counter-increment: events;
}
.event-item .title {
  font-size: 16px;
  flex: 1;
  gap: 6px;
}
.event-item .title::before {
  /*content: counter(events) ".";*/
}
.event-item .info {
  font-size: 17px;
}
@media (max-width: 575px) {
  .event-container {
    max-height: calc(100vh - 480px);
    overflow: auto;
    margin-right: -7px;
    padding-right: 7px;
  }
}

.profile-container {
  gap: 30px;
  margin-top: 10px;
}
.profile-item {
  gap: 5px;
}
.profile-item .title {
  font-size: 14px;
  color: #C7C7C7;
}

.qr-image {
  position: relative;
  padding: 25px 0;
}
.qr-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  filter: blur(120px);
  opacity: 0.4;
  border-radius: 50%;
  background: #392E3C;
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/***************************************************
    QR SVG Animation
**************************************************/
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint0_linear_98_8731");
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint0_linear_98_8731");
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint1_linear_98_8731");
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint1_linear_98_8731");
  }
}
.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint2_linear_98_8731");
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint2_linear_98_8731");
  }
}
.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint3_linear_98_8731");
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint3_linear_98_8731");
  }
}
.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint4_linear_98_8731");
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint4_linear_98_8731");
  }
}
.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint5_linear_98_8731");
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint5_linear_98_8731");
  }
}
.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint6_linear_98_8731");
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint6_linear_98_8731");
  }
}
.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint7_linear_98_8731");
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint7_linear_98_8731");
  }
}
.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(16, 32, 110);
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(16, 32, 110);
  }
}
.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint8_linear_98_8731");
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: url("#paint8_linear_98_8731");
  }
}
.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 15, 91);
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 15, 91);
  }
}
.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
  animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(16, 46, 110);
  }
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(16, 46, 110);
  }
}
.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
  animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 15, 91);
  }
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 15, 91);
  }
}
.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(59, 47, 97);
  }
}
@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(59, 47, 97);
  }
}
.svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
  animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
.svg-elem-15 {
  -webkit-animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
  animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
.svg-elem-16 {
  -webkit-animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
  animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
.svg-elem-17 {
  -webkit-animation: animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
  animation: animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
.svg-elem-18 {
  -webkit-animation: animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
  animation: animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
.svg-elem-19 {
  -webkit-animation: animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
  animation: animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}

@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
.svg-elem-20 {
  -webkit-animation: animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
  animation: animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}

@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(199, 165, 8);
  }
}
.svg-elem-21 {
  -webkit-animation: animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
  animation: animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
}

@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(16, 46, 110);
  }
}
@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(16, 46, 110);
  }
}
.svg-elem-22 {
  -webkit-animation: animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
  animation: animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
}

@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(83, 61, 116);
  }
}
@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(83, 61, 116);
  }
}
.svg-elem-23 {
  -webkit-animation: animate-svg-fill-23 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
  animation: animate-svg-fill-23 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
}

@-webkit-keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
.svg-elem-24 {
  -webkit-animation: animate-svg-fill-24 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both;
  animation: animate-svg-fill-24 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both;
}

@-webkit-keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(136, 62, 38);
  }
}
@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(136, 62, 38);
  }
}
.svg-elem-25 {
  -webkit-animation: animate-svg-fill-25 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
  animation: animate-svg-fill-25 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
}

@-webkit-keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
.svg-elem-26 {
  -webkit-animation: animate-svg-fill-26 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
  animation: animate-svg-fill-26 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
}

@-webkit-keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
.svg-elem-27 {
  -webkit-animation: animate-svg-fill-27 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both;
  animation: animate-svg-fill-27 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both;
}

@-webkit-keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(200, 125, 12);
  }
}
.svg-elem-28 {
  -webkit-animation: animate-svg-fill-28 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both;
  animation: animate-svg-fill-28 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both;
}

#pageLock { 
    position: fixed;
    inset: 0;
    z-index: 999999;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 15px;
    font-size: 13px;
}

#comboLock {
    z-index: 999999;
    position: fixed;
    inset: 0;
    background: #222;
    border: none;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.loading-bars{
    display: flex;
    gap: 5px;
    .bar{
        width: 2px;
        height: 10px;
        background: #fff;
        animation: lodingpulse 1.2s infinite ease-out;
        &:nth-child(1){
            animation-delay: 0s;
        }
        &:nth-child(2){
            animation-delay: 0.2s;
        }
        &:nth-child(3){
            animation-delay: 0.4s;
        }
        &:nth-child(4){
            animation-delay: 0.6s;
        }
        &:nth-child(5){
            animation-delay: 0.8s;
        }
    }
}

@keyframes lodingpulse {
    0%, 75% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1, 3);
    }
}

.d-none {
  display:none !important;
}

.field-container option{
  color: #fff;
  background: #000;
}

.h-auto {
    height: auto !important;
}

.info-message {
    margin: 70px auto 20px auto;
    padding: 6px 35px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    color: #694500;
    background: linear-gradient(94.15deg, #F9F76C -21.24%, #D3A955 91.05%);
    border: 1px solid #FFED84;
}

.info-content {
  font-size: 20px;
  font-weight: 400;
  color: #f3e373;
}

.custom-checkbox {
  display: flex;
  position: relative;
  line-height: normal;
  gap: 9px;
  cursor: pointer;
  font-size: 14px;
  padding-block: 3px;
  color: #e3e3e3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}
.custom-checkbox .checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  margin-top: 2px;
  border: solid 1px transparent;
  background: linear-gradient(var(--color-primary)) padding-box, linear-gradient(to right, var(--gradient-line-light), var(--gradient-line-dark)) border-box;
  border-radius: 5px;
  overflow: hidden;
  flex: 0 0 auto;
}
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 4px;
  height: 10px;
  border: solid #DCB039;
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* T&C, Privacy policy start */
.ol-primary{
	gap: 12px;
	font-size: 16px;
	list-style: decimal;
	margin-left: 26px;
}
.ol-primary > li{
	margin-bottom: 5px;
}
.ol-primary > li > p{
	margin-block: 0 12px;
}
.ol-primary > li > p:last-child{
	margin-bottom: 0;
}
.ol-primary > li > strong{
	font-weight: 700;
	display: block;
	margin-bottom: 5px;
}
.ol-primary > li a{
	color: #fff;
	text-decoration: underline;
}
.ol-primary > li > ul{
	margin: 8px 0 0 18px;
	list-style: circle;
	display: flex;
	flex-direction: column;
	font-size: 15px;
	gap: 8px;
}
/* T&C, Privacy policy end */

/* QR reader start */
#qrReader {
    border: solid 1px transparent !important;
    padding: 35px 15px !important;
    border-radius: 20px;
    width: 290px;
    box-shadow: 0px 0px 3.8px 0px rgb(132, 87, 0);
    background: linear-gradient(var(--color-primary)) padding-box, linear-gradient(to right, var(--gradient-line-light), var(--gradient-line-dark)) border-box;
    aspect-ratio: 1 / 1;
}
#qrReader video {
  width: 94% !important;
  height: 94%;
  object-fit: cover;
  position: absolute;
  top: 9px;
  left: 9px;
  border-radius: 15px;
}
#qrReader__scan_region {
    min-height: inherit !important;
    margin-bottom: 10px;
}
#qrReader__scan_region br{
    display: none;
}
#qrReader__scan_region img{
    max-width: 60px;
    filter: brightness(0) invert(1);
}
#qrReader__scan_region img.scan-img{
    max-width: 90px;
}
#qrReader__dashboard_section{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0 0 !important;
}
#qrReader__dashboard_section button{
    padding: 8px 15px;
    height: auto;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    color: #694500;
    min-width: 170px;
    background: linear-gradient(94.15deg, #F9F76C -21.24%, #D3A955 91.05%);
    border: 1px solid #FFED84;
    cursor: pointer;
}
#qrReader__dashboard_section a{
    color: #DCB039;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    padding-block: 4px;
}
#qrReader__header_message{
    color: #ff0000 !important;
    margin: 0 0 15px !important;
    border: none !important;
    line-height: normal !important;
    padding: 14px 10px !important;
    border-radius: 10px;
}
#html5-qrcode-button-file-selection{
    margin-bottom: 10px;
}
#qrReader__dashboard_section_csr + div{
    font-size: 15px;
    line-height: normal;
    border-width: 2px !important;
    border-radius: 10px;
    padding: 16px 15px !important;
    width: 100% !important;
}
/* QR reader end */
.top-header {
  background: var(--color-primary);
  max-width: 575px;
  width: 100%;
  padding:5px 20px;
  margin: 20px auto 30px auto;
}
.top-header .left-panel {
  gap: 10px;
}
.top-header .b-coin {
  border: solid 1px #D3A855;
  border-radius: 30px;
  padding: 6px 25px;
  color: #fff;
  font-size: 14px;
  line-height: normal;
}
.top-header .redeem-btn {
  background: linear-gradient(to right,  #f0e466 0%,#d3a955 100%);
  border-radius: 30px;
  padding: 7px 15px;
  color: #845700;
  font-size: 14px;
  line-height: normal;
  outline: none;
  border: none;
}
.top-header .navmenu {
  position:relative;
}
.top-header #toggle {
  width: 28px;
  height: 26px;
  cursor: pointer;
}
.top-header #toggle div {
  width: 100%;
  height: 5px;
  background: #b7b7d1;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}
.top-header #toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
}
.top-header #toggle.on .two {
  opacity: 0;
}
.top-header #toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
}
.top-header #menu {
  color: white;
  width: 150px;
  display: none;
  position: absolute;
  right: -20px;
  top: 35px;
  background: #11206f;
  text-align: right;
  z-index: 9;
}
.top-header #menu li {
  font-size: 15px;
  padding: 10px;
}
.top-header #menu li:not(:last-child) {
  border-bottom: 1px solid #D3A855;
}
.top-header #menu li a {
  font-size: 15px;
  color: var(--color-white);
}
.time-block .time {
    border: solid 1px #D3A855;
    border-radius: 30px;
    padding: 6px 25px;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    background: #090a2e;
}
.pagination-outer .prev-btn, .pagination-outer .next-btn {
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 4px 8px;
  border-radius: 5px;
  width: 80px;
  text-align: center;
}
.pagination-outer .prev-btn:disabled, .pagination-outer .next-btn:disabled {
    color: #b0b0b0;
    border: 1px solid #b0b0b0;
}

.badge-block img {
  width: 110px;
}
.coin-card.disabled {
    cursor: default;
}
.coin-card.active {
    background: #f4f1c7;
}
.hitslogos {
  gap: 15px;
  margin-top: 5px;
}
.otp-outer {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
}
.otp-outer .form-control {
    height: 60px;
    text-align: center;
}
.resend-btn {
  background: transparent;
  outline: none;
  border: none;
  font-size: 18px;
  color: #fff;
  text-decoration: blink;
  border-bottom: 1px #fff dashed;
  padding: 0;
  cursor: pointer;
}

@supports (-webkit-hyphens:none) {
  .gradient-primary, .form-control, .form-select {
    border: solid 1px #836a3d;
  }
  .custom-checkbox .checkmark {
    border: solid 1px #836a3d;
  }
}

.congrats-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}

.congrats-block .star {
  font-size: 60px;
  animation: twinkle 1.5s infinite alternate;
  opacity: 0.8;
}
.congrats-block .text {
    font-weight: bolder;
    color: #fff;
    font-size: 30px;
    background: linear-gradient(to right, #ee9464, #f9f76c);
    background-clip: text;
    color: transparent;
}
@keyframes twinkle {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}
.failed-msg {
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    padding: 0;
}
.hint {
    font-size: 22px;
    color: #fff;
    margin-top: 25px;
}
.ht-text{
  font-weight: 600;
  color: #d9b558;
  font-style: italic;
  text-transform: uppercase;
}