* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

.calc {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calc-container {
  width: 100%;
  max-width: 970px;
}
.calc-row {
  display: flex;
  justify-content: center;
  align-items: start;
  column-gap: 30px;
  row-gap: 20px;
}
@media (max-width: 768px) {
  .calc-row {
    flex-direction: column;
  }
}
.calc-col {
  padding: 20px 20px 20px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 25, 49, 0.1019607843);
  box-shadow: 0 0 0 #cccccc;
  width: 50%;
}
@media (max-width: 768px) {
  .calc-col {
    width: 100%;
  }
}
.calc-col-title {
  font-size: 18px;
  font-weight: 500;
  color: #001931;
  margin-top: 0;
  margin-bottom: 20px;
}
.calc-col-title.mb-0 {
  margin-bottom: 0;
}
.calc-income {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-income span {
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e6e8ea;
  border-radius: 50%;
  cursor: pointer;
}
.calc-income span.active::after {
  transform: rotate(0);
}
.calc-income span::after {
  display: inline-block;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: 0.3s;
  transform: rotate(-180deg);
}
.calc-income-body {
  display: none;
}
.calc-income-body.active {
  display: block;
}
.calc-income-body table {
  width: 100%;
}
.calc-income-th {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #001931;
  background-color: rgba(0, 25, 49, 0.1019607843);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  margin-top: 20px;
}
.calc-income-tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ccc;
  gap: 10px;
  padding-bottom: 10px;
  width: 100%;
  color: #001931;
  font-size: 14px;
  font-weight: 400;
  margin: 15px auto 0;
}
.calc-income-all {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 25, 49, 0.1019607843);
  padding: 0 10px;
}
.calc-income-all span:nth-of-type(1) {
  font-weight: 500;
}
.calc-item {
  margin-bottom: 20px;
}
.calc-range {
  position: relative;
}
.calc-range-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-range-title span {
  font-size: 14px;
  font-weight: 500;
  color: #001931;
  margin-bottom: 4px;
  word-break: break-all;
}
.calc-range-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.calc-range-count span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 25, 49, 0.5019607843);
}
.calc-range:hover output {
  opacity: 1;
  zoom: 1;
}
.calc-range input {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  position: relative;
  z-index: 1;
}
.calc-range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.calc-range input::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.calc-range output {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #56ac67;
  box-shadow: 0 0 0 3px #00B163;
  transition: all 0.12s ease-out, left, zoom 0s;
  white-space: nowrap;
  width: 33px;
  height: 26px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -16.5px;
  opacity: 0;
  zoom: 0.9;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
