/* Text Inputs */
.form-group {
	width: 100%;
	margin-bottom: 16px;
}

.form-group .form-control {
	padding: 8px 16px;
}

.form-group label {
	padding-left: 16px;
	margin-bottom: 4px;
	font-weight: 400;
}

/* Radio Button */
.form-group.RadioInput {
	margin-top: 3px;
}

.form-group.RadioInput input[type="radio"] {
	appearance: none;
	margin-right: 16px;
	position: absolute;
	left: 19px;
	top: -3px;
}

.form-group.RadioInput input[type="radio"]::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid var(--client-primary, #0073E6);
	cursor: pointer;
}

.form-group.RadioInput .radio label {
	cursor: pointer;
	display: flex;
	gap: 4px;
	align-items: flex-start;
	flex-direction: column;
	font-weight: 700;
	font-size: 16px;
	padding-left: 28px;
}

.form-group.RadioInput .radio input[type="radio"]:checked::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position:absolute;
	top: 5px;
	left: 5px;
	border-radius: 50%;
	background-color: var(--client-primary, #0073E6);
}


/* Checkboxes */
.form-group.CheckboxInput {
	position: relative;
}

.form-group.CheckboxInput label {
	cursor: pointer;
	padding-left: 0;
	display: flex;
	gap: 8px;
	align-items: center;
}

.form-group.CheckboxInput input {
	appearance: none;
	position: absolute;
}

.form-group.CheckboxInput label svg rect {
	fill: white;
}

.form-group.CheckboxInput input:checked+svg .checkbox-bg {
	fill: #428ACA;
}

.form-group.CheckboxInput input:disabled + svg .checkbox-bg {
	stroke: #BABABA;
}

.form-group.CheckboxInput input:checked:disabled + svg .checkbox-bg {
	fill: #BABABA;
	stroke: #BABABA;
}

/* Select Dropdown */
.form-group .Select select,
.form-group .GroupSelect select {
	appearance: none;
	background: url(../../../static/images/round-arrow_drop_down-24px.svg) no-repeat right 10px center;
	padding-right: 33px;
	cursor: pointer;
}

/* Quantity Stepper */
/* UD Quantity Stepper  */
.gap-quantity {
	display: flex;
	flex-direction: row;
	gap: 0px;
}

.gap-quantity input {
	pointer-events: none;
	text-align: center;
}

.gap-quantity input::-webkit-outer-spin-button,
.gap-quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.gap-quantity input[type='number'] {
	-moz-appearance: textfield;
}

.gap-quantity input,
.gap-quantity button {
	width: 40px;
	height: 40px;
	border: none;
}

.gap-quantity button {
	position: relative;
	cursor: pointer;
	background-color: transparent;
	outline: 0px;
	line-height: 12px;
}

.gap-quantity button[disabled] {
	cursor: not-allowed;
	pointer-events: none;
}

.gap-quantity button[disabled] svg {
	fill: #bababa
}

.gap-quantity button svg {
	fill: #4A95C2
}

/* Label Overrides */

.form-group:not(.CheckboxInput) label.label-h5 {
	font-size: 16px;
	font-weight: 700;
	padding: 0;
	margin-bottom: 16px;
}