@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://kit-pro.fontawesome.com/releases/v6.1.2/css/pro.min.css");

@import url("./include/reset.css");
@import url("./include/grid.css");
@import url("./include/theme.css");

html,
body,
.wrapper {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: rgb(var(--body-bg));
  color: rgb(var(--body-clr));
  -webkit-tap-highlight-color: transparent;
}

/* Game Detail Page Styles */

.game-detail-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #1c1c1e;
  border-radius: 8px;
}


.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.game-banner {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.game-title-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.game-title {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.game-developer {
  font-size: 1rem;
  color: #a1a1aa;
}

.game-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.game-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.game-actions .btn-primary {
  background-color: #28a745;
  color: #fff;
}

.game-actions .btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.game-actions .btn-success {
  background-color: #17a2b8;
  color: #fff;
}

.game-actions .btn-light {
  background-color: #f8f9fa;
  color: #343a40;
}

.game-actions .btn-warning {
  background-color: #ffc107;
  color: #343a40;
}

.player-count {
  font-size: 1rem;
  color: #f8f9fa;
  margin-top: 10px;
}

.game-tabs {
  display: flex;
  border-bottom: 2px solid #333;
}

.game-tabs ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.game-tabs ul li {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #a1a1aa;
  cursor: pointer;
  transition: color 0.2s ease;
}

.game-tabs ul li.active {
  color: #fff;
  border-bottom: 2px solid #28a745;
}

.game-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #2c2c2e;
  padding: 20px;
  border-radius: 8px;
}

.game-description h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.game-description p {
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 10px;
}

.game-description .btn-dark {
  background-color: #343a40;
  color: #fff;
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 8px;
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background-color: #2c2c2e;
  padding: 20px;
  border-radius: 8px;
}

.game-stats div {
  font-size: 1rem;
  color: #d1d1d1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
/* Styles for the Item View Page */
.market-item-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.item-details {
  display: flex;
  gap: 20px;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.item-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.item-info {
  flex-grow: 1;
  color: #ffffff;
}

.item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.item-category {
  font-size: 18px;
  font-weight: normal;
  color: #bbbbbb;
  margin-bottom: 10px;
}

.item-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.item-meta-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #bbbbbb;
}

.item-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.item-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.item-creator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-creator .creator-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.item-creator .creator-link {
  font-size: 14px;
  color: #00aaff;
  text-decoration: none;
}

.item-comments {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.comments-section {
  margin-bottom: 20px;
}

.comments-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.comment-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.comment-input textarea {
  width: 100%;
  padding: 10px;
  background-color: #333333;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
}

.comment-input .btn {
  align-self: flex-end;
  padding: 10px 20px;
  font-size: 14px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment {
  display: flex;
  gap: 10px;
  padding: 10px;
  background-color: #2a2a2a;
  border-radius: 8px;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex-grow: 1;
  color: #ffffff;
}

.comment-author {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.comment-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.comment-time {
  font-size: 12px;
  color: #bbbbbb;
}

.suggested-items {
  margin-top: 20px;
}

.suggested-items h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.suggested-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 10px;
}

.suggested-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.suggested-item-info {
  flex-grow: 1;
  color: #ffffff;
}

.suggested-item-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.suggested-item-price {
  font-size: 14px;
  color: #00ff00;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.item-description p {
  font-size: 1rem;
  color: #f8f9fa;
  margin: 5px 0;
}

.item-stats p {
  font-size: 1rem;
  color: #f8f9fa;
  margin: 5px 0;
}

/* NAVBAR */

.navbar {
  background: rgb(var(--section-bg));
  border-bottom: 2px solid rgB(var(--section-border-clr));
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 0 16px;
}
.navbar,
.navbar-ul {
  display: flex;
  align-items: center;
}

.nav-user-section {
  display: flex;
  align-items: center;

  border: 2px solid rgb(var(--section-border-clr));
  border-radius: var(--rounded-full);

  height: 44px;
}

.nav-user-section-button {
  display: flex;
  align-items: center;

  background: rgb(var(--nav-user-button-bg));
  outline: 2px solid rgb(var(--section-border-clr));
  border-radius: var(--rounded-full);

  font-weight: 500;
  color: inherit;

  transition: all 0.2s linear;

  padding-right: 14px;
  height: 100%;
}

.nav-user-section-button:hover {
  background: rgb(var(--nav-user-section-button-bg-hover));
  outline: 2px solid rgb(var(--nav-user-section-button-border-clr-hover));
}

.nav-user-section-button:hover .nav-user-section-headshot {
  outline: 2px solid rgb(var(--nav-user-section-button-border-clr-hover));
}

.nav-user-section-headshot {
  background: rgb(var(--section-bg));
  border-radius: var(--rounded-full);
  outline: 2px solid rgb(var(--section-border-clr));
  transition: all 0.2s linear;
  margin-right: 8px;
}

.nav-user-section-body {
  padding: 0 18px;
}

.nav-user-section-body {
  display: flex;
  height: 100%;
  gap: 14px;
}

.nav-user-section-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  font-size: 18px;
  color: rgb(var(--nav-user-section-link-clr));
}

.nav-user-section-item .dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.nav-user-section-notification-counter {
  position: absolute;
  top: 2px;
  right: -10px;
  height: 18px;
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 8px;
  font-weight: 700;
  border-radius: var(--rounded-full);
  border: 3px solid rgb(var(--section-bg));
  background: rgb(var(--danger));
  font-style: normal;
}

.nav-user-dropdown {
  margin-top: 11px;
}

@media screen and (max-width: 991px) {
  .nav-user-section {
    margin: 10px 0;
  }
}

/* SIDEBAR */

.sidebar-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  transition: all 0.2s linear;
  z-index: 10;
}

.sidebar {
  display: flex;
  flex-direction: column;
  background: rgb(var(--section-bg));
  border-right: 2px solid rgB(var(--section-border-clr));
  transition: all 0.2s linear;

  height: 100%;

  padding-top: 72px;

  width: 84px;
}

.sidebar .side-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  flex-grow: 1;
}

.sidebar .side-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  font-size: 22px;
  color: rgb(var(--secondary));
}

