:root {
  --primary-color: #020202;
  --primary-rgb-color: 3, 2, 2;
  --info-color: #475569;

  --secondary-color: #008675;
  --green-color: #008675;
  --green-rgb-color: 0, 134, 117;

  --grey: #e6f3f1;
  --grey-light: #f6f8fc;
  --grey-dark: #64748B;

  --golden: #e3b618;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  background-color: #ffffff;
  color: var(--primary-color);
  min-height: 100vh;
}
body.lifestyle {
	--primary-text-color: #371C50;
}
::-moz-selection {
  background-color: var(--primary-color);
  color: #ffffff;
}
::selection {
  background-color: var(--primary-color);
  color: #ffffff;
}
:focus {
  box-shadow: none !important;
}
:focus-visible,
:focus {
  /* outline: 1px dashed var(--secondary-color) !important; */
  box-shadow: none !important;
}
img {
  max-width: 100%;
}
a {
  color: var(--secondary-color);
  transition: all 0.6s ease-in-out;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  line-height: 1.5;
}
h1,
.h1 {
  font-size: 4rem; /* 56px */
}
h2,
.h2 {
  font-size: 3.5rem; /* 56px */
}
h3,
.h3 {
  font-size: 3rem; /* 48px */
}
h4,
.h4 {
  font-size: 2.25rem; /* 36px */
}
h5,
.h5 {
  font-size: 1.5rem; /* 24px */
}
h6,
.h6 {
  font-size: 1.125rem; /* 18px */
}
.fs-22 {
  font-size: 1.375rem !important; /* 22px */
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-dark-grey {
  color: var(--grey-dark);
}
.text-grey-dark {
  color: var(--grey-dark);
}
.text-dark-blue {
  color: #0C162D;
}
.text-info {
  color: var(--info-color) !important;
}
.text-white {
  color: var(--primary-text-color, #ffffff) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-grey {
  background-color: var(--grey);
}
.bg-grey-light {
  background-color: var(--grey-light);
}
.section-padding {
  padding: 5rem 0;
}
.section-spacing {
  padding-top: 5rem;
}
.opacity-60 {
  opacity: 0.6;
}
.section-spacing-outer {
	margin-top: 5rem;
}
picture {
  display: block;
}
.opacity-70 {
  opacity: 0.7;
}

.error {
  color: red;
}
div#google_translate_element {
  position: fixed;
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 10;
}

.btn {
  padding: 0.77rem 1.25rem;
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 1rem;
  display: inline-block;
  border: 1px solid transparent;
  transition: all 0.6s ease-in-out;
}
.btn .spinner-border {
  --bs-spinner-width: 1.2rem;
  --bs-spinner-height: 1.2rem;
  --bs-spinner-border-width: 0.125rem;
  --bs-spinner-vertical-align: -0.25rem;
  margin-left: 0.313rem;
}
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-text-color, #ffffff);
}
.btn-primary:disabled {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-text-color, #ffffff);
  cursor: not-allowed;
}
.btn:focus-visible,
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--primary-text-color, #ffffff);
}
.btn.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}
.btn-rounded {
  border-radius: 5rem;
}
.btn-sm {
  font-size: 1.125rem;
  padding: 0.563rem 1rem;
}
.btn-white {
  background-color: #ffffff;
  color: var(--secondary-color);
}
.btn-white:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn.btn-outline-white {
  border-color: #ffffff;
  color: #ffffff;
  &::after {
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.43057 8.51192C4.70014 8.19743 5.17361 8.161 5.48811 8.43057L12 14.0122L18.5119 8.43057C18.8264 8.16101 19.2999 8.19743 19.5695 8.51192C19.839 8.82642 19.8026 9.29989 19.4881 9.56946L12.4881 15.5695C12.2072 15.8102 11.7928 15.8102 11.5119 15.5695L4.51192 9.56946C4.19743 9.29989 4.161 8.82641 4.43057 8.51192Z' fill='%23ffffff'/%3E%3C/svg%3E")
  no-repeat center / contain;
  }
}
.btn.btn-outline-primary {
  border-color: var(--secondary-color);
}
.btn.btn-outline-primary:hover {
  background-color: var(--secondary-color) !important;
}
.btn.btn-lg {
  font-size: 1.125rem;
  padding: 0.875rem 5rem;
}
label {
  font-size: 14px;
  font-weight: 500;
  color: var(--info-color);
  margin-bottom: 5px;
}
.required:before {
  content: "*";
  padding-right: 4px;
  color: #e31836;
}
.form-control {
  font-family: "Inter", sans-serif;
  background-color: var(--grey);
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  line-height: 1.2;
  padding: 1.25rem;
}
.authentication-box .form-control {
  background-color: #ffffff;
}
.authentication-box .form-control[readonly] {
  background-color: #D4D4D4;
  color: #475569;
}
.authentication-box .form-control[readonly]:focus {
  outline: none !important;
  border-color: transparent;
}
.authentication-box .form-control:disabled {
  opacity: 0.5;
}
.form-control::-webkit-input-placeholder {
  color: #94a3b8;
}
.form-control::-moz-placeholder {
  color: #94a3b8;
}
.form-control:-ms-input-placeholder {
  color: #94a3b8;
}
.form-control::-ms-input-placeholder {
  color: #94a3b8;
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-control:focus {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: var(--secondary-color);
}
textarea.form-control {
  min-height: 11rem;
  resize: none;
}
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L12 16L20 8' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 1.5rem;
}
#remaining-char {
  position: absolute;
  top: auto;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-dark);
}

