.no-scroll{
  overflow: hidden;
}
.main-calc {
  max-width: 192rem;
  padding: 8rem;
  margin: 0 auto;
}

.calculator {
  width: 100%;
}

.calculator__form {
  width: 65%;
}

.calculator__header {
  display: flex;
  flex-direction: column;
  max-width: 100rem;
  margin: 0 auto;
  margin-bottom: 5.2rem;
}

.calculator__title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 4rem;
}

.calculator__conditions {
  display: flex;
  align-items: center;
}

.conditions__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 33.3333333333%;
}

.conditions__title {
  color: #ff5c6e;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
}

.conditions__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 150%;
}

.calculator__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 95rem;
  overflow: hidden;
}

.calculator__row {
  position: relative;
  display: flex;
  width: 100%;
  box-sizing: content-box;
  transition: 0.35s ease-in-out;
  margin: -2rem;
}

.calculator__step {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 0;
  margin: 2rem;
}

.show-step {
  height: auto;
}

.step-calc__title {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 133%;
  margin-bottom: 2.4rem;
}

.step-calc__model {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 11.5rem;
  height: 11.5rem;
  padding: 0 0.4rem;
  margin: 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(51, 51, 51, 0.1);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.step-calc__model:hover {
  background: #fff;
  box-shadow: 0 0.2rem 1rem rgba(51, 51, 51, 0.1);
}

.step-models {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -1rem;
}

.model__title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 133%;
}

.model__subtitle {
  font-size: 1.2rem;
  line-height: 133%;
}

.calculator__nav {
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
}

.calc-nav__prev {
  padding: 0.8rem;
  border-radius: 50%;
  margin-right: 1.6rem;
  background: rgba(51, 51, 51, 0.3);
  transition: all 0.2s ease-in-out;
  transform: rotate(180deg);
  cursor: pointer;
}

.calc-nav__prev:hover {
  background: #fff;
}

.calc-nav__prev:hover img {
  filter: invert(1);
}

.calc-nav__next {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 114%;
  font-weight: 500;
  background: #fff;
  padding: 1.2rem 1.6rem 1.2rem 2.4rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 2rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}

.calc-nav__next:hover {
  background: #ff5c6e;
  color: #fff;
}

.calc-nav__next:hover .calc-nav__icon {
  filter: grayscale(1) brightness(1000);
}

.load{
    opacity: 0.3;
    pointer-events: none;
    cursor: wait;
}

.calc-nav__icon {
  margin-left: 1.6rem;
}

.step-config__wrap {
  margin-bottom: 2.5rem;
}

.step-config__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
}

.step-config__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -0.8rem -0.8rem;
}

.step-config__parametr {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin: 0.8rem 0.8rem;
}