.sidebar .side-icon {
  text-align: center;
  width: 100%;
  border-left: 2px solid transparent;
  transition: all 0.2s linear;
}

.sidebar .side-link.active .side-icon {
  color: rgb(var(--white)) !important;
  border-color: rgb(var(--primary));
}

.sidebar .side-link:hover .side-icon {
  color: rgb(var(--primary));
}

@media screen and (max-width: 991px) {
  .sidebar-wrapper {
    background: rgb(0, 0, 0, 40%);
    transition: all 0.2s linear;
    backdrop-filter: blur(4px);
    inset: 0;
    z-index: 1000;
  }
  .sidebar {
    padding-top: 6px;
  }
  .sidebar-wrapper:not(.active) .sidebar {
    transform: translateX(-84px);
  }
  .sidebar-wrapper:not(.active) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

/* DROPDOWN */

.dropdown:not(.active) .dropdown-menu {
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  background: rgb(var(--section-bg));
  border: 2px solid rgb(var(--section-border-clr));
  transition: all 0.1s linear;
  top: calc(100% + 14px);
  border-radius: 12px;
  padding: 8px 0;
  white-space: nowrap;
  min-width: 100%;
  width: max-content;
  z-index: 1000;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-item {
  min-width: 160px;
}

.dropdown-link {
  display: block;
  padding: 10px 14px;
  border-left: 2px solid transparent;
  transition: all 0.2s linear;
  font-weight: 500;
}

.dropdown-link:hover {
  background: rgb(var(--white), 2%);
}

.dropdown-link-has-icon {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.dropdown-link-has-icon .dropdown-icon {
  width: 36px;
  text-align: center;
  font-size: 18px;
  color: rgb(var(--secondary));
}

.dropdown-divider {
  margin: 8px 0;
  height: 2px;
  background: rgb(var(--section-border-clr));
}

.dropdown-link-active {
  border-left-color: rgb(var(--primary));
  background: rgb(var(--white), 2%) !important;
}

/* FORM */

.form.form-has-icon.form-has-icon-left,
.form.form-has-icon.form-has-icon-right {
  position: relative;
}

.form.form-has-icon.form-has-icon-left .form-input,
.form.form-has-icon.form-has-icon-left .form-nav-input {
  padding-left: 34px;
}

.form.form-has-icon.form-has-icon-right .form-input,
.form.form-has-icon.form-has-icon-right .form-nav-input {
  padding-right: 34px;
}

.form.form-has-icon.form-has-icon-left .form-icon {
  position: absolute;
  top: 0;
  bottom: 0;

  width: 40px;

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

  color: rgb(var(--secondary));

  font-size: 17px;
  text-align: center;
}

.form.form-has-icon.form-has-icon-left .form-icon-left {
  left: 0;
}
.form.form-has-icon.form-has-icon-right .form-icon-right {
  right: 0;
}

.form-nav.form-has-icon.form-has-icon-left .form-icon {
  font-size: 14px;
  color: rgb(var(--secondary));
}
.form-nav .form-nav-input::placeholder {
  color: rgb(var(--secondary));
}

.form-input,
.form-nav-input {
  color: rgb(var(--form-text-clr));
}

.form-nav {
  display: flex;
  height: 64px;
}

.form-nav-parent {
  position: relative;
  width: 100%;
}

.form-nav-input {
  width: 100%;
  height: 100%;
  font-weight: 500;
}

.form-input {
  background: rgb(var(--form-bg));
  border: 2px solid rgb(var(--form-border-clr));
  border-radius: var(--rounded-md);
  padding: 0 14px;
  transition: all 0.2s linear;
  width: 100%;
  height: 40px;
}
.form-input:focus {
  border: 2px solid rgb(var(--form-border-clr-focus));
}

/* UTILITIES */

/* FLEX */

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

/* TEXT */

.text-xxs {
  font-size: 10px;
  line-height: 12px;
}
.text-xs {
  font-size: 12px;
  line-height: 16px;
}
.text-sm {
  font-size: 14px;
  line-height: 20px;
}
.text-md {
  font-size: 16px;
  line-height: 24px;
}
.text-lg {
  font-size: 18px;
  line-height: 28px;
}
.text-xl {
  font-size: 20px;
  line-height: 32px;
}
.text-2xl {
  font-size: 24px;
  line-height: 36px;
}
.text-3xl {
  font-size: 30px;
  line-height: 40px;
}
.text-4xl {
  font-size: 36px;
  line-height: 48px;
}
.text-5xl {
  font-size: 48px;
  line-height: 56px;
}
.text-6xl {
  font-size: 60px;
  line-height: 68px;
}
.text-7xl {
  font-size: 72px;
  line-height: 80px;
}
.text-8xl {
  font-size: 96px;
  line-height: 104px;
}

.text-start {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-end {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-primary {
  color: rgb(var(--primary)) !important;
}
.text-warning {
  color: rgb(var(--warning)) !important;
}
.text-danger {
  color: rgb(var(--danger)) !important;
}
.text-muted {
  color: rgb(var(--secondary)) !important;
}
.text-success {
  color: rgb(var(--success));
}
.text-white {
  color: rgb(var(--white));
}
.text-love {
  color: rgb(var(--love)) !important;
}
.text-witch {
  color: rgb(var(--witch));
}
.text-cash {
  color: rgb(var(--cash-clr)) !important;
}
.text-coin {
  color: rgb(var(--coin-clr)) !important;
}

.text-truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* FONT WEIGHT */

.fw-light {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}

a {
  cursor: pointer;
  color: inherit;
}

/* TOOLTIP */

.tippy-box {
  background: rgb(0, 0, 0);
  padding: 2px 4px;
  border-radius: var(--rounded-md);
  text-align: center;
  line-height: 20px;
}
.tippy-arrow {
  color: rgb(0, 0, 0);
}

/* CURRENCY */

.currency {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.currency-cash {
  background-image: url("/assets/img/cash.png");
}
.currency-coin {
  background-image: url("/assets/img/coin.png");
}

.currency-align {
  margin-top: -2px;
}

.currency-cash.currency-xs {
  height: 10px;
  width: 18px;
  background-size: 18px 10px;
}
.currency-cash.currency-sm {
  height: 12px;
  width: 22px;
  background-size: 22px 12px;
}
.currency-cash.currency-md {
  height: 14px;
  width: 24px;
  background-size: 24px 14px;
}
.currency-cash.currency-lg {
  height: 16px;
  width: 26px;
  background-size: 26px 16px;
}
.currency-cash.currency-xl {
  height: 18px;
  width: 28px;
  background-size: 28px 18px;
}
.currency-cash.currency-2xl {
  height: 20px;
  width: 30px;
  background-size: 30px 20px;
}

.currency-coin.currency-xs {
  height: 12px;
  width: 12px;
  background-size: 12px 12px;
}
.currency-coin.currency-sm {
  height: 14px;
  width: 14px;
  background-size: 14px 14px;
}
.currency-coin.currency-md {
  height: 16px;
  width: 16px;
  background-size: 16px 16px;
}
.currency-coin.currency-lg {
  height: 18px;
  width: 18px;
  background-size: 18px 18px;
}
.currency-coin.currency-xl {
  height: 20px;
  width: 20px;
  background-size: 20px 20px;
}
.currency-coin.currency-2xl {
  height: 22px;
  width: 22px;
  background-size: 22px 22px;
}

/* BUTTON */

.btn {
  position: relative;
  overflow: hidden;

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

  height: 40px;
  padding: 0 18px;
  border-radius: var(--rounded-md);
  color: rgb(255, 255, 255);

  cursor: pointer;

  font-weight: 500;
}
.btn:hover:before {
  opacity: 1;
  background: rgb(var(--white), 10%);
}
.btn:active:before {
  opacity: 1;
  background: rgb(var(--white), 20%);
}
.btn:before {
  opacity: 0;
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.2s linear;
}
.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  height: 34px;
  font-size: 14px;
}

.btn-loading {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.btn-loading::after {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.1);
  animation: btn-loader-spin 1s linear infinite;
  font-family: "Font Awesome 6 Pro";
  content: "\f3f4";
  position: absolute;
  inset: -40px;
  background: inherit;
}
@keyframes btn-loader-spin {
  0% {
    transform: rotate(0) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1.1);
  }
}

.btn-floating {
  position: fixed;
  bottom: 16px;
  right: 16px;

  z-index: 100;

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

  color: rgb(255, 255, 255);

  border-radius: var(--rounded-full);

  box-shadow: 0 1px 2px rgb(0, 0, 0, 40%);

  font-size: 22px;

  height: 60px;
  width: 60px;
}

button {
  color: inherit;
}

.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  margin-bottom: 2px;
  color: rgb(var(--secondary));
}

.btn-primary {
  background: rgb(var(--primary));
}
.btn-success {
  background: rgb(var(--success));
}
.btn-danger {
  background: rgb(var(--danger));
}
.btn-warning {
  background: rgb(var(--warning));
}
.btn-secondary {
  background: rgb(var(--secondary));
}
.btn-cash {
  background: rgb(var(--cash-clr));
  color: rgb(0, 0, 0);
}
.btn-coin {
  background: rgb(var(--coin-clr));
}

/* DIVIDER */

.divider {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  color: rgb(var(--secondary), 68%);
  gap: 10px;
}
.divider::before {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: rgb(var(--section-border-clr));
}
.divider::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background: rgb(var(--section-border-clr));
}

.section:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 2px solid rgb(var(--section-border-clr));
}
.section:not(:first-child) {
  padding-top: 16px;
}

.link {
  color: rgb(var(--primary-1));
  transition: all 0.2s linear;
  font-weight: 500;
}
.link:hover {
  color: rgb(var(--primary-2));
}

/* FOOTER */

.footer {
  background: rgb(var(--section-bg));
  border-top: 2px solid rgb(var(--section-border-clr));
  padding: 14px;
  position: sticky;
  top: 100%;
}

.footer .footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 14px;
}

