input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
-moz-appearance: number-input;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=range] {
    margin: 12px 0 24px 0;
}
.custom_input{
    border: none;
    border-radius: 0px;
    border-bottom: 1px dashed #333;
    font-size: 28px;
    padding-left: 0px;
}
.custom_input:focus{
    outline: none;
    box-shadow: none;
}
.custom_label{
    font-size: 18px;
}
.custom_btn{
  border-radius:24px;
  border:1px solid #333;
  background-color: unset;
}
.custom_btn_active{
  border-radius: 24px;
  /* border:1px solid #333; */
  color:#fff;
  background-color: #204a98;
}
.custom_btn_active:focus{
  outline: none;
  box-shadow: none;
}
.custom_btn_active:hover{
  color:#fff;
}