@-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);
}

.avatar-size-bg {
  width: 62px !important;
  height: 62px !important;
  background:
    radial-gradient(
      circle at bottom left,
      var(--brand-30),
      var(--brand-10),
      transparent 60%
    ),
    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;
  padding: 4px;
}

@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;
}
.menu-vertical .app-brand-img {
  width: 180px;
  height: auto;
}

/* ========================================
   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 Card
   ======================================== */

.custom-card {
  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-card-1 {
  background:
    radial-gradient(
      circle at bottom left,
      var(--brand-30),
      var(--brand-10),
      transparent 60%
    ),
    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 CARD 2
   GAMING / PREMIUM GLOW CARD
===================================================== */

.custom-card-2 {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 0% 100%,
      var(--brand-30),
      var(--brand-10),
      transparent 62%
    ),
    radial-gradient(circle at 100% 0%, var(--brand-16), transparent 45%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.018)
    ),
    var(--custom-base);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 35px var(--brand-05),
    0 10px 35px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* TOP LIGHT LINE */

.custom-card-2::before {
  content: "";

  position: absolute;

  top: 0;
  left: 8%;
  right: 8%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    hsl(from var(--brand-color) h s l / 0.9),
    transparent
  );

  opacity: 0.75;

  pointer-events: none;
}

/* CORNER GLOW */

.custom-card-2::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: -100px;
  bottom: -110px;

  border-radius: 50%;

  background: var(--brand-20);

  filter: blur(55px);

  opacity: 0.8;

  pointer-events: none;
}

/* CARD CONTENT */

.custom-card-2 > * {
  position: relative;
  z-index: 1;
}

/* =====================================================
   GAMING LIGHT SWEEP
===================================================== */

.custom-card-2 .card-header {
  position: relative;
  overflow: hidden;
}

.custom-card-2 .card-header::after {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.035),
    transparent
  );

  transform: skewX(-20deg);

  animation: customCardLightSweep 6s ease-in-out infinite;

  pointer-events: none;
}

@keyframes customCardLightSweep {
  0% {
    left: -120%;
  }

  35%,
  100% {
    left: 140%;
  }
}

/* =====================================================
   GAMING CARD MOBILE
===================================================== */

@media (max-width: 576px) {
  .custom-card-2 {
    border-radius: 12px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 25px rgba(0, 0, 0, 0.2);
  }

  /* MOBILE HOVER */

  .custom-card-2:hover {
    transform: none;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 25px rgba(0, 0, 0, 0.2);
  }

  /* MOBILE CORNER GLOW */

  .custom-card-2::after {
    width: 130px;
    height: 130px;

    left: -80px;
    bottom: -80px;

    filter: blur(40px);
  }
}

/* =====================================================
   END CUSTOM CARD 2
   GAMING / PREMIUM GLOW CARD
===================================================== */

.custom-card-shadow-1 {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 0 20px var(--brand-08);
}

.custom-card-shadow-2 {
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.3);
}
/* ========================================
   END Custom Card
   ======================================== */

.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*/

.swiper-wrapper .live-cashout-pfp img {
  height: 38px;
  width: 38px;
}

/* =====================================================
   PROFILE DASHBOARD
===================================================== */

.profile-dashboard {
  --profile-purple: var(--brand-color);
  --profile-purple-light: var(--brand-color);
  --profile-bg: #151628;
  --profile-bg-light: #1b1c31;
  --profile-border: rgba(255, 255, 255, 0.09);
}

/* MAIN CARDS */

.account-card,
.stats-card {
  height: 100%;
  overflow: hidden;
}

/* HEADERS */

.account-card-header,
.stats-header {
  height: 68px !important;
  min-height: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  padding: 0 20px !important;
  box-sizing: border-box;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-card-header .card-title,
.stats-header .card-title {
  display: flex;
  align-items: center;
  margin: 0 !important;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1 !important;
}

.account-card-header .card-title i,
.stats-header .card-title i {
  margin-right: 9px;
  color: var(--brand-color);
}

/* EDIT BUTTON */

.edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-color), var(--brand-40));
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(143, 45, 255, 0.2);
  transition: 0.2s ease;
}

