/*
THIS FILE CONTAINS CSS HACKS WE HAD TO MAKE WHEN MIGRATING BOOTSTRAP FROM 2.x to 4.3
THESE SHOULD NOT BE PERMANENT
THIS SHOULD NOT START TO CONTAIN CSS FOR NEW THINGS !!
PLEASE COMMENT EVERY RULE (OR BLOCK OF) EXPLAINING WHAT HEY FIX - SO THEY CAN BE REMOVED IN FUTURE AS WE STANDARDISE !
*/

/* old css was based on the body having a root 12px font-size, but bootstrap has html/body on default (16px) */
/* temp reset to 12px so we can release with BS4 and ignore all size issues ! */
/* html { font-size: 12px; } */

/* Select tags have reverted to native style, bootstrap-4 has custom-select ... we'll rip a bit of that for now */
/* NB this is just the basic style - there are lots of extended styles for valid / input group etc - add if needed */
select {
	display: inline-block;
	/* width: 100%; */
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 1.75rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	vertical-align: middle;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
	background-color: #fff;
	border: 1px solid #848484; /* now matched to .form-control override  */
	border-radius: 0.25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


select:disabled {
	color: #6c757d;
	background-color: #e9ecef;
}
