@accent 1: #1f1a9b;
@complementary 1: #d8820e;
#page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading_icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: bounce 1.2s cubic-bezier(0.36, 0, 0.66, 1) infinite;
  position: relative;
}
@keyframes bounce {
  0% {
    transform: translateY(0) scale(1, 1) rotate(0deg);
  }
  30% {
    transform: translateY(20px) scale(1.1, 0.9) rotate(0deg);
  }
  40% {
    transform: translateY(18px) scale(1.05, 0.95) rotate(0deg);
  }
  60% {
    transform: translateY(-15px) scale(0.95, 1.05) rotate(0deg);
  }
  70% {
    transform: translateY(-18px) scale(1, 1) rotate(180deg);
  }
  80% {
    transform: translateY(-15px) scale(1, 1) rotate(360deg);
  }
  100% {
    transform: translateY(0) scale(1, 1) rotate(360deg);
  }
}
@font-face {
  font-family: 'Work Sans';
  src: url('/assets/fonts/WorkSans-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
}
b,
strong {
  font-weight: 500;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_button {
  background-color: #342bde;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  outline: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.cta_button.large {
  padding: 25px 40px;
  font-size: 20px;
  border-radius: 10px;
  letter-spacing: -0.025em;
}
.cta_button.xs {
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 5px 10px;
}
.cta_button.outline {
  background-color: transparent;
  border: 1px solid #342bde;
  color: #342bde;
  box-sizing: border-box;
}
.cta_button:hover {
  transform: scale(1.05);
}
.cta_button.link {
  background-color: transparent;
  color: #342bde;
  padding: 0;
  font-weight: 600;
}
.cta_button.link:hover {
  transform: none;
}
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  background-color: #f8fafc;
  color: #1e293b;
  margin: 0;
  padding: 0;
}
.dashboard-container {
  display: flex;
}
.sidebar {
  width: 290px;
  background-color: #342bde;
  height: 100vh;
  padding: 20px 30px 20px 20px;
  box-sizing: border-box;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
.sidebar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  margin-bottom: 30px;
}
.sidebar .logo img {
  width: 100%;
  height: 30px;
}
.sidebar .logo h1 {
  font-size: 24px;
  color: #f8fafc;
}
.sidebar .burger_trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 25px;
}
.sidebar .burger_trigger span {
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
}
.sidebar .burger_trigger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.sidebar .burger_trigger.active span:nth-child(2) {
  opacity: 0;
}
.sidebar .burger_trigger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.sidebar .custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  margin-bottom: 30px;
}
.sidebar .custom-select-wrapper .custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sidebar .custom-select-wrapper .custom-select__trigger {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 300;
  color: #1e293b;
  height: 32px;
  line-height: 32px;
  background: #fff;
  cursor: pointer;
  border-radius: 5px;
}
.sidebar .custom-select-wrapper .custom-select .custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  max-height: calc(100vh - 300px);
  overflow-y: scroll;
  overflow-x: hidden;
}
.sidebar .custom-select-wrapper .custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.sidebar .custom-select-wrapper .custom-select .custom-option {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #1e293b;
  line-height: 1.4em;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.5s;
}
.sidebar .custom-select-wrapper .custom-select .custom-option:hover {
  cursor: pointer;
  background-color: #eae4ff;
}
.sidebar .custom-select-wrapper .custom-select .custom-option.selected {
  color: #fff;
  background-color: #564feb;
}
.sidebar .custom-select-wrapper .custom-select .custom-option-group-label {
  font-weight: 600;
  padding: 0 13px;
  font-size: 14px;
  color: #1e293b;
  line-height: 32px;
  background-color: #f6f6f6;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
}
.sidebar .custom-select-wrapper .arrow {
  position: relative;
  height: 10px;
  width: 10px;
}
.sidebar .custom-select-wrapper .arrow::before,
.sidebar .custom-select-wrapper .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.1rem;
  height: 100%;
  transition: all 0.5s;
}
.sidebar .custom-select-wrapper .arrow::before {
  left: -2px;
  transform: rotate(-45deg);
  background-color: #1e293b;
}
.sidebar .custom-select-wrapper .arrow::after {
  left: 4px;
  transform: rotate(45deg);
  background-color: #1e293b;
}
.sidebar .custom-select-wrapper .open .arrow::before {
  left: -2px;
  transform: rotate(45deg);
}
.sidebar .custom-select-wrapper .open .arrow::after {
  left: 5px;
  transform: rotate(-45deg);
}
.sidebar nav {
  max-height: calc(100vh - 270px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent !important;
  -ms-overflow-style: -ms-autohiding-scrollbar !important;
}
.sidebar nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.sidebar nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 17px;
  display: flex;
  flex-direction: column;
}
.sidebar nav ul li .sub_menu_header {
  color: #eae4ff;
  font-weight: 600;
  font-size: 17px;
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.sidebar nav ul li .sub_menu_header i {
  margin-right: 10px;
  width: 20px;
  display: flex;
}
.sidebar nav ul li a {
  color: #8076f3;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}
.sidebar nav ul li a i {
  margin-right: 10px;
  width: 20px;
}
.sidebar nav ul li a.no_link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.sidebar nav ul li ul {
  padding-left: 30px;
  gap: 14px;
}
.sidebar nav ul li ul li {
  border-bottom: none;
  padding-bottom: 0;
  gap: 2px;
}
.sidebar nav ul li ul li a {
  font-weight: 400;
  color: #eae4ff;
}
.sidebar nav ul li ul li ul {
  border-left: 1px solid #8076f3;
  padding-left: 9px;
  gap: 5px;
  margin: 3px 0 0 4px;
}
.sidebar nav ul li ul li ul li {
  border: none;
  padding-bottom: 0;
}
.sidebar nav ul li ul.expanded {
  margin-top: 15px;
}
.sidebar nav ul li.active > a {
  color: #fff;
  font-weight: 600;
}
.sidebar nav ul li.soon a {
  color: #564feb;
}
.sidebar nav ul li .collapsible {
  cursor: pointer;
}
.sidebar nav ul li .collapsible .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
  top: 0;
}
.sidebar nav ul li .collapsible .arrow:after {
  content: '▼';
  font-size: 0.5em;
}
.sidebar nav ul li .collapsible.active .arrow {
  transform: rotate(180deg);
}
.sidebar nav ul li .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.sidebar nav ul li .active > .submenu {
  max-height: 1000px;
  padding-top: 15px;
  margin-top: 7px;
}
.sidebar nav::-webkit-scrollbar {
  width: 2px !important;
}
.sidebar nav::-webkit-scrollbar-track {
  background: transparent !important;
}
.sidebar nav::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2) !important;
  border-radius: 1px !important;
}
.sidebar nav:hover {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent !important;
}
.sidebar nav:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
.sidebar .user_info {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  width: calc(100% - 50px);
  left: 20px;
  bottom: 20px;
  justify-content: flex-start;
}
.sidebar .user_info .user_info_pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.sidebar .user_info .user_info_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar .user_info .user_info_text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.sidebar .user_info .logout_button {
  width: 20px;
  height: 20px;
}
.sidebar .user_info .logout_button img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100vw;
    height: auto;
    padding: 15px 20px 13px 20px;
    transition: all 0.5s;
  }
  .sidebar .logo {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 0;
  }
  .sidebar .logo img {
    height: 26px;
  }
  .sidebar .burger_trigger {
    display: flex;
  }
  .sidebar .mobile_hide {
    max-height: 0;
    overflow: hidden;
    display: none;
    flex-direction: column;
  }
  .sidebar .mobile_hide .user_info {
    display: none;
  }
  .sidebar.show_menu {
    height: 100vh;
  }
  .sidebar.show_menu .mobile_hide {
    display: flex;
    max-height: 100vh;
  }
  .sidebar.show_menu .mobile_hide .user_info {
    display: flex;
  }
  .sidebar .custom-select-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sidebar nav {
    max-height: calc(100vh - 220px);
  }
}
.ga_login_wrapper {
  flex-direction: column;
  min-height: calc(100vh - 170px);
}
.explanation.framed {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 20px;
  margin: 30px 0 20px 0;
  background: #f8f7ff;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #8076f3;
}
.explanation.minimal {
  font-size: 14px;
  color: #373737;
  font-style: italic;
  margin: 30px 0 20px 0;
  letter-spacing: -0.05em;
  max-width: 500px;
  text-align: center;
}
.select_property_wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.select_property_wrapper .account_group {
  width: 100%;
}
.select_property_wrapper .account_group .account_name {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid #1e293b;
}
.select_property_wrapper .account_group .properties_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 10px;
  /* Adjust gap as needed */
  margin: 40px 0;
}
.select_property_wrapper .account_group .properties_list .single_property {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  color: #1e293b;
}
.select_property_wrapper .account_group .properties_list .single_property .property_name {
  font-size: 18px;
  font-weight: 600;
}
.select_property_wrapper .account_group .properties_list .single_property .property_id {
  color: #b6b6b6;
  font-size: 14px;
  font-style: italic;
  margin-top: 3px;
}
.select_property_wrapper .account_group .properties_list .single_property:hover {
  background-color: #f8f7ff;
}
.main-content {
  width: calc(100% - 290px);
  margin-left: 290px;
  padding: 20px;
}
.main-content .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.main-content .top-bar h1 {
  margin: 0;
  font-size: 24px;
}
.main-content .top-bar .date-range-picker {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  /* The switch - the box around the slider */
}
.main-content .top-bar .date-range-picker .daterange {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.main-content .top-bar .date-range-picker .switch {
  position: relative;
  display: inline-block;
  width: 88px;
  height: 24px;
  /* Hide default HTML checkbox */
  /* The slider */
}
.main-content .top-bar .date-range-picker .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.main-content .top-bar .date-range-picker .switch input:checked + .slider {
  background-color: #342bde;
}
.main-content .top-bar .date-range-picker .switch input:checked + .slider:before {
  transform: translateX(72px);
  left: -5px;
}
.main-content .top-bar .date-range-picker .switch input:checked + .slider:after {
  content: "compare";
  left: 12px;
  color: #fff;
  bottom: 5.5px;
}
.main-content .top-bar .date-range-picker .switch input:focus + .slider {
  box-shadow: 0 0 1px #342bde;
}
.main-content .top-bar .date-range-picker .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b6b6b6;
  transition: 0.4s;
  /* Rounded sliders */
}
.main-content .top-bar .date-range-picker .switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}
.main-content .top-bar .date-range-picker .switch .slider:after {
  position: absolute;
  content: "compare";
  right: 12px;
  bottom: 5.5px;
  color: #727272;
  font-size: 12px;
  transition: 0.4s;
}
.main-content .top-bar .date-range-picker .switch .slider.round {
  border-radius: 28px;
}
.main-content .top-bar .date-range-picker .switch .slider.round:before {
  border-radius: 50%;
}
.main-content .top-bar .date-range-picker .comparison_selector {
  overflow: hidden;
  transition: max-width 0.3s ease-out, opacity 0.3s ease-out;
  max-width: 0;
  opacity: 0;
}
.main-content .top-bar .date-range-picker .comparison_selector.active {
  max-width: 300px;
  opacity: 1;
}
.main-content .top-bar .date-range-picker button {
  padding: 8px 16px;
  background-color: #342bde;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.main-content .top-bar .date-range-picker button:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .main-content {
    width: 100%;
    margin-left: 0;
    padding: 70px 10px 20px 10px;
    box-sizing: border-box;
  }
  .main-content .top-bar {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }
  .main-content .top-bar h1 {
    font-size: 16px;
  }
}
.litepicker .container__days .day-item.is-start-date,
.litepicker .container__days .day-item.is-end-date {
  background-color: #342bde !important;
  color: #fff;
}
.litepicker .container__days .day-item.is-in-range {
  background-color: #eae4ff !important;
}
.litepicker .container__main {
  box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.1);
}
.litepicker .container__main .container__predefined-ranges {
  padding: 15px;
  box-shadow: none;
}
.litepicker .container__main .container__months {
  box-shadow: none;
  border-left: 1px solid #dbdbdb;
  border-radius: 0;
}
.litepicker:nth-child(3) .container__days .day-item.is-start-date,
.litepicker:nth-child(3) .container__days .day-item.is-end-date {
  background-color: #f4970f !important;
  color: #fff;
}
.litepicker:nth-child(3) .container__days .day-item.is-in-range {
  background-color: #fbe6c2 !important;
}
.dashboard-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  transition: 0.25s ease-in-out;
}
.dashboard-content .main_report {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  flex: 1;
}
.dashboard-content .main_report #trafficMap {
  text-align: center;
}
.dashboard-content .main_report .charts_container,
.dashboard-content .main_report .bento_box {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.dashboard-content .main_report .charts_container .chart_col,
.dashboard-content .main_report .bento_box .chart_col {
  height: 500px;
}
.dashboard-content .main_report .charts_container .chart_col.full,
.dashboard-content .main_report .bento_box .chart_col.full {
  width: 100%;
}
.dashboard-content .main_report .charts_container .chart_col.seventy,
.dashboard-content .main_report .bento_box .chart_col.seventy {
  width: calc(70% - 20px);
}
.dashboard-content .main_report .charts_container .chart_col.thirty,
.dashboard-content .main_report .bento_box .chart_col.thirty {
  width: calc(30% - 20px);
}
.dashboard-content .main_report .charts_container .chart_col canvas,
.dashboard-content .main_report .bento_box .chart_col canvas {
  height: 440px !important;
  width: calc(100% - 25px) !important;
  position: relative;
  z-index: 6;
}
.dashboard-content .main_report .charts_container .chart_col canvas#browserBarChart,
.dashboard-content .main_report .bento_box .chart_col canvas#browserBarChart {
  height: 467px !important;
}
.dashboard-content .main_report .charts_container .chart_col .custom_horizontal_bar_chart,
.dashboard-content .main_report .bento_box .chart_col .custom_horizontal_bar_chart {
  margin-top: 35px;
  gap: 21px;
}
.dashboard-content .main_report .charts_container #country_map_chart,
.dashboard-content .main_report .bento_box #country_map_chart {
  max-width: 1200px;
}
.dashboard-content .notes_sidebar {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 0;
  width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.25s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashboard-content .notes_sidebar .notes_sidebar_close {
  background-color: #342bde;
  color: #fff;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  transition: 0.25s ease-in-out;
  transform: rotate(45deg);
  position: absolute;
  top: 15px;
  right: 15px;
}
.dashboard-content .notes_sidebar .notes_sidebar_close:hover {
  transform: rotate(45deg) scale(1.05);
}
.dashboard-content .notes_sidebar h3 {
  margin: 0;
}
.dashboard-content .notes_sidebar .new_note_form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-content .notes_sidebar .new_note_form form .form_row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.dashboard-content .notes_sidebar .new_note_form form .form_row > * {
  flex: 1;
  width: 100%;
}
.dashboard-content .notes_sidebar .new_note_form form .form_row textarea {
  background-color: #dbdbdb;
  border: none;
  border-radius: 7px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 5px;
  resize: none;
  overflow: hidden;
  min-height: 35px;
}
.dashboard-content .notes_sidebar #existing_notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-content .notes_sidebar #existing_notes .note {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_content {
  font-size: 14px;
  color: #1e293b;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_info .note_date {
  font-size: 11px;
  color: #b6b6b6;
  display: flex;
  align-self: flex-end;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_info .note_actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_info .note_actions a {
  opacity: 0.4;
  transition: 0.25s ease-in-out;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_info .note_actions a:hover {
  opacity: 1;
}
.dashboard-content .notes_sidebar #existing_notes .note .note_info .note_actions a img {
  width: auto;
  height: 11px;
}
.dashboard-content .notes_sidebar #existing_notes .note form.edit-note-form textarea {
  background-color: #dbdbdb;
  border: none;
  border-radius: 7px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 5px;
}
.dashboard-content .notes_sidebar #existing_notes .note.highlight_note {
  background-color: #eae4ff;
}
.dashboard-content.notes_visible {
  gap: 20px;
}
.dashboard-content.notes_visible .notes_sidebar {
  padding: 15px;
  width: 260px;
}
.dashboard-content .custom_chart_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dashboard-content .custom_chart_header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
}
.dashboard-content .custom_chart_header .custom_chart_legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
.dashboard-content .custom_chart_header .custom_chart_legend .legend-item {
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 3px 7px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  border-radius: 4px;
  cursor: pointer;
}
.dashboard-content .custom_chart_header .custom_chart_legend .legend-item .legend-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dashboard-content .custom_chart_header .custom_chart_legend .legend-item .legend-lines .legend-line {
  width: 15px;
  height: 0;
  border-top: 2px solid;
  margin-right: 8px;
  display: inline-block;
}
.dashboard-content .custom_chart_header .custom_chart_legend .legend-item .legend-lines .legend-line.comparison {
  border-top-style: dashed;
}
.dashboard-content .custom_chart_header .custom_chart_legend .legend-item.hidden {
  opacity: 0.5;
}
.dashboard-content #notes_bar {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 5px 10px 5px 19px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  width: calc(100% - 14px);
  margin-left: 26px;
  gap: 16px;
}
.dashboard-content #notes_bar .existing_notes {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
}
.dashboard-content #notes_bar .existing_notes .day_marker {
  flex: 1;
  height: 20px;
  background-color: #fff;
}
.dashboard-content #notes_bar .existing_notes .day_marker:nth-child(odd) {
  background-color: #dbdbdb;
}
.dashboard-content #notes_bar .existing_notes .note_icon .note_line {
  width: 1px;
  height: 438px;
  background-color: #f5f4f4;
  position: absolute;
  bottom: 30px;
}
.dashboard-content #notes_bar .existing_notes .note_icon img,
.dashboard-content #notes_bar .existing_notes .note_icon svg {
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
}
.dashboard-content #notes_bar .existing_notes .note_icon .note_count {
  position: absolute;
  background: #342bde;
  color: #fff;
  font-size: 9px;
  line-height: 1em;
  width: 11px;
  height: 11px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1px;
  right: 4px;
}
.dashboard-content #notes_bar .existing_notes .note_icon.highlight_note .cls-2 {
  fill: #342bde;
}
.dashboard-content #notes_bar .existing_notes .note_icon.highlight_note .comment_line {
  stroke: #fafafa;
}
.dashboard-content #notes_bar .existing_notes .note_icon.highlight_note .note_line {
  background-color: #342bde;
}
.dashboard-content #notes_bar .add_note {
  background-color: #342bde;
  color: #fff;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  transition: 0.25s ease-in-out;
}
.dashboard-content #notes_bar .add_note:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .dashboard-content {
    flex-direction: column;
  }
  .dashboard-content .main_report {
    border-radius: 15px;
    padding: 10px;
  }
  .dashboard-content .main_report .charts_container .chart_col,
  .dashboard-content .main_report .bento_box .chart_col {
    height: auto;
  }
  .dashboard-content .main_report .charts_container .chart_col.full,
  .dashboard-content .main_report .bento_box .chart_col.full {
    width: 100%;
  }
  .dashboard-content .main_report .charts_container .chart_col.seventy,
  .dashboard-content .main_report .bento_box .chart_col.seventy {
    width: 100%;
  }
  .dashboard-content .main_report .charts_container .chart_col.thirty,
  .dashboard-content .main_report .bento_box .chart_col.thirty {
    width: 100%;
  }
  .dashboard-content .main_report .charts_container .chart_col canvas,
  .dashboard-content .main_report .bento_box .chart_col canvas {
    height: 250px !important;
  }
  .dashboard-content .main_report .charts_container #country_map_chart,
  .dashboard-content .main_report .bento_box #country_map_chart {
    max-width: 1200px;
  }
  .dashboard-content .main_report .charts_container {
    flex-direction: column;
    gap: 0;
    margin-bottom: 50px;
  }
  .dashboard-content .custom_chart_header {
    position: relative;
  }
  .dashboard-content .custom_chart_header .legend-items-container {
    position: relative;
    width: 20px;
    height: 15px;
    cursor: pointer;
  }
  .dashboard-content .custom_chart_header .legend-items-container:before {
    content: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='20' height='2' rx='1' fill='%23B6B6B6'/%3E%3Crect x='2.5' y='5' width='15' height='2' rx='1' fill='%23B6B6B6'/%3E%3Crect x='5' y='10' width='10' height='2' rx='1' fill='%23B6B6B6'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.25s ease-in-out;
  }
  .dashboard-content .custom_chart_header .legend-items-container:hover:before {
    content: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='20' height='2' rx='1' fill='%23342BDE'/%3E%3Crect x='2.5' y='5' width='15' height='2' rx='1' fill='%23342BDE'/%3E%3Crect x='5' y='10' width='10' height='2' rx='1' fill='%23342BDE'/%3E%3C/svg%3E");
  }
  .dashboard-content .custom_chart_header .legend-items-container .custom_chart_legend {
    display: none;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show {
    width: auto;
    height: auto;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    min-width: 200px;
    z-index: 10;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend .legend-item {
    font-size: 11px;
    display: flex;
    align-items: center;
    padding: 3px 7px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend .legend-item .legend-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend .legend-item .legend-lines .legend-line {
    width: 15px;
    height: 0;
    border-top: 2px solid;
    margin-right: 8px;
    display: inline-block;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend .legend-item .legend-lines .legend-line.comparison {
    border-top-style: dashed;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend .legend-item.hidden {
    opacity: 0.5;
  }
  .dashboard-content .custom_chart_header .legend-items-container.show .custom_chart_legend .legend-item:hover {
    background-color: #f8f7ff;
  }
  .dashboard-content #notes_bar .existing_notes .note_icon .note_line {
    height: 249px;
  }
}
.custom_horizontal_bar_chart {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.custom_horizontal_bar_chart .dimension_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.custom_horizontal_bar_chart .dimension_container .dimension_name_container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: space-between;
}
.custom_horizontal_bar_chart .dimension_container .dimension_name_container .dimension_name {
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
}
.custom_horizontal_bar_chart .dimension_container .dimension_name_container .dimension_value {
  font-size: 12px;
  color: #b6b6b6;
  text-align: right;
}
.custom_horizontal_bar_chart .dimension_container .dimension_name_container .dimension_value.positive {
  color: #009b00;
}
.custom_horizontal_bar_chart .dimension_container .dimension_name_container .dimension_value.negative {
  color: #b00000;
}
.custom_horizontal_bar_chart .dimension_container .dimension_bar {
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
  position: relative;
}
.custom_horizontal_bar_chart .dimension_container .dimension_bar .dimension_bar_fill {
  position: absolute;
  top: -2px;
  left: 0;
  height: 4px;
}
.custom_horizontal_bar_chart .dimension_container.comparison_enabled .dimension_bar .dimension_bar_fill {
  top: -4px;
}
.custom_horizontal_bar_chart .dimension_container.comparison_enabled .dimension_bar .dimension_bar_fill.comparison {
  top: 0;
  opacity: 0.3;
}
.dashboard-content .main_report .bento_boxes_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Create 4 equal columns */
  gap: 10px;
  /* Adjust gap as needed */
}
.dashboard-content .main_report .bento_boxes_container .bento_box {
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 22px 24px 60px 24px;
  box-sizing: border-box;
  gap: 10px;
  position: relative;
}
.dashboard-content .main_report .bento_boxes_container .bento_box .chart_col {
  height: auto;
}
.dashboard-content .main_report .bento_boxes_container .bento_box .cols {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.dashboard-content .main_report .bento_boxes_container .bento_box.half {
  grid-column: span 2;
  /* Span 2 columns for 50% width */
}
.dashboard-content .main_report .bento_boxes_container .bento_box.quarter {
  grid-column: span 1;
  /* Span 1 column for 25% width */
}
.dashboard-content .main_report .bento_boxes_container .bento_box.three_quarters {
  grid-column: span 3;
  /* Span 1 column for 25% width */
}
.dashboard-content .main_report .bento_boxes_container .bento_box.full {
  grid-column: span 4;
  /* Span 1 column for 25% width */
}
.dashboard-content .main_report .bento_boxes_container .bento_box .chart_col.sixty {
  width: calc(60% - 5px);
}
.dashboard-content .main_report .bento_boxes_container .bento_box .chart_col.forty {
  width: calc(40% - 5px);
}
.dashboard-content .main_report .bento_boxes_container .bento_box .box_title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dashboard-content .main_report .bento_boxes_container .bento_box .cta_button {
  position: absolute;
  bottom: 18px;
  right: 24px;
}
.dashboard-content .main_report .bento_boxes_container .bento_box .cta_button.link {
  text-align: right;
  font-size: 14px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
table td {
  width: 1%;
}
table th,
table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
table th a {
  color: #1e293b;
}
table th {
  background-color: #f8f8f8;
  font-weight: 600;
  position: relative;
  vertical-align: bottom;
}
table th a {
  text-decoration: none;
  line-height: 0.8em;
  display: inline-block;
}
table th a .sort-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  right: -4px;
  bottom: 14px;
}
table th a .sort-icon:before,
table th a .sort-icon:after {
  content: '';
  position: absolute;
  left: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
table th a .sort-icon:before {
  top: 0;
  border-bottom: 6px solid #ccc;
}
table th a .sort-icon:after {
  bottom: 0;
  border-top: 6px solid #ccc;
}
table th a .sort-icon.asc::before {
  border-bottom-color: #342bde;
}
table th a .sort-icon.desc::after {
  border-top-color: #342bde;
}
table tr td a {
  text-decoration: none;
  color: #564feb;
}
table tr td span {
  display: block;
}
table td:not(:first-child) {
  text-align: right;
}
table tr:hover {
  background-color: #f8f7ff;
}
table tr:last-child td {
  border-bottom: none;
}
table tfoot {
  background-color: #f8f8f8;
}
table tfoot form {
  text-align: right;
}
table tfoot form select {
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
  font-weight: 600;
  margin-left: 10px;
}
table tfoot form select:focus {
  outline: none;
}
@media (max-width: 768px) {
  table {
    font-size: 12px;
    max-width: calc(100vw - 40px);
    overflow: scroll;
    display: inline-block;
  }
  table th,
  table td {
    padding: 8px 10px;
  }
}
.table-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}
.reports .dashboard-content .main_report .chart_container {
  height: 500px !important;
}
.reports .dashboard-content .main_report .chart_container.margin_bottom {
  margin-bottom: 30px;
}
.reports .dashboard-content .main_report .charts_container .chart_col {
  height: initial;
}
.reports .dashboard-content .main_report .general_metrics_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  /* Adjust gap as needed */
  margin: 40px 0;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background-color: #fafafa;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_label {
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values {
  display: flex;
  flex-direction: row;
  gap: 7px;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values .general_metric_value {
  font-size: 24px;
  color: #342bde;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values .comparision_data {
  display: flex;
  flex-direction: row;
  gap: 7px;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values .comparision_data .comparision_data_value {
  font-size: 14px;
  color: #b6b6b6;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values .comparision_data .comparision_data_percentage {
  font-size: 14px;
  color: #1e293b;
  display: flex;
  align-self: end;
  margin-bottom: 3px;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values .comparision_data .comparision_data_percentage.positive {
  color: #009b00;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric .general_metric_values .comparision_data .comparision_data_percentage.negative {
  color: #b00000;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric.active {
  background-color: #eae4ff;
}
.reports .dashboard-content .main_report .general_metrics_wrapper .general_metric:hover {
  background-color: #f8f7ff;
}
.general_dashboard .dashboard-content .main_report .charts_container,
.single-country .dashboard-content .main_report .charts_container,
.single-page .dashboard-content .main_report .charts_container {
  margin-bottom: 0;
}
.general_dashboard .dashboard-content .main_report .charts_container .chart_container,
.single-country .dashboard-content .main_report .charts_container .chart_container,
.single-page .dashboard-content .main_report .charts_container .chart_container {
  margin-bottom: 30px;
}