.edit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(143, 45, 255, 0.35);
}

/* PROFILE */

.account-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 2px 20px;
}

/* AVATAR */

.avatar-container {
  flex-shrink: 0;
  text-align: center;
}

.avatar-progress {
  width: 112px;
  height: 112px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--profile-purple) 0 var(--progress),
    #292a3e var(--progress) 100%
  );
  box-shadow: 0 0 18px rgba(151, 52, 255, 0.25);
}

.avatar-inner {
  width: 120px;
  height: 120px;
}

.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LEVEL BADGE */

.level-badge {
  display: inline-block;
  margin-top: 7px;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(145, 48, 240, 0.18);
  border: 1px solid rgba(160, 64, 255, 0.28);
  color: #bf7aff;
  font-size: 10px;
  font-weight: 600;
}

/* USER INFO */

.user-info {
  min-width: 0;
}

.joined {
  margin-bottom: 3px;
  color: #9699ae;
  font-size: 11px;
}

.joined i {
  color: var(--profile-purple);
}

.user-info h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.email {
  margin-top: 5px;
  color: #a7a9bb;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.verified {
  color: var(--profile-purple);
}

/* ACCOUNT DETAILS */

.account-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-detail {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 9px;
  background: rgba(12, 13, 25, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-11);
  color: var(--brand-color);
  font-size: 16px;
}

.detail-text {
  min-width: 0;
}

.detail-text span {
  display: block;
  margin-bottom: 2px;
  color: #85889d;
  font-size: 12px;
}

.detail-text strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f1f1f5;
  font-size: 14px;
}

.copy-btn {
  margin-left: auto;
  flex-shrink: 0;
  padding: 3px;
  border: 0;
  background: transparent;
  color: var(--brand-color);
  cursor: pointer;
  font-size: 15px;
}

/* COPY BUTTON */

.copy-btn {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  padding: 0;

  flex-shrink: 0;

  border: 0;
  border-radius: 6px;

  background: transparent;

  color: var(--brand-color);

  cursor: pointer;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.copy-btn:hover {
  background: var(--brand-11);

  color: var(--brand-color);

  transform: scale(1.08);
}

.copy-btn.copied {
  color: #43e08b;

  background: rgba(67, 224, 139, 0.1);
}

/* ACCOUNT FOOTER */

.account-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.private-box,
.level-box {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 11px;
  border-radius: 9px;
  background: rgba(12, 13, 25, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.private-box .switch {
  display: flex;
  justify-content: center;
  align-content: stretch;
  right: 8px;
}

/* SWITCH OFF */

.private-box .switch .switch-input:not(:checked) ~ .switch-toggle-slider {
  background: #7b879d !important;
}

.footer-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  border-radius: 8px;
  background: var(--brand-11);
  color: var(--brand-color);
  font-size: 15px;
}

/* .level-icon {
  color: #ffc52e;
} */

.footer-content {
  min-width: 0;
}

.footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-title i {
  margin-left: 3px;
  color: #74778a;
  font-size: 9px;
}

.private-box .footer-content {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  margin-right: 30px;
}

.footer-content small {
  display: block;
  margin-top: 2px;
  color: #777a8e;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* SWITCH */

.private-box .switch {
  margin-left: auto;
  flex-shrink: 0;
}

/* ACCOUNT LEVEL */

.level-box .footer-content {
  flex: 1;
}

.level-progress {
  height: 5px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 10px;
  background: #292b3d;
}

.level-progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-40), var(--brand-color));
}

.level-number {
  margin-left: 8px;
  color: var(--brand-color);
  font-size: 12px;
  white-space: nowrap;
}

/* STATS */

.stats-card {
  display: flex;
  flex-direction: column;
}

.stats-card .card-body {
  flex: 1;
  display: flex;
  padding: 14px 18px 18px !important;
}