.custom-checkbox label {
  color: var(--primary-color);
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1.6rem;
  margin-bottom: 0;
  cursor: pointer;
}
.custom-checkbox label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--secondary-color);
  border-radius: 0.25rem;
}
.custom-checkbox label::after {
  content: "";
  position: absolute;
  top: 0.313rem;
  left: 3px;
  width: 0.75rem;
  height: 0.75rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNSAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjY2NSA1TDUuNjY2NSA5TDEzLjY2NjUgMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==")
    no-repeat center / contain;
  opacity: 0;
  visibility: hidden;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox input:focus + label::before {
  border: 1px dotted var(--secondary-color);
}
.custom-checkbox input[type="checkbox"]:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.custom-checkbox input[type="checkbox"]:checked + label::before {
  background-color: var(--secondary-color);
}
.or-divider.text-center:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.or-divider.text-center span {
  background-color: var(--grey);
  color: var(--grey-dark);
  display: inline-block;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 2000px) {
  .container-2xl {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

#skip-to-content a {
  padding: 6px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  background: var(--secondary-color);
  -webkit-transition: top .5s ease-out;
  transition: top .5s ease-out;
  visibility: hidden;
  z-index: 100;
}
#skip-to-content a:focus {
  visibility: visible;
  top: 0;
  outline-color: transparent;
  -webkit-transition: top .05s ease-in;
  transition: top .05s ease-in;
}

/* Account Balance Box CSS Start */
.account-balance-box {
  background: var(--secondary-color) url("../images/shapes/line-wave-shape.svg") no-repeat
    right center / contain;
  border-radius: 1rem;
  padding: 2.25rem;
}
.account-balance-card {
  padding: 1rem;
  border-radius: 12px;
  background-color: #ffffff;
  border-top: 4px solid transparent;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-color);
  position: relative;
  transition: all 0.6s ease-in-out;
}
.total-balance-card {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 60% 100%;
  background-color: #F0DEDD;
  border-color: #E31836;
  pointer-events: none;
  cursor: default;
}
.account-balance-card .h5 {
  position: relative;
  padding-left: 1rem;
  transition: all 0.6s ease-in-out;
}
.account-balance-card .h5::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary-color);
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}
.account-balance-card:hover .h5::before,
.account-balance-card.active .h5::before {
  background-color: #ffffff;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}
.total-balance-card .h5 {
  font-size: 2.25rem;
}
.total-balance-card:hover .h5::before {
  background-color: var(--primary-color);
}
.account-balance-card svg.in-svg {
  width: 1.563rem;
  height: 1.563rem;
}
.account-balance-card.active svg path {
  stroke: #ffffff !important;
}

.account-balance-card.celebrate {
  background-color: #E1EBEB;
  border-color: #387170;
}
.account-balance-card.celebrate span {
  color: #387170;
  position: relative;
  z-index: 1;
}
.account-balance-card.celebrate svg path {
  stroke: #387170;
}
.account-balance-card.celebrate:hover,
.account-balance-card.celebrate.active {
  background-color: #387170;
}

.account-balance-card.birthday {
  background-color: #E3E3EF;
  border-color: #53549D;
}
.account-balance-card.birthday span {
  color: #53549D;
}
.account-balance-card.birthday svg path {
  stroke: #53549D;
}
.account-balance-card.birthday:hover,
.account-balance-card.birthday.active {
  background-color: #53549D;
}

.account-balance-card.dine {
  background-color: #F0DEDD;
  border-color: #A42F2C;
}
.account-balance-card.dine span {
  color: #A42F2C;
}
.account-balance-card.dine svg path {
  stroke: #A42F2C;
}
.account-balance-card.dine:hover,
.account-balance-card.dine.active {
  background-color: #A42F2C;
}

.account-balance-card.eatz {
  background-color: #F6E6DF;
  border-color: #C9613A;
}
.account-balance-card.eatz span {
  color: #C9613A;
}
.account-balance-card.eatz svg path {
  stroke: #C9613A;
}
.account-balance-card.eatz:hover,
.account-balance-card.eatz.active {
  background-color: #C9613A;
}

.account-balance-card.play {
  background-color: #E2E9E2;
  border-color: #4D784E;
}
.account-balance-card.play span {
  color: #4D784E;
}
.account-balance-card.play svg path {
  stroke: #4D784E;
}
.account-balance-card.play:hover,
.account-balance-card.play.active {
  background-color: #4D784E;
}

.account-balance-card.kidz {
  background-color: #FAF3E1;
  border-color: #E3B342;
}
.account-balance-card.kidz span {
  color: #E3B342;
}
.account-balance-card.kidz svg path {
  stroke: #E3B342;
}
.account-balance-card.kidz:hover,
.account-balance-card.active {
  background-color: #E3B342;
}
.account-balance-card.gaming {
  background-color: #E2E9E2;
  border-color: #42d8e3;
}
.account-balance-card.gaming span {
  color: #42d8e3;
}
.account-balance-card.gaming svg path {
  stroke: #42d8e3;
}
.account-balance-card.gaming:hover,
.account-balance-card.active {
  background-color: #42d8e3;
}

.account-balance-card.escapade {
  background-color: #EFD8B6;
  border-color: #917347;
}
.account-balance-card.escapade span {
  color: #917347;
}
.account-balance-card.escapade svg path {
  stroke: #917347;
}
.account-balance-card.escapade:hover,
.account-balance-card.escapade.active {
  background-color: #917347;
}

.account-balance-card:hover span {
  color: #ffffff;
  transition: all 0.6s ease-in-out;
}
.account-balance-card:hover svg path {
  stroke: #ffffff;
  transition: all 0.6s ease-in-out;
}
.account-balance-card:hover .h5,
.account-balance-card:hover .h6,
.account-balance-card.active .h5,
.account-balance-card.active .h6 {
  color: #ffffff;
  transition: all 0.6s ease-in-out;
}
.total-balance-card:hover .h5 {
  color: initial;
}
.account-balance-card:hover .h6 {
  opacity: 0.8;
}
.account-balance-card .info-color {
  margin-top: 2.75rem;
}
.account-balance-card.total-balance-card .info-color {
  margin-top: 1.45rem;
}
.account-balance-card:hover .info-color,
.account-balance-card.active .info-color {
  opacity: 0.75;
}

.account-brand-balance {
  background-color: #a42f2c;
  box-shadow: 0 8px 64px 0 rgba(0, 0, 0, 0.161);
  border-radius: 1rem;
  padding: 2.6rem 1.5rem;
  position: relative;
}
.account-brand-balance .country-logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: auto;
  bottom: auto;
}
.account-brand-balance p {
  letter-spacing: 1.2px;
}

