body:has(.calc .vdatetime-overlay) {
  overflow: hidden;
}

body:has(.calc .vdatetime-overlay) .side_box_container {
  position: relative;
  z-index: 0;
}

body:has(.calc .vdatetime-overlay) .calc.calc--result.calc__grid--result {
  z-index: 0 !important;
}

#growth_chart * {
  accent-color: var(--color-calculator-primary, #1677ff);
}

.vdatetime-fade-enter-active,
.vdatetime-fade-leave-active {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.vdatetime-fade-enter,
.vdatetime-fade-leave-to {
  opacity: 0;
}

.vdatetime-overlay {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.vdatetime-popup {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 340px;
  max-width: calc(100% - 30px);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  color: #444;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
  line-height: 1.18;
  background: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.vdatetime-popup,
.vdatetime-popup * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vdatetime-popup__header {
  padding: 18px 30px;
  background: var(--color-calculator-primary, #1677ff);
  color: #fff;
  font-size: 32px;
}

.vdatetime-popup__title {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 300;
}

.vdatetime-popup__year {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.7;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.vdatetime-popup__year:hover {
  opacity: 1;
}

.vdatetime-popup__date {
  line-height: 1;
  cursor: pointer;
}

.vdatetime-popup__actions {
  padding: 0 20px 10px 30px;
  text-align: right;
}

.vdatetime-popup__actions__button {
  display: inline-block;
  border: none;
  padding: 10px 20px;
  background: transparent;
  font-size: 16px;
  color: var(--color-calculator-primary, #1677ff);
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.vdatetime-popup__actions__button:hover {
  color: #444;
}

.vdatetime-calendar__navigation--next:hover svg path,
.vdatetime-calendar__navigation--previous:hover svg path {
  stroke: #888;
}

.vdatetime-calendar__navigation,
.vdatetime-calendar__navigation * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vdatetime-calendar__navigation {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 15px 0;
  padding: 0 30px;
  width: 100%;
}

.vdatetime-calendar__navigation--next,
.vdatetime-calendar__navigation--previous {
  position: absolute;
  top: 0;
  padding: 0 5px;
  width: 18px;
  cursor: pointer;
}

.vdatetime-calendar__navigation--next svg,
.vdatetime-calendar__navigation--previous svg {
  width: 8px;
}

.vdatetime-calendar__navigation--next svg path,
.vdatetime-calendar__navigation--previous svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.vdatetime-calendar__navigation--previous {
  left: 25px;
}

.vdatetime-calendar__navigation--next {
  right: 25px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.vdatetime-calendar__current--month {
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  font-size: 20px;
}

.vdatetime-calendar__month {
  padding: 0 20px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.vdatetime-calendar__month__day,
.vdatetime-calendar__month__weekday {
  display: inline-block;
  width: 14.28571%;
  line-height: 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
}

.vdatetime-calendar__month__day > span,
.vdatetime-calendar__month__weekday > span {
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding: 0 0 100%;
  overflow: hidden;
}

.vdatetime-calendar__month__day > span > span,
.vdatetime-calendar__month__weekday > span > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  border-radius: 50%;
  -webkit-transition:
    background-color 0.3s,
    color 0.3s;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.vdatetime-calendar__month__weekday {
  font-weight: 700;
}

.vdatetime-calendar__month__day:hover > span > span {
  background: #eee;
}

.vdatetime-calendar__month__day--selected:hover > span > span,
.vdatetime-calendar__month__day--selected > span > span {
  color: #fff;
  background: var(--color-calculator-primary, #1677ff);
}

.vdatetime-calendar__month__day--disabled {
  opacity: 0.4;
  cursor: default;
}

.vdatetime-calendar__month__day--disabled:hover > span > span {
  color: inherit;
  background: transparent;
}

.vdatetime-time-picker__list::-webkit-scrollbar-thumb {
  background: #ccc;
}

.vdatetime-time-picker__list::-webkit-scrollbar-track {
  background: #efefef;
}

.vdatetime-time-picker,
.vdatetime-time-picker * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vdatetime-time-picker:after {
  content: "";
  display: table;
  clear: both;
}

.vdatetime-time-picker__list {
  float: left;
  width: 50%;
  height: 305px;
  overflow-y: scroll;
}

.vdatetime-time-picker__list::-webkit-scrollbar {
  width: 3px;
}

.vdatetime-time-picker__with-suffix .vdatetime-time-picker__list {
  width: 33.3%;
}

.vdatetime-time-picker__item {
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}

.vdatetime-time-picker__item:hover {
  font-size: 32px;
}

.vdatetime-time-picker__item--selected {
  color: var(--color-calculator-primary, #1677ff);
  font-size: 32px;
}

.vdatetime-time-picker__item--disabled {
  opacity: 0.4;
  cursor: default;
  font-size: 20px !important;
}

.vdatetime-year-picker__list::-webkit-scrollbar-thumb {
  background: #ccc;
}

.vdatetime-year-picker__list::-webkit-scrollbar-track {
  background: #efefef;
}

.vdatetime-year-picker,
.vdatetime-year-picker * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vdatetime-year-picker:after {
  content: "";
  display: table;
  clear: both;
}

.vdatetime-year-picker__list {
  float: left;
  width: 100%;
  height: 305px;
  overflow-y: scroll;
}

.vdatetime-year-picker__list::-webkit-scrollbar {
  width: 3px;
}

.vdatetime-year-picker__item {
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}

.vdatetime-year-picker__item:hover {
  font-size: 32px;
}

.vdatetime-year-picker__item--selected {
  color: var(--color-calculator-primary, #1677ff);
  font-size: 32px;
}

.vdatetime-year-picker__item--disabled {
  opacity: 0.4;
  cursor: default;
}

.vdatetime-year-picker__item--disabled:hover {
  color: inherit;
  background: transparent;
}

.vdatetime-month-picker__list::-webkit-scrollbar-thumb {
  background: #ccc;
}

.vdatetime-month-picker__list::-webkit-scrollbar-track {
  background: #efefef;
}

.vdatetime-month-picker,
.vdatetime-month-picker * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vdatetime-month-picker:after {
  content: "";
  display: table;
  clear: both;
}

.vdatetime-month-picker__list {
  float: left;
  width: 100%;
  height: 305px;
  overflow-y: scroll;
}

.vdatetime-month-picker__list::-webkit-scrollbar {
  width: 3px;
}

.vdatetime-month-picker__item {
  padding: 10px 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}

.vdatetime-month-picker__item:hover {
  font-size: 32px;
}

.vdatetime-month-picker__item--selected {
  color: var(--color-calculator-primary, #1677ff);
  font-size: 32px;
}

.vdatetime-month-picker__item--disabled {
  opacity: 0.4;
  cursor: default;
}

.vdatetime-month-picker__item--disabled:hover {
  color: inherit;
  background: transparent;
}

.calculator--grid .calc__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.calculator--grid .calc__input {
  margin-bottom: 24px;
}

.calc__formText {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 8px;
  text-align: left;
}

.calc__input--select option,
.calc__input--select select,
.input__number,
.input__numberRow .input__number::-webkit-input-placeholder,
.vdatetime-input,
.vdatetime .vdatetime-input::-webkit-input-placeholder {
  line-height: 24px;
  font-size: 20px;
  color: #666;
}

.calc__input--select option,
.calc__input--select select,
.input__number,
.input__numberRow .input__number:-ms-input-placeholder,
.vdatetime-input,
.vdatetime .vdatetime-input:-ms-input-placeholder {
  line-height: 24px;
  font-size: 20px;
  color: #666;
}

.calc__input--select option,
.calc__input--select select,
.input__number,
.input__numberRow .input__number::-ms-input-placeholder,
.vdatetime-input,
.vdatetime .vdatetime-input::-ms-input-placeholder {
  line-height: 24px;
  font-size: 20px;
  color: #666;
}

.calc__input--select option,
.calc__input--select select,
.input__number,
.input__numberRow .input__number::placeholder,
.vdatetime-input,
.vdatetime .vdatetime-input::placeholder {
  line-height: 24px;
  font-size: 20px;
  color: #666;
}

.calc__input--select select,
.input__number,
.vdatetime-input {
  border: 1px solid #979797;
  padding: 8px;
}

.calc__formRow {
  margin-bottom: 8px;
  display: block;
}

.calc__radio {
  margin-right: 8px;
}

.calc__radioLabel {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}

.calc__input--radioRow .calc__formRow {
  display: inline-block;
  margin-right: 24px;
}

.line {
  fill: none;
  stroke: grey;
  stroke-width: 1.5px;
}

.mainLine {
  fill: none;
  stroke: #2e8b57;
  stroke-width: 3.5px;
}

.pLine {
  fill: none;
  stroke: #000;
  stroke-width: 1.5px;
}

.area {
  fill: #4682b4;
  opacity: 0.2;
}

.areaGirl {
  fill: #ffb6c1;
  opacity: 0.2;
}

.dot {
  fill: #000;
  stroke: #000;
  stroke-width: 1.5px;
}

.dotSelected {
  fill: #ed7e1e;
  stroke: #ed7e1e;
  stroke-width: 1.5px;
}

.rect-to-axis {
  fill: transparent;
  stroke: rgba(20, 20, 20, 0.8);
}

.backgroundRect {
  fill: #fff;
}

.axis line,
.axis path {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

text {
  font-family: sans-serif;
  font-size: 11px;
}

.tooltipTextBackground {
  fill: rgba(237, 126, 30, 0.5);
}

.grid line {
  stroke: grey;
  stroke-opacity: 0.7;
  shape-rendering: crispEdges;
}

.grid path {
  stroke-width: 0;
}

.calc {
  padding: 24px 40px 24px 86px;
  background-color: #f4f4f4;
}

#growth_chart .calc {
  padding: 24px;
  border-radius: var(--border-radius-calculator-wrapper, 20px);
}

#growth_chart .calc .calc__input--select select,
#growth_chart .calc .input__number,
#growth_chart .calc .vdatetime-input,
#growth_chart .calc__form .calc__formRow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #ffffff;
  padding: 12px 16px;
  box-sizing: border-box;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
  border-radius: 6px;
  background-color: #ffffff;
  text-align: left;
  height: 54px;
  cursor: pointer;
  border: 1px solid #979797;
}

#growth_chart .calc input,
#growth_chart .calc input::placeholder {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

#growth_chart .calc .vdatetime-input,
#growth_chart .calc .vdatetime {
  position: relative;
}

#growth_chart .calc .vdatetime::after {
  position: absolute;
  top: 20px;
  right: 16px;
  display: block;
  content: "";
  background: url(/media/icons/calendar-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  z-index: 3;
  pointer-events: none;
}

#growth_chart .calc__desc,
#growth_chart .calc__headline {
  text-align: left;
}

.calc__desc,
.calc__headline {
  margin-bottom: 24px;
}

.calc__descText,
.calc__result {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #333;
  text-align: left;
}

.calc__headlineText {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.calc__headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.calc__button {
  text-align: center;
  margin-bottom: 8px;
}

.calc__button .button {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-calculator-primary, #1677ff);
  border-radius: var(--border-radius-calculator-button, 20px);
  border: 1px solid var(--color-calculator-primary, #1677ff);
  padding: 8px 24px;
  display: inline-block;
  max-width: 300px;
  min-width: 148px;
  text-transform: uppercase;
  cursor: pointer;
}

.calculator .vdatetime-calendar__navigation--next,
.calculator .vdatetime-calendar__navigation--previous {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.calculator .vdatetime-calendar__navigation--next {
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
}

.calc--result {
  margin-top: 8px;
}

.calc__result {
  margin-bottom: 24px;
}

.calc__grid--result .chartInfo {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 24px;
}

.calc__result a {
  color: var(--color-calculator-primary, #1677ff);
  font-size: 20px;
  line-height: 32px;
  text-decoration: underline;
  margin-right: 4px;
}

@media (max-width: 800px) {
  .calc {
    padding: 24px 8px;
  }
  .calc__desc,
  .calc__headline {
    margin-bottom: 16px;
  }
  .calc__descText {
    font-size: 18px;
    line-height: 26px;
  }
  .chartheight,
  .chartweight {
    text-align: center;
  }
  #growth_chart .calc {
    padding: 8px;
  }
  #growth_chart .calc__headline {
    margin-left: 8px;
  }
  #growth_chart .calc__descText,
  #growth_chart .calc .calc__input--select select,
  #growth_chart .calc .input__number,
  #growth_chart .calc .vdatetime-input,
  #growth_chart .calc__form .calc__formRow span,
  #growth_chart .calc input::placeholder {
    font-size: 14px;
  }
  #growth_chart .calc__radio {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .backgroundRect,
  .growth_chart_main_svg {
    width: 100%;
  }
  .backgroundRect,
  .growth_chart_main_svg {
    width: 120%;
    transform: scale(0.9) translateX(-20px);
  }
  .chartheight,
  .chartweight {
    background-color: #fff;
  }
}