.step-config__radio {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.step-config__radio:checked + .step-config__text {
  background: #ff5c6e;
  border-color: #ff5c6e;
  color: #fff;
}

.step-config__text {
  font-size: 1.4rem;
  line-height: 114%;
  padding: 0.9rem 1.6rem;
  color: rgba(51, 51, 51, 0.7);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 2rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.step-config__text:hover {
  background: #fff;
  color: #333;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  border-color: #fff;
}

.config-spoiler {
  display: none;
  padding-left: 2rem;
}

.config-spoiler__item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 2.4rem;
}

.config-spoiler__item:first-child {
  margin-top: 2.4rem;
}

.config-spoiler__check {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.config-spoiler__check:checked + .config-spoiler__text {
  background: #ff5c6e;
  box-shadow: 0 0 2rem #ff5c6e;
  color: #fff;
  border-color: #ff5c6e;
}

.config-spoiler__check:checked + .config-spoiler__text:before {
  background: #fff;
}

.config-spoiler__text {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 114%;
  border: 0.5px solid rgba(51, 51, 51, 0.1);
  padding: 0.8rem 1.6rem 0.8rem 1rem;
  color: rgba(51, 51, 51, 0.7);
  border-radius: 2rem;
  transition: 0.35s ease-in-out;
}

.config-spoiler__text:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  background: rgba(51, 51, 51, 0.2);
}

.config-spoiler__text:hover {
  background: #fff;
  color: #333;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  border-color: #fff;
}

.config-spoiler__text:hover:before {
  background: #333;
}

.show-spoiler {
  display: block;
}

.config-spoiler .config-spoiler__parametr {
  display: flex;
  cursor: pointer;
  position: relative;
  margin-bottom: 2.4rem;
  margin-bottom: 2.4rem;
}

.config-spoiler .config-spoiler__parametr .config-spoiler__radio {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.config-spoiler .config-spoiler__parametr .config-spoiler__radio:checked + .step-config__text {
  background: #ff5c6e;
  box-shadow: 0 0 2rem #ff5c6e;
  color: #fff;
  border-color: #ff5c6e;
}

.config-spoiler .config-spoiler__parametr .config-spoiler__radio:checked + .step-config__text:before {
  background: #fff;
}

.config-spoiler .config-spoiler__parametr:first-child {
  margin-top: 2.4rem;
}

.config-spoiler .config-spoiler__parametr .step-config__text {
  display: flex;
  align-items: center;
  transition: 0.35s ease-in-out;
}

.config-spoiler .config-spoiler__parametr .step-config__text:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  background: rgba(51, 51, 51, 0.2);
}

.config-spoiler .config-spoiler__parametr .step-config__text:before:hover {
  background: #333;
}

.config-complet {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.2rem;
}

.config-complet__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(25% - 2.4rem);
  height: 10rem;
  margin: 1.2rem 1.2rem;
  padding: 1.2rem 1.6rem 1.6rem;
  border-radius: 1rem;
  border: 0.5px solid rgba(51, 51, 51, 0.1);
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.config-complet__item:hover {
  background: #fff;
}

.config-complet .complet-active {
  background: #ff5c6e;
  box-shadow: 0 0 2rem #ff5c6e;
  color: #fff;
  border-color: #ff5c6e;
}

.config-complet .complet-active .config-complet__title {
  color: #fff;
}

.config-complet .complet-active .config-complet__subtitle {
  color: #fff;
}

.config-complet__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  line-height: 150%;
  text-align: center;
  padding: 0 0.8rem 0.4rem;
  transition: all 0.2s ease-in-out;
}

.config-complet__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 150%;
  transition: all 0.2s ease-in-out;
}

.calc-order {
  display: flex;
  flex-direction: column;
}

.calc-order__left {
  width: 65%;
}

.calc-order__info {
  display: flex;
  justify-content: space-between;
  border-radius: 2rem;
  background: #fff;
  padding: 2.4rem 3.2rem 3.2rem;
  box-shadow: 0 0 2rem rgba(51, 51, 51, 0.1);
  margin-bottom: 2.4rem;
  overflow: hidden;
}

.calc-order__title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 133%;
}

.calc-order__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 150%;
  margin-bottom: 1.6rem;
}

.calc-order__total {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: calc(100% + 3.2rem);
  background: #ff5c6e;
  border-radius: 0 1rem 1rem 0;
  padding: 2.4rem 5.6rem 2.4rem 3.2rem;
  margin-bottom: 2.4rem;
  margin-left: -3.2rem;
  color: #fff;
}

.calc-order__inner {
  width: 30%;
}

.calc-order__parament {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.calc-order__parament:last-child {
  margin-bottom: 0;
}

.calc-order__checount {
  border-radius: 1rem;
  background: #fff;
  padding: 2.4rem 1.6rem 3.2rem 3.2rem;
}

.order-parametr__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 0.4rem;
}

.order-parametr__name {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 130%;
}

.calc-total__price {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 117%;
}

.calc-total__symbol {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 133%;
  margin-left: 0.8rem;
}

.calc-total__img {
  position: absolute;
  right: 8rem;
  width: 6.4rem;
}

.calc-order__exchange {
  display: flex;
  flex-direction: column;
}

.order-exchange__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 0.6rem;
}

