/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/chart/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */
/**
 * Breakpoints & Media Queries
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Breakpoint mixins
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
/**
 * Breakpoints & Media Queries
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Breakpoint mixins
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
.em-block-chart-dropdown {
  position: relative;
}
.em-block-chart-dropdown__toggle {
  height: 100%;
  width: 100%;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
  color: var(--chart-color-primary);
  background-color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.em-block-chart-dropdown__toggle:hover {
  background-color: #e3f1ed;
  cursor: pointer;
}
.em-block-chart-dropdown__toggle:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
@media (min-width: 480px) {
  .em-block-chart-dropdown__toggle {
    padding: 1rem;
  }
}
@media (min-width: 782px) {
  .em-block-chart-dropdown__toggle {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .em-block-chart-dropdown__toggle {
    padding: 1.5rem 1rem;
    font-size: 1.125rem;
  }
}
.em-block-chart-dropdown__icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease-in-out;
}
.em-block-chart-dropdown__icon svg circle {
  fill: var(--chart-color-secondary);
}
.em-block-chart-dropdown__icon svg path {
  stroke: var(--chart-color-primary);
}
.em-block-chart-dropdown__icon svg {
  fill: green !important;
}
.em-block-chart-dropdown__icon.is-open {
  transform: rotate(180deg);
}
.em-block-chart-dropdown__icon.is-open svg circle {
  fill: var(--chart-color-primary);
}
.em-block-chart-dropdown__icon.is-open svg path {
  stroke: var(--chart-color-secondary);
}
.em-block-chart-dropdown__icon.is-closed {
  transform: rotate(0deg);
}
.em-block-chart-dropdown__content {
  position: relative;
  background-color: var(--chart-color-secondary);
  padding-top: 0;
  padding-right: 1.125rem;
  padding-bottom: 0;
  padding-left: 1.125rem;
  opacity: 0;
  min-width: 100%;
  width: 100%;
  transition: all 0.2s ease-in-out;
  max-height: 500px;
  overflow-y: scroll;
}
@media (min-width: 782px) {
  .em-block-chart-dropdown__content {
    top: 100%;
    left: -1px;
    position: absolute;
    width: auto;
  }
}
.em-block-chart-dropdown.is-open {
  z-index: 100;
}
.em-block-chart-dropdown.is-open .em-block-chart-dropdown__toggle {
  background-color: #fff;
}
@media (min-width: 782px) {
  .em-block-chart-dropdown.is-open .em-block-chart-dropdown__toggle {
    background-color: var(--chart-color-secondary);
  }
}
.em-block-chart-dropdown.is-open .em-block-chart-dropdown__icon circle {
  fill: var(--chart-color-primary);
}
.em-block-chart-dropdown.is-open .em-block-chart-dropdown__icon path {
  stroke: var(--chart-color-secondary);
}
.em-block-chart-dropdown.is-open .em-block-chart-dropdown__content {
  opacity: 1;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.em-block-chart-dropdown.is-closed .em-block-chart-dropdown__toggle {
  background-color: #fff;
}

.em-block-chart-radio-group {
  border: none;
  padding: 0;
}
@media screen and (max-width: 782px) {
  .em-block-chart-radio-group {
    width: 100% !important;
  }
}
.em-block-chart-radio-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.em-block-chart-radio-group__label {
  display: block;
  border-radius: 999px;
  color: var(--chart-color-primary);
  padding: 0.25rem 0.875rem;
  width: 100%;
  align-self: flex-start;
  text-align: center;
  min-width: 50px;
  cursor: pointer;
  font-size: 0.875rem;
  border: 2px solid var(--chart-color-primary);
  background-color: transparent;
  opacity: 0.75;
  font-weight: bold;
}
@media (min-width: 480px) {
  .em-block-chart-radio-group__label {
    width: calc(50% - 0.25rem);
  }
}
.em-block-chart-radio-group__label.is-selected {
  background-color: var(--chart-color-primary);
  color: #fff;
  opacity: 1;
}
.em-block-chart-radio-group__label:hover, .em-block-chart-radio-group__label:focus-visible {
  opacity: 1;
}
.em-block-chart-radio-group__text {
  display: block;
}
.em-block-chart-radio-group__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.em-block-chart-tooltip {
  background-color: #e3f1ed;
  border-radius: 4px;
  border: 1px solid #004249;
  color: #004249;
  pointer-events: none;
  box-shadow: "0px 168px 47px 0px rgba(0, 0, 0, 0.00), 0px 107px 43px 0px rgba(0, 0, 0, 0.01), 0px 60px 36px 0px rgba(0, 0, 0, 0.05), 0px 27px 27px 0px rgba(0, 0, 0, 0.09), 0px 7px 15px 0px rgba(0, 0, 0, 0.10)";
  position: absolute;
  transition: all 0.15s ease;
  margin: 0;
  opacity: 0;
  width: 240px;
}
.em-block-chart-tooltip.is-active {
  pointer-events: all;
  opacity: 1;
}
.em-block-chart-tooltip:hover {
  pointer-events: all;
  opacity: 1;
}
.em-block-chart-tooltip,
.em-block-chart-tooltip p {
  color: #004249;
}
.em-block-chart-tooltip__table {
  margin: 0;
}
.em-block-chart-tooltip__container {
  display: block;
  padding: 0.75rem;
  font-family: var(--font-family-sans);
}
.em-block-chart-tooltip__date {
  font-weight: bold;
  display: block;
  font-size: 0.75rem;
}
@media (min-width: 782px) {
  .em-block-chart-tooltip__date {
    font-size: 1rem;
  }
}
.em-block-chart-tooltip__label {
  display: inline-block;
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: var(--font-weight-bold);
  margin-top: 4px;
  margin-bottom: 0;
  color: #fff;
  font-size: 0.75rem;
}
@media (min-width: 782px) {
  .em-block-chart-tooltip__label {
    font-size: 1rem;
  }
}
.em-block-chart-tooltip__value {
  font-family: "aktiv-grotesk-extended", "aktiv-grotesk", helvetica, arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #004249;
}
@media (min-width: 782px) {
  .em-block-chart-tooltip__value {
    font-size: 2.5rem;
  }
}
.em-block-chart-tooltip__previous-value {
  font-size: 0.875rem;
  display: block;
  margin-top: 0;
  margin-bottom: 2px;
  color: #004249;
}
@media (min-width: 782px) {
  .em-block-chart-tooltip__previous-value {
    font-size: 1rem;
  }
}
.em-block-chart-tooltip__info {
  margin-top: 4px;
  font-size: 0.875rem;
}

.em-block-chart,
.wp-block-evermade-chart {
  --chart-color-primary: #004249;
  --chart-color-secondary: #d0e8e1;
  width: 100%;
  max-width: var(--align-wide, 1200px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: 300px;
  background-color: var(--color-white);
}
@media (min-width: 782px) {
  .em-block-chart,
  .wp-block-evermade-chart {
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 66, 73, 0.3);
    padding: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .em-block-chart,
  .wp-block-evermade-chart {
    padding: 1.5rem;
  }
}
.em-block-chart__dashboard-wrapper,
.wp-block-evermade-chart__dashboard-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.em-block-chart__loader,
.wp-block-evermade-chart__loader {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.em-block-chart__loader .components-spinner,
.wp-block-evermade-chart__loader .components-spinner {
  color: #41a300;
  width: 2rem;
  height: 2rem;
}
.em-block-chart .chartjs-tooltip,
.wp-block-evermade-chart .chartjs-tooltip {
  opacity: 0;
  padding: 1rem;
  width: 230px;
  background: var(--color-blue-lighter);
  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.2) 0px 8px 16px -8px;
  color: var(--color-primary);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -110%);
  transition: all 0.1s ease;
}
.em-block-chart .chartjs-tooltip .tooltip-container,
.wp-block-evermade-chart .chartjs-tooltip .tooltip-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}
.em-block-chart .chartjs-tooltip h3,
.wp-block-evermade-chart .chartjs-tooltip h3 {
  flex: auto;
  margin: 0;
  font-weight: 700;
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-sans);
  line-height: var(--line-height-sm);
  margin-bottom: 1rem;
}
@media (min-width: 782px) {
  .em-block-chart .chartjs-tooltip h3,
  .wp-block-evermade-chart .chartjs-tooltip h3 {
    font-size: var(--font-size-md);
  }
}
.em-block-chart .chartjs-tooltip .tooltip-gender,
.wp-block-evermade-chart .chartjs-tooltip .tooltip-gender {
  flex: none;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xs);
}
@media (min-width: 782px) {
  .em-block-chart .chartjs-tooltip .tooltip-gender,
  .wp-block-evermade-chart .chartjs-tooltip .tooltip-gender {
    font-size: var(--font-size-sm);
  }
}
.em-block-chart .chartjs-tooltip ul,
.wp-block-evermade-chart .chartjs-tooltip ul {
  flex-basis: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.em-block-chart .chartjs-tooltip ul li,
.wp-block-evermade-chart .chartjs-tooltip ul li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.em-block-chart .chartjs-tooltip ul li:last-child,
.wp-block-evermade-chart .chartjs-tooltip ul li:last-child {
  margin-bottom: 0;
}
.em-block-chart .chartjs-tooltip ul p,
.wp-block-evermade-chart .chartjs-tooltip ul p {
  color: var(--color-primary);
  font-size: calc(var(--font-size-h2) + 0.5rem);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-heading);
}
.em-block-chart__filters,
.wp-block-evermade-chart__filters {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--chart-color-secondary);
  display: flex;
  flex-flow: column wrap;
  margin-bottom: 1rem;
}
@media (min-width: 782px) {
  .em-block-chart__filters,
  .wp-block-evermade-chart__filters {
    flex-direction: row;
  }
}
.em-block-chart__filter,
.wp-block-evermade-chart__filter {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}
.em-block-chart__filter:not(:last-child),
.wp-block-evermade-chart__filter:not(:last-child) {
  border-bottom: 1px solid var(--chart-color-secondary);
}
@media (min-width: 782px) {
  .em-block-chart__filter,
  .wp-block-evermade-chart__filter {
    width: auto;
    border-bottom: 1px solid var(--chart-color-secondary);
    border-right: 1px solid var(--chart-color-secondary);
  }
  .em-block-chart__filter:nth-last-child(2),
  .wp-block-evermade-chart__filter:nth-last-child(2) {
    border-right: none;
  }
}
@media (min-width: 960px) {
  .em-block-chart__filter,
  .wp-block-evermade-chart__filter {
    border-bottom: none !important;
    border-right: 1px solid var(--chart-color-secondary) !important;
  }
}
.em-block-chart__clear-filters,
.wp-block-evermade-chart__clear-filters {
  display: flex;
  margin-left: auto;
  align-items: center;
  padding: 0.5rem 1rem;
  flex-grow: 2;
}
.em-block-chart__clear-button,
.wp-block-evermade-chart__clear-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  color: #797979;
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 1rem;
}
.em-block-chart__clear-icon,
.wp-block-evermade-chart__clear-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
}
.em-block-chart__clear-icon svg path,
.wp-block-evermade-chart__clear-icon svg path {
  fill: currentcolor;
}
.em-block-chart__time-range-filter,
.wp-block-evermade-chart__time-range-filter {
  display: flex;
  flex-flow: row wrap;
}
.em-block-chart__time-range-option-wrapper,
.wp-block-evermade-chart__time-range-option-wrapper {
  display: flex;
  flex-flow: row wrap;
  flex-grow: 1;
}
@media (min-width: 782px) {
  .em-block-chart__time-range-option-wrapper,
  .wp-block-evermade-chart__time-range-option-wrapper {
    flex-grow: 0;
  }
}
.em-block-chart__time-range-input,
.wp-block-evermade-chart__time-range-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.em-block-chart__time-range-input:checked + .em-block-chart__time-range-label,
.wp-block-evermade-chart__time-range-input:checked + .em-block-chart__time-range-label {
  border-top-color: var(--chart-color-primary);
  font-weight: bold;
}
.em-block-chart__time-range-input:hover + .em-block-chart__time-range-label, .em-block-chart__time-range-input:focus-visible + .em-block-chart__time-range-label,
.wp-block-evermade-chart__time-range-input:hover + .em-block-chart__time-range-label,
.wp-block-evermade-chart__time-range-input:focus-visible + .em-block-chart__time-range-label {
  border-top-color: var(--chart-color-primary);
}
.em-block-chart__time-range-input:checked + .em-block-chart__time-range-label,
.wp-block-evermade-chart__time-range-input:checked + .em-block-chart__time-range-label {
  border-top-color: var(--chart-color-primary);
  font-weight: bold;
}
.em-block-chart__time-range-label,
.wp-block-evermade-chart__time-range-label {
  display: inline-block;
  min-width: 2.75rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border: none;
  text-align: center;
  border-top: solid 2px var(--chart-color-secondary, #ccc);
  color: var(--chart-color-primary, #333);
  font-size: var(--font-size-xs, 0.75rem);
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  width: 100%;
}
.em-block-chart__time-range-input,
.wp-block-evermade-chart__time-range-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.em-block-chart__time-range-input[select],
.wp-block-evermade-chart__time-range-input[select] {
  border-top-color: var(--chart-color-primary);
  font-weight: bold;
}
.em-block-chart__chart,
.wp-block-evermade-chart__chart {
  margin-top: 2rem;
  min-height: 300px;
}
@media (min-width: 480px) {
  .em-block-chart__chart,
  .wp-block-evermade-chart__chart {
    min-height: 400px;
  }
}
@media (min-width: 782px) {
  .em-block-chart__chart,
  .wp-block-evermade-chart__chart {
    min-height: 500px;
  }
}
@media (min-width: 1080px) {
  .em-block-chart__chart,
  .wp-block-evermade-chart__chart {
    min-height: 600px;
  }
}
.em-block-chart .em-block-chart__preview-notice,
.wp-block-evermade-chart .em-block-chart__preview-notice {
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
}
.em-block-chart .em-block-chart__preview-notice > *,
.wp-block-evermade-chart .em-block-chart__preview-notice > * {
  color: #000;
  font-size: 13px;
}
.em-block-chart.is-selected .em-block-chart__preview-notice,
.wp-block-evermade-chart.is-selected .em-block-chart__preview-notice {
  visibility: visible;
  opacity: 1;
}

/* Define the spinning animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* Apply the animation when the 'is-spinning' class is present */
.em-block-chart__clear-icon.is-spinning {
  animation: spin 0.5s ease-in-out forwards; /* 0.5s duration, linear timing, forwards to hold last state */
}

/*# sourceMappingURL=style-index.css.map*/