.calc_wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 0;
  font-family: Manrope, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1440px) {
  .calc_wrap {
    max-width: 1180px;
  }
}
@media (max-width: 960px) {
  .calc_wrap {
    padding: 40px 0;
  }
}
.calc_wrap .top_part {
  display: flex;
  gap: 44px;
  padding: 0 60px;
}
.calc_wrap .top_part .left_part, .calc_wrap .top_part .right_part {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 calc(50% - 22px);
}
.calc_wrap .top_part .left_part .left, .calc_wrap .top_part .right_part .left {
  font-size: 40px;
  font-weight: bold;
  background: #00468b;
  border-radius: 50%;
  width: 80px;
  min-width: 80px;
  min-height: 80px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc_wrap .top_part .left_part .right, .calc_wrap .top_part .right_part .right {
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc_wrap .top_part .left_part .right .tit, .calc_wrap .top_part .right_part .right .tit {
  font-size: 23px;
  font-weight: bold;
}
.calc_wrap .top_part .left_part .right .body, .calc_wrap .top_part .right_part .right .body {
  font-size: 16px;
}
.calc_wrap .top_part .right_part .left {
  background: #ec1d25;
}
@media (max-width: 960px) {
  .calc_wrap .top_part {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .calc_wrap .top_part .left_part, .calc_wrap .top_part .right_part {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
}
.calc_wrap .bottom_part {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.calc_wrap .bottom_part .range_tit {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  display: block;
}
.calc_wrap .bottom_part .left_part {
  flex: 0 66%;
  padding: 60px;
  border-radius: 5px;
  background: #fff;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.calc_wrap .bottom_part .left_part .range_to {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 46px;
}
.calc_wrap .bottom_part .left_part .range_to .t-range {
  width: 100%;
  height: 2px;
  cursor: pointer;
  outline: none;
  margin: 0;
  padding: 0;
  accent-color: #2b2b2b;
  background: transparent;
  -webkit-appearance: none;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-webkit-slider-runnable-track {
  height: 2px;
  border: none;
  -webkit-appearance: none;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-moz-range-track {
  height: 2px;
  border: none;
  -webkit-appearance: none;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-ms-track {
  height: 2px;
  background: transparent;
  border-color: transparent;
  border-width: 8px 0;
  color: transparent;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  margin-top: -9px;
  background: #000;
  border-radius: 50%;
  background: #2b2b2b;
  border: none;
  -webkit-appearance: none;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-moz-range-thumb {
  height: 20px;
  width: 20px;
  margin-top: -9px;
  background: #000;
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-ms-thumb {
  height: 20px;
  width: 20px;
  margin-top: 0;
  background: #000;
  border: none;
  border-radius: 50%;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-moz-focus-outer {
  border: 0;
}
.calc_wrap .bottom_part .left_part .range_to .t-range::-ms-tooltip {
  display: none;
}
.calc_wrap .bottom_part .left_part .range_to span {
  position: absolute;
  top: 0;
  padding: 8px 10px;
  min-width: 20px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.calc_wrap .bottom_part .left_part .text_range {
  display: flex;
  margin-top: 10px;
}
.calc_wrap .bottom_part .left_part .text_range > div {
  flex: 0 0 50%;
  font-size: 17px;
  color: #2b2b2b;
}
.calc_wrap .bottom_part .left_part .text_range .end {
  text-align: right;
}
.calc_wrap .bottom_part .right_part {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc_wrap .bottom_part .right_part > div {
  border-radius: 5px;
  padding: 28px 40px;
  color: #fff;
}
.calc_wrap .bottom_part .right_part > div .tit {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.calc_wrap .bottom_part .right_part > div .price {
  font-size: 19px;
}
.calc_wrap .bottom_part .right_part > div .price * {
  display: inline;
  margin-right: 5px;
}
.calc_wrap .bottom_part .right_part .step1 {
  background: #00468b;
}
.calc_wrap .bottom_part .right_part .step2 {
  background: #ec1d25;
}
.calc_wrap .bottom_part .right_part .total {
  background: #2e2e2e;
}
@media (max-width: 960px) {
  .calc_wrap .bottom_part {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
  .calc_wrap .bottom_part .right_part {
    flex-direction: row;
  }
  .calc_wrap .bottom_part .right_part > div {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .calc_wrap .bottom_part .right_part > div .tit {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .calc_wrap .bottom_part .left_part {
    padding: 20px;
  }
  .calc_wrap .bottom_part .left_part .range_tit {
    font-size: 14px !important;
  }
  .calc_wrap .bottom_part .left_part, .calc_wrap .bottom_part .right_part {
    flex-direction: column;
    gap: 20px;
  }
}
.t-range::-ms-fill-upper {
  background: #f4f4f4;
}
.t-range::-ms-fill-lower {
  background: #050505;
}