.order-exchange__inner {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.order-exchange__check {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.order-exchange__check:checked + .order-exchange__status .order-exchange__circle {
  left: 50%;
}

.order-exchange__check:checked + .order-exchange__status .order-exchange__circle:after {
  opacity: 1;
}

.order-exchange__check:checked + .order-exchange__status .order-exchange__circle:before {
  opacity: 0;
}

.order-exchange__status {
  position: relative;
  display: flex;
  width: 6rem;
  height: 3rem;
  border-radius: 10rem;
  background: rgba(51, 51, 51, 0.1);
  margin-right: 2rem;
}

.order-exchange__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-radius: 10rem;
  background: #ff5c6e;
  transition: 0.35s ease-in-out;
}

.order-exchange__circle:after {
  content: "Да";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  line-height: 100%;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transition: 0.35s ease-in-out;
}

.order-exchange__circle:before {
  content: "Нет";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  line-height: 100%;
  font-weight: 500;
  color: #fff;
  transition: 0.35s ease-in-out;
  opacity: 1;
}

.order-exchange__info {
  font-size: 1.2rem;
}

.calc-checount__title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 133%;
}

.calc-checount__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 150%;
  padding-bottom: 4rem;
}

.calc-checount__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.6rem;
  padding-right: 1.6rem;
}

.calc-checount__text {
  font-size: 1.2rem;
  line-height: 133%;
  font-weight: 400;
  color: #333;
  padding-bottom: 0.8rem;
}

.calc-checount__input {
  font-size: 1.4rem;
  line-height: 115%;
  font-weight: 500;
  width: 100%;
  padding: 1.2rem !important;
  border-radius: 0.5rem !important;
  background: rgba(51, 51, 51, 0.1);
  color: rgba(51, 51, 51, 0.7) !important;
  transition: all 0.2s ease-in-out;
}

.calc-checount__input:focus {
  box-shadow: 0 0.1rem 0.6rem #9d9b9b;
}

.calc-checount__row {
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
}

.calc-checount__item {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-right: 1.6rem;
}

.calc-checount__select {
  position: relative;
  display: inline-block;
}

.calc-checount__check {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 3.2rem;
}

.calc-checount__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.calc-checount__checkbox:checked + .calc-checount__box {
  background-color: #ff5c6e;
}

.calc-checount__checkbox:checked ~ .calc-checount__desc {
  color: #ff5c6e;
}

.calc-checount__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
  border-radius: 0.5rem;
  background-color: rgba(51, 51, 51, 0.1);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: 50%;
  transition: background-color 0.2s ease-in-out;
}

.calc-checount__desc {
  font-size: 1.2rem;
  line-height: 133%;
  font-weight: 400;
  color: #333;
  transition: background-color 0.2s ease-in-out;
}

.calc-checount__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.5rem 0.5rem 2.4rem;
  background: #ff5c6e;
  color: #fff;
  font-size: 1.4rem;
  line-height: 114%;
  font-weight: 500;
  border-radius: 2rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.calc-checount__btn:hover {
  background-color: #fff;
  color: #ff5c6e;
}

.calc-checount__btn:hover .calc-checount__arrow {
  background: #ff5c6e;
}

.calc-checount__btn:hover .calc-checount__arrow img {
  filter: grayscale(1) brightness(1000);
}

.calc-checount__arrow {
  border-radius: 50%;
  padding: 0.7rem;
  background: #fff;
  margin-left: 1.6rem;
  transition: all 0.3s ease-in-out;
}

.checount-select__current {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  padding: 0.9rem;
  border-radius: 0.5rem;
  background-color: rgba(51, 51, 51, 0.1);
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 114%;
}

.checount-select__current:after {
  content: "";
  position: relative;
  border: solid #333;
  transform: rotate(45deg);
  margin: -3px 0 0;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.2rem;
  transition: transform 0.2s, margin 0.2s;
}

.checount-select__dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  border: 1px solid rgba(51, 51, 51, 0.1);
  z-index: 2;
  background-color: #fff;
  opacity: 1;
  transition: 0.25s ease-in-out;
  overflow: hidden;
}

.checount-select .dropdown-show {
  display: block;
  opacity: 1;
  max-height: 200px;
}

.checount-select__option {
  padding: 6px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 114%;
  cursor: pointer;
}

