.calculator-input input {
  background: #FDFDFD 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 10px rgba(0, 63, 63, 0.1019607843);
  border-radius: 25px;
  font-size: 14px;
  border-color: transparent;
}

#overweight, #underweight {
  display: none;
}

.result-container {
  border: 2px solid;
  font-weight: 700;
}

.imc-overlay {
  position: absolute;
  top: -50%;
  left: 98%;
  width: 375px;
  background: white;
  box-shadow: 3px 2px 20px rgba(0, 0, 0, 0.1607843137);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (max-width: 992px) {
  .imc-overlay {
    top: 0%;
    left: 0%;
    max-width: 100%;
  }
}
.fa-question {
  cursor: pointer;
}

.calculator-tabs-container {
  position: relative;
  justify-content: flex-end;
  align-items: end;
}
.calculator-tabs-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background: transparent linear-gradient(90deg, #FFEB00 0%, #E8E010 23%, #08D508 29%, #5CC105 47%, #FF9D00 53%, #F68F03 73%, #EF0B0B 77%, #DB0D0D 100%) 0% 0% no-repeat padding-box;
}

.calculator-tabs {
  display: flex;
  background: transparent;
  border: 1px solid #003F3F;
  border-radius: 30px 30px 0px 0px;
  opacity: 0.5;
}
.calculator-tabs.active {
  opacity: 1;
  font-size: 20px;
  font-weight: 700;
  background-color: white;
  align-items: center;
  height: 60px;
}

.calculator-floating-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 14px;
  border: 2px solid #0A5558;
  border-radius: 999px;
  background-color: #C7D86B;
  box-shadow: 2px 2px 0px #003737;
  color: #0A5558;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s ease;
}

.calculator-floating-btn:hover {
  background: #E7EEBE;
}

.calculator-floating-btn__icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calculator-floating-btn__icon img {
  width: 26px;
  height: 28px;
  object-fit: contain;
}

.calculator-floating-btn__text {
  white-space: nowrap;
  font-size: 18px;
  color: #00403F;
}

.calculator-imc-modal .modal-dialog {
  max-width: 1320px;
  padding-left: 16px;
  padding-right: 16px;
}

.calculator-imc-modal .modal-content {
  border: 0;
  border-radius: 30px;
  background: transparent;
}

.calculator-imc-modal__content {
  position: relative;
  box-shadow: none;
}

.calculator-imc-modal__body {
  padding: 24px;
}

.calculator-imc-modal .modal-body .container-fluid,
.calculator-imc-modal .modal-body .container {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .calculator-floating-btn {
    right: 16px;
    bottom: 16px;
    left: auto;
    gap: 0;
    padding: 0;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    justify-content: center;
    overflow: hidden;
  }
  .calculator-floating-btn__icon {
    width: 100%;
    height: 100%;
    min-width: 100%;
    border: 0;
  }
  .calculator-floating-btn__icon img {
    width: 26px;
    height: 28px;
  }
  .calculator-floating-btn__text {
    display: none;
  }
  .calculator-imc-modal__body {
    padding: 12px;
  }
  .calculator-imc-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}