
:root {
  --primary-color: #642EFF;
  --color-primary-light: #7d50fc;
  --color-white: #FFFFFF;
  --color-dark: #0F0F0F;
  --color-black: #000000;
}

/* NetCars calc — base tokens, loader, buttons, type (from netcars theme) */
body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark, #0F0F0F);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
}
.page-loader__logo {
  position: relative;
  z-index: 1;
  width: 112px;
}
.page-loader__spinner {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary-color, #642EFF);
  border-right-color: rgba(100, 46, 255, 0.45);
  border-radius: 50%;
  animation: page-loader-spin 0.9s linear infinite;
}

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

.calc-page,
.calc-page * {
  box-sizing: border-box;
}

.calc-page {
  --bg-color: #FFFFFF;
  --primary-color: #642EFF;
  --color-primary-light: #7d50fc;
  --color-black: #000000;
  --color-dark: #0F0F0F;
  --color-white: #FFFFFF;
  --color-gray-light: #7E7E7E;
  --color-border: #E2E2E2;
  font-family: "Manrope", sans-serif;
  color: var(--color-black);
}

.calc-page button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.calc-page .btn {
  background: transparent;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  border-radius: 59px;
}
.calc-page .btn.btn-primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--color-white);
}
.calc-page .btn.btn-primary:hover {
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-light);
}
.calc-page .btn.btn-treatry {
  background-color: #25D366;
  border: 1px solid #25D366;
  color: var(--color-white);
}
.calc-page .btn.btn-treatry:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}

.calc-page .h2 {
  text-decoration: uppercase;
  font-family: "Bebas Neue Cyrillic", "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
}
.calc-page .t1 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: -1%;
  color: var(--color-black);
}
.calc-page .t2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
}
.calc-page .t3 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}
.calc-page .t4 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}
.calc-page .t9 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}
.calc-page .t10 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
}

@media (max-width: 1600px) and (min-width: 1280px) {
  .calc-page .btn {
    padding: 14px 24px;
    font-size: 16px;
  }
  .calc-page .h2 {
    font-size: 40px;
  }
}
@media (max-width: 960px) {
  .calc-page .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  .calc-page .h2 {
    font-size: 32px;
  }
}