.brand-card-box,
.swap-card-image {
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}
.swap-card-image {
  padding-top: 63.5%;
  border-radius: 1.625rem;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.brand-card-box img,
.swap-card-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
  margin: auto;
  padding: 1rem;
}
.swap-card-image img {
  width: 100%;
  height: 100%;
}

.celebrate {
  background-color: #3F807F;
}
.birthday {
  background-color: #53549D;
}
.dine {
  background-color: #A42F2C;
}
.eatz {
  background-color: #C9613A;
}
.play {
  background-color: #4D784E; 
}
.kidz {
  background-color: #E3B342;
}
.escapade {
  background-color: #917347;
}

.ultimate {
  background-color: #3f807f;
}
.shop {
  background-color: #53549d;
}
.riviera {
  background-color: #8ed5f6;
}
.rankreallyhigh {
  background-color: #A8A9AD;
}
.account-balance-card.riviera:hover,
.account-balance-card.riviera.active {
  background-color: #8ed5f6;
}
.account-balance-card.rankreallyhigh:hover,
.account-balance-card.rankreallyhigh.active {
  background-color: #A8A9AD;
}
/* Account Balance Box CSS End */

/* Offer Block Start */
.offer {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--golden);
  border-radius: 1rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
}
.offer.end {
  left: auto;
  right: 0;
  border-radius: 0 1rem 0 1rem;
}
.offer.small {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.7rem;
  line-height: normal;
  border-radius: 0 0.5rem 0 0.5rem;
}
.shadow-bottom:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 2.5rem;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.5;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.offer-card-left {
  padding: 4.063rem 5rem 6.25rem;
}
.offer-card-left::after {
  bottom: 2.188rem;
}

