.BusinessLayout .__Content {
  background: #f5f7f9 !important;
}

.BusinessLayout .__Menu {
  background: #f5f7f9 !important;
}

.BestUserBadge {
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
  gap: 1rem;
}
.BestUserBadge .UserName {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.BestUserBadge .UserName span:nth-child(1) {
  font-weight: 600;
  font-size: 16px;
}
.BestUserBadge .UserName span:nth-child(2) {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.BestUserBadge .Badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  display: inline-flex;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  background: #000;
  border-radius: 8px;
  padding: 0.2rem 0.3rem;
}

.__BusinessCenterSmallTagsItems {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}
.__BusinessCenterSmallTagsItems .TagItem.NoPadding {
  padding: 0;
}
.__BusinessCenterSmallTagsItems .TagItem {
  padding: 1rem;
  display: flex;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  gap: 1rem;
}
.__BusinessCenterSmallTagsItems .TagItem .TagItemIcon {
  display: flex;
}
.__BusinessCenterSmallTagsItems .TagItem .TagItemName {
  display: flex;
  flex-direction: column;
}
.__BusinessCenterSmallTagsItems .TagItem .TagItemName span:nth-child(1) {
  font-size: 20px;
  font-weight: 600;
}

.BusinessLayout .__Menu .__MenuItems .__MenuItemBeta:hover {
  background: #fff !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.UploadFile .__Status {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.UploadFile .__Status .StatusItem {
  font-weight: 600;
  display: flex;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}
.UploadFile {
  position: relative;
  display: flex;
  width: 100%;
  border: 1px solid #e2e2e2;
  background: #f9f9f9;
  height: 200px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.DataItems {
  display: flex;
  gap: 0.4rem;
  flex-direction: column;
  padding: 1rem 0;
}
.DataItems .DataItem span:nth-child(1) {
  font-weight: 600;
}
.DataItems .DataItem {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.progress-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  font-family: Arial, sans-serif;
}
.progress-wrapper .progress-bar {
  width: 100%;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: linear-gradient(to bottom, #f3f3f3, #e0e0e0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 2px 2px;
}
.progress-wrapper .progress-fill {
  height: 100%;
  width: var(--progress);
  border-radius: 20px;
  position: relative;
  transition: width 0.4s ease, background 0.3s ease;
  background: linear-gradient(to bottom, rgb(92.7792, 218.4208, 146.0576), #2ecc71);
}
.progress-wrapper .progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25) 0px, rgba(255, 255, 255, 0.25) 12px, transparent 12px, transparent 24px);
  pointer-events: none;
}
.progress-wrapper .pin {
  position: absolute;
  top: 22px;
  transform: translateX(-50%);
  text-align: center;
}
.progress-wrapper .pin .line {
  width: 1px;
  height: 10px;
  background: #ccc;
  display: block;
  margin: 0 auto 4px auto;
}
.progress-wrapper .pin .label {
  font-size: 11px;
  font-weight: 500;
  color: #6b5b4b;
  white-space: nowrap;
}
.progress-wrapper .pin.half {
  left: 50%;
}
.progress-wrapper .pin.almost {
  left: 90%;
}
.progress-wrapper {
  /* ===== STATES ===== */
}
.progress-wrapper.is-half .progress-fill {
  background: linear-gradient(to bottom, rgb(255, 152.8, 76.5), #FF6D00);
}
.progress-wrapper.is-almost .progress-bar {
  border: 1px solid #FFAB91;
  background: rgb(255, 242.3, 244.763362069);
}
.progress-wrapper.is-almost .progress-fill {
  background: linear-gradient(to bottom, rgb(255, 74, 109.1077586207), #FF1744);
}
.progress-wrapper.is-almost .pin.half .line {
  background: #FF6D00;
}
.progress-wrapper.is-almost .pin.almost .line {
  background: #FF1744;
}

.CampaignItem {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.CampaignItem .__Tags {
  display: flex;
  gap: 0.5rem;
}
.CampaignItem .__Tags .Tag.Violet {
  border: 1px solid #B388FF;
  background: rgb(250.6571428571, 248.2, 255);
}
.CampaignItem .__Tags .Tag:hover {
  border: 1px solid #aaa;
}
.CampaignItem .__Tags .Tag {
  cursor: pointer;
  display: inline-flex;
  height: 24px;
  padding: 0 0.5rem;
  border-radius: 100px;
  background: #fff;
  align-items: center;
  font-weight: 600;
  font-size: 11px;
  border: 1px solid #ccc;
}
.CampaignItem .__Title {
  font-weight: 600;
  font-size: 20px;
}

.TabSwitchSelector {
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  gap: 1.5rem;
}
.TabSwitchSelector .Item span.Red {
  border: 1px solid #FF1744;
  background: rgb(255, 227, 232.4310344828);
}
.TabSwitchSelector .Item span {
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  height: 24px;
  width: 24px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.TabSwitchSelector .Item {
  gap: 1rem;
  color: #000;
}
.TabSwitchSelector .Item.active, .TabSwitchSelector .Item:hover {
  border-bottom: 1px solid #aaa;
  cursor: pointer;
  font-weight: 500;
}
.TabSwitchSelector .Item {
  display: inline-flex;
  height: 50px;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
}

.__BusinessCenter .tabs {
  display: inline-flex;
  align-items: center;
  background: #f4f4f5;
  border-radius: 8px;
  padding: 4px;
  gap: 2px;
}
.__BusinessCenter {
  /* Tab Button */
}
.__BusinessCenter .tab {
  position: relative;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #71717a;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.__BusinessCenter .tab:hover {
  color: #52525b;
}
.__BusinessCenter .tab.active {
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.__BusinessCenter .tab:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}

.__BusinessCenterSplitLayout {
  display: flex;
  gap: 2rem;
}

.__BusinessCenterChartByActivity {
  display: flex;
  overflow: hidden;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  min-height: 100px;
  flex-direction: column;
}
.__BusinessCenterChartByActivity .__TitleBar.SpaceBetween {
  justify-content: space-between;
}
.__BusinessCenterChartByActivity .__TitleBar {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: 20px;
  height: 60px;
  border-bottom: 1px solid #eee;
}
.__BusinessCenterChartByActivity .__ContentBar {
  display: flex;
  min-height: 100px;
}

.__BusinessCenterInviteContent {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.__BusinessCenterInviteContent .TopItems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.__BusinessCenterInviteContent .TopItems .TopItem .TopItemTitle {
  font-weight: 600;
  font-size: 18px;
}
.__BusinessCenterInviteContent .TopItems .TopItem .TopItemValue {
  font-size: 30px;
  font-weight: 500;
}
.__BusinessCenterInviteContent .TopItems .TopItem {
  gap: 0.5rem;
  flex-direction: column;
  padding: 1.5rem;
}
.__BusinessCenterInviteContent .TopItems .TopItem:nth-child(1), .__BusinessCenterInviteContent .TopItems .TopItem:nth-child(2) {
  border-right: 1px solid #eee;
}
.__BusinessCenterInviteContent .TopItems .TopItem {
  display: flex;
  border-bottom: 1px solid #eee;
}
.__BusinessCenterInviteContent .InviteChart {
  display: flex;
  width: 100%;
  padding-top: 1rem;
}

.ChangeButton {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
.ChangeButton .ButtonName {
  color: #39a15b;
  font-weight: 600;
  font-size: 18px;
}
.ChangeButton .ButtonIcon {
  display: flex;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #39a15b;
  padding: 0.2rem;
  justify-content: center;
  align-items: center;
  color: #fff;
}

ul.PaginationUlList li {
  border-radius: 100px !important;
  min-width: 40px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
ul.PaginationUlList li:hover {
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
ul.PaginationUlList li.active-page {
  background: #0012ff;
}

.P2EPointsOut .Points {
  font-size: 9px;
  font-weight: 600;
  line-height: 9px;
}
.P2EPointsOut {
  display: inline-flex;
  background: #FFF8E1;
  padding: 0.1rem 0.2rem 0.1rem 0.1rem;
  border-radius: 100px;
  font-size: 9px;
  line-height: 9px;
  align-items: center;
  gap: 0.3rem;
}

.__BusinessCenterUserAvatar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.__BusinessCenterUserAvatar .__User .__UserWithPoints .P2EPoints .Points {
  font-size: 9px;
  font-weight: 600;
  line-height: 9px;
}
.__BusinessCenterUserAvatar .__User .__UserWithPoints .P2EPoints {
  display: inline-flex;
  background: #FFF8E1;
  padding: 0.1rem 0.2rem 0.1rem 0.1rem;
  border-radius: 100px;
  font-size: 9px;
  line-height: 9px;
  align-items: center;
  gap: 0.3rem;
}
.__BusinessCenterUserAvatar .__User .__UserWithPoints {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.__BusinessCenterUserAvatar .__User {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.__BusinessCenterUserAvatar .__User span {
  color: #666;
  font-size: 9px;
}
.__BusinessCenterUserAvatar b {
  font-size: 18px;
}

.ToolTipCoins {
  display: flex;
  flex-direction: column;
}
.ToolTipCoins .TipCoins {
  display: flex;
  padding: 0 0.3rem;
  align-items: center;
  gap: 0.3rem;
}
.ToolTipCoins .TipPoints {
  display: flex;
  padding: 0.3rem;
  flex-direction: column;
}
.ToolTipCoins .TipPoints span {
  font-size: 18px;
  font-weight: 600;
}
.ToolTipCoins .TipDate {
  display: flex;
  padding: 0.3rem;
  border-bottom: 1px solid #eee;
}

.Button-Grey {
  background: #FAFAFA;
  color: #424242;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 30px;
  padding: 0 0.6rem;
  font-weight: 600;
}

.Button-Orange {
  background: rgba(255, 209, 128, 0.5);
  color: #FF6D00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 30px;
  padding: 0 0.6rem;
  font-weight: 600;
}

.Button-Green {
  background: rgba(185, 246, 202, 0.5);
  color: #00C853;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 30px;
  padding: 0 0.6rem;
  font-weight: 600;
}

.Button-Red {
  background: rgba(255, 138, 128, 0.5);
  color: #D50000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 30px;
  padding: 0 0.6rem;
  font-weight: 600;
}

.__BusinessCenterPageTopBoxItems.Four {
  grid-template-columns: repeat(4, 1fr);
}
.__BusinessCenterPageTopBoxItems {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
.__BusinessCenterPageTopBoxItems .BoxItem {
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.__BusinessCenterPageTopBoxItems .BoxItem .__BoxItemDetail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}
.__BusinessCenterPageTopBoxItems .BoxItem .__BoxItemDetail .__BoxItemDetailValue {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 30px;
}
.__BusinessCenterPageTopBoxItems .BoxItem .__BoxItemDetail .__BoxItemDetailTrend {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: flex-end;
}
.__BusinessCenterPageTopBoxItems .BoxItem .__BoxItemDetail .__BoxItemDetailTrend b {
  color: #666;
  font-size: 11px;
}
.__BusinessCenterPageTopBoxItems .BoxItem .__BoxItemName {
  display: flex;
  font-weight: 600;
  font-size: 20px;
}

.__BusinessCenterHeader {
  display: flex;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  height: 60px;
  min-height: 60px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.__BusinessCenterPageTitle.addPaddingTop {
  padding-top: 2rem;
}
.__BusinessCenterPageTitle {
  display: flex;
  width: 100%;
  font-weight: 700;
  font-size: 34px;
  color: #3f4d58;
}

/*# sourceMappingURL=plus.css.map */
