#calculator {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 999999999999999;
  width: 500px;
}

.calculator {
  display: none;
  margin: 0px auto 0px auto;
  padding-top: 16px;
  width: calc(100% - 32px);
  background: #f8f8f8;
  border-radius: 16px;
}

.open_calculator {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  background: #e0feff;
  position: fixed;
  bottom: 20px;
  left: 0px;
  cursor: pointer;
}

.close__button_calculator {
  border: 0;
  padding: 7px 10px;
  border-radius: 100px;
  background: #000;
  position: absolute;
  right: 16px;
  top: -38px;
  cursor: pointer;
}

.close__button-text {
  margin: 0px;
}

.calculator__title {
  color: #00bcd4;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px 50px 16px 24px;
}

.calculator__section {
  margin: 0px 0px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section_count {
  gap: 10px;
}

.calculator__section__title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0px;
}

/* .section__checkbox-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  height: 92px;
} */

.section__checkbox-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 0px;
  /* flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  height: 92px; */
}

.section_mobile {
  height: 22px;
}

.label_for_section__input {
  display: flex;
  flex-wrap: nowrap;
}

.section__checkbox {
  color: #4b5768;
  padding-left: 28px;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.section__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.section__input-real {
  box-sizing: border-box;
  position: absolute;
  width: 20px;
  height: 20px;
  padding: 2.5px;
  border-radius: 4px;
  border: 1.5px solid #00bcd4;
  margin-left: -28px;
}

.section__input:checked + .section__input-real {
  background-image: url(../../calculator/img/check.png);
  background-position: center;
}

.section__checkbox input[disabled] + .section__input-real {
  border: 1px solid rgba(181, 181, 181, 1);
}

.section__checkbox input[disabled] + .section__input-real + label {
  color: rgba(181, 181, 181, 1);
}

.input {
  display: flex;
  min-width: 130px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.input__title {
  margin: 0px;
  color: #4b5768;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.input__price {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 87px;
  padding: 10px 14px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(4, 120, 87, 0.16);
  background: #fff;
}

.price_paid {
  width: 87px;
}

#total_connection {
  color: #4b5768;
}

.total {
  display: flex;
  margin: 0px 0px 0px 24px;
  justify-content: space-between;
  padding-bottom: 16px;
  align-items: center;
}

.total__title {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
}

.total__price {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0px;
}

.order_btn {
  border-radius: 8px;
  background: #000;
  border: none;
  color: #fff;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px 20px;
  margin-right: 40px;
  text-decoration: none;
}

@media all and (max-width: 480px) {
  #calculator {
    bottom: 0px;
  }
}

.radio-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px 20px 0px 0px;
}

.radio-list li {
  margin-bottom: 16px;
}

.radio-label {
  cursor: pointer;
  color: rgba(75, 87, 104, 1);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.radio-list li {
  list-style-type: none;
  display: flex;
  align-items: center;
}

.radio-list li input[type="radio"] {
  display: none;
  vertical-align: middle;
  color: #00bcd4;
  accent-color: #00bcd4;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
}

.radio-label {
  display: inline-block;
  vertical-align: middle;
}
/* .radio-btn {
    display: none;
}

.radio-btn:checked + .radio-label {
    background-color: rgba(4, 120, 87, 1);
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; 
} */

.select_layout {
}

.radio-btn:checked + .select_layout {
  background-image: url(../../calculator/img/check.png);
  background-position: center;
}

.section__checkbox input[disabled] + .section__input-real {
  border: 1px solid rgba(181, 181, 181, 1);
}

.section__checkbox input[disabled] + .section__input-real + label {
  color: rgba(181, 181, 181, 1);
}

.radio-list li {
  margin: 0px 0px 10px 25px;
}

.radio-list li .radio-label {
  position: relative; /* Обязательно для корректной работы псевдоэлемента */
}

.radio-label::before {
  background-image: url("../../calculator/img/");
}
.radio-list li .radio-btn:checked + .radio-label::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #00bcd4;
  border: 2px solid #00bcd4;
  box-shadow: inset 0 0 0 3px #fff;
}

.radio-list li .radio-btn:not(:checked) + .radio-label::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #ccc;
}

.radio-list li {
  display: flex;
  align-items: center;
}

.type_subscription {
  display: flex;
  gap: 30px;
}

.radio-span {
  font-size: 10px;
  font-weight: 300;
}

.section_count__container {
  display: flex;
  gap: 10px;
}

.top_inputs {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  #calculator {
    width: auto;
  }
  .calculator {
    margin: 0px;
  }
  .section_count__container {
    display: block;
    gap: 10px;
  }
  .bottom_input__price {
    min-width: 230px;
  }

  .type_subscription {
    display: block;
  }

  .total {
    justify-content: start;
    gap: 70px;
  }
}