.offer-card-left picture {
  transform: rotate(0deg);
  transition: all 0.6s ease-in-out;
  position: relative;
  overflow: hidden;
  padding-top: 61%;
}
.offer-card-left picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offer-card-left:hover picture,
.offer-card-left.visible picture {
  transform: rotate(-5deg);
  transition: all 0.6s ease-in-out;
}

.gift-card-box {
  margin-bottom: 3.125rem;
  height: calc(100% - 3.125rem);
}
.gift-card-image {
  padding: 4.688rem 1.25rem 1.25rem;
}
.gift-card-box .h5 {
  font-size: 1.375rem;
}
.gift-card-box:hover .h5,
.gift-card-box:hover .sub-info,
.gift-card-box.visible .h5,
.gift-card-box.visible .sub-info {
  color: #ffffff;
}
.gift-card-box .sub-info {
  opacity: 0.8;
  max-height: 2.938em;
  line-height: 1.469em;
  overflow: hidden;
}
.gift-card-box .sub-info,
.gift-card-box .link-btn {
  display: none;
}
.gift-card-box:hover .sub-info,
.gift-card-box:hover .link-btn,
.gift-card-box.visible .sub-info,
.gift-card-box.visible .link-btn {
  display: block;
}
.gift-card-info {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gift-card-box:hover .gift-card-info,
.gift-card-box.visible .gift-card-info {
  background-color: var(--secondary-color);
  color: #ffffff;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.6s ease-in-out;
}
.gift-card-box:hover .gift-card-btns,
.gift-card-box.visible .gift-card-btns {
  width: 100%;
  margin-top: 3.75rem;
}
.gift-card-box .gift-card-image,
.gift-card-box .gift-card-image picture {
  transition: all 0.6s ease-in-out;
}
.gift-card-box .gift-card-image picture {
  position: relative;
  overflow: hidden;
  padding-top: 61%;
}
.gift-card-box .gift-card-image picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gift-card-box:hover .gift-card-info p,
.gift-card-box.visible .gift-card-info p {
  color: #ffffff !important;
  opacity: 0.6;
}
.gift-card-box:hover .btn,
.gift-card-box.visible .btn {
  background-color: #ffffff;
  color: var(--secondary-color);
}
.gift-card-box:hover .gift-card-image,
.gift-card-box.visible .gift-card-image {
  height: 10rem;
  display: block;
  padding: 1.25rem 1.25rem 2.5rem;
  margin: auto;
  transition: all 0.6s ease-in-out;
}
.gift-card-box:hover .gift-card-image picture,
.gift-card-box.visible .gift-card-image picture {
  padding-top: 32%;
  transform: rotate(-5deg);
  margin: auto;
  transition: all 0.6s ease-in-out;
}
.gift-card-box:hover .gift-card-image::after,
.gift-card-box.visible .gift-card-image::after {
  width: 10.625rem;
  height: 0.75rem;
}
/* Offer Block End */

/* Popular Brands Block CSS Start */

/* Location Menu Selection CSS */
.location-dropdown-button {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.102);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.dropdown-toggle.location-dropdown-button:after {
  margin-left: 1.5rem;
}
.selected-locations {
  gap: 12px;
}
.selected-locations .selected-location-item {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 4px 5px 4px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.selected-locations .selected-location-item img {
  margin-left: 6px;
  cursor: pointer;
}
.location-dropdown-menu {
  --bs-dropdown-min-width: 45rem;
  padding: 24px;
  border-radius: 16px;
  border: none;
  box-shadow: 0px 4px 16px 0px #00000029;
}
.location-dropdown-menu .btn-close {
  opacity: 1;
  width: 24px;
  height: 24px;
}
.location-dropdown-menu .form-control {
  background-color: #ffffff;
  border: 1px solid rgb(0 0 0 / 10%);
  font-size: 14px;
  line-height: normal;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 400;
}
.location-dropdown-list {
  border-top: 1px solid rgb(0 0 0 / 10%);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.location-dropdown-item {
  border: 1px solid #0000001A;
  padding: 4px 10px 4px 5px;
  border-radius: 20px;
  margin: 0 !important;
  display: flex;
  align-items: center;
}
.location-dropdown-item label {
  margin: 0;
  position: relative;
  padding-left: 28px;
color: var(--primary-color);
cursor: pointer;
}
.location-dropdown-item label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.102);
  border-radius: 50%;
}
.location-dropdown-item input[type="checkbox"]:checked + label:before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20ZM14.7833 7.50501C15.0929 7.16446 15.0678 6.63742 14.7272 6.32783C14.3867 6.01824 13.8596 6.04334 13.5501 6.38389L8.62039 11.8065L6.45821 9.35606C6.15371 9.01096 5.6271 8.97805 5.28199 9.28255C4.93689 9.58705 4.90398 10.1137 5.20848 10.4588L7.8221 13.4209C8.23816 13.8924 8.97163 13.8978 9.39464 13.4325L14.7833 7.50501Z' fill='%23008675'/%3E%3C/svg%3E%0A") no-repeat center / contain;
  border-color: var(--secondary-color);
}
/* Location Menu Selection CSS */

