/* superscript and subscript styles */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.3em;
	vertical-align: super;
}
sub {
	bottom: -0.25em;
	vertical-align: sub;
}

/* datagrid enhancements */
.sort::after {
	content: "\21C5";
	padding-left: 3px;
}
.sort.asc::after {
	content: "\2191";
	padding-left: 3px;
}
.sort.desc::after {
	content: "\2193";
	padding-left: 3px
}

.pagination li {
	display:inline-block;
	height: 2rem;
	width: 2rem;
	text-align: center;
	background-color: rgb(243 244 246);
	color: black;
	border-radius: 9999px;
	margin-right: 0.5rem;
}

.pagination li.active {
	background-color: purple;
	color: white;
}
.pagination li a {
	display: inline-block;
	line-height: 2rem;
	width: 2rem;
}

/* fix for google maps autocomplete results going behind the map */
.pac-container {
	z-index: 1100 !important;
}

/* loader animation */
.loader {
	border-top-color: #3498db;
	-webkit-animation: spinner 1.5s linear infinite;
	animation: spinner 1.5s linear infinite;
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* popover sizing */
.popover{
    max-width: 1000px !important;
}

/* vertical centering for buttons */
.vertical-center {
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* a proper bold */
strong {
	font-weight: 700;
}

/* tags for coloring text (useful for datagrid cells) */
tred {
	color: red;
}

tgreen {
	color: green;
}

/* special cases */
.noconsent {
	color: red;
}

.denyconsent {
	color: red;
	font-weight: 600 !important;
}

.modal-dialog {
	max-width: 70vw;
}