.overview_header {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview_analytics_card_wrapper {
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview_stats_wrapper {
  width: 100%;
  height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview_inner_container {
  width: 100%;
  height: 100%;
}

/* === HEADER SECTION === */

.overview_header_wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.overview_header_filter_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: inline-block;
}

.overview_header_filter_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b4b1b;
  border-radius: 0.3rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
}

.overview_header_filter_wrapper > div > span {
  font-weight: 500;
  font-size: 1.125rem;
  color: #2b4b1b;
}

.overview_header_filter_wrapper i {
  margin-left: 1rem;
  font-size: 1.5rem;
  color: #2b4b1b;
  cursor: pointer;
}

.overview_header_filter_dropdown_menu {
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 15rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0.4rem;
  overflow: hidden;
}

.overview_header_filter_dropdown_menu a {
  color: #2b4b1b;
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  display: block;
}

.overview_header_filter_dropdown_menu a:hover {
  background-color: #f1f1f1;
}

/* === END HEADER SECTION === */

/* === ANALYTICS CARD SECTION === */

.analytics_card_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analytics_cards {
  width: 31%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #ffffff;
}

.analytics_cards_inner {
  height: 90%;
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.analytics_cards_inner_top {
  height: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.analytics_cards_inner_top > h2 {
  margin-top: 2rem !important;

  height: 100%;
  font-size: 1.8rem;
  color: #8d8888;
  display: flex;
  align-items: center;
}

.analytics_cards_inner_top_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: #2b4b1b;
}

.analytics_cards_inner_top_icon i {
  font-size: 2rem;
  color: #f1f1f1;
}

.analytics_cards_inner_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.analytics_cards_inner_bottom h2 {
  font-size: 2.5rem;
  color: #2b4b1b;
}

/* === END ANALYTICS CARD SECTION  === */

/* === STATS SECTION === */

.stats_card_wrapper {
  margin: 2rem 0;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats_card_left_container {
  width: 65%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #ffffff;
}

.stats_card_top {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  height: 10%;
}

.stats_card_top h3 {
  font-size: 1.5rem;
  color: #8d8888;
}

.stats_card_left_bottom {
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats_card_right_container {
  width: 31%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #ffffff;
}

/* === END STATS SECTION  === */

/* Mobile */
@media (max-width: 700px) {
  .dashboard_overview_container {
    max-height: auto;
  }

  .overview_analytics_card_wrapper {
    height: auto;
  }

  .overview_stats_wrapper {
    height: auto;
  }

  .overview_inner_container {
    width: 95%;
    height: 100%;
  }

  /* === ANALYTICS CARD SECTION === */

  .analytics_card_wrapper {
    height: auto;
    flex-direction: column;
  }

  .analytics_cards {
    margin: 1rem 0;
    width: 100%;
    height: 12rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }

  .analytics_cards_inner {
    height: 80%;
    width: 85%;
  }

  /* === END ANALYTICS CARD SECTION  === */

  /* === STATS SECTION === */

  .stats_card_wrapper {
    margin: 1rem 0;
    height: 80vh;
    flex-direction: column;
  }

  .stats_card_left_container {
    width: 100%;
    height: 50%;
  }

  .stats_card_right_container {
    margin: 2rem 0;
    width: 100%;
    height: 50%;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }

  /* === END STATS SECTION  === */
}

/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
}