.brands-search .form-control {
  border: 1px solid rgba(0, 0, 0, 0.102);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 14px;
  padding: 0.925rem 1rem 0.925rem 2.6rem;
  background: #ffffff url('../images/icons/search.svg') no-repeat 0.8rem center / 1.125rem;
}
.brands-search .btn.btn-primary {
  font-size: 1rem;
  border-radius: 0.5rem;
  padding: 0.688rem 1.76rem;
  margin-left: 1rem;
}
.product-cart .separator {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.category-sortby {
  border: 1px solid rgba(0, 0, 0, 0.102);
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  width: 245px;
  text-align: left;
}
.sortby-dropdown-menu {
  width: 245px;
  padding: 0.4rem 0;
}
.dropdown-toggle::after {
  border: none;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.43057 8.51192C4.70014 8.19743 5.17361 8.161 5.48811 8.43057L12 14.0122L18.5119 8.43057C18.8264 8.16101 19.2999 8.19743 19.5695 8.51192C19.839 8.82642 19.8026 9.29989 19.4881 9.56946L12.4881 15.5695C12.2072 15.8102 11.7928 15.8102 11.5119 15.5695L4.51192 9.56946C4.19743 9.29989 4.161 8.82641 4.43057 8.51192Z' fill='%2364748B'/%3E%3C/svg%3E")
    no-repeat center / contain;
  vertical-align: middle;
  margin-left: 0.5rem;
}
button.category-sortby.dropdown-toggle::after {
  float: right;
}
.sortby-dropdown-menu.dropdown-menu li:not(:last-child) {
  margin-bottom: 0;
}
.sortby-dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.4rem 0.8rem;
}
.sortby-dropdown-menu .dropdown-item:hover {
  background-color: var(--grey);
}
.brands-search {
  min-width: 360px;
}
.brands-search-wrapper {
  min-width: 310px;
}

.brands-tab .nav-link {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  word-break: break-word;
}
.brands-tab .nav-link::after {
  content: "->";
  min-width: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  padding-left: 0.6rem;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
}
.brands-tab .nav-link:hover::after,
.brands-tab .nav-link.active::after {
  opacity: 1;
  visibility: visible;
}
.brands-tab .nav-link:not(:last-child) {
  margin-bottom: 0.2rem;
}
.brands-tab .nav-link.active,
.brands-tab .nav-link:hover {
  background-color: #ffffff;
}
.brands-tab .nav-link span {
  color: var(--secondary-color);
  font-size: 14px;
  margin-left: 0.5rem;
  min-width: max-content;
}

.trending-now-slider .owl-dots {
  text-align: center;
  margin-top: 1.2rem;
}
.brand-item {
  cursor: pointer;
  height: 100%;
  text-align: center;
  padding: 1rem;
}
.brand-item picture {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 10px;
}
.brand-item picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
  transform: scale(1);
  transition: all 0.6s ease-in-out;
}
.brand-item:hover picture img {
  transform: scale(1.05);
  transition: all 0.6s ease-in-out;
}
.brand-item .brand-item-name {
  position: absolute;
  top: auto;
  left: 0;
  width: 100%;
  bottom: 0;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 400;
  padding: 0.5rem 0.4rem;
  margin-bottom: 0;
  background-color: rgba(var(--primary-rgb-color), 0.85);
}

