/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/calculator/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.
 */
.em-block-calculator {
  --color-calculator-background: #f4f4f4;
  --color-calculator-accent: #004249;
}
.em-block-calculator__app {
  background-color: var(--color-calculator-background);
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: 50vh;
  display: flex;
  scroll-behavior: smooth;
}
.em-block-calculator__container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.em-block-calculator__step {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.em-block-calculator__message-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
}
.em-block-calculator__message p {
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  background-color: #fff;
  display: inline-block;
  max-width: 90%;
}
@media (min-width: 600px) {
  .em-block-calculator__message p {
    max-width: 75%;
  }
}
@media (min-width: 782px) {
  .em-block-calculator__message p {
    max-width: 60%;
  }
}
@media (min-width: 960px) {
  .em-block-calculator__message p {
    max-width: 50%;
  }
}
.em-block-calculator__chatbot p {
  margin-right: auto;
  margin-bottom: 0;
}
.em-block-calculator__answer {
  margin: 0.5rem 0;
}
.em-block-calculator__answer p {
  background-color: #004249;
  color: #fff;
  margin-left: auto;
}
.em-block-calculator__answer p p {
  color: #fff;
}
.em-block-calculator__messages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.em-block-calculator__user-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.em-block-calculator__error {
  font-style: italic;
  font-size: 0.9rem;
  width: 100%;
  display: block;
  text-align: center;
}
.em-block-calculator__button-row,
.em-block-calculator fieldset {
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.em-block-calculator__radio-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.em-block-calculator__radio-wrapper input {
  opacity: 0;
  position: absolute;
}
.em-block-calculator__radio-wrapper label {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: var(--color-calculator-accent);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.em-block-calculator__radio-wrapper input:hover + label,
.em-block-calculator__radio-wrapper input:checked + label,
.em-block-calculator__radio-wrapper input:focus-visible + label {
  text-decoration: underline;
}
.em-block-calculator__input {
  max-width: 100%;
}
.em-block-calculator__input:focus-visible {
  outline: 1px solid var(--color-calculator-accent);
  border-color: var(--color-calculator-accent);
}
.em-block-calculator__row {
  width: 100%;
  justify-content: center;
  display: flex;
}
.em-block-calculator__back {
  background-color: transparent;
  border: 0;
  font-weight: bold;
  color: var(--color-calculator-accent);
  padding: 0.5rem;
}
.em-block-calculator__back:hover {
  cursor: pointer;
}
.em-block-calculator__live-stats {
  position: relative;
  margin-top: 4rem;
  padding: 0 1rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.3);
}

.live-stats-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 5rem;
}
@media (min-width: 782px) {
  .live-stats-grid {
    flex-direction: row;
    align-items: center;
    align-items: stretch;
  }
}

.live-stats-grid-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  row-gap: 1rem;
  width: 100%;
}
@media (min-width: 782px) {
  .live-stats-grid-column {
    width: auto;
    row-gap: 2rem;
  }
  .live-stats-grid-column:nth-child(1) {
    flex-basis: 55%;
  }
  .live-stats-grid-column:nth-child(2) {
    flex-basis: 45%;
  }
}
.live-stats-grid-column:first-child:after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  height: 1px;
  width: 100%;
  opacity: 0.15;
  background-color: var(--color-calculator-accent);
}
@media (min-width: 782px) {
  .live-stats-grid-column:first-child:after {
    bottom: 0;
    right: -2rem;
    height: 100%;
    width: 1px;
  }
}
.live-stats-grid-column h2 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--color-calculator-accent);
  margin-bottom: 0;
}
.live-stats-grid-column p {
  margin-bottom: 0;
}
.live-stats-grid-column p:not(.has-h-4-font-size):not(.has-h-5-font-size) {
  font-size: 0.9rem;
}
@media (min-width: 600px) {
  .live-stats-grid-column p:not(.has-h-4-font-size):not(.has-h-5-font-size) {
    font-size: 1rem;
  }
}
.live-stats-grid-column p.has-h-5-font-size, .live-stats-grid-column p.has-h-4-font-size {
  font-family: var(--font-family-sans-header);
}

.live-stats-grid-blocks {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1.5rem;
}
@media (min-width: 1080px) {
  .live-stats-grid-blocks {
    flex-direction: row;
    align-items: center;
    align-items: stretch;
    row-gap: 2rem;
  }
}

