/* Form Editing Utility */
.was-invalid, .is-invalid {
	border-color: #dc3545!important;
}

.invalid-tooltip {
	display: flex;
}

.invalid-tooltip span {
	padding: .25rem .5rem;
	color: #fff;
	background-color: rgba(220,53,69,.9);
	border-radius: 0 .25rem .25rem .25rem;
	z-index: 5;
}

/* Table utility */
.min-width-cell {
	width: 0;
	white-space: nowrap;
}

.w-100px {
	width: 100px;
}

/* Results */
.driver-info-tag {
	color: #FFF;
	background-color: rgba(144,141,249,0.65);
	padding-left: 0.25em;
	padding-right: 0.25em;
}

.edit-number-field-value-input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.edit-number-field-value-accept-button,
.edit-number-field-value-cancel-button,
.edit-number-field-value-dq-button {
	border: 1px solid rgba(0,0,0,0.3);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}

.edit-number-field-value-accept-button:hover,.edit-number-field-value-accept-button:active {
	background-color: rgba(0,200,0,0.3);
}
.edit-number-field-value-cancel-button:hover,.edit-number-field-value-cancel-button:active {
	background-color: rgba(200,0,0,0.3);
}
.edit-number-field-value-dq-button:hover,.edit-number-field-value-dq-button:active {
	background-color: rgba(0,0,200,0.3);
}

.aggregate-field-display.error {
	color: #dc3545;
}
/*
 * Tablesorter jQuery plugin styling - START
 * Ref: https://github.com/Mottie/tablesorter/blob/master/css/theme.default.css
 */
.tablesorter.tablesorter-default .tablesorter-header:not(.tablesorter-noSort) {
  cursor: pointer;
}

/* Default arrows to show is sortable and/or not currently sorted */
.tablesorter.tablesorter-default .tablesorter-header:not(.tablesorter-noSort) .tablesorter-header-inner::after,
.tablesorter.tablesorter-white .tablesorter-header:not(.tablesorter-noSort) .tablesorter-header-inner::after {
  display: inline-block;
  content: "";
  width: 7px;
  height: 9px;
  margin-left: 5px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
}
/* - black (unsorted) double arrow */
.tablesorter.tablesorter-default .tablesorter-header:not(.tablesorter-noSort) .tablesorter-header-inner::after {
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
}
/* - white (unsorted) double arrow */
.tablesorter.tablesorter-white .tablesorter-header:not(.tablesorter-noSort) .tablesorter-header-inner::after {
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
}

/* Arrow to show is sorted ascending */
/* - black asc arrow (fixed this so it's actually centered) */
.tablesorter.tablesorter-default .tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after {
  background-image: url("data:image/gif;base64,R0lGODlhFQAEAPAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI+AywnaYnhUMopbAQA7");
}
/* - white asc arrow (fixed this so it's actually centered) */
.tablesorter.tablesorter-white .tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner::after {
  background-image: url("data:image/gif;base64,R0lGODlhFQAEAPAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI+AywnaYnhUMopbAQA7")
}

/* Arrow to show is sorted descending */
/* - black desc arrow */
.tablesorter.tablesorter-default .tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}
/* - white desc arrow */
.tablesorter.tablesorter-white .tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner::after {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

/* Tablesorter jQuery plugin styling - END */