@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation: fadeOut 1s ease-out;
  animation: fadeOut 1s ease-out;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
}
.slide-in-left {
  -webkit-animation: slideInLeft 0.5s ease-out;
  animation: slideInLeft 0.5s ease-out;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translate(100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translate(100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
}
.slide-in-right {
  -webkit-animation: slideInRight 0.5s ease-out;
  animation: slideInRight 0.5s ease-out;
}
@-webkit-keyframes slideInTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-in-top {
  -webkit-animation: slideInTop 0.5s ease-out;
  animation: slideInTop 0.5s ease-out;
}
@-webkit-keyframes slideInBottom {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-in-bottom {
  -webkit-animation: slideInBottom 0.5s ease-out;
  animation: slideInBottom 0.5s ease-out;
}
@-webkit-keyframes bounce {
  0%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes bounce {
  0%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.bounce {
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}
@-webkit-keyframes pulse {
  0%,
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes pulse {
  0%,
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.pulse {
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}
@-webkit-keyframes shake {
  0%,
  to {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translateX(-10px);
    transform: translate(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
    transform: translate(10px);
  }
}
@keyframes shake {
  0%,
  to {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translateX(-10px);
    transform: translate(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
    transform: translate(10px);
  }
}
.shake {
  -webkit-animation: shake 0.5s infinite;
  animation: shake 0.5s infinite;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}
@keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0);
  }
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}
.flip {
  -webkit-animation: flip 1s ease-in-out infinite;
  animation: flip 1s ease-in-out infinite;
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.zoom-in {
  -webkit-animation: zoomIn 0.5s ease-out;
  animation: zoomIn 0.5s ease-out;
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
.zoom-out {
  -webkit-animation: zoomOut 0.5s ease-out;
  animation: zoomOut 0.5s ease-out;
}
@-webkit-keyframes blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.blink {
  -webkit-animation: blink 1s infinite;
  animation: blink 1s infinite;
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  75% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  75% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
}
.swing {
  -webkit-animation: swing 1s ease-in-out infinite;
  animation: swing 1s ease-in-out infinite;
}
@-webkit-keyframes wobble {
  0%,
  to {
    -webkit-transform: translateX(0%);
    transform: translate(0);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translate(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translate(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translate(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translate(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translate(-5%) rotate(-1deg);
  }
}
@keyframes wobble {
  0%,
  to {
    -webkit-transform: translateX(0%);
    transform: translate(0);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translate(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translate(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translate(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translate(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translate(-5%) rotate(-1deg);
  }
}
.wobble {
  -webkit-animation: wobble 1s infinite;
  animation: wobble 1s infinite;
}
@-webkit-keyframes fadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.fade-in-scale {
  -webkit-animation: fadeInScale 0.5s ease-out;
  animation: fadeInScale 0.5s ease-out;
}
@-webkit-keyframes fadeOutScale {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes fadeOutScale {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
.fade-out-scale {
  -webkit-animation: fadeOutScale 0.5s ease-out;
  animation: fadeOutScale 0.5s ease-out;
}
@-webkit-keyframes growShrink {
  0%,
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes growShrink {
  0%,
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.grow-shrink {
  -webkit-animation: growShrink 1s infinite;
  animation: growShrink 1s infinite;
}
@-webkit-keyframes spinFade {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0;
  }
}
@keyframes spinFade {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0;
  }
}
.spin-fade {
  -webkit-animation: spinFade 2s linear infinite;
  animation: spinFade 2s linear infinite;
}
@-webkit-keyframes popIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.pop-in {
  -webkit-animation: popIn 0.5s ease-out;
  animation: popIn 0.5s ease-out;
}
.translate-y-12 {
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
}
-translate-y-12 {
  -webkit-transform: translateY(-3rem);
  transform: translateY(-3rem);
}
.translate-y-0 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.scale-90 {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.scale-100 {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.table th {
  font-weight: bold;
  font-size: 14px;
  color: var(--bs-secondary) !important;
}
.table td {
  border: none !important;
}
.table tr {
  border-bottom: 1px solid;
  border-color: var(--brand-20);
}

.hover-table tbody tr {
  position: relative;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hover-table tbody tr:hover {
  background-color: var(--brand-05);
  box-shadow: inset 3px 0 0 var(--bs-primary);
}

/* Change row text color on hover */
.hover-table tbody tr:hover td,
.hover-table tbody tr:hover td span {
  color: var(--bs-primary) !important;
}

.form-check-input {
  border-color: var(--bs-secondary);
}
.f-md {
  font-size: 14px !important;
  font-weight: 650 !important;
}
.layout-navbar-fixed
  .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu)
  .layout-page {
  padding-bottom: 78px !important;
}
.menu-icon {
  transition: -webkit-transform 0.5s !important;
  transition: transform 0.5s !important;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s !important;
}
/* .menu-link:hover .menu-icon {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
} */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-body-bg);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0.01;
  visibility: hidden;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bs-card-bg);
  border-top: 4px solid var(--bs-primary);
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: bblFadInOut 1.8s infinite ease-in-out;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader {
  color: var(--bs-primary);
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes bblFadInOut {
  0%,
  80%,
  to {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em;
  }
}
@keyframes bblFadInOut {
  0%,
  80%,
  to {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em;
  }
}
.progress-circle {
  margin: auto;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.progress-circle img {
  width: 100px;
  position: absolute;
  z-index: 10;
  border-radius: 50%;
}
.progress-circle:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: #000;
  border-radius: 50%;
  z-index: 5;
}
@media only screen and (max-width: 600px) {
  .progress-circle {
    width: 80px;
    height: 80px;
  }
  .progress-circle img {
    width: 65px !important;
  }
  .progress-circle:before {
    width: 73px;
    height: 73px;
  }
}
.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .card-container {
    grid-template-columns: repeat(auto-fit, 140px);
  }
  .partners-area .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.partner-card,
.shop-card {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition:
    background-color 0.5s,
    -webkit-transform 0.5s !important;
  transition:
    transform 0.5s,
    background-color 0.5s !important;
  transition:
    transform 0.5s,
    background-color 0.5s,
    -webkit-transform 0.5s !important;
}
.shop-card.active {
  background-color: #00000080;
  border: 2px solid var(--bs-primary) !important;
}
.shop-card .card-body {
  min-height: 180px !important;
}

.partner-card .badge,
.shop-card .badge {
  border-radius: 0 0 0 20px !important;
  font-size: 16px;
  padding: 8px 20px;
  overflow: hidden;
}

.partner-card .badge::after,
.shop-card .badge::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 3s linear infinite;
}

.partner-card:hover::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(25deg);
  animation: shine 0.3s linear;
}

@keyframes shine {
  from {
    left: -70%;
  }

  to {
    left: 140%;
  }
}

.partner-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 80%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--offer-color),
    transparent
  );
}

.partner-card:hover,
.shop-card:hover {
  -webkit-transform: scale(1.05) !important;
  transform: scale(1.05) !important;
  background-color: var(--brand-dark-bg);
  /* border: 1px solid var(--bs-primary); */
}
.shop-price-card {
  border: 2px solid transparent !important;
}
.shop-card:hover.shop-price-card {
  -webkit-transform: none !important;
  transform: none !important;
  border: 2px solid var(--bs-primary) !important;
  overflow: hidden;
}

.partner-card:hover .card-body img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition:
    -webkit-filter 0.5s,
    -webkit-transform 0.5s;
  transition:
    filter 0.5s,
    transform 0.5s;
  transition:
    filter 0.5s,
    transform 0.5s,
    -webkit-filter 0.5s,
    -webkit-transform 0.5s;
}
.partner-card .card-body i {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0.01;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.5s ease-in-out;
  width: 40px;
  height: 40px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 10px #00000080;
}
.partner-card:hover .card-body i {
  opacity: 1;
  visibility: visible;
}
.offer-card {
  transition:
    background-color 0.5s,
    -webkit-transform 0.5s;
  transition:
    transform 0.5s,
    background-color 0.5s;
  transition:
    transform 0.5s,
    background-color 0.5s,
    -webkit-transform 0.5s;
  height: 100%;
}
.offer-card:hover {
  background-color: #00000080;
}
.offer-card:hover .card-img-block img {
  -webkit-filter: blur(2px) brightness(0.3);
  filter: blur(2px) brightness(0.3);
  transition:
    -webkit-filter 0.5s,
    -webkit-transform 0.5s;
  transition:
    filter 0.5s,
    transform 0.5s;
  transition:
    filter 0.5s,
    transform 0.5s,
    -webkit-filter 0.5s,
    -webkit-transform 0.5s;
}
.offer-card .card-img-block i {
  display: -ms-flexbox;
  display: flex;
  opacity: 0.01;
  visibility: hidden;
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.5s ease-in-out;
  width: 40px;
  height: 40px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 10px #00000080;
}
.offer-card:hover .card-img-block i {
  opacity: 1;
  visibility: visible;
}
.streak-container {
  margin-top: 20px;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 10px;
}
@media only screen and (max-width: 700px) {
  .streak-container {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  }
  .shop-card .card-body {
    min-height: auto !important;
  }
  .shop-card .card-body img,
  .shop-card .card-footer {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.streak-card .card-body {
  padding: 15px 0;
  text-align: center;
  margin-top: 5px;
  border-radius: 4px;
}
.streak-card .card-body p {
  font-size: 9px;
}
.streak-card .card-body h5 {
  font-size: 11px;
}
.streak-card i {
  font-size: 25px !important;
}
.streak-card button {
  font-size: 10px;
}
.search-input {
  border-right: none;
  height: 40px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.search-input::-webkit-input-placeholder {
  color: var(--bs-secondary);
}
.search-input::-moz-placeholder {
  color: var(--bs-secondary);
}
.search-input:-ms-input-placeholder {
  color: var(--bs-secondary);
}
.search-input::-ms-input-placeholder {
  color: var(--bs-secondary);
}
.search-input::placeholder {
  color: var(--bs-secondary);
}
.search-input:hover {
  border-color: var(--bs-primary) !important;
}
.search-input-icon {
  border-right: 1px solid #374558;
  border-left: none;
  height: 40px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.search-input-icon:hover,
.search-input-group:hover .search-input,
.search-input-group:hover .search-input-icon {
  border-color: var(--bs-primary) !important;
}
.leaderboard-container {
  height: 320px;
}
.leaderboard-card {
  position: relative;
  background: linear-gradient(var(--bs-dark), var(--bs-body-bg));
  color: #fff;
  padding: 30px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  width: 200px;
  text-align: center;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.leaderboard-card .place img {
  width: 30px;
}
@media only screen and (max-width: 600px) {
  .leaderboard-card {
    width: 32% !important;
  }
  .leaderboard-card .place img {
    width: 20px;
  }
}
.leaderboard-card .leaderboard-image {
  position: relative;
  margin: auto auto 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 4px;
}
.leaderboard-card .leaderboard-image img {
  width: 70px;
  height: 70px;
}
.leaderboard-card .crown {
  position: absolute;
  z-index: 0;
  width: 28px !important;
  height: 26px !important;
  margin-top: -5.4rem;
}
.first-place {
  height: 100%;
}
.sec-place {
  height: 88%;
}
.third-place {
  height: 75%;
}
.avatar {
  height: 2.5rem !important;
  width: 2.5rem !important;
  border-radius: 9999px;
}
.nav-link:hover a {
  color: #202225 !important;
}
.dropdown-menu .switch {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
}
.switch-toggle-slider {
  top: 0 !important;
}
.swiper {
  margin-left: inherit !important;
  margin-right: inherit !important;
}
.avatar-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 5px;
}
.avatar-item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.avatar-item img {
  width: 50px;
  height: 50px;
}
.avatar-item.selected {
  border: 3px solid var(--bs-primary);
}
@media only screen and (max-width: 600px) {
  .modal-sm-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.dropdown-notifications .nav-link {
  color: var(--bs-body-color);
}
.dropdown-notifications .border-bottom {
  border-bottom: 1px solid #43496873 !important;
}
.dropdown-notifications .border-top {
  border-top: 1px solid #43496873 !important;
}
.dropdown-notifications .list-group-item {
  border-color: #43496873 !important;
}
.page-link,
.page-link > a {
  min-width: calc(2.4275rem + 0px);
  line-height: var(--bs-body-line-height);
}
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(93, 94, 96, 0.22) var(--bs-dark);
}
html::-webkit-scrollbar {
  width: 12px;
}
html::-webkit-scrollbar-track {
  background: var(--bs-dark);
  border-radius: 10px;
}
html::-webkit-scrollbar-thumb {
  background-color: #5d5e6038;
  border-radius: 10px;
  border: 3px solid var(--bs-dark);
}
html::-webkit-scrollbar-thumb:hover {
  background-color: #5d5e6080;
}
.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: var(--bs-body-text) !important;
  text-decoration: none;
}
.footer-link-btn,
.footer-link-btn:visited {
  color: inherit !important;
}
.accordion-button:not(.collapsed) {
  color: #fff;
}
.offer-api-card {
  --offers-per-row: 3;
  display: grid !important;
  grid-template-columns: repeat(var(--offers-per-row), minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.partner-card .card-body {
  height: 140px !important;
}
@media only screen and (min-width: 701px) {
  .offer-api-card {
    --offers-per-row: 4;
  }
  .partner-card .card-body {
    height: 140px !important;
  }
}
@media only screen and (min-width: 800px) {
  .offer-api-card {
    --offers-per-row: 5;
  }
  .partner-card .card-body {
    height: 40px !important;
  }
}
@media only screen and (min-width: 999px) {
  .offer-api-card {
    --offers-per-row: 6;
  }
  .partner-card .card-body {
    height: 60px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .offer-api-card {
    --offers-per-row: 7;
  }
  .partner-card .card-body {
    height: 60px !important;
  }
  /* .partners-area .card-container img {
    padding: 10px !important;
  } */
}

@media (max-width: 1200px) {
  .app-brand i {
    display: none !important;
  }
}

@media only screen and (min-width: 1500px) {
  .offer-api-card {
    --offers-per-row: 9;
  }
  .partners-area .card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .partner-card .card-body {
    height: 100px !important;
  }
  /* .partners-area .card-container img {
    padding: 20px;
  } */
}
.skeleton {
  background: var(--custom-base);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  -webkit-animation: shimmer 1.5s infinite;
  animation: shimmer 1.5s infinite;
}
.skeleton:after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--custom-base),
    transparent
  );
  -webkit-animation: loading 1.5s infinite;
  animation: loading 1.5s infinite;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translate(100%);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translate(100%);
  }
}
.skeleton-text {
  height: 16px;
  width: 100%;
  margin-top: 8px;
}
.skeleton-img {
  height: 124px;
  width: 100%;
}
.skeleton-badge {
  height: 16px;
  width: 50px;
  margin-top: 8px;
}
.skeleton-footer {
  height: 20px;
  width: 80px;
  margin-top: 10px;
} /*!*layout handle on sm screens*!*/
@media (max-width: 576px) {
  .card .card-body {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .card .card-header {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-bottom: 0 !important;
  }
  .partner-card .card-body {
    height: 100px !important;
  }
}
.swiper-offer .swiper-offer-card {
  width: 140px;
  max-width: 140px;
}
.swiper-offer .swiper-offer-card .card-img-block img,
.swiper-offer .swiper-offer-card .card-img-block {
  min-height: 124px;
}
@media only screen and (max-width: 600px) {
  .swiper-offer .swiper-offer-card {
    width: 100px;
    max-width: 100px;
  }
  .swiper-offer .swiper-offer-card .card-img-block img {
    min-height: 88px;
  }
  .swiper-offer .swiper-offer-card .card-img-block {
    min-height: 88px;
    height: 88px !important;
  }
}
.partner-card {
  width: 140px !important;
  border-radius: 20px !important;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.partners-area .partner-card {
  width: 100% !important;
  border-radius: 20px !important;
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    320deg,
    rgba(217, 247, 255, 0) 10%,
    rgba(217, 247, 255, 0.2) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media only screen and (max-width: 600px) {
  .partner-card {
    width: 100px !important;
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .card-container .partner-card {
    width: auto !important;
    margin: auto !important;
    margin-bottom: 0.5rem !important;
  }
  .partner-card .card-body {
    height: 80px;
  }
}
.mobile-navbar {
  z-index: 104;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--custom-base);
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  grid-column-gap: 4px;
  border-top: 1px solid rgba(183, 207, 255, 0.051);
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  left: 0;
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow-y: visible;
}
.mobile-navbar .nv-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: var(--bs-body-color);
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-size: 10px;
  padding: 10px 0;
}
.mobile-navbar .nv-item > span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 10px;
}
.mobile-navbar .nv-item > span i {
  font-size: 20px;
}
.mobile-navbar .nv-item > span span {
  font-size: 10px;
}
.mobile-navbar .nv-item.active {
  color: var(--bs-primary);
}
.bg-b-csm {
  height: 325px;
  background-size: contain;
  opacity: 0.1;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  -webkit-transform-origin: 18px center;
  transform-origin: 18px center;
  max-width: 100%;
  overflow: hidden;
}
.bg-b-csm:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 235px;
  background: linear-gradient(to bottom, transparent, var(--bs-body-bg));
}
.bg-b-csm:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 235px;
  background: linear-gradient(to bottom, transparent, var(--bs-body-bg));
}
.bg-menu-theme .menu-sub > .menu-item > .menu-link:before {
  content: "";
  font-family: "Font Awesome 6 Free", serif;
  font-weight: 400;
}
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0 auto !important;
  }
}
@media (min-width: 1024px) {
  #offerApiModal .modal-content {
    max-height: 80vh !important;
  }
}
@media (max-width: 767.98px) {
  .modal .modal-dialog:not(.modal-fullscreen) {
    padding: 0 !important;
  }
}
@media screen and (min-width: 576px) {
  .auth-width {
    max-width: 500px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.auth-tabs-container {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: var(--bs-body-bg);
  padding: 5px !important;
}
.menu-vertical .app-brand {
  padding-left: 0 !important;
}

/*-----Custom CSS-----*/
.partner-card img {
  max-width: 100% !important;
  max-height: 100% !important;
}

.navbar-nav .admin-icon i,
.nav-item.dropdown-notifications i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--custom-base);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.5s;
}

.custom-bg-secondary {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--brand-20);

  border: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 8px var(--brand-16);
}

.custom-bg-secondary-1 {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--brand-20);
  border: 1px solid rgb(255 255 255 / 10%) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.5s;
}

.custom-bg-secondary-2 {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--custom-base);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.5s;
}

.custom-bg-secondary-3 {
  background-color: var(--custom-base);
}

.custom-bg-secondary-4 {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--custom-base);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.5s;
}

.nav-custom-btn:hover,
.custom-primary-btn:hover,
.custom-bg-secondary-1:hover,
.custom-bg-secondary-2:hover,
.navbar-nav .admin-icon i:hover,
.nav-item.dropdown-notifications i:hover {
  color: var(--bs-primary) !important;
  background: var(--brand-16) !important;
}

.custom-primary-btn {
  border: 1px solid rgb(255 255 255 / 10%) !important;
  background-color: var(--brand-color) !important;
  color: #fff !important;
  transition: 0.5s !important;
}

.nav-custom-btn {
  border: 1px solid rgb(255 255 255 / 10%) !important;
  background-color: var(--nav-custom-btn-bg) !important;
  transition: 0.5s !important;
}

.live-icon-area {
  width: 55px !important;
  min-width: 55px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.live-icon {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-center {
  padding: clamp(1rem, 10vw, 10rem) 0;
}

/* Glowing Sing Up Box Effect */
.home-signup {
  overflow: hidden;
}

.home-signup samp {
  position: absolute;
  inset: 2px;
  border-radius: 20px;
  background: var(--custom-base);
  z-index: 1;
}

.home-signup .card-body {
  z-index: 2;
}

.glow-box-shape {
  width: 200%;
  margin-left: -50%;
  height: 35%;
  margin-top: 100px;
  position: absolute;
  /* background: linear-gradient(transparent, var(--brand-color) 60%, transparent); */
  background: linear-gradient(
    transparent,
    #7319fa,
    #ff33b4,
    #ff7e29 60%,
    transparent
  );
  z-index: 0;
}

.glow-box-animation {
  animation-name: glow-animation;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes glow-animation {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  75% {
    transform: rotate(270deg);
  }

  to {
    transform: rotate(1turn);
  }
}
/* End Glowing Sing Up Box Effect */

/* Live Lndicator*/
.live-indicator {
  width: 9px;
  height: 9px;
  margin-right: 2px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.live-indicator::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* End Live Lndicator*/

/*Hero Area*/

.hero-title-area,
.home-signup-area {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  gap: 8px;
}

/* ========================================
   Hero Background - Desktop / Big Screen
   ======================================== */
.hero-bg-big {
  display: block;
}

.hero-bg-mini {
  display: none;
}

/* ========================================
   Hero Background - Mobile / Small Screen
   ======================================== */
@media only screen and (max-width: 600px) {
  .hero-bg-big {
    display: none;
  }

  .hero-bg-mini {
    display: block;
  }
}

/* End Hero Area*/