.footer .footer-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.2s linear;
  color: rgb(var(--secondary));
}

.footer .footer-link:hover {
  color: rgb(var(--primary));
}

.footer .footer-social-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .footer-social-link {
  color: rgb(var(--white), 60%);
  transition: all 0.2s linear;
  font-size: 26px;
}

.footer .footer-social-link:hover {
  color: rgb(var(--white));
}

/* CARD */

.card {
  background: rgb(var(--section-bg));
  border: 2px solid rgb(var(--section-border-clr));
  border-radius: var(--rounded-2xl);
}
.card-body {
  padding: 20px;
}

/* WRAPPER & CONTAINER */

.wrapper {
  padding-top: 60px;
  padding-left: 84px;
}

.container {
  max-width: 1100px;
  padding: 40px 14px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .wrapper {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .has-mobile-nav-wrapper .navbar {
    border-bottom: 0;
  }
  .mobile-nav-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    top: 56px;
  }

  .mobile-nav-wrapper .card {
    border-radius: 0;
    margin-left: -2px;
    margin-right: -2px;
    border-top: none;
  }
  .mobile-nav-wrapper .card-body {
    padding-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.chips {
  display: flex;
}

.chips .chip-item {
  flex-shrink: 0;
}

.chip-nav {
  display: flex;
  flex-wrap: wrap;
}

.chip-nav .chip-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  height: 42px;
  padding: 0 24px;
  text-align: center;
  border-radius: var(--rounded-full);
  transition: all 0.2s linear;
}
.chip-nav .chip-link.active {
  background: rgb(var(--chip-bg)) !important;
  color: rgb(var(--chip-clr)) !important;
}
.chip-nav .chip-link:hover {
  background: rgb(var(--white), 4%);
}
.chip-nav .chip-link:active {
  background: rgb(var(--white), 6%);
}

.chip-btn {
  border-radius: var(--rounded-full);
  padding: 0 26px;
  height: 42px;
}

@media screen and (max-width: 991px) {
  .chips {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .chip-nav {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: scroll;
  }
  .chip-nav::-webkit-scrollbar {
    display: none;
  }
}

/* CAROUSEL */

.carousel {
  display: flex;
  align-items: center;
  gap: 6px;
}
.carousel-content {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  flex-grow: 1;
}
.carousel-content .carousel-item {
  flex: 0 0 auto;
  width: 50%;
}

.carousel-content-blog-posts {
  gap: 10px;
}

.carousel-content-blog-posts .carousel-item {
  width: 100%;
}

.carousel-btn {
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--rounded-full);
  transition: all 0.2s linear;
  color: rgb(var(--white));
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: rgb(var(--white), 4%);
}
.carousel-btn:active {
  background: rgb(var(--white), 6%);
}

/* MODAL */

.modal:not(.active) {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.modal:not(.active) .modal-content {
  transform: scale(1.1);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgb(0, 0, 0, 40%);
  transition: all 0.2s linear;
  backdrop-filter: blur(4px);
  z-index: 10000;
  overflow-y: scroll;
}

.modal-wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 420px;
  max-width: 620px;
  max-height: 100%;
}
@media screen and (max-width: 420px) {
  .modal-wrapper {
    min-width: 100%;
  }
}

.modal-wrapper-wide {
  min-width: 640px;
  max-width: 640px;
}
@media screen and (max-width: 640px) {
  .modal-wrapper-wide {
    min-width: 100%;
  }
}

.modal-content {
  padding: 10px;
  transition: all 0.2s linear;
}

.modal-card {
  background: rgb(var(--section-bg));
  border: 2px solid rgb(var(--section-border-clr));
  border-radius: var(--rounded-2xl);
}

.modal-header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgb(var(--section-border-clr));
  padding: 12px 20px;
}