.brand-item[data-status] {
  pointer-events: none;
  overflow: hidden;
}
.brand-item[data-status]:before {
  content: attr(data-status);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb-color), 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1;
}
/* Popular Brands Block CSS End */

.gift-amount-list .gift-amount {
  margin: 0 1rem 1rem 0;
}
.gift-amount label {
  background-color: #f1f1f1;
  color: var(--grey-dark);
  font-size: 1.375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  text-align: center;
  margin-bottom: 0;
  cursor: pointer;
}
.gift-amount input {
  display: none;
}
.gift-amount input[type="radio"]:checked + label {
  background-color: var(--secondary-color);
  color: #ffffff;
}
.quantity-wrapper {
  display: flex;
  align-items: center;
}
.quantity-wrapper button {
  width: 4rem;
  height: 3.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
}
.quantity-wrapper input[type="text"], 
.quantity-wrapper input[type="number"] {
  width: 5rem;
  height: 3.5rem;
  border: 1px solid rgba(0, 0, 0, 0.102);
  color: var(--secondary-color);
  border-radius: 1rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0.625rem;
}
#quantity-control::-webkit-inner-spin-button,
#quantity-control::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
/* Marketing Block CSS Start */
.marketing-slider-item {
  background-color: var(--secondary-color);
  border-radius: 1rem;
  padding: 4rem;
  position: relative;
  z-index: 1;
}
.marketing-slider-item::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 3rem;
  width: 60%;
  height: 100%;
  background: url("../images/shapes/line-shape.svg") no-repeat center / contain;
  z-index: -1;
}
.marketing-slider-banner {
  padding-top: 65%;
  position: relative;
}
.marketing-slider-banner img {
  transform: rotate(-20deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.marketing-slider .owl-nav {
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  color: #ffffff;
  width: 8.125rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1;
}
.marketing-slider .owl-nav button {
  opacity: 1;
  font-size: 2.4rem !important;
  line-height: 0.5 !important;
}
.marketing-slider .owl-dots {
  position: absolute;
  top: auto;
  left: auto;
  right: 1.2rem;
  bottom: 1.3rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: inline-block;
  width: 7.813rem;
  text-align: center;
  counter-reset: slides-num;
}
.marketing-slider .owl-dots button {
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  counter-increment: slides-num;
  display: inline-block;
}
.marketing-slider .owl-dots button span {
  display: none;
}
.marketing-slider .owl-dots:after {
  content: counter(slides-num);
  display: inline-block;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  vertical-align: middle;
  padding-left: 1.8rem;
}
.marketing-slider .owl-dots .owl-dot.active:before {
  content: counter(slides-num) " /";
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 0.15rem;
  position: absolute;
  left: 2.6rem;
  top: 0.5rem;
}
/* Marketing Block CSS End */

/* Login Page CSS Start */
.authentication-box {
  padding: 2.25rem;
}
.social-login-link {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.authentication-box .form-control:-webkit-autofill,
.authentication-box .form-control:-webkit-autofill:hover, 
.authentication-box .form-control:-webkit-autofill:focus, 
.authentication-box .form-control:-webkit-autofill:active{
  -webkit-box-shadow: 0 0 0 50px white inset !important;
  box-shadow: 0 0 0 50px white inset !important;
}
.input-group-wrapper {
  position: relative;
}
.input-group-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.125rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
/* Login Page CSS End */

/* Account Summary Page CSS */
.balance-history-item {
  background-color: #F5FAF9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.balance-history-item .tag {
  padding: 0.25rem 0.5rem 0.25rem 1.375rem;
  border-radius: 0.5rem;
  position: relative;
}
.balance-history-item .tag.balance-transferred-tag {
  color: #00A154;
  background-color: #9FFFD1;
}
.balance-history-item .tag.card-swapped-tag {
  color: #C04456;
  background-color: #FFC7CF;
}
.balance-history-item .tag::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  display: block;
  background-color: currentColor;
}
.balance-add {
  color: #00A154;
}
.balance-deduct {
  color: #C04456;
}

.my-gift-card {
  padding: 1rem 1.25rem;
  position: relative;
  height: 100%;
}
.my-gift-card .my-gift-card-image {
  border-radius: 12px;
  text-align: center;
  padding-top: 29%;
  position: relative;
  overflow: hidden;
}
.my-gift-card .my-gift-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.my-gift-card .archive-gift {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--secondary-color);
  border-radius: 0 1rem 0 1rem;
  z-index: 1;
  opacity: 0;
  visibility: visible;
}
.my-gift-card:hover .archive-gift,
.my-gift-card:focus .archive-gift {
  opacity: 1;
  visibility: visible;
}
.my-gift-card .archive-gift svg {
  width: 1.5rem;
  height: 1.5rem;
}
.my-gift-card .archive-gift svg path {
  fill: #ffffff;
}
/* Account Summary Page CSS */

/* Available Locations Section */
.locations-section {
	background-color: #CCFFF9;
}
.locations-list {
  max-height: 350px;
  overflow: auto;
  padding-right: 1rem;
}
/* width */
.locations-list::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.locations-list::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: 10px;
}

