.unsupported-browser {
  background: #ffffff;
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding: 40px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .unsupported-browser {
    display: block;
  }
}

/*
-------------------------------
Custom properties
-------------------------------
*/
:root {
  --mdc-theme-primary: #000000;
  --primary-color: #4338FC;
  --text-color: #29373E;
  --text-selection-color: #EBF1FF;
  --background-color: #D7E1EC;
  --accent-color: #FFD438;
}

/*
-------------------------------
Include Fonts
-------------------------------
*/
@font-face {
  font-family: 'Noto Sans Hebrew';
  src: url('../fonts/NotoSansHebrew-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Hebrew';
  src: url('../fonts/NotoSansHebrew-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Hebrew';
  src: url('../fonts/NotoSansHebrew-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Hebrew';
  src: url('../fonts/NotoSansHebrew-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

* {
  margin: 0;
}

*::selection {
  background: var(--accent-color) !important;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 16px;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--background-color);
  background-image: url('../images/bg-blur.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

main {
  display: block;
  flex: 1 0 auto;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  color: #020D74;
  font-weight: 600;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #070090;
  outline: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

/*
-------------------------------
Helpers
-------------------------------
*/

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: block;
  width: 100%;
  padding-top: 1.063rem;
  padding-bottom: 1.063rem;
  background: #FFD400;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.25rem 0.875rem #A6BAD1;
  border-radius: 3.875rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  cursor: pointer;
}

.btn.is-outlined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0.125rem solid #3C4147;
  box-sizing: border-box;
  filter: drop-shadow(0px 0.25rem 0.875rem #A6BAD1);
  border-radius: 3.875rem;
  background: transparent;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 1rem;
}

/*
-------------------------------
Layout
-------------------------------
*/
.container {
  max-width: 71.5rem;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
  width: 100%;
  margin: auto;
}

.site-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 4.688rem;
}

.site-wrapper.is-home {
  /*background: url('../images/home-bg-layer.svg') no-repeat top center / contain;*/
  background: url('../images/bg-ellipse.svg') no-repeat top 5rem center, url('../images/home-bg-layer.svg') no-repeat top center / contain;
}

.section-heading {
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: normal;
  color: #000000;
}

/*
-------------------------------
Tooltip
-------------------------------
*/
.tippy-box {
  padding: 0.375rem 0.25rem 0.375rem 1.25rem;
  background: #303F51;
}

.tippy-content {
  font-size: 0.688rem;
}

.tippy-box[data-placement^='right'] > .tippy-arrow {
  margin-top: 0.3rem;
}

.tippy-box[data-placement^='left'] > .tippy-arrow::before {
  border-left-color: #303F51;
}

.tippy-box[data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #303F51;
}

/*
-------------------------------
Header
-------------------------------
*/
.site-header {
  height: 3rem;
  width: 100%;
  position: fixed;
  background: #ffffff;
  top: 0;
  left: 0;
  box-shadow: 0 0.25rem 0.5rem 0 #C3D2DB99;
  z-index: 1000;
}

.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
}

.menu-button {
  background: transparent;
  border: none;
  padding: 0.313rem 0 0.313rem 0.313rem;
  cursor: pointer;
}

/*
-------------------------------
Call to action
-------------------------------
*/
.call-to-action-row {
  padding: 1.875rem 0 1.875rem;
}

.call-to-action-row .description {
  margin-bottom: 1.875rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
}

.call-to-action-row .btn {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  max-width: 37.5rem;
  margin: auto;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.875rem;
}

/*
-------------------------------
Table content
-------------------------------
*/
.table-content {
  padding-bottom: 1.25rem;
}

.table-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.table-content table th {
  padding: 0.625rem 1.063rem;
  font-weight: 600;
  font-size: 0.813rem;
  line-height: 1.125rem;
  text-align: right;
  color: rgba(41, 55, 62, 0.8);
}

.table-content table tbody tr {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 71.87%, rgba(255, 255, 255, 0.56) 100%), rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0.5rem rgba(195, 210, 219, 0.6);
  border: 1px solid transparent;
  border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 18.75%, rgba(255, 255, 255, 0) 81.25%, #FFFFFF 100%);
  border-radius: 0.25rem;
  padding: 0.125rem 0;
}

.table-content table tbody tr td:first-child {
  border-radius: 0 0.25rem 0.25rem 0;
}

.table-content table tbody tr td:last-child {
  border-radius: 0.25rem 0 0 0.25rem;
}

.table-content table .is-price {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000;
}

.table-content table .is-id,
.table-content table .is-date {
  font-family: "Rubik", sans-serif;
}

.table-content table .is-id::before {
  content: '';
  position: absolute;
  right: 1px;
  top: 1px;
  width: 0.375rem;
  height: calc(100% - 1px);
  border-radius: 0 0.25rem 0.25rem 0.125rem;
}

.table-content table .is-id.is-blue::before {
  background: #4CA4FF;
}

.table-content table .is-id.is-red::before {
  background: #F7AAA0;
}

.table-content table .is-id.is-green::before {
  background: #6AC5CC;
}

.table-content table .is-id.is-yellow::before {
  background: #FFD400;
}

.table-content table .is-id.is-orange::before {
  background: #CFAE31;
}

.table-content table .is-info {
  text-align: center;
}

.table-content table tr td {
  position: relative;
  padding: 0 1.063rem;
  font-size: 0.875rem;
  height: 4.063rem;
  line-height: 1.25rem;
}

.table-content.has-8-cols td:first-child {
  min-width: 8.438rem;
  max-width: 8.438rem;
}

.table-content.has-8-cols td:nth-child(2) {
  min-width: 11.563rem;
  max-width: 11.563rem;
}

.table-content.has-8-cols td:nth-child(3) {
  min-width: 7.813rem;
  max-width: 7.813rem;
}

.table-content.has-8-cols td:nth-child(4) {
  min-width: 8.75rem;
  max-width: 8.75rem;
}

.table-content.has-8-cols td:nth-child(5) {
  min-width: 10rem;
  max-width: 10rem;
}

.table-content.has-8-cols td:nth-child(6) {
  min-width: 8.125rem;
  max-width: 8.125rem;
}

.table-content.has-8-cols td:nth-child(7) {
  min-width: 8.125rem;
  max-width: 8.125rem;
}

.table-content.has-8-cols td:nth-child(8) {
  min-width: 6.25rem;
  max-width: 6.25rem;
}

.table-content.has-5-cols td:first-child {
  min-width: 12.5rem;
  max-width: 12.5rem;
}

.table-content.has-5-cols td:nth-child(2) {
  min-width: 12.5rem;
  max-width: 12.5rem;
}

.table-content.has-5-cols td:nth-child(3) {
  min-width: 14.063rem;
  max-width: 14.063rem;
}

.table-content.has-5-cols td:nth-child(4) {
  min-width: 12.5rem;
  max-width: 12.5rem;
}

.table-content.has-5-cols td:nth-child(5) {
  min-width: 10%;
  max-width: 10%;
}

.table-content.has-5-cols table tr td {
  height: 3.25rem;
}

.table-content.has-5-cols table {
  border-spacing: 0 0.313rem;
}

.table-content.has-5-cols {
  margin-bottom: 1.875rem;
}

.table-content .tooltip-button {
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: 0 0.25rem 0.25rem #B9C8D6;
}

/*
 -------------------------------
 Bubbles
 -------------------------------
 */
.bubbles {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  margin-bottom: 4.375rem;
  gap: 0.813rem;
}

.bubble .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1.125rem;
  font-size: 0.875rem;
  animation: soar 3s ease-in-out infinite;
}

.bubble .is-price {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  line-height: 1.188rem;
}

.bubble-1 .inner {
  width: 11.313rem;
  height: 11.313rem;
  background: radial-gradient(54.89% 54.89% at 27.83% 28.32%, #B3E8FF 0%, #A9E5FF 23.96%, #55ADFF 100%);
  box-shadow: inset 0 0 1.5rem #51AEFF;
  animation-delay: 0.85s;
}

.bubble-2 .inner {
  margin-top: 3.75rem;
  width: 9.875rem;
  height: 9.875rem;
  background: radial-gradient(54.89% 54.89% at 27.83% 28.32%, #FFE980 0%, #FFD400 53.74%, #FFC700 77.59%);
  box-shadow: inset 0 0 2.75rem #FFB800;
  animation-delay: 0.7s;
}

.bubble-3 .inner {
  margin-bottom: 3.125rem;
  width: 8.313rem;
  height: 8.313rem;
  background: radial-gradient(60.59% 60.59% at 26.88% 24.13%, #BDFAFF 0%, #6DCDD6 100%);
  box-shadow: inset 0 0 2.125rem rgba(49, 94, 98, 0.3);
  animation-delay: 0.55s;
}

.bubble-4 .inner {
  margin-top: 5rem;
  width: 7.125rem;
  height: 7.125rem;
  background: radial-gradient(60.59% 60.59% at 26.88% 24.13%, #C5F738 0%, #92C600 100%);
  box-shadow: inset 0 0 24px #81AE00;
  animation-delay: 0.4s;
}

.bubble-5 .inner {
  margin-bottom: 3.125rem;
  width: 5.875rem;
  height: 5.875rem;
  background: radial-gradient(62.07% 62.07% at 37.07% 17.24%, #FFD8D2 0%, #F7AFA5 100%);
  box-shadow: inset 0 0 1.5rem #F48E81;
  animation-delay: 0.25s;
}

.bubble-6 .inner {
  margin-top: 1.25rem;
  margin-right: 1.25rem;
  width: 5rem;
  height: 5rem;
  background: radial-gradient(50% 50% at 32.56% 40.7%, #FFD02C 0%, #DCAC00 100%);
  box-shadow: inset 0 0 0.875rem rgba(196, 166, 47, 0.7);
  animation-delay: 0.1s;
}

@keyframes soar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.bubbles-bottom {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 3.75rem;
  margin-top: 0.938rem;
  padding: 1.25rem 0 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.56) 100%), rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 1.25rem rgba(195, 210, 219, 0.4);
  border-radius: 0.75rem;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 18.75%, rgba(255, 255, 255, 0) 81.25%, #FFFFFF 100%);
}

.bubbles-bottom.justify-content-between {
  justify-content: space-between;
  padding-left: 1.25rem;
  padding-right: 0.313rem;
}

.bubbles-bottom-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3.125rem;
  gap: 0.313rem;
  font-family: "Rubik", sans-serif;
}

.bubbles-bottom-item.is-chart {
  padding: 0;
  max-width: 8.438rem;
  filter: url(#c_filter);
}

.bubbles-bottom-item.is-chart img {
  width: 7.125rem;
  height: 7.125rem;
  margin: auto;
}

.bubbles-bottom-item .is-title {
  margin-right: -2.125rem;
  font-size: 0.875rem;
  line-height: 1.188rem;
  color: rgba(41, 55, 62, 0.8);
}

.bubbles-bottom.is-fifth .bubbles-bottom-item .is-title, .pie .is-title {
  font-size: 1rem;
}

.bubbles-bottom .bubbles-bottom-item .is-title::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 0.75rem;
  margin-left: 0.625rem;
  border-radius: 0.375rem;
  background: var(--color);
}

.bubbles-bottom-item.is-yellow {
  --color: #FFD400;
}

.bubbles-bottom-item.is-gray {
  --color: #A0B8D2;
}

.bubbles-bottom-item.is-green {
  --color: #4FCEC7;
}

.bubbles-bottom-item.is-orange {
  --color: #CFAE31;
}

.bubbles-bottom-item.is-red {
  --color: #F1ACA3;
}

.bubbles-bottom-item.is-toxic {
  --color: #A6DC0D;
}

.bubbles-bottom-item .is-price {
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.375rem;
}

.bubbles-bottom-item .is-price b {
  font-size: 1rem;
  font-weight: 400;
}

/*
-------------------------------
Retirement age forecasts
-------------------------------
*/
.forecast-row .content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0.75rem 0 3.75rem;
  padding: 1.25rem 3.125rem 3.125rem 6.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 71.87%, rgba(255, 255, 255, 0.56) 100%), rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  border: 1px solid;
  border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 18.75%, rgba(255, 255, 255, 0) 81.25%, #FFFFFF 100%);
}

.forecast-item p {
  font-size: 0.813rem;
  line-height: 1.25rem;
  color: rgba(41, 55, 62, 0.8);
}

.forecast-item h3 {
  margin-bottom: 0.313rem;
  margin-right: -2.188rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #29373E;
}

.forecast-item h3::before {
  margin-left: 0.813rem;
  display: inline-block;
  content: '';
  width: 1.5rem;
  height: 0.75rem;
  background: #FFCD00;
  border-radius: 0.375rem;
}

.forecast-item .prices {
  position: relative;
  margin: 0.625rem 0;
  display: flex;
  gap: 4.063rem;
  font-family: "Rubik", sans-serif;
}

.forecast-item .prices > div {
  position: relative;
}

.forecast-item .prices span {
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 2.688rem;
}

.forecast-item .prices span b {
  margin-right: 0.313rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.forecast-item .prices .sup-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125rem;
}

/*
-------------------------------
Introduction
-------------------------------
*/
.introduction-row {
  text-align: center;
}

.introduction-row h1 {
  margin-top: 0.313rem;
  margin-bottom: 1.563rem;
  font-weight: normal;
  font-size: 3.625rem;
  line-height: 4.25rem;
  color: #000000;
}

.introduction-row p {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.125rem;
  color: #29373E;
}

.chart-row {
  border-radius: 50%;
  margin: 0.625rem auto 0;
}

.chart-row img {
  width: 22.125rem;
  height: 22.125rem;
  display: block;
  margin: auto;
}

.morelink {
  font-size: 0.813rem;
  color: #2E7CF6 !important;
}

.price-tooltip {
  background: transparent;
  border: none;
}

.forecast-item {
  position: relative;
}

.forecast-item .price-tooltip {
  position: absolute;
  right: -2.688rem;
  bottom: 0.313rem;
  cursor: pointer;
  padding: 0;
}

.forecast-item .price-tooltip.is-mobile {
  display: none;
}

@media (max-width: 768px) {
  .forecast-item .price-tooltip.is-mobile {
    display: block;
    right: unset;
    left: 13px;
    top: 15px;
    bottom: unset;
  }

  .forecast-item .price-tooltip.is-mobile img {
    width: auto;
  }

  .forecast-item .price-tooltip.is-desktop {
    display: none;
  }
}

.forecast-item .price-tooltip img {
  width: 2.5rem;
  height: auto;
}

.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}


/*
PIE
 */

/*styling widget container and background pseudoelements*/
.pie {
  position: relative;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  display: flex; /*or flex*/
  vertical-align: middle;
  width: 18.2em;
  height: 18.2em;
  margin: 0 auto;
  font-size: 1.25rem;
}

/*styling the text inside a circles*/

.pie > div {
  color: #29373E;
  position: relative;
  /* font-weight: lighter; */
}

.pie-inner {
  border-radius: 50%;
  box-sizing: border-box;
  background: linear-gradient(38.85deg, #b7c8e13d 14.69%, rgba(255, 255, 255, 0) 69.33%, rgba(255, 255, 255, 0.38) 85.08%), rgba(255, 255, 255, 0.2);
  box-shadow: -3px 1px 20px #0004;
  transition: box-shadow 1s;
  border: 1.8px #fff solid;
  width: 75.8%;
  height: 75.8%;
  padding: 10% 0;
}

.pie-inner .small-caption {
  font-size: 0.875rem;
  color: #0009;
}

.pie .sum {
  font-size: 2.813rem;
  margin: 0 0 0;
  font-family: "Rubik", sans-serif;
}

.pie-inner span {
  font-weight: 500;
}

.pie .sum::after {
  content: "₪";
  font-size: 70%;
  display: inline-block;
}

.pie-inner svg {
  width: 1.75em;
  display: block;
  margin: auto;
}

/*styling toolltips in PIE chart*/

.pie .item {
  text-align: start;
  position: absolute;
  background: #eef4ffc9;
  border-radius: 5px;
  padding: .6em 1.3em .3em;
  border: #fff 1.5px solid;
  border-top: var(--color) 4px solid;
  box-shadow: 0px 10px 20px rgba(1, 1, 1, 0.2);
  transition: .3s, top 50ms, left .1s;
  --arrow-left: 60%;
  z-index: 1;
  filter: drop-shadow(3px 4px 20px rgb(1 1 1 / 20%));
  margin-right: -3.125rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.pie .item:not(.visible) {
  visibility: hidden;
  opacity: 0;
}

.pie .item::before {
  content: '';
  position: absolute;
  border: solid;
  border-color: var(--color) transparent;
  border-width: 0 13px 13px;
  left: var(
      --arrow-left);
  top: -16px;
  transition: left 0.1s;
}

.pie .item>* {
  margin: 0;
 }

/*Styling svg elements*/

.pie > svg {
  position: absolute;
  overflow: visible;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
}

.pie > svg:first-child {
  z-index: -1;
}

.pie > svg > g {
  filter: url(#c_filter) drop-shadow(-3px -9px 25px #0004);
}

.pie circle {
  fill: none;
  /* stroke-linecap: round; */
  transition: .8s, opacity .6s, stroke-width 1s cubic-bezier(0.6, 1.7, 0.31, 1);
}

.pie .arc {
  transform: rotate(-90deg);
}

.pie .arc.background {
  display: none;
  r: 86%;
  stroke: #F3F5FA;
  stroke-opacity: .6;
  stroke-width: 70;
  --space: .23;
  stroke-linecap: round;
  stroke-dashoffset: var(--space);
  transition: 1s .1s, stroke-width 1.2s cubic-bezier(0.6, 2.3, 0.5, 1) .3s;
  transition-delay: .3s;
  --trans: scale(.6) rotate(50deg);
}

@media screen and (max-width: 600px) {
  .pie .arc.background {
    r: 63%;
    stroke-width: 52px;
    --space: .22;
  }
}

.pie .dial {
  r: 152px;
  stroke: #3334;
  stroke-width: 14px;
  stroke-dasharray: .3 4.7001;
}

.pie .dial:first-of-type {
  stroke-width: 9px;
  r: 155px;
  stroke-dashoffset: 2.5;
}

.pie .dial.initial {
  transform: rotate(40deg) scale(.9);
  opacity: 0;
  stroke-width: 0;
}

.pie .arc.initial {
  stroke-width: 0;
  opacity: 0;
  transform: var(--trans) rotate(-110deg);
}


@media (min-width: 768px) {
  .moreelipses {
    display: none;
  }

  .morecontent span {
    display: inline !important;
  }

  .morelink {
    display: none;
  }
}

@media (max-width: 1200px) {
  .table-content.has-8-cols td {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 992px) {
  .introduction-row p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .forecast-row .content {
    gap: 1.25rem;
    margin-bottom: 2.188rem;
  }

  .introduction-row h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .bubbles-bottom {
    flex-wrap: wrap;
    margin-bottom: 2.188rem;
  }

  .p {
    overflow: hidden;
  }

  .morecontent span {
    display: none;
  }

  .bubbles-bottom.justify-content-between {
    justify-content: center;
    gap: 1.25rem;
  }

  .table-content.has-5-cols {
    margin-bottom: 0.938rem;
  }

  .is-desktop-only {
    display: none;
  }

  .table-content td {
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .table-content.has-5-cols td:nth-child(3),
  .table-content.has-5-cols td:nth-child(4) {
    padding: 0 0.625rem;
    max-width: 8.75rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .table-content table th:not(:first-child) {
    padding: 0 0.625rem;
  }

  .table-content table tbody tr td:first-child {
    padding-left: 0.625rem;
  }

  .forecast-row .content {
    background: none;
    border: none;
    padding: 0;
  }

  .forecast-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 71.87%, rgba(255, 255, 255, 0.6) 100%), rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    padding: 1.25rem 3.125rem 1.25rem 1.875rem;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 18.75%, rgba(255, 255, 255, 0) 81.25%, #FFFFFF 100%);
  }

  .forecast-item .prices {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.625rem;
  }

  .forecast-item h3 {
    padding-right: 2.5rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .forecast-item h3::before {
    position: absolute;
    right: -1px;
    margin-left: 0;
    top: 0.313rem;
  }

  .bubbles {
    margin: auto;
    max-width: 22.5rem;
    margin-top: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0.625rem;
    gap: 0;
  }

  .bubble {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
    flex-basis: 33%;
  }

  .bubble .inner {
    margin: 0;
  }

  .bubble-1 {
    order: 0;
  }

  .bubble-1 .inner {
    width: 7.188rem;
    height: 7.188rem;
  }

  .bubble-5 {
    margin-top: -5rem;
    margin-left: -0.625rem;
    order: 1;
  }

  .bubble-5 .inner {
    width: 5.625rem;
    height: 5.625rem;
  }

  .bubble-3 {
    order: 2;
  }

  .bubble-3 .inner {
    width: 6.625rem;
    height: 6.625rem;
  }

  .bubble-2 {
    order: 3;
    margin-top: 0.938rem;
    margin-left: -0.625rem;
  }

  .bubble-2 .inner {
    width: 7.125rem;
    height: 7.125rem;
  }

  .bubble-4 {
    order: 4;
    margin-top: -7.5rem;
    margin-lefT: -1.25rem;
  }

  .bubble-4 .inner {
    width: 5.688rem;
    height: 5.688rem;
  }

  .bubble-6 {
    order: 5;
    margin-top: -2.5rem;
  }

  .bubble-6 .inner {
    width: 5rem;
    height: 5rem;
    margin-right: 0;
  }

  .bubbles-bottom.is-bottom {
    flex-wrap: nowrap;
    flex-direction: row;
    padding-left: 0.313rem;
    padding-right: 0.313rem;
  }

  .bubbles-bottom.is-bottom .bubbles-bottom-item {
    padding-right: 2.5rem;
  }

  .table-content.has-8-cols td {
    font-size: 0.813rem !important;
  }

  .table-content.has-8-cols tr td:not(:nth-child(3)) {
    padding: 0 0.5rem;
  }

  .table-content.has-8-cols tr td:nth-child(3) {
    padding-left: 0;
  }

  .table-content.has-8-cols td:nth-child(3) {
    border-radius: 0 0.25rem 0.25rem 0;
  }

  .table-content table .is-mobile-decorator.is-blue::before {
    background: #4CA4FF;
  }

  .table-content table .is-mobile-decorator.is-blue::before {
    background: #4CA4FF;
  }

  .table-content table .is-mobile-decorator.is-red::before {
    background: #F7AAA0;
  }

  .table-content table .is-mobile-decorator.is-green::before {
    background: #6AC5CC;
  }

  .table-content table .is-mobile-decorator.is-yellow::before {
    background: #FFD400;
  }

  .table-content table .is-mobile-decorator.is-orange::before {
    background: #CFAE31;
  }

  .table-content table .is-mobile-decorator::before {
    content: '';
    position: absolute;
    right: 1px;
    top: 1px;
    width: 0.375rem;
    height: calc(100% - 1px);
    border-radius: 0 0.25rem 0.25rem 0.125rem;
  }
}

@media (max-width: 768px) {
  .bubbles-bottom.has-chart {
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
  }

  .bubbles-bottom {
    flex-direction: column;
  }

  .bubbles-bottom.has-chart .bubbles-bottom-item:first-child {
    margin-bottom: 1rem;
  }

  .bubbles-bottom-item.is-chart {
    position: absolute;
    top: 50%;
    left: 0;
    height: 7.125rem;
    transform: translate(0, -50%);
    width: 9.375rem;
  }

  .pie {
    width: 18.75rem;
    height: 18.75rem;
  }

  .pie .sum {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .pie span {
    font-size: 1rem;
  }

  .chart-row {
    margin-bottom: 1.875rem;
  }

  .site-wrapper.is-home {
    background: url("../images/bg-ellipse.svg") no-repeat top 8.438rem center / 26.875rem, url("../images/home-bg-layer.svg") no-repeat top center / contain;
  }
}

@media (max-width: 480px) {
  .bubbles-bottom.justify-content-between {
    justify-content: flex-start;
    gap: 0.625rem;
  }

  .bubbles-bottom.is-fifth .bubbles-bottom-item .is-price {
    font-size: 2.25rem;
  }
}
