html,
body,
#root,
#root > div {
  width: 100%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; 
}

* {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
}

*, ::after, ::before {
  box-sizing: border-box;
}

.multiSelect div{
  min-width: none;
}

.minMultiSelect div{
  min-width: 368px;
}

.fieldBorderError fieldset {
  border-color: red !important;
}

.Mui-checked {
  color: #3f51b5 !important;
}

.simple-selection-box {
  margin-top: 10px
}

.customerBirthdate{
  position: relative;
}

.customerBirthdate .react-datepicker-wrapper{
  width: 100%;
}

.customerBirthdate .birthdate-picker {
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0 10px;
  margin-top: 10px;
  width: 100%;
}

.customerBirthdate .birthdate-picker::placeholder {
  color: #4d4d4d;
  font-family: 'Montserrat';
  font-size: 14px;
}

.customerBirthdate .birthdate-picker-errors {
  height: 56px;
  border: 1px solid red;
  border-radius: 8px;
  padding: 0 10px;
  margin-top: 10px;
  width: 100%;
}
/* Target the Number Input component */
.MuiInputBase-input[type="number"] {
  /* Disable default number input styling */
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Other modern browsers */
}

/* Target the inner spin button (up arrow) */
.MuiInputBase-input[type="number"]::-webkit-inner-spin-button,
.MuiInputBase-input[type="number"]::-webkit-outer-spin-button {
  /* Disable the spin button */
  -webkit-appearance: none;
  appearance: none;
  margin: 0; /* Remove any default margin */
}

.upcharge_autocomplete input{
  width: 100% !important;
}

.customDateRangePicker {
  min-width: 240px;
}

.otp_code {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 0.069vw solid #204b9c;
  border-radius: 0.833vw;
  font-family: Montserrat, serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0.694vw;
  outline: none;
  text-align: center;
}
.otp_code::-webkit-outer-spin-button,
.otp_code::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.otp_code:valid {
  border-color: #9861c2;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.25);
}

.pageWrapper {
  display: flex;
  flex-direction: column;
  height: 100%
}

.flexItem {
  flex: 1 1 0
}

.stickyHeader {
  position: sticky;
  top: 0;
  z-index: 1
}