.dashboard-page > .header {
  background: white;
  max-width: 480px;
  margin: auto;
  background: linear-gradient(180deg, #5b42f5 0%, rgba(255, 255, 255, 0) 100%);
}
.dashboard-title-and-avatar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  position: relative;
}
.dashboard-title-and-avatar .oval-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.dashboard-title-and-avatar .oval-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
}
.left-menu-cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  z-index: 10;
}
.dashboard-title-and-avatar .profile-pic {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.dashboard-title-and-avatar > div:nth-child(1) span {
  color: #027274;
}
.dashboard-title-and-avatar > div:nth-child(2) {
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}
.coins-icon {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}
.coins-icon h5 {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  display: flex;
  gap: 4px;
  align-items: center;
  color: #fff;
}
.header > .create-collection-banner {
  display: flex;
  justify-content: center;
}
.header > .create-collection-banner img {
  width: 100%;
  max-width: 375px;
}
.banner-preview-content {
  padding-top: 30px;
}
.banner-preview-content img {
  width: 100%;
}

.whatsapp-CTA {
  display: none;
  max-width: 800px;
  margin: auto;
  position: fixed;
  bottom: 74px;
  right: 16px;
  z-index: 100;
}
.whatsapp-CTA > div {
  background: #6fc064;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  filter: drop-shadow(0px 3.733px 3.733px rgba(0, 0, 0, 0.15));
}
.feed-card.inspiration .hotel-info > h1 {
  color: var(--light-text-primary, #0f232f);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  margin-bottom: 6px;
  margin-top: 10px;
}
.feed-card.inspiration .hotel-info > h3 {
  color: var(--light-text-secondary, #757c8d);
  font-size: 12px;
  font-weight: 300;
  display: flex;
  gap: 2px;
  align-items: center;
  margin: 0;
  margin-bottom: 8px;
}
.feed-card.inspiration .hotel-info > .rating {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.feed-card.inspiration .hotel-info > h4 {
  color: var(--Light-Text-Secondary, #757c8d);
  font-family: Figtree;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.feed-card.inspiration .hotel-info > .pricing {
  display: flex;
  gap: 6px;
  align-items: center;
}
.feed-card.inspiration .hotel-info > .pricing > h2 {
  color: var(--Light-Text-Primary, #0f232f);
  font-feature-settings:
    "clig" off,
    "liga" off;
  font-family: Figtree;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px; /* 129.412% */
  margin: 0;
}
.feed-card.inspiration .hotel-info > .pricing > h3 {
  color: var(--Light-Text-Secondary, #757c8d);
  font-family: Figtree;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 145.455% */
  text-decoration: line-through;
  margin: 0;
}
.scroll-down-indicator {
  position: fixed;
  bottom: 70px;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 72px;
  max-width: 480px;
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
  left: 50%;
  gap: 4px;
  padding-bottom: 10px;
  align-items: end;
  background: linear-gradient(0deg, #0f232f 0%, rgba(15, 35, 47, 0.8) 30%, rgba(15, 35, 47, 0) 70%);
}
.scroll-down-indicator h3 {
  color: var(--Light-Text-Tertiary, #fff);
  font-feature-settings:
    "clig" off,
    "liga" off;
  font-family: Figtree;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 3px;
}
.scroll-down-indicator img {
  animation: MoveUpDown 500ms linear infinite;
  position: relative;
}
@keyframes MoveUpDown {
  0%,
  100% {
    bottom: -1px;
  }
  50% {
    bottom: 1px;
  }
}
.scroll-down-indicator {
  transition: opacity 1s;
  opacity: 1;
}

.scroll-down-indicator.fade-out {
  opacity: 0;
}

.banner-cards-cont {
  width: 100%;
  padding: 16px 16px 0 16px;
  background: white;
  max-width: 480px;
  margin: auto;
}
.banner-cards-cont > h3 {
  color: var(--Light-Text-Primary, #0f232f);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.creator-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}
.creator-profile img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 50%;
}
.creator-profile > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.creator-profile > div p {
  color: var(--Light-Text-Tertiary-80, rgba(255, 255, 255, 0.8));
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}
.creator-profile > div h3 {
  color: var(--Light-Text-Tertiary, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