.checount-select__option:hover {
  background-color: rgba(51, 51, 51, 0.1);
}

.checount-select .option-active {
  cursor: not-allowed;
  color: #dedede;
  background-color: #fff;
}

.pink {
  color: #ff5c6e;
}

.calculator__error {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ff5c6e;
  margin-top: 1.5rem;
}

.model-active {
  background: #ff5c6e;
  box-shadow: 0 0 2rem #ff5c6e;
  border-color: #ff5c6e;
}

.model-active .model__title,
.model-active .model__subtitle {
  color: #fff;
}

.model-active:hover {
  background: #ff5c6e;
  box-shadow: 0 0 2rem #ff5c6e;
  border-color: #ff5c6e;
}

.modal-calc {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
  background: rgba(87, 81, 81, 0.4509803922);
  z-index: -5;
  visibility: hidden;
}

.modal-calc__wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 50rem;
  height: 15rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease-in-out;
}

.modal-calc__close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  font-size: 3.5rem;
  font-weight: 600;
  background-color: #ccc;
  color: #fff;
  border-bottom-left-radius: 1.5rem;
  cursor: pointer;
  transition: 0.35s ease-in-out;
}

.modal-calc__close:hover {
  background-color: #ff5c6e;
}

.modal-calc__close span {
  transform: rotate(45deg);
}

.modal-calc__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-calc__title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 1.5rem;
}

.modal-calc__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-calc-show {
  z-index: 999;
  visibility: visible;
}

.modal-calc-show .modal-calc__wrap {
  opacity: 1;
  visibility: visible;
}
 

@media (max-width: 1300px) {
  .calculator__form {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .main {
    padding: 2rem;
  }

  .calculator__header {
    margin-bottom: 0;
  }

  .calculator__title {
    margin-bottom: 2rem;
  }

  .calculator__conditions {
    align-items: flex-start;
    margin: 0 -1.2rem 2rem;
  }

  .conditions__item {
    margin: 0 1.2rem;
  }

  .conditions__title {
    font-size: 1.4rem;
    line-height: 135%;
  }

  .conditions__subtitle {
    font-size: 1.4rem;
    line-height: 135%;
  }

  .show-step {
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

@media (max-width: 756px) {
  .config-complet__item {
    width: calc(33.3333333333% - 1rem);
    margin: 0.5rem 0.5rem;
  }

  .calc-order__left {
    width: 100%;
  }

  .calc-order__info {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1rem 1.4rem;
  }

  .calc-order__inner {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .main {
    padding: 3rem 1rem;
  }

  .calculator__title {
    font-size: 1.8rem;
  }

  .calculator__conditions {
    display: none;
  }

  .step-calc__title {
    font-size: 1.4rem;
    line-height: 135%;
  }

  .step-calc__model {
    width: 8rem;
    height: 8rem;
    margin: 0.5rem 0.5rem;
  }

  .step-models {
    margin: -0.5rem -0.5rem;
  }

  .model__title {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .step-config__text {
    font-size: 1.2rem;
    text-align: left;
  }

  .config-spoiler {
    padding-left: 0;
  }

  .config-spoiler__text {
    font-size: 1.2rem;
    padding: 0.8rem 1rem 0.8rem 1rem;
  }

  .config-spoiler__text:before {
    flex: 1 0 auto;
  }

  .config-spoiler .config-spoiler__parametr .step-config__text:before {
    display: flex;
    flex: 1 1 auto;
  }

  .config-complet__item {
    width: calc(50% - 1rem);
    margin: 0.5rem 0.5rem;
  }

  .calc-order__title {
    font-size: 1.6rem;
  }

  .calc-order__subtitle {
    font-size: 1.4rem;
  }

  .calc-total__symbol {
    padding-bottom: 0.5rem;
  }

  .calc-total__img {
    right: 1rem;
  }

  .calc-order__exchange {
    margin-bottom: 1.4rem;
  }

  .order-exchange__status {
    flex: 1 1 25%;
    margin-right: 1rem;
  }

  .calculator__error {
    font-size: 1.4rem;
  }

  .modal-calc__wrap {
    width: 90%;
    height: 20rem;
  }
}