/* Handle */
.locations-list::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
.locations-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color);
}
/* Available Locations Section */

/* Modal CSS Start */
.modal-header {
  border: none;
}
.btn-close {
  opacity: 1;
  padding: 0;
  margin-left: auto;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 1rem;
  height: 1rem;
  background-size: contain;
  --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5L19 19M19 5L5 19' stroke='%231E2A3B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  z-index: 1;
}
.alert-dismissible .btn-close {
  background-size: 20px;
}
.modal-content {
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .modal .modal-body h2 {
    width: 85%;
  }
  .modal-dialog.modal-lg {
    max-width: 600px;
  }
}
.modal-body {
  padding: 1.5rem;
}
.otp-input-wrapper .otp-input {
  width: 3.5rem;
  height: 3.5rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.375rem;
  font-weight: 600;
  border-radius: 1rem;
  margin: 0 0.5rem;
}
.otp-input-wrapper .otp-input:focus {
  outline: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color);
}
/* Modal CSS End */

/* Tabs CSS */
.nav-tabs {
  border-radius: 0.9rem;
  overflow: hidden;
}
.nav-tabs .nav-link {
  background-color: var(--grey);
  padding: 0.9rem 1.45rem;
  font-size: 1rem;
  color: var(--green-color);
  font-weight: 500;
  border-radius: 0;
  border: none;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--secondary-color);
  color: #ffffff;
}
/* Tabs CSS */

