.calc--new {
  max-width: 678px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rent__box {
  padding: 24px;
  border: 2px solid #dbdfe3;
}
.rent__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rent__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.rent-radio {
  padding-left: 28px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.rent-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.rent-radio-box {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 50%;
  transition: 0.2s;
}

.rent-radio input[type="radio"]:checked + .rent-radio-box {
  border: 1px solid #000000;
}

.rent-radio-box::after {
  content: "";
  position: absolute;
  display: none;
}

.rent-radio input[type="radio"]:checked + .rent-radio-box::after {
  display: block;
}

.rent-radio-box::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dea81c;
}
#calculator .calc__value--rent {
  width: 60px;
  height: 40px;
  margin: 0;
  font-size: 18px;
}
#calculator .calc__value--rent:focus {
  outline: none;
}
#calculator .slider-container--rent {
  max-width: 100%;
  width: 100%;
  margin-top: 40px;
}
#calculator .rent__box-title {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
#calculator .rent__text {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
#calculator .calc-box--mark-concrete,
#calculator .calc-list--mark-concrete {
  max-width: 100%;
  width: 100%;
}
#calculator input[disabled] {
  color: #dbdfe3;
}
#calculator input[disabled],
#calculator .dis {
  pointer-events: none;
  background: #dbdfe366;
}
#calculator .dis .calc__name {
  color: #dbdfe3;
}
#calculator .arrow__btn--rent {
  background: none;
}
#calculator .dis .arrow__btn--rent img {
  opacity: 0.1;
}
.rent__tooltip {
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
}

.rent__tooltip::after {
  width: 334px;
  content: attr(data-tooltip);
  position: absolute;
  top: 125%;
  left: var(--tooltip-left, 50%);
  transform: translateX(-50%);
  padding: 12px 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
  background: #f1f2f4;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 10;
}

@media (hover: hover) and (pointer: fine) {
  .rent__tooltip:hover::after {
    opacity: 1;
    top: 135%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .rent__tooltip.active::after {
    opacity: 1;
    top: 135%;
  }
}

.rent__container-text {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.rent__btn-back {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
#calculator .rent__btn-back img {
  width: 10px;
  height: auto;
}
#calculator .container__rent {
  padding-top: 40px;
  align-items: baseline;
}
.btn__calculated--rent {
  margin-left: auto;
  margin-right: auto;
}
#calculator .rent-calculated {
  max-width: 100%;
  width: 100%;
  margin-top: 20px;
}
#calculator {
  overflow-x: hidden;
}
#calculator .slider__rent {
  width: 100%;
}
#calculator .calc__value--rent.error,
#mark-concrete.error {
  border: 2px solid #ff0000 !important;
}
@media (max-width: 1000px) {
  .calc--new {
    max-width: 648px;
    width: 100%;
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .rent__box {
    padding: 12px;
    border: 2px solid #dbdfe3;
  }
  .rent-radio {
    font-size: 12px;
  }
  #calculator .calc__value--rent {
    width: 48px;
    height: 32px;
    font-size: 14px;
  }
  .rent__list {
    gap: 4px;
  }

  #slider-labels-rent span,
  #calculator .rent__text {
    font-size: 14px;
  }
  #calculator .radio__rent {
    margin-top: -4px;
  }
  #calculator .rent__btn-back {
    font-size: 14px;
  }
  .rent__container-text {
    gap: 4px;
  }
  .rent__tooltip::after {
    width: 250px;
    font-size: 12px;
    padding: 12px;
  }
}
@media (max-width: 450px) {
  .rent__tooltip1::after {
    left: -600%;
  }
  .rent__tooltip2::after {
    left: -500%;
  }
  .rent__tooltip3::after {
    left: -200%;
  }
}
.top-nav li:last-child .sub-menu {
	right:0;
}