
.productamounts {
    width: 100%;
    height: 100%;
    
    margin-top: 0px;

    border-radius: 0px;
    background-color: #fff;

    display: none;

    flex-direction: column;
    align-items: center;
}

.productamounts_title_monto {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    font-size: 26px !important;
}

.productamounts > .productamounts_head {
    width: 92%;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.productamounts > .productamounts_head > h1 {
    display: inline-flex;
    margin: 0;
}

.productamounts_body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 85%;
    align-items: center;
    margin-top: 0px;
    border-radius: 25px;
    padding: 15px 30px;
    box-sizing: border-box;
}

.productamounts_body_subcontainer {
    width: 100%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.productamounts_body_subcontainer_option {
    height: 13vh;
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #073763;
    cursor: pointer;
    font-size: 25px;
}

.productamounts_body_subcontainer_option.select {
    background-color: #cddee6; 
}

#rangeValue {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px !important;
    margin-bottom: 25px !important;
}
/* Base style for the range input */
input[type="range"].slider {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    accent-color: #21a7ec;
  }
  
  /* Chrome, Safari, Opera – slider track */
  input[type="range"].slider::-webkit-slider-runnable-track {
    height: 3px;
    background: linear-gradient(
      to right,
      #21a7ec var(--progress, 0%),
      gray var(--progress, 0%)
    );
    border: none;
    border-radius: 2px; /* very small radius */
  }
  
  /* Firefox – slider track */
  input[type="range"].slider::-moz-range-track {
    height: 3px;
    background: linear-gradient(
      to right,
      #21a7ec var(--progress, 0%),
      gray var(--progress, 0%)
    );
    border: none;
    border-radius: 2px;
  }
  
  /* Chrome, Safari, Opera – slider thumb */
  input[type="range"].slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;    /* smaller circle */
    width: 16px;
    border-radius: 50%;
    background: white;
    border: 1px solid #666; /* gray border */
    margin-top: -7px; /* centers the thumb on the track */
  }
  
  /* Firefox – slider thumb */
  input[type="range"].slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: white;
    border: 1px solid #666;
  }
  
  /* Remove focus outline */
  input[type="range"].slider:focus {
    outline: none;
  }
  
  
  /* White circle with no border */
  .white-circle {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: 600;
    color: rgb(94, 96, 107);
    top: 7px;
    left: 7px;
    z-index: 3;
  }
  
/*  */


.minMaxVal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

#rangeCont {
    width: 100%;
}

.hidden {
    display: none;
}

#textCont {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}

 
input.slider {
    height: 3px;
    margin-bottom: 10px;
    background-color: #f3f3f3;
    border: 1px solid #666;
}

/* MAR-72 Progress Bar in User Questionnaire */
/* Progress bar container with all elements */
.circle-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    z-index: 10;
}
/* Light blue circle */
.light-blue-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #b3e0f2;
    z-index: 1;
}

/* Dark blue circle with conic gradient */
.dark-blue-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
}
 