.calculator-wrap {
  padding-bottom: 120px;
  display: flex;
  font-size: 14px;
  gap: 30px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.calculator-wrap .calculator-form {
  background: rgba(153, 194, 226, 0.1019607843);
  border-radius: 10px;
  padding: 58px 63px;
  display: none;
  flex-grow: 1;
}
.calculator-wrap input::-webkit-outer-spin-button,
.calculator-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calculator-wrap input[type=number] {
  -moz-appearance: textfield;
}
.calculator-wrap .number-selection {
  display: flex;
  position: absolute;
  bottom: 40px;
  width: 100%;
  justify-content: center;
  left: 0;
}
.calculator-wrap .number-selection input {
  width: 29px;
  height: 23px;
  padding: 0px 0px 0px 0px;
  text-align: center;
}
.calculator-wrap a.controller {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0a5095;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 11px;
  cursor: pointer;
}
.calculator-wrap a.controller.plus {
  background-image: url(./plus1.svg);
}
.calculator-wrap a.controller.minus {
  background-image: url(./minus1.svg);
}
.calculator-wrap h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.calculator-wrap ul {
  padding: 0;
  margin-left: 20px;
  margin-bottom: 20px;
}
.calculator-wrap .left {
  flex-grow: 1;
  gap: 30px;
}
.calculator-wrap .summary,
.calculator-wrap .calculator-user {
  width: 234px;
  gap: 30px;
}
.calculator-wrap .summary {
  background: #0070d1;
  color: white;
  padding: 33px 26px;
  height: calc(100% - 60px);
  margin-bottom: 9px;
  border-radius: 10px;
}
.calculator-wrap .summary li.hidden {
  display: none;
}
.calculator-wrap .summary .bigger {
  display: none;
  margin-bottom: 20px;
}
.calculator-wrap .summary p {
  margin: 0;
}
.calculator-wrap .summary p.title {
  font-weight: 600;
}
.calculator-wrap .summary .total {
  font-size: 24px;
  font-weight: bold;
}
.calculator-wrap .summary h4 {
  font-size: 14px;
  font-weight: 900;
}
.calculator-wrap .summary button {
  background: white;
  width: 169px;
  height: 50px;
  border: none;
  font-size: 16px;
  color: #0070d1;
  font-weight: bold;
  border-radius: 60px;
  margin: 28px auto 0;
}
.calculator-wrap .calculator-users {
  gap: 30px;
  display: flex;
  margin-bottom: 30px;
}
.calculator-wrap .calculator-user {
  background: #f4f8fc;
  padding: 13px;
  position: relative;
  height: 420px;
  border-radius: 10px;
}
.calculator-wrap .calculator-user .slider-result {
  position: absolute;
  bottom: 8px;
  color: #0070d1;
}
.calculator-wrap .calculator-user ul {
  font-size: 14px;
}
.calculator-wrap .calculator-user ul li {
  margin-bottom: 0;
}
.calculator-wrap .calculator-user .strong {
  font-weight: bold;
}
.calculator-wrap .calculator-user .top {
  text-align: center;
  margin-bottom: 4px;
}
.calculator-wrap .calculator-user .top .price {
  font-size: 45px;
  color: #0070d1;
  font-weight: 500;
}
.calculator-wrap .calculator-user .top .under-price {
  margin-bottom: 44px;
  font-size: 20px;
}
.calculator-wrap .calculator-user .slider {
  position: absolute;
  bottom: 46px;
  width: 186px;
  -webkit-appearance: none;
  border-radius: 6px;
  appearance: none;
  height: 6px;
  background: rgba(0, 0, 0, 0.1019607843);
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  /*  &::-webkit-slider-runnable-track {
    background-color: #43e5f7;
  }
  &::-moz-range-progress {
    background-color: #43e5f7;
  } */
}
.calculator-wrap .calculator-user .slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 32px; /* Set a specific slider handle width */
  height: 32px; /* Slider handle height */
  background: #0070d1; /* Green background */
  border-radius: 50%;
  cursor: pointer; /* Cursor on hover */
}
.calculator-wrap .calculator-user .slider::-moz-range-thumb {
  width: 32px; /* Set a specific slider handle width */
  height: 32px; /* Slider handle height */
  background: #0070d1; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
.calculator-wrap .calculator-user .slider::-moz-range-progress {
  background: red;
}
.calculator-wrap .calculator-bottom {
  display: flex;
  gap: 30px;
}
.calculator-wrap .calculator-bottom > div {
  width: 50%;
  background: #f4f8fc;
}
.calculator-wrap .calculator-bottom > div {
  padding: 23px 27px;
  border-radius: 10px;
}
.calculator-wrap .calculator-bottom > div .desc {
  display: none;
}
.calculator-wrap .calculator-bottom > div .calculator-service {
  height: 4px !important;
  margin-bottom: 38px !important;
}
.calculator-wrap .calculator-bottom > div .calculator-service .desc1 {
  padding-left: 50px;
  display: none;
}
.calculator-wrap .calculator-bottom > div .calculator-service .top {
  display: flex;
}
.calculator-wrap .calculator-bottom > div .calculator-service .name {
  margin: 0;
}
.calculator-wrap .calculator-bottom > div .calculator-service.on .desc1 {
  display: block;
}
.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on {
  margin-bottom: 51px !important;
}
.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on p {
  margin-bottom: 2px;
}
.calculator-wrap .calculator-bottom > div .calculator-addon,
.calculator-wrap .calculator-bottom > div .calculator-service {
  height: 22px;
  margin-bottom: 18px;
}
.calculator-wrap .calculator-bottom > div .calculator-addon .top,
.calculator-wrap .calculator-bottom > div .calculator-service .top {
  display: flex;
}
.calculator-wrap .calculator-bottom > div .calculator-addon.expendable.on,
.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on {
  height: 62px;
}
.calculator-wrap .calculator-bottom > div .calculator-addon.expendable.on .desc,
.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on .desc {
  display: block;
}
.calculator-wrap .calculator-bottom > div .calculator-addon.expendable.on .desc2,
.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on .desc2 {
  display: flex;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.calculator-wrap .calculator-bottom > div .calculator-addon.expendable.on .desc2 span,
.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on .desc2 span {
  vertical-align: super;
}
.calculator-wrap .calculator-bottom > div .calculator-addon .name,
.calculator-wrap .calculator-bottom > div .calculator-service .name {
  font-size: 14px;
  font-weight: bold;
}
.calculator-wrap .calculator-bottom > div .calculator-addon .toggle,
.calculator-wrap .calculator-bottom > div .calculator-service .toggle {
  width: 40px;
  height: 22px;
  border: 1px solid #99c2e2;
  border-radius: 12px;
  margin-right: 12px;
  position: relative;
  transition: 0.7s;
  cursor: pointer;
}
.calculator-wrap .calculator-bottom > div .calculator-addon .toggle a,
.calculator-wrap .calculator-bottom > div .calculator-service .toggle a {
  width: 16px;
  height: 16px;
  background: #99c2e2;
  position: absolute;
  border-radius: 50%;
  left: 3px;
  top: 2px;
  transition: 0.7s;
}
.calculator-wrap .calculator-bottom > div .calculator-addon .toggle.on,
.calculator-wrap .calculator-bottom > div .calculator-service .toggle.on {
  background: #78d04b;
  border-color: #78d04b;
}
.calculator-wrap .calculator-bottom > div .calculator-addon .toggle.on a,
.calculator-wrap .calculator-bottom > div .calculator-service .toggle.on a {
  left: 20px;
  background: white;
}

@media screen and (max-width: 1250px) {
  .calculator-wrap {
    padding: 0 43px;
  }
  .calculator-wrap .summary,
  .calculator-wrap .calculator-user {
    width: 17vw;
  }
}
@media screen and (max-width: 1150px) {
  .calculator-wrap {
    display: block;
    padding: 0 20px 100px;
  }
  .calculator-wrap .calculator-users {
    flex-flow: wrap;
  }
  .calculator-wrap .calculator-user {
    width: 30vw;
    flex-grow: 1;
  }
  .calculator-wrap .summary {
    width: 100%;
    margin-top: 26px;
  }
  .calculator-wrap .calculator-bottom > div .calculator-service.expendable.on{
		margin-bottom: 74px !important;
	}
}
@media screen and (max-width: 600px) {
  .calculator-wrap .calculator-users {
    display: block;
  }
  .calculator-wrap .calculator-users .calculator-user {
    width: 100%;
    margin-bottom: 22px;
  }
  .calculator-wrap .calculator-bottom {
    display: block;
  }
  .calculator-wrap .calculator-bottom > div {
    width: 100%;
    margin-bottom: 20px;
  }
  .calculator-wrap .calculator-bottom > div .calculator-addon.expendable.on {
    height: 83px;
	margin-bottom: 24px !important;
  }
	.calculator-wrap .calculator-bottom > div .calculator-service.expendable.on{
		margin-bottom: 74px !important;
	}
    .calculator-addon
{
    height: auto !important;
}
.calculator-wrap .calculator-user .top .price
{
    font-weight: 700;
    margin: 0px;
}
.calculator-wrap .calculator-user .top .under-price {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
}
.calculator-wrap
{
font-family: poppins !important;
}
.calculator-wrap .calculator-users {
    gap: 20px;
    display: flex;
    margin-bottom: 20px;
}
.calculator-wrap .top h3 {
    margin-bottom: 0px;
}

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