@import url("https://fonts.googleapis.com/css?family=Manrope:300,700");
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800&display=swap");
.dashboard-banner {
  background-color: #FFB82A;
  border-radius: 20px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  margin-top: 50px;
}
.dashboard-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 50%;
}
.dashboard-banner .banner-content h2 {
  font-weight: 700;
  font-size: 2.2em;
  color: #151515;
}
.dashboard-banner .banner-content h2 .metric-icon {
  height: 20px;
}
.dashboard-banner .banner-content h3 {
  font-weight: 600;
  font-size: 1em;
  color: #151515;
}
.dashboard-banner .banner-content .list-features {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.dashboard-banner .banner-content .list-features .list-column {
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.dashboard-banner .banner-content .list-features .list-column .feature {
  color: #151515;
  font-weight: 600;
  display: flex;
  gap: 4px;
  align-items: center;
}
.dashboard-banner .banner-content .list-features .list-column .feature .feature-icon {
  width: 20px;
  text-align: center;
}
.dashboard-banner[data-disclosure=true] {
  background-color: #f6bb45;
}
.dashboard-banner[data-disclosure=true] .banner-content h2 {
  font-size: 1.7em;
  color: #F9F9F9;
}
.dashboard-banner[data-disclosure=true] .banner-content h3 {
  font-size: 1.3em;
}
.dashboard-banner[data-disclosure=true] .banner-content h3 span {
  color: #F9F9F9;
}
.dashboard-banner .banner-images {
  width: 30%;
  height: 100%;
}
.dashboard-banner .banner-images .main-image {
  background-image: url(../img/meli-woman.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 5%;
  height: 100%;
}
.dashboard-banner .banner-images[data-disclosure=true] .main-image {
  background-image: url(../img/meli-woman2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 70%;
  height: 120%;
}
@media screen and (max-width: 550px) {
  .dashboard-banner {
    flex-direction: column;
    height: 480px;
    align-items: center;
    padding: 24px 24px 0 24px;
    gap: 24px;
  }
  .dashboard-banner .banner-images {
    width: 100%;
  }
  .dashboard-banner .banner-images .main-image {
    background-position: top;
  }
  .dashboard-banner .banner-content {
    width: 100%;
  }
}
@media screen and (min-width: 550px) and (max-width: 1024px) {
  .dashboard-banner .banner-images {
    width: 50%;
  }
}
@media screen and (min-width: 2000px) {
  .dashboard-banner .banner-images {
    width: 20%;
    background-size: unset;
    background-position: 90% -10%;
  }
  .dashboard-banner .banner-images .main-image {
    background-size: unset;
    background-position: 50% 10%;
  }
}

.home-dashboard {
  display: none;
}
.home-dashboard .dashboard-sections .round-card {
  width: 100%;
}
.home-dashboard .dashboard-sections .round-card .title-container {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.home-dashboard .dashboard-sections .round-card .title-container img {
  vertical-align: middle;
  margin-right: 2px;
}
.home-dashboard .dashboard-sections .round-card p {
  text-align: left;
}
.home-dashboard .dashboard-sections .round-card.loading {
  cursor: default;
}
.home-dashboard .dashboard-sections .round-card.loading .value {
  animation: loading 1s infinite;
  width: 100%;
  text-align: left;
  color: transparent;
}
.home-dashboard .dashboard-sections .round-card.error {
  border-color: red;
  display: none;
}
@media screen and (max-width: 1300px) {
  .home-dashboard .dashboard-sections {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .home-dashboard .dashboard-sections {
    flex-direction: column;
  }
}
.home-dashboard .dashboard-charts {
  display: flex;
  margin-top: 12px;
  gap: 12px;
}
.home-dashboard .dashboard-charts .charts-divider {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .home-dashboard .dashboard-charts .charts-divider {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .home-dashboard .dashboard-charts {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .home-dashboard .dashboard-charts {
    flex-direction: column;
  }
  .home-dashboard .dashboard-charts .round-card {
    width: 100%;
  }
  .home-dashboard .dashboard-charts .round-card .data-container {
    height: 100%;
    overflow: auto;
  }
  .home-dashboard .dashboard-charts .round-card .data-container .chart-container {
    gap: 8px;
  }
  .home-dashboard .dashboard-charts .round-card .data-container .values-container {
    gap: 8px;
  }
  .home-dashboard .dashboard-charts .charts-divider {
    width: 100%;
  }
  .home-dashboard .dashboard-charts .charts-divider .round-card:nth-child(1) {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-dashboard .dashboard-charts .charts-divider .round-card:nth-child(2) .data-container .values-container {
    justify-content: space-between;
  }
}

.dashboard-sections {
  margin-top: 12px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
.dashboard-sections .chart-holder {
  height: 100%;
  margin-top: 15px;
}
.dashboard-sections .section {
  display: flex;
  gap: 12px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 6px;
}
.dashboard-sections .section:first-child {
  overflow: auto;
}
.dashboard-sections .section .round-card {
  flex-grow: 1;
  padding: 20px 30px;
}

[data-card-name=entries-period] {
  width: 100%;
  height: 400px;
}
[data-card-name=entries-period] .data-container {
  display: flex;
  gap: 16px;
  height: 90%;
  margin-top: 8px;
}
[data-card-name=entries-period] .data-container .chart-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
[data-card-name=entries-period] .data-container .chart-container .bar-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
[data-card-name=entries-period] .data-container .chart-container .bar-container .bar {
  display: flex;
  flex-direction: column;
  background-color: #FFB82A;
  border-radius: 20px;
  width: 12px;
  transition: height 0.5s ease-in-out;
}
[data-card-name=entries-period] .data-container .values-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-card-name=entries-period-hor] {
  width: 100%;
}
[data-card-name=entries-period-hor] .data-container {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  gap: 16px;
}
[data-card-name=entries-period-hor] .data-container .chart-container {
  flex-direction: column;
  align-items: flex-start;
}
[data-card-name=entries-period-hor] .data-container .chart-container .bar-container {
  height: 100%;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
  gap: 8px;
}
[data-card-name=entries-period-hor] .data-container .chart-container .bar-container span {
  width: 150px;
}
[data-card-name=entries-period-hor] .data-container .chart-container .bar-container .bar {
  display: flex;
  flex-direction: column;
  background-color: #FFB82A;
  border-radius: 20px;
  height: 12px;
}
[data-card-name=entries-period-hor] .data-container .values-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
}

[data-card-name=credits] {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  font-weight: 600;
  flex-direction: column;
}
[data-card-name=credits] .counts {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}
[data-card-name=credits] .credit-list {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-direction: column;
}
[data-card-name=credits] .bonus-msg {
  flex-grow: 1;
}
[data-card-name=credits] .credit-item {
  padding: 10px;
  border: 1px solid silver;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
[data-card-name=credits] .credit-item span {
  vertical-align: middle;
}
[data-card-name=credits] .time-msg {
  font-size: 0.6em !important;
  opacity: 0.7;
}
[data-card-name=credits] .credits-ball, [data-card-name=credits] .plan-ball {
  width: 16px;
  height: 16px;
  background-color: #ffd85b;
  display: inline-block;
  border-radius: 100px;
  margin-right: 4px;
  vertical-align: middle;
}

@keyframes loading {
  0% {
    background: #ffe180;
  }
  50% {
    background: rgba(255, 204, 42, 0);
  }
  100% {
    background: #ffe180;
  }
}
.home-onboarding {
  display: none;
}
.home-onboarding .round-card {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home-onboarding .round-card .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.home-onboarding .round-card .content .progress {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-onboarding .round-card .content .progress .quota {
  background-color: #8d8d8d;
  border-radius: 6px;
  width: 200px;
  height: 5px;
}
.home-onboarding .round-card .content .progress .quota .used {
  height: 100%;
  width: 0%;
  background-color: #FFB82A;
  border-radius: 6px;
}
@media screen and (max-width: 500px) {
  .home-onboarding .round-card .content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-onboarding .round-card .step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-onboarding .round-card .step-list .round-card {
  margin-top: 0;
  border-radius: 6px;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
}
.home-onboarding .round-card .step-list .round-card .secondary {
  font-size: 0.8em;
}
.home-onboarding .round-card .step-list .round-card p {
  flex-grow: 1;
}
.home-onboarding .round-card .step-list .round-card p.done {
  text-decoration: line-through;
  color: #A4A799;
}

.credit-list {
  display: none !important;
}

.catalog-list {
  display: flex;
  overflow: auto;
  gap: 15px;
  padding: 15px 0;
}
.catalog-list .round-card {
  border: 1px solid rgba(132, 132, 132, 0.46);
}
.catalog-list .product-item {
  max-width: 160px;
}
.catalog-list .product-image {
  width: 100px;
  height: 100px;
  display: inline-block;
}
.catalog-list .product-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  margin-bottom: 5px;
  border: 1px solid rgba(132, 132, 132, 0.46);
}
.catalog-list .product-info {
  font-size: 0.8em;
}

.catalogview .product-item.round-card {
  border: 1px solid rgba(132, 132, 132, 0.46);
}
.catalogview .expand {
  float: right;
  width: 18px;
  cursor: pointer;
}

.tutorials {
  vertical-align: top;
  transition: all 1s;
}
.tutorials .icon {
  background-image: url("/img/icons/arrow-right-black.svg");
  vertical-align: middle;
  margin: 0;
}
.tutorials a {
  border: 1px solid #A4A799;
  border-radius: 4px;
  display: inline-block;
  padding: 10px 15px;
  margin: 0;
}
.tutorials :hover {
  border-color: #FFB82A;
  color: #FFB82A;
}
.tutorials :hover .icon {
  background-image: url("/img/icons/arrow-right-yellow.svg");
}

.notify-body {
  gap: 10px;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}
.notify-body .notify-title span {
  vertical-align: middle;
}
.notify-body .notify-title button {
  padding: 4px 8px;
  margin-left: 6px;
}
.notify-body .notify-message {
  font-size: 0.8em;
  opacity: 0.8;
}
.notify-body .notify-date {
  font-size: 0.7em;
  margin-top: 10px;
}

.profile .notify {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin: 4px 15px 0px 10px;
  cursor: pointer;
}
.profile .notify .icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  background-image: url(/img/icons/notify.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}
.profile .notify .notify-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #ff0000;
  color: #fff;
  border-radius: 50px;
  padding: 2px 5px;
  font-size: 0.8em;
}

.notification-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

button.clear-notifications {
  padding: 5px 10px;
  font-size: 0.7em;
}