/*--------------------------------------------------------------
>>> TABLE OF CONTENTS: DASHBOARD HOME
----------------------------------------------------------------*/

/* Structure */
.dashboard_home_container .dashboard_home_100 {
  width: calc(100% - 0.75rem);
  flex: 1 0 auto;
}
.dashboard_home_container .dashboard_home_66 {
  width: calc(66.666666% - 0.75rem);
  flex: 1 0 auto;
}
.dashboard_home_container .dashboard_home_60 {
  width: calc(60% - 0.75rem);
  flex: 1 0 auto;
}
.dashboard_home_container .dashboard_home_50 {
  width: calc(50% - 0.75rem);
  flex: 1 0 auto;
}
.dashboard_home_container .dashboard_home_40 {
  width: calc(40% - 0.75rem);
  flex: 1 0 auto;
}
.dashboard_home_container .dashboard_home_33 {
  width: calc(33.333333% - 0.75rem);
  flex: 1 0 auto;
}

.dashboard_home_66 {
  min-width: min(780px, 100%);
}
.dashboard_home_66 > .dashboard_home_50 {
  min-width: min(380px, 100%);
}
.dashboard_home_33 > .dashboard_home_50,
.dashboard_home_60 {
  min-width: min(400px, 100%);
}
.dashboard_home_40 {
  min-width: min(450px, 100%);
}
.no-min-width {
  min-width: unset !important;
}

@media screen and (max-width: 767px) {
  .dashboard_home_66,
  .dashboard_home_container .dashboard_home_33,
  .dashboard_home_container .dashboard_home_66,
  .dashboard_home_container .dashboard_home_50,
  .dashboard_home_66 > .dashboard_home_50,
  .dashboard_home_33 > .dashboard_home_50 {
    min-width: unset !important;
    width: 100% !important;
  }
}

/* Image container */
.dashboard_container.image_container .image_container__img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  border-radius: 10px;
}
.dashboard_container.image_container .image_container__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.dashboard_container.image_container .image_container__content {
  width: 100%;
  border-radius: 10px;
  padding: 1.25rem;
  z-index: 2;
  background: white;
}

/* Dashboard - Home - Easy product creation */
.home-product-type-container {
  display: grid;
  row-gap: 1rem;
  column-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.home-product-type-container > .grey-box {
  transition: background-color 295ms var(--bezier-nobounce);
}

.home-product-type-container > a.grey-box:hover {
  background-color: var(--very-light-grey-clr) !important;
}

/* Dashboard - Home - Last orders */
.home-last-orders-container #wcfm-orders_wrapper > *:not(table, #wcfm-orders_processing) {
  display: none;
}

/* .home-last-orders-container #wcfm-orders.dataTable.display tbody tr {
  border: var(--border) !important;
}
.home-last-orders-container #wcfm-orders.dataTable.display tbody tr,
.home-last-orders-container #wcfm-orders.dataTable.display tbody tr td {
  background: var(--ultra-light-grey-clr) !important;
}
.home-last-orders-container #wcfm-orders tbody tr .woocommerce-warning {
  background: var(--very-light-grey-clr) !important;
} */

.home-last-orders-container #wcfm-orders tbody td:nth-child(6),
.home-last-orders-container #wcfm-orders .woocommerce-warning {
  display: none;
}

.home-last-orders-container #wcfm-orders tbody tr {
  border-bottom: var(--border);
  border-radius: 0;
  margin: 0 -1.5rem;
  width: calc(100% + 3rem);
}

.home-last-orders-container #wcfm-orders tbody tr:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
#wcfm-orders_wrapper.dataTables_wrapper .dataTables_processing {
  transform: translate(-50%, -50%);
  margin: 1rem auto;
}
.home-last-orders-container #wcfm-orders {
  min-height: 100px;
  margin-bottom: 0;
}

/* Dashboard - Home - Notifications*/
.dashboard_container .wcfm_dashboard_notification {
  padding: 1rem 0;
  border-bottom: var(--border);
}
.dashboard_container .wcfm_dashboard_notification:last-child {
  border: none;
}
.dashboard_container .wcfm_dashboard_notification .notification-icon {
  margin-right: 0.5rem;
  display: inline-flex;
  vertical-align: bottom;
}
.dashboard_container .wcfm_dashboard_notification b {
  color: var(--text-black-clr);
}
#wcfm_dashboard_wcfm_activity .wcfm_dashboard_notification a {
  color: var(--text-black-clr);
}
#wcfm_dashboard_wcfm_activity .wcfm_dashboard_notification a:hover {
  color: var(--accent-clr);
}

/* Sales Graph Component */
.dashboard_container .stats_inner {
  padding: 1.5rem;
}
.dashboard_container .stats_inner_note {
  padding: 1.1rem 1.5rem;
  background-color: var(--fade-grey-blue-clr);
  margin-top: auto;
}
.amount-big,
.report-stats-block strong {
  font-size: 26px;
  font-weight: 900;
  line-height: 100%;
  padding: 0.5rem 0 0.25rem 0;
}
.amount-medium {
  font-size: 20px;
  font-weight: 900;
  line-height: 100%;
  padding: 0.25rem 0 0 0;
}
.amount-big .woocommerce-Price-currencySymbol,
.report-stats-block strong .woocommerce-Price-currencySymbol {
  font-weight: 700;
  font-size: 23px;
}
.amount-medium .woocommerce-Price-currencySymbol {
  font-weight: 700;
  font-size: 18px;
}

.graph_inner {
  width: calc(100% + 2px);
  margin: 0 -1px;
  position: relative;
}

/* Chart.js Styling*/
@keyframes chartjs-render-animation {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}
.chartjs-render-monitor {
  animation: chartjs-render-animation 1ms;
  max-width: 100%;
}
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink {
  position: absolute;
  direction: ltr;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
}
.chartjs-size-monitor-expand > div {
  position: absolute;
  width: 1000000px;
  height: 1000000px;
  left: 0;
  top: 0;
}
.chartjs-size-monitor-shrink > div {
  position: absolute;
  width: 200%;
  height: 200%;
  left: 0;
  top: 0;
}

/* Dashboard - Home - Announcements Features, news and updates  */
.campaign {
  line-height: 2;
  margin: 0px;
  font-size: 0;
  display: flex;
}
.campaign a {
  color: var(--dark-grey-clr);
  text-decoration: underline;
  font-size: 1rem;
  transition: color 295ms var(--bezier-nobounce);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.campaign a:hover {
  color: var(--accent-clr);
}
.wcfmfa.fa-currence {
  visibility: hidden;
  position: relative;
  font-size: 0;
}
.wcfmfa.fa-currence:before {
  content: "\f571";
  visibility: visible;
}
