*,
*::before,
*::after {
  box-sizing: border-box;
}

:host {
  --color-text-body: #4c4d52;
  --color-neutral-800: #434347;
  --color-neutral-400: #83858d;
  --color-neutral-500: #686a72;
  --color-neutral-200: #ceced3;
  --color-neutral-100: #e5e5e8;
  --color-neutral-50: #f5f5f6;
  --color-green-600: #21984b;
  --color-green-400: #64d78c;
  --color-green-300: #8ee7ad;
  --color-blue-600: #2243ee;
  --color-satin-50: #f6f5f1;
  --color-red-700: #be1011;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family:
    source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.4;
}

.assistive-txt {
  font-size: 0.75rem;
  color: var(--color-neutral-800);
  margin-top: 0.5rem;
}

.overflow-hidden {
  overflow: hidden;
}

.heading-5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  line-height: 1.4;
}

.heading-4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: black;
  line-height: 1.4;
}

.heading-3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: black;
  line-height: 1.4;
}

.heading-1 {
  font-size: 3rem;
  font-weight: 600;
  color: black;
  line-height: 1.4;
}

.weight-600 {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.text-18 {
  font-size: 1.125rem;
}

.text-14 {
  font-size: 0.875rem;
}

.text-12 {
  font-size: 0.75rem;
}

.flex-v-center-top {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

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

.flex-h-left-stretch {
  display: flex;
  justify-content: start;
  align-items: stretch;
}

.flex-h-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-h-between-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.flex-v-left-top {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.gap-8 {
  gap: 0.5rem;
}

.gap-10 {
  gap: 0.625rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-20 {
  gap: 1.25rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-32 {
  gap: 2rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-64 {
  gap: 3rem;
}

.padding-24 {
  padding: 1.5rem;
}

.padding-bottom-32 {
  padding-bottom: 2rem;
}

.calculator-slider_container {
  height: 100%;
  width: 100%;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}

.width-100 {
  width: 100%;
}

@media (max-width: 768px) {
  .is-mobile-vertical {
    flex-direction: column;
  }

  .is-mobile-vertical-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .is-mobile-horizontal-top-between {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }

  .is-mobile-align-left {
    align-items: start;
  }

  .calculator-slider_container {
    padding: 1.5rem 1.25rem;
  }

  .heading-4 {
    font-size: 1.25rem;
  }

  .heading-3 {
    font-size: 1.75rem;
  }

  .mobile-gap-12 {
    gap: 0.75rem;
  }

  .mobile-gap-32 {
    gap: 2rem;
  }

  .mobile-text-12 {
    font-size: 0.75rem;
  }

  .mobile-text-14 {
    font-size: 0.875rem;
  }

  .mobile-stretch {
    width: 100%;
  }
}

.coop-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 160px;
}

.coop-loader::after {
  content: '';
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #e3e3e3;
  border-top-color: #21984b;
  animation: coop-spin 0.8s linear infinite;
}

@keyframes coop-spin {
  to {
    transform: rotate(360deg);
  }
}