.modal-card-body {
  white-space: initial;
  padding: 20px;
}

.modal-footer {
  display: flex;
  border-top: 2px solid rgb(var(--section-border-clr));
  padding: 12px 20px;
}

.modal-close-btn {
  height: 36px;
  width: 36px;
  margin-left: auto;
  margin-right: -4px;
  transition: all 0.2s linear;
  background: rgb(var(--white), 6%);
  border-radius: var(--rounded-full);
  color: rgb(var(--white));
}
.modal-close-btn:hover {
  background: rgb(var(--white), 8%);
}
.modal-close-btn:active {
  background: rgb(var(--white), 10%);
}

/* ALERTS */

.notification-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;

  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;

  z-index: 100000000;

  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notification-wrapper .notification {
  display: flex;
  align-items: center;

  gap: 12px;

  max-width: 360px;

  box-shadow: 0 1px 2px rgb(0, 0, 0, 60%);

  transition: all 0.4s linear;

  opacity: 1;

  padding: 16px;
  border-radius: var(--rounded-md);

  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.notification-wrapper .notification:not(.active) {
  opacity: 0;
}
.notification-danger {
  background: rgb(var(--danger));
}
.notification-success {
  background: rgb(var(--success));
}

@media screen and (max-width: 720px) {
  .notification-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
}

/* BORDER COLOR */

.border-l-primary {
  border-left-color: rgb(var(--primary));
}
.border-l-success {
  border-left-color: rgb(var(--success));
}
.border-l-danger {
  border-left-color: rgb(var(--danger));
}
.border-l-warning {
  border-left-color: rgb(var(--danger));
}
.border-l-secondary {
  border-left-color: rgb(var(--secondary));
}
.border-l-witch {
  border-left-color: rgb(var(--secondary));
}

/* SHAPES */

.headshot {
  background: rgb(var(--white), 6%);
  border-radius: var(--rounded-full);
}

.dropdown-notification-counter {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 14px;
  width: 14px;

  background: rgb(var(--danger));
  border-radius: var(--rounded-full);

  font-size: 10px;
  color: rgb(255, 255, 255);
  font-weight: 700;

  margin-left: 6px;

  vertical-align: middle;
}

.rounded-full {
  border-radius: var(--rounded-full);
}

/* LETTER SPACING */

.ls-xs {
  letter-spacing: 0.2px;
}
.ls-sm {
  letter-spacing: 0.4px;
}
.ls-md {
  letter-spacing: 0.6px;
}

/* SPECIAL */

.landing-page {
  background: url("/assets/img/cover.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: rgb(255, 255, 255);
  text-shadow: 0 1px 4px rgb(0, 0, 0);
}
.landing-page::before {
  content: "";
  position: fixed;
  background: rgb(0, 0, 0, 20%);
  backdrop-filter: blur(4px);
  z-index: -1;
  inset: 0;
}

.landing-page .btn {
  box-shadow: 0 1px 4px rgb(0, 0, 0, 40%);
  text-shadow: none;
}

.footer-text {
  position: fixed;
  bottom: 14px;
  font-size: 14px;
  left: 50%;
  transform: translate(-50%);
  text-shadow: 0 1px 4px rgb(0, 0, 0);
}

.landing-page .text-muted {
  color: rgb(200, 200, 200) !important;
}

.landing-page .container {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.landing-page .navbar {
  padding: 20px;
}

.landing-page .navbar img {
  filter: drop-shadow(1px 1px 2px rgb(0, 0, 0, 80%));
}

.landing-page .navbar,
.landing-page .card {
  background: transparent;
  border-color: transparent;
}

.landing-page .container .row {
  flex-grow: 1;
}

.auth-page {
  background: url("/assets/img/cover.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: rgb(255, 255, 255);
}
.auth-page::before {
  content: "";
  position: fixed;
  background: rgb(0, 0, 0, 20%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
  inset: 0;
}

.auth-page .auth-logo {
  filter: drop-shadow(1px 1px 2px rgb(0, 0, 0, 80%));
}

.auth-page .form-input {
  background: rgb(var(--form-bg), 60%);
  border-color: rgb(var(--form-border-clr), 80%);
}

.auth-page .form-input:focus {
  border-color: rgb(var(--form-border-clr-focus), 80%);
}

.auth-page .container {
  position: relative;
  height: 100%;
  max-width: 100%;
}

.auth-page .auth-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1000;
  max-width: 100%;
  padding: 10px 18px;
  max-height: 100%;
  width: 420px;
  transform: translate(-50%, -50%);
}
.auth-page .card {
  background: rgb(0, 0, 0, 50%);
  box-shadow: 0 0 0 2px rgb(255, 255, 255, 12%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}

.auth-floating-btn {
  position: absolute;
  top: 20px;
  left: 20px;
}

.auth-page .divider::before,
.auth-page .divider::after {
  background: rgb(255, 255, 255, 12%);
}

.blog-thumbnail {
  border-radius: var(--rounded-lg);
  background-size: cover;
  height: 120px;
}

.blog-thumbnail.blog-no-thumbnail {
  background: rgb(var(--section-border-clr));
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-thumbnail.blog-no-thumbnail::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f059";
  color: rgb(var(--secondary));
  font-size: 50px;
}

.min-w-0 {
  min-width: 0;
}