.stats-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-item {
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 10px;
  text-align: center;
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    rgba(29, 30, 49, 0.9),
    rgba(15, 16, 29, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  border-color: var(--brand-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.stat-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--brand-16);
  color: var(--brand-color);
  font-size: 17px;
}

.stat-number {
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  margin-top: 5px;
  color: #85889b;
  font-size: 12px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {
  .profile-dashboard > .col-lg-5,
  .profile-dashboard > .col-lg-7 {
    width: 100%;
  }

  .stats-card {
    height: auto !important;
  }

  .stats-card .card-body {
    display: block;
  }

  .stats-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 8px;
  }

  .stat-item {
    height: 120px;
    min-height: 120px;
  }
}

@media (max-width: 576px) {
  .account-card,
  .stats-card {
    border-radius: 12px;
  }

  .account-card-header,
  .stats-header {
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 15px !important;
  }

  .account-card-header .card-title,
  .stats-header .card-title {
    font-size: 14px;
  }

  .edit-btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .account-card .card-body {
    padding: 14px;
  }

  .account-profile {
    gap: 13px;
    padding-bottom: 15px;
  }

  .avatar-progress {
    width: 82px;
    height: 82px;
    padding: 4px;
  }

  .avatar-inner {
    width: 74px;
    height: 74px;
    border-width: 3px;
  }

  .level-badge {
    margin-top: 5px;
    padding: 2px 9px;
    font-size: 9px;
  }

  .joined {
    font-size: 9px;
  }

  .user-info h2 {
    font-size: 21px;
  }

  .email {
    font-size: 10px;
  }

  .account-details {
    gap: 6px;
  }

  .account-detail {
    gap: 7px;
    padding: 9px;
  }

  .detail-icon {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }

  .detail-text span {
    font-size: 9px;
  }

  .detail-text strong {
    font-size: 10px;
  }

  .copy-btn {
    font-size: 13px;
  }

  .account-footer {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .private-box,
  .level-box {
    padding: 10px;
  }

  .footer-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .stats-card .card-body {
    padding: 10px;
  }

  .stats-grid {
    gap: 7px;
  }

  .stat-item {
    height: 105px;
    min-height: 105px;
    padding: 8px 5px;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .account-profile {
    gap: 10px;
  }

  .avatar-progress {
    width: 70px;
    height: 70px;
  }

  .avatar-inner {
    width: 64px;
    height: 64px;
  }

  .user-info h2 {
    font-size: 18px;
  }

  .email {
    font-size: 9px;
  }

  .detail-icon {
    display: none;
  }

  .stat-item {
    height: 98px;
    min-height: 98px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 8px;
  }
}

/* =====================================================
   AVATAR SELECTOR
===================================================== */

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 4px;
}

.avatar-option {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  overflow: hidden;
  transition: 0.25s ease;
}

.avatar-option img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  transition: 0.25s ease;
}

.avatar-option:hover {
  border-color: hsl(from var(--brand-color) h s l / 0.6);
  box-shadow: 0 0 15px var(--brand-20);
  transform: translateY(-2px);
}

.avatar-option.selected {
  border-color: var(--brand-color);
  box-shadow:
    0 0 0 2px var(--brand-20),
    0 0 20px hsl(from var(--brand-color) h s l / 0.35);
}

.avatar-selected {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  font-size: 11px;
  box-shadow: 0 0 10px hsl(from var(--brand-color) h s l / 0.5);
}

@media (max-width: 767.98px) {
  .avatar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-height: 260px;
  }

  #editProfileModal .btn-close {
    position: relative !important;
  }
}

#editProfileModal .btn-close {
  background-color: var(--brand-color);
  border-radius: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23fff' d='M183.1 137.4C170.6 124.9 150.3 124.9 137.8 137.4C125.3 149.9 125.3 170.2 137.8 182.7L275.2 320L137.9 457.4C125.4 469.9 125.4 490.2 137.9 502.7C150.4 515.2 170.7 515.2 183.2 502.7L320.5 365.3L457.9 502.6C470.4 515.1 490.7 515.1 503.2 502.6C515.7 490.1 515.7 469.8 503.2 457.3L365.8 320L503.1 182.6C515.6 170.1 515.6 149.8 503.1 137.3C490.6 124.8 470.3 124.8 457.8 137.3L320.5 274.7L183.1 137.4z'/%3E%3C/svg%3E");
}

/* =====================================================
   END PROFILE DASHBOARD
===================================================== */
