
/* Module wrapper */
.business_loan {
  font-family: Lato, Helvetica, sans-serif;
}

/* Text above slider */
.text_container {
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 18px;
}

/* Text output from slider color */
.text_color {
  color: #00629b;
  font-weight: 600;
}

/* Slider container */
.slidecontainer {
  width: 100%;
}

/* Slider */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 30px;
  background: #00629b;
  outline: none;
  opacity: 0.5;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

/* Slider thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* Slider thumb */
.slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 2.95px 2.95px 2.6px;
}

/* Checkbox */
.checkbox_container {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex; 
  background-color: #F2F7FA;
  padding:0px 20px 0px 0px;
  align-items: center;
}

/* Checkbox text */
.checkbox_container p {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 12px;
  padding-top: 25px;
}

.checkbox_container span {
  font-size: 16px;
}

#millionCheck {
  margin: 0px 20px 0px;
  cursor: pointer;
  -webkit-transform: scale(1.7);
  accent-color:#00629B;
}

/* Checkbox 
.checkbox_container {
  margin-top: 30px;
  display: flex; 
  background-color: #F2F7FA;
  padding:5px 20px;
  align-items: center;
}

/* Checkbox text 
.checkbox_container p {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.checkbox_container span {
  font-size: 16px;
  margin-bottom: 5px;
}

#millionCheck {
  margin: 0px 20px 7px ;
  -webkit-transform: scale(1.7);
  cursor: pointer;
  accent-color:#00629B;
} */

/* Next step button */
.next_btn_container {
  margin: 50px 0;
}

.next_btn {
  padding: 12px 60px;
  Background-color: #fddf4e;
  border-radius: 30px;
  color: #00629B;
  font-size: 18px;
  cursor: pointer;
  border: none;
}

.next_btn:active {
 transform: scale(1.05)
}

/* custom amount section */
.custom_amount_input {
  display: none;
  padding: 0 15px;
  background-color: white;
}


#custom-input{
  padding: 15px;
  margin: 5px;
  border: 1px solid #00629B;
  border-radius: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  margin-left: 0;
  background-color: white;
}

#custom-input:active, #custom-input:focus{
  outline: 1px solid #00629B;
  border:1px solid #00629B;
}