.live-stats-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
  min-width: 100px;
  max-width: 300px;
  text-align: center;
  position: relative;
}
.live-stats-block > * {
  margin: 0;
}
.live-stats-block__detail {
  font-size: var(--font-size-h4);
  margin-bottom: 0.2rem;
}
.live-stats-block__number {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-heading);
  margin-bottom: 0 !important;
}
.live-stats-block.live-stats-block-highlight {
  padding: 0.8rem 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
}
.live-stats-block .live-stats-block-col {
  display: flex;
  align-self: center;
}
.live-stats-block .live-stats-block-description {
  display: inline-block;
  margin-left: 5px;
}
.live-stats-block .live-stats-block-description span {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
  bottom: -1px;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzYyODhfMzcxNjkpIj4KPHBhdGggZD0iTTEyIDI0QzE4LjYyNzQgMjQgMjQgMTguNjI3NCAyNCAxMkMyNCA1LjM3MjU4IDE4LjYyNzQgMCAxMiAwQzUuMzcyNTggMCAwIDUuMzcyNTggMCAxMkMwIDE4LjYyNzQgNS4zNzI1OCAyNCAxMiAyNFoiIGZpbGw9IiMwMDQyNDkiLz48L2c+PHBhdGggZD0iTTEwLjkwNjEgMTQuMTE1N0MxMC45MDYxIDEzLjczIDEwLjk0NSAxMy4zOTk0IDExLjAyMyAxMy4xMjRDMTEuMTEyIDEyLjgzNzUgMTEuMjczNSAxMi41NDU1IDExLjUwNzMgMTIuMjQ3OUMxMS43NDExIDExLjkzOTQgMTIuMDc1MiAxMS41NzU4IDEyLjUwOTQgMTEuMTU3QzEyLjgxIDEwLjg1OTUgMTMuMDQzOCAxMC41ODk1IDEzLjIxMDkgMTAuMzQ3MUMxMy4zODkgMTAuMDkzNyAxMy40NzgxIDkuNzkwNjMgMTMuNDc4MSA5LjQzODAyQzEzLjQ3ODEgOC45ODYyMyAxMy4zNTU2IDguNjQ0NjMgMTMuMTEwNiA4LjQxMzIyQzEyLjg3NjggOC4xNzA4IDEyLjUzMTcgOC4wNDk1OSAxMi4wNzUyIDguMDQ5NTlDMTEuNTUxOCA4LjA0OTU5IDExLjE1MSA4LjE3NjMxIDEwLjg3MjcgOC40Mjk3NUMxMC42MDU0IDguNjgzMTkgMTAuNDEwNiA5LjA4NTQgMTAuMjg4MSA5LjYzNjM2TDggOS4zODg0M0M4LjEzMzYxIDguMzk2NjkgOC41NDAwMSA3LjU4Njc4IDkuMjE5MjEgNi45NTg2OEM5Ljg5ODQgNi4zMTk1NiAxMC44ODk0IDYgMTIuMTkyMSA2QzEzLjQxNjggNiAxNC4zNTc3IDYuMjgwOTkgMTUuMDE0NiA2Ljg0Mjk4QzE1LjY3MTUgNy40MDQ5NiAxNiA4LjE0ODc2IDE2IDkuMDc0MzhDMTYgOS42ODA0NCAxNS44NjY0IDEwLjIwOTQgMTUuNTk5MiAxMC42NjEyQzE1LjM0MzEgMTEuMTEyOSAxNC45ODEyIDExLjU0ODIgMTQuNTEzNiAxMS45NjY5QzE0LjE0NjEgMTIuMjk3NSAxMy44NjIyIDEyLjU4NCAxMy42NjE4IDEyLjgyNjRDMTMuNDcyNSAxMy4wNTc5IDEzLjMzODkgMTMuMjgzNyAxMy4yNjEgMTMuNTA0MUMxMy4xOTQyIDEzLjcxMzUgMTMuMTYwOCAxMy45NTA0IDEzLjE2MDggMTQuMjE0OVYxNC4zOTY3SDEwLjkwNjFWMTQuMTE1N1pNMTAuODIyNSAxNS41MzcySDEzLjIyNzZWMThIMTAuODIyNVYxNS41MzcyWiIgZmlsbD0iI0QwRThFMSIvPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDBfNjI4OF8zNzE2OSI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIvPjwvY2xpcFBhdGg+PC9kZWZzPgo8L3N2Zz4K);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.live-stats-block .live-stats-block-description p {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  bottom: 40px;
  right: -30px;
  width: 180px;
  position: absolute;
  font-size: 0.875rem !important;
  border-radius: 1rem;
  padding: 0.8rem;
  background-color: #fff;
  color: var(--color-calculator-accent);
  transition: opacity 0.15s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.live-stats-block .live-stats-block-description:hover p, .live-stats-block .live-stats-block-description:focus p {
  opacity: 1;
  -webkit-user-select: initial;
     -moz-user-select: initial;
          user-select: initial;
  pointer-events: initial;
}
.live-stats-block .live-stats-block-description:focus span {
  outline: 2px solid var(--color-calculator-accent);
  outline-offset: 1px;
}

.live-stats-grid-column-small-list {
  max-width: 360px;
}
.live-stats-grid-column-small-list .live-stats-grid-blocks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 0.5rem;
  width: 100%;
}
@media (min-width: 1080px) {
  .live-stats-grid-column-small-list .live-stats-grid-blocks {
    flex-direction: column;
    align-items: stretch;
    row-gap: 0.5rem;
  }
}
.live-stats-grid-column-small-list .live-stats-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 1rem;
  min-width: initial;
  max-width: initial;
  text-align: center;
  position: relative;
}
.live-stats-grid-column-small-list .live-stats-block h3 {
  order: 2;
  min-width: 80px;
  margin-bottom: 0;
  text-align: right;
  font-size: var(--font-size-h6);
}
.live-stats-grid-column-small-list .live-stats-block p {
  order: 1;
  text-align: left;
}

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