/* Problem with manual assign select dropdown contain ugly tooltip after select an option */
	.ui-tooltip {
		display: none !important;
	}
/* Select2 */
	.select2-selection {
		height: 38px !important;
	}
	.select2-container--default .select2-selection--single .select2-selection__rendered {
		line-height: 35px !important;
	}
	.select2-container--default .select2-selection--single .select2-selection__arrow {
		height: 38px !important;
	}
/* Replace missing datepicker arrow button */
	.ui-datepicker-prev span,
	.ui-datepicker-next span {
		background-image: none !important;
	}
	.ui-datepicker-prev:before,
	.ui-datepicker-next:before {
		font-family: "Font Awesome 5 Free";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		font-weight: 900;
		align-items: center;
		justify-content: center;
	}
	.ui-datepicker-prev:before {
		content: "\f053";
	}
	.ui-datepicker-next:before {
		content: "\f054";
	}