.calc {
  margin: 120px 0;
}
.calc__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.calc__wrapper {
  background-color: #F6F3FF;
  padding: 40px;
  border-radius: 32px;
}
.calc__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc__form .custom-select {
  position: relative;
  width: 100%;
}
.calc__form .custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: var(--color-white);
  border: 1px solid #CCD0D9;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  line-height: 100%;
}
.calc__form .custom-select__trigger:hover {
  border-color: var(--primary-color);
}
.calc__form .custom-select__trigger span {
  color: #7E7E7E;
}
.calc__form .custom-select__trigger.has-value span {
  color: #000;
}
.calc__form .custom-select.is-open .custom-select__trigger {
  border-color: var(--primary-color);
  border-radius: 12px 12px 0 0;
}
.calc__form .custom-select.is-open .custom-select__arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.calc__form .custom-select.is-open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.calc__form .custom-select__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #7E7E7E;
  border-bottom: 2px solid #7E7E7E;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.calc__form .custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--primary-color);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.calc__form .custom-select__options::-webkit-scrollbar {
  width: 6px;
}
.calc__form .custom-select__options::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 3px;
}
.calc__form .custom-select__options::-webkit-scrollbar-thumb {
  background: #CCD0D9;
  border-radius: 3px;
}
.calc__form .custom-select__options::-webkit-scrollbar-thumb:hover {
  background: #B8BEC6;
}
.calc__form .custom-select__option {
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #000;
  font-size: 16px;
}
.calc__form .custom-select__option:hover, .calc__form .custom-select__option.is-selected {
  background: #F6F3FF;
  color: var(--primary-color);
}
.calc__form .custom-select__option.is-selected {
  font-weight: 500;
}
.calc__form .custom-select__option:last-child {
  border-radius: 0 0 12px 12px;
}
.calc__form .input-radio-group {
  border-top: 1px solid #CCD0D9;
  padding-top: 32px;
}
.calc__form .input-checkbox-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 4px;
  gap: 40px;
}
.calc__form .input-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
}
.calc__form .input-checkbox-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.calc__form .input-checkbox-group .custom-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--color-white);
  border: 1.5px solid #B8BEC6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.calc__form .input-checkbox-group .custom-checkbox svg {
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
}
.calc__form .input-checkbox-group label:hover .custom-checkbox {
  border-color: var(--primary-color);
}
.calc__form .input-checkbox-group input[type=checkbox]:checked + .custom-checkbox {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.calc__form .input-checkbox-group input[type=checkbox]:checked + .custom-checkbox svg {
  opacity: 1;
  transform: scale(1);
}
.calc__form .input-checkbox-group .label-desc {
  color: #71797D;
  margin: 0;
}
.calc__form .form__row {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.calc__form .form__row .input-group {
  width: calc((100% - 100px) / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc__form .form__row .input-group input[type=text],
.calc__form .form__row .input-group input[type=number] {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #CCD0D9;
  background: var(--color-white);
  padding: 0 16px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000;
}
.calc__form .form__row .input-group .desc {
  color: #7E7E7E;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0;
  font-weight: 400;
}
.calc__form .form__row .input-group-custom {
  width: calc((100% - 100px) / 3);
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.calc__form .form__row .input-group-custom .input-group {
  width: 100%;
}
.calc__form .form__row .input-group-custom .radio-group {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.calc__form .form__row .input-group-custom .radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.calc__form .form__row .input-group-custom .radio-group input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.calc__form .form__row .input-group-custom .radio-group .custom-radio {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--color-white);
  border: 1.5px solid #B8BEC6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.calc__form .form__row .input-group-custom .radio-group .custom-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
}
.calc__form .form__row .input-group-custom .radio-group label:hover .custom-radio {
  border-color: var(--primary-color);
}
.calc__form .form__row .input-group-custom .radio-group input[type=radio]:checked + .custom-radio {
  border-color: var(--primary-color);
}
.calc__form .form__row .input-group-custom .radio-group input[type=radio]:checked + .custom-radio::after {
  opacity: 1;
  transform: scale(1);
}
.calc__form .form__row .input-radio {
  width: calc((100% - 100px) / 3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc__form .form__row .input-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.calc__form .form__row .input-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.calc__form .form__row .input-radio .custom-radio {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--color-white);
  border: 1.5px solid #B8BEC6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.calc__form .form__row .input-radio .custom-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
}
.calc__form .form__row .input-radio label:hover .custom-radio {
  border-color: var(--primary-color);
}
.calc__form .form__row .input-radio input[type=radio]:checked + .custom-radio {
  border-color: var(--primary-color);
}
.calc__form .form__row .input-radio input[type=radio]:checked + .custom-radio::after {
  opacity: 1;
  transform: scale(1);
}
.calc__form .form__row .input-radio .label-desc {
  color: #71797D;
  margin: 0;
}
.calc__form .button-group {
  display: flex;
  flex-direction: row;
}
.calc__form .button-group .btn {
  margin-top: 16px;
  min-width: 264px;
}

.calc-price {
  margin: 120px 0;
}
.calc-price__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calc-price__wrapper {
  background-color: #F6F3FF;
  border-radius: 32px;
  max-width: 840px;
  margin-bottom: 24px;
}
.calc-price__wrapper .content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-price__wrapper .content .features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-price__wrapper .content .features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-price__wrapper .content .features-list li {
  background-color: var(--color-white);
  color: #626262;
  padding: 8px 12px;
  border-radius: 100px;
}
.calc-price__wrapper .content .price-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-price__wrapper .content .price-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.calc-price__wrapper .content .price-list li:not(:last-child) {
  border-bottom: 1px solid #E4D9FF;
  padding-bottom: 8px;
}
.calc-price__wrapper .content .price-list li .title.t1 {
  font-weight: 700;
}
.calc-price__wrapper .content .price-list li .desc {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  text-align: right;
  gap: 16px;
}
.calc-price__wrapper .content .price-list li .desc .small {
  color: #7E7E7E;
}
.calc-price__wrapper .content .price-list li .desc .normal {
  font-weight: 500;
  color: var(--color-black);
}
.calc-price__wrapper .content .price-list li .desc .big {
  color: var(--color-black);
  font-weight: 700;
}
.calc-price__wrapper .content .total {
  border-top: 1px solid #CCD0D9;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.calc-price__wrapper .content .total .title {
  font-weight: 700;
  color: var(--color-black);
}
.calc-price__wrapper .content .total .desc .big {
  font-weight: 700;
  color: var(--color-black);
}
.calc-price__wrapper .bottom {
  background-color: var(--primary-color);
  padding: 32px;
  border-radius: 0 0 32px 32px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-price__wrapper .bottom .price {
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0;
}
.calc-price__button {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.calc-price__button .btn {
  min-width: 364px;
}

@media (max-width: 1150px) {
  .calc__inner {
    gap: 28px;
  }
  .calc__wrapper {
    padding: 32px;
    border-radius: 24px;
  }
  .calc__form {
    gap: 28px;
  }
  .calc__form .input-radio-group {
    padding-top: 24px;
  }
  .calc__form .input-checkbox-group {
    margin-bottom: 4px;
    gap: 40px;
  }
  .calc__form .input-checkbox-group label {
    gap: 8px;
  }
  .calc__form .form__row {
    gap: 32px;
  }
  .calc__form .form__row .input-group {
    width: calc((100% - 64px) / 3);
  }
  .calc__form .form__row .input-group-custom {
    width: calc((100% - 64px) / 3);
  }
  .calc__form .form__row .input-group-custom .radio-group {
    padding-top: 20px;
  }
  .calc__form .form__row .input-radio {
    width: calc((100% - 100px) / 3);
    gap: 12px;
  }
  .calc__form .form__row .input-radio label {
    gap: 8px;
  }
  .calc__form .button-group .btn {
    margin-top: 16px;
    min-width: 264px;
  }
  .calc-price__wrapper {
    background-color: #F6F3FF;
    border-radius: 32px;
    max-width: 840px;
    margin-bottom: 24px;
  }
  .calc-price__wrapper .content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .calc-price__wrapper .content .features {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .calc-price__wrapper .content .features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .calc-price__wrapper .content .features-list li {
    background-color: var(--color-white);
    color: #626262;
    padding: 8px 12px;
    border-radius: 100px;
  }
  .calc-price__wrapper .content .price-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .calc-price__wrapper .content .price-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .calc-price__wrapper .content .price-list li:not(:last-child) {
    border-bottom: 1px solid #E4D9FF;
    padding-bottom: 8px;
  }
  .calc-price__wrapper .content .price-list li .title.t1 {
    font-weight: 700;
  }
  .calc-price__wrapper .content .price-list li .desc {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    text-align: right;
    gap: 16px;
  }
  .calc-price__wrapper .content .price-list li .desc .small {
    color: #7E7E7E;
  }
  .calc-price__wrapper .content .price-list li .desc .normal {
    font-weight: 500;
    color: var(--color-black);
  }
  .calc-price__wrapper .content .price-list li .desc .big {
    color: var(--color-black);
    font-weight: 700;
  }
  .calc-price__wrapper .content .total {
    border-top: 1px solid #CCD0D9;
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
  }
  .calc-price__wrapper .content .total .title {
    font-weight: 700;
    color: var(--color-black);
  }
  .calc-price__wrapper .content .total .desc .big {
    font-weight: 700;
    color: var(--color-black);
  }
  .calc-price__wrapper .bottom {
    background-color: var(--primary-color);
    padding: 32px;
    border-radius: 0 0 32px 32px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .calc-price__wrapper .bottom .price {
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0;
  }
  .calc-price__button .btn {
    min-width: 364px;
  }
}
@media (max-width: 960px) {
  .calc__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .calc__wrapper {
    background-color: #F6F3FF;
    padding: 32px;
    border-radius: 32px;
  }
  .calc__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .calc__form .input-radio-group {
    border-top: 1px solid #CCD0D9;
    padding-top: 32px;
  }
  .calc__form .input-checkbox-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 4px;
    gap: 40px;
  }
  .calc__form .input-checkbox-group label {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .calc__form .form__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .calc__form .form__row .input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .calc__form .form__row .input-group input[type=text], .calc__form .form__row .input-group input[type=number] {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #CCD0D9;
    background: var(--color-white);
    padding: 0 16px;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
  }
  .calc__form .form__row .input-group .desc {
    color: #7E7E7E;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0;
    font-weight: 400;
  }
  .calc__form .form__row .input-group-custom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .calc__form .form__row .input-group-custom .input-group {
    width: 100%;
  }
  .calc__form .form__row .input-group-custom .radio-group {
    padding-top: 0px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .calc__form .form__row .input-group-custom .radio-group label {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .calc__form .form__row .input-radio {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .calc__form .form__row .input-radio label {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .calc__form .button-group {
    display: flex;
    flex-direction: row;
  }
  .calc__form .button-group .btn {
    margin-top: 16px;
    min-width: 100%;
  }
}
@media (max-width: 640px) {
  .calc {
    margin-top: 90px;
    margin-bottom: 60px;
  }
  .calc__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .calc__wrapper {
    background-color: #F6F3FF;
    padding: 20px;
    border-radius: 16px;
  }
  .calc__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .calc__form .input-radio-group {
    border-top: 1px solid #CCD0D9;
    padding-top: 32px;
  }
  .calc__form .input-checkbox-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 4px;
    gap: 40px;
  }
  .calc__form .input-checkbox-group label {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .calc__form .form__row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .calc__form .form__row .input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .calc__form .form__row .input-group input[type=text], .calc__form .form__row .input-group input[type=number] {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #CCD0D9;
    background: var(--color-white);
    padding: 0 16px;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
  }
  .calc__form .form__row .input-group .desc {
    color: #7E7E7E;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0;
    font-weight: 400;
  }
  .calc__form .form__row .input-group-custom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .calc__form .form__row .input-group-custom .input-group {
    width: 100%;
  }
  .calc__form .form__row .input-group-custom .radio-group {
    padding-top: 0px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .calc__form .form__row .input-group-custom .radio-group label {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .calc__form .form__row .input-radio {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .calc__form .form__row .input-radio label {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  .calc__form .button-group {
    display: flex;
    flex-direction: row;
  }
  .calc__form .button-group .btn {
    margin-top: 0px;
    min-width: 100%;
  }
  .calc-price {
    margin-top: 90px;
    margin-bottom: 60px;
  }
  .calc-price__wrapper {
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .calc-price__wrapper .content {
    padding: 20px;
    gap: 28px;
  }
  .calc-price__wrapper .content .features {
    gap: 12px;
  }
  .calc-price__wrapper .content .features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .calc-price__wrapper .content .features-list li {
    background-color: var(--color-white);
    color: #626262;
    padding: 8px 12px;
    border-radius: 100px;
  }
  .calc-price__wrapper .content .price-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .calc-price__wrapper .content .price-list li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .calc-price__wrapper .content .price-list li:not(:last-child) {
    border-bottom: 1px solid #E4D9FF;
    padding-bottom: 8px;
  }
  .calc-price__wrapper .content .price-list li .title.t1 {
    font-weight: 700;
  }
  .calc-price__wrapper .content .price-list li .desc {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    text-align: right;
    gap: 16px;
  }
  .calc-price__wrapper .content .price-list li .desc .small {
    color: #7E7E7E;
  }
  .calc-price__wrapper .content .price-list li .desc .normal {
    font-weight: 500;
    color: var(--color-black);
  }
  .calc-price__wrapper .content .price-list li .desc .big {
    color: var(--color-black);
    font-weight: 700;
  }
  .calc-price__wrapper .content .total {
    padding-top: 16px;
  }
  .calc-price__wrapper .bottom {
    padding: 20px;
    border-radius: 0 0 16px 16px;
    gap: 12px;
  }
  .calc-price__wrapper .bottom .price {
    font-size: 36px;
  }
  .calc-price__button {
    flex-direction: column;
    gap: 12px;
  }
  .calc-price__button .btn {
    min-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */

/* netcars-calc-stage */
.calc-price[hidden] {
  display: none !important;
}
.calc-price {
  scroll-margin-top: 120px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.calc-price.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.calc-price__wrapper .content .price-list li[hidden],
.calc-form-error[hidden],
[data-calc-row][hidden] {
  display: none !important;
}
.calc-price__button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
