@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box; }

.fullwidth {
  width: 100%;
  float: left; }

a {
  text-decoration: none;
  transition: all  0.3s ease;
  cursor: pointer; }

html {
  padding: 0;
  margin: 0; }

body {
  width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  float: left;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  /*
    &::-webkit-scrollbar {
		width: 4px;
	  }
 	&::-webkit-scrollbar-thumb {
		background-color: #A6A5A3;
		border-radius: 2px;
	  }
   */ }
  body .container {
    max-width: 1200px; }

.page-content {
  width: 100%;
  display: flex; }
  .page-content .menuwrapper {
    background: linear-gradient(184deg, #0F170D 3.2%, #21351B 151.63%);
    width: 290px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 100vh;
    padding: 62px 37px 35px 37px; }
    .page-content .menuwrapper .menuInner {
      display: flex;
      flex-direction: column;
      gap: 30px;
      justify-content: space-between;
      height: 100%; }
      .page-content .menuwrapper .menuInner a {
        display: flex;
        padding: 8px 12px;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 4px;
        font-family: "Inter", sans-serif;
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal; }
        .page-content .menuwrapper .menuInner a img {
          width: 24px;
          flex-shrink: 0; }
        .page-content .menuwrapper .menuInner a.active {
          border: 1px solid #9DE992;
          background: linear-gradient(273deg, #38A927 50.63%, #289317 110.38%); }
      .page-content .menuwrapper .menuInner .menuUpper {
        height: 100%;
        display: flex;
        gap: 45px;
        flex-direction: column; }
        .page-content .menuwrapper .menuInner .menuUpper .mainmenu {
          display: flex;
          flex-direction: column;
          gap: 8px; }
  .page-content .maincontent {
    width: 100%;
    display: flex;
    flex-direction: column; }
    .page-content .maincontent .contentHeader {
      width: 100%;
      border-bottom: 1px solid #CDCDCD;
      background: #FFF;
      display: inline-flex;
      padding: 18px 39px 9px 38px;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px; }
      .page-content .maincontent .contentHeader .userInfo {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 4px; }
        .page-content .maincontent .contentHeader .userInfo h3 {
          padding: 0;
          margin: 0;
          color: var(--Gray-900, #101828);
          font-size: 20px;
          font-style: normal;
          font-weight: 600;
          line-height: 24px;
          /* 120% */ }
        .page-content .maincontent .contentHeader .userInfo span {
          color: var(--Gray-500, #667085);
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px;
          /* 171.429% */ }
    .page-content .maincontent .userLinks {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 20px;
      width: 50%;
      flex-shrink: 0; }
      .page-content .maincontent .userLinks .toggle-view {
        position: fixed;
        top: 85px;
        right: 20px;
        background: #3498db;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        z-index: 1000; }
        .page-content .maincontent .userLinks .toggle-view:hover {
          background: #2980b9; }
      .page-content .maincontent .userLinks .searchBox {
        flex: 1;
        max-width: 400px; }
        .page-content .maincontent .userLinks .searchBox input {
          display: flex;
          width: 100%;
          height: 44px;
          justify-content: center;
          align-items: center;
          background: url("../images/icon-search.svg") left 14px center no-repeat;
          padding: 10px 14px 10px 40px;
          color: var(--Gray-500, #667085);
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px;
          /* 150% */
          border-radius: 8px;
          border: 1px solid var(--Gray-300, #D0D5DD);
          box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05); }
      .page-content .maincontent .userLinks .linkIcons {
        display: flex;
        gap: 12px;
        align-items: center; }
        .page-content .maincontent .userLinks .linkIcons a img {
          width: 40px; }
    .page-content .maincontent .content-info {
      width: 100%;
      padding: 45px 32px;
      display: flex;
      height: calc(100vh - 100px);
      overflow-y: auto; }
      .page-content .maincontent .content-info::-webkit-scrollbar {
        width: 10px;
        background: #ecf0f1; }
      .page-content .maincontent .content-info::-webkit-scrollbar-thumb {
        background-color: #289317;
        border-radius: 5px; }
      .page-content .maincontent .content-info iframe {
        width: 100%;
        height: 100%;
        border: 0; }

.graph-page .graph-header {
  background: #2e4a6f;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0; }
  .graph-page .graph-header .tier-box {
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase; }
    .graph-page .graph-header .tier-box.active {
      background: #e74c3c; }
    .graph-page .graph-header .tier-box.premium-select {
      background: #27ae60; }
  .graph-page .graph-header h2 {
    margin: 0;
    font-size: 20px; }
  .graph-page .graph-header span {
    font-size: 12px;
    color: #ccc; }
.graph-page .filters {
  background: #ecf0f1;
  padding: 15px 20px;
  border-bottom: 1px solid #bdc3c7;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap; }
  .graph-page .filters label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px; }
  .graph-page .filters select {
    padding: 8px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 14px;
    background: white; }
.graph-page .dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px; }
.graph-page .card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 15px; }
  .graph-page .card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #2e4a6f; }
  .graph-page .card .growth-info {
    height: 300px;
    background: #f8f9fa;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6c757d; }
    .graph-page .card .growth-info p {
      text-align: center;
      padding: 40px;
      width: max-content;
      margin: 0;
      font-size: 14px;
      color: #6c757d;
      line-height: 30px; }
.graph-page .bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 10px 10px 40px 10px;
  background: #f8f9fa;
  height: 300px; }
  .graph-page .bar-chart .bar {
    background: linear-gradient(to top, #27ae60, #58d68d);
    width: 100%;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease; }
    .graph-page .bar-chart .bar strong {
      position: absolute;
      bottom: -35px;
      font-size: 11px;
      color: #2c3e50;
      font-weight: 600;
      max-width: 60px;
      left: 50%;
      transform: translate(-50%, 0); }
    .graph-page .bar-chart .bar span {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      color: white;
      font-weight: bold;
      font-size: 12px; }
    .graph-page .bar-chart .bar:hover {
      transform: scale(1.02); }
.graph-page .market-share {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 10px 10px 40px 10px;
  background: #f8f9fa;
  height: 300px; }
  .graph-page .market-share .share {
    flex: 1;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    transition: 0.3s; }
    .graph-page .market-share .share.unilever {
      background: linear-gradient(to top, #27ae60, #58d68d);
      height: 45%; }
    .graph-page .market-share .share.others {
      background: linear-gradient(to top, #95a5a6, #bdc3c7);
      height: 55%; }
    .graph-page .market-share .share.green {
      background: linear-gradient(to top, #27ae60, #58d68d); }
    .graph-page .market-share .share.red {
      background: linear-gradient(to top, #e74c3c, #ec7063); }
    .graph-page .market-share .share.yellow {
      background: linear-gradient(to top, #f39c12, #f7dc6f); }
    .graph-page .market-share .share strong {
      position: absolute;
      bottom: -35px;
      font-size: 11px;
      color: #2c3e50;
      font-weight: 600;
      max-width: 100px;
      width: max-content;
      left: 50%;
      transform: translate(-50%, 0); }
    .graph-page .market-share .share span {
      position: absolute;
      bottom: 10px;
      width: 100%;
      text-align: center;
      color: white;
      font-weight: bold;
      font-size: 12px; }
    .graph-page .market-share .share:hover {
      transform: scale(1.02); }
.graph-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px; }
  .graph-page table th, .graph-page table td {
    border-bottom: 1px solid #eee;
    padding: 8px;
    text-align: left; }
  .graph-page table th {
    background: #f9fafc; }
  .graph-page table td.growth.negative {
    color: red; }
  .graph-page table td.growth.positive {
    color: green; }
  .graph-page table tr.highlighted {
    background: #fff3cd; }
.graph-page .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px; }
  .graph-page .stats .stat {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px; }
    .graph-page .stats .stat h3 {
      font-size: 32px;
      font-weight: 700;
      padding: 0;
      margin: 0; }
    .graph-page .stats .stat span {
      font-size: 14px;
      opacity: 0.9; }
    .graph-page .stats .stat p {
      font-size: 12px;
      padding: 0;
      margin: 0;
      font-weight: 300; }
      .graph-page .stats .stat p.success {
        color: #2ecc71; }
      .graph-page .stats .stat p.fail {
        color: #e74c3c; }
.graph-page .notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 5px;
  padding: 15px;
  margin: 20px;
  text-align: center;
  color: #856404;
  font-weight: 500; }
  .graph-page .notice.premium {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724; }

.premium-select {
  display: none; }

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