/* Responsive CSS Start */
@media (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 3.571rem;
  }
  h2,
  .h2 {
    font-size: 2.8rem;
  }
  h3,
  .h3 {
    font-size: 2.429rem;
  }
  h4,
  .h4 {
    font-size: 1.714rem;
  }
  h5,
  .h5 {
    font-size: 1.286rem;
  }

  img {
    width: auto;
    height: auto;
  }
  .section-padding {
    padding: 3rem 0;
  }
  .section-spacing {
    padding-top: 3rem;
  }
}
@media (max-width: 991.2px) {
  h1,
  .h1 {
    font-size: 2.9rem;
  }
  .btn.btn-lg {
    padding: 0.875rem 2.5rem;
  }
  /* Offer Block End */
  .offer-card-left {
    padding: 2rem 4rem 4rem;
  }
  /* Offer Block End */

  /* Marketing Block CSS Start */
  .marketing-slider-item {
    padding: 2rem;
  }
  /* Marketing Block CSS End */

  /* Location Menu Selection CSS */
	.location-dropdown-menu {
		--bs-dropdown-min-width: 30rem;
		padding: 18px;
	}
	.location-dropdown-list { gap: 8px; }
	/* Location Menu Selection CSS */

  /* Available Locations Section */
   .locations-list {
    max-height: 300px;
  }
  /* Available Locations Section */
}
@media (max-width: 767.2px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  .fs-22 {
    font-size: 1rem !important;
  }
  .btn img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .btn.btn-outline-primary {
    font-size: 1rem;
    padding: 0.6rem 1.6rem;
  }
  .form-control,
  .input-inline-btn .form-control {
    font-size: 1.1rem;
    padding: 1.2rem;
  }
  .col-md-10.mb-5 {
    margin-bottom: 1rem !important;
  }
  /* Offer Block End */
  .gift-card-box {
    margin-bottom: 1.125rem;
    height: calc(100% - 1.125rem);
  }
  /* Offer Block End */

  /* Account Balance Box CSS Start */
  .account-brand-balance {
    padding: 1rem 0.5rem;
  }
  .account-balance-box {
    padding: 1.2rem;
  }
  .account-balance-head h1 img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .account-brand-balance .country-logo {
    top: 1rem;
    left: 1rem;
    width: 1.8rem;
    height: 1.8rem;
  }
  .account-balance-card svg.in-svg {
    width: 1.1rem;
    height: 1.1rem;
  }
  .account-balance-card span.h6 {
    font-size: 1.1rem;
  }
  .account-balance-card .h5 { font-size: 1.4rem; }
  /* Account Balance Box CSS End */

  /* Account Summary Page CSS */
  .balance-history-item {padding: 1rem;}
  .my-gift-card .archive-gift {
    opacity: 1;
    visibility: visible;
  }
  /* Account Summary Page CSS */

  /* Location Menu Selection CSS */
  .location-dropdown-menu {
    --bs-dropdown-min-width: 25rem;
    left: 50% !important;
    transform: translate(-53%, 60px) !important;
  }
  /* Location Menu Selection CSS */

  /* Popular Brands Block CSS Start */
  /* .brands-section {
    margin-top: -64px;
    padding-top: calc(3rem + 64px);
  } */
  .filter-group-wrapper { width: 100%; }
  .brands-search { min-width: 100%; }
  .brand-title-main { transition: all 0.6s ease-in-out; }
  .brand-title-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10; 
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInFromTop 0.3s ease forwards;
    transition: all 0.6s ease-in-out;
  }
  @keyframes slideInFromTop {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .brands-tab {
    width: calc(100% - 40px);
    border: none;
    padding: 0.6rem;
    border-radius: 0.75rem;
  }
  .brand-item {
    padding: 0.8rem;
  }
  /* Popular Brands Block CSS End */

  /* Payment Page CSS */
  .party-image {
    width: 30%;
  }
  /* Payment Page CSS */

  /* Marketing Block CSS Start */
  .marketing-slider-banner img {
    transform: rotate(0deg);
  }
  .marketing-slider-item {
    padding-bottom: 5.5rem;
  }
  .marketing-slider .owl-nav {
    right: 50%;
    transform: translateX(50%);
  }
  .marketing-slider .owl-dots {
    left: 50%;
    transform: translateX(-50%);
  }
  /* Marketing Block CSS End */

  /* Login Page CSS Start */
  .authentication-box {
    padding: 1.25rem;
  }
  /* Login Page CSS End */

  /* Modal CSS Start */
  .modal-body {
    padding: 3.2rem 1.5rem 1.5rem;
  }
  .modal-body .confirmation-tick {
    width: 6rem;
    height: 6rem;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }
  .otp-input-wrapper .otp-input {
    width: calc(100% / 6);
    aspect-ratio: 1 / 1;
    height: auto;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin: 0 0.2rem;
  }
  /* Modal CSS End */
}
@media (max-width: 350.2px) {
  .account-balance-card a {
    font-size: 0.9rem;
  }
}

.resend_otp_disabled {
  pointer-events: none;
  color: gray;
  cursor: not-allowed;
}
/* Responsive CSS End */

/* QR Code Scanning Instructions Steps CSS */
.qa-scan-step {
  position: relative;
}
.qa-scan-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 105%;
  width: 130px;
  height: 52px;
  background: url("data:image/svg+xml,%3Csvg width='135' height='54' viewBox='0 0 135 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 48.2733C4.55722 53.9056 13.1059 52.6872 18.2194 50.331C28.7014 45.5011 35.8038 34.5162 43.3175 26.2617C49.6546 19.2998 59.8639 10.2236 70.0401 13.2388C88.99 18.8536 107.815 17.2154 126.734 11.7227' stroke='%23008675' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M122.344 1C125.48 4.48502 127.998 7.58886 132.091 9.88045C132.726 10.2361 133.687 10.7856 133.498 11.5862C132.359 16.428 129.032 21.1059 126.188 25.0693C125.59 25.9026 124.707 27.3533 123.806 27.8038' stroke='%23008675' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat center / contain;
}
@media (max-width: 1199.1px) {
  .qa-scan-step:not(:last-child)::after {left: 95%}
}
@media (max-width: 991.1px) {
  .qa-scan-step:not(:last-child)::after {
    left: 90%;
    width: 110px;
    height: 42px;
  }
}
@media (max-width: 767.1px) {
  .qa-scan-step:not(:last-child)::after {
    left: 60%;
    width: 80px;
    height: 24px;
  }
}
@media (max-width: 576.1px) {
  .qa-scan-step:not(:last-child)::after {
    left: calc(50% - 20px);
    width: 35px;
    height: 14px;
    transform: rotate(90deg) translateX(-50%);
    top: auto;
    bottom: -38px;
  }
  .qa-scan-step p {
    font-size: 16px;
  }
}
/* QR Code Scanning Instructions Steps CSS */
.wallet-balance-modal .error-image {
  width: 100px;
}
