@charset "UTF-8";

.nowrap {
	white-space: nowrap;
}

input[type='checkbox']:checked + label {
	font-weight: bold;
}

input[type='range'] {
	height: 2.4rem;
}

select option[selected] {
	color: black;
	font-weight: bold;
}

label.required {
	font-weight: bold;
}
label.required:after, fieldset.required legend:after {
	content: " *";
}

img.countryFlag16 {
	border: none;
	width: 16px;
	height: 16px;
	vertical-align: -3px;
}
img.countryFlag16x11 {
	border: none;
	width: 16px;
	height: 11px;
}

table.center {
	margin-left: auto;
	margin-right: auto;
}
td.alignLeft {
	text-align: left !important;
}
td.alignCenter {
	text-align: center !important;
}
td.alignRight {
	text-align: right !important;
}
th.alignLeft {
	text-align: left !important;
}
th.alignCenter {
	text-align: center !important;
}
th.alignRight {
	text-align: right !important;
}
table th input.filter {
	float: left;
}

div.commandsBar {
	background: #efefef;
	padding: 1ex 0.5ex;
	margin: 1ex 0;
	text-align: center;
	clear: both;
}
@media print {
	.commandsBar {
		display: none;
	}
}

table.dataTable th.wicket_orderNone:after {
	content: '◊';
	color: gray;
	margin: 0 0.5ex;
	white-space: nowrap;
}
table.dataTable th.wicket_orderUp:after {
	content: '▲';
	margin: 0 0.5ex;
	white-space: nowrap;
}
table.dataTable th.wicket_orderDown:after {
	content: '▼';
	margin: 0 0.5ex;
	white-space: nowrap;
}

table.withRowCounter {
	counter-reset: row;
}
table.withRowCounter>tbody>tr>td:first-child:before {
	content: counter(row);
	counter-increment: row;
	font-weight: bold;
	color:gray;
	display:inline-block;
	width: 3em;
	text-align: right;
}

input.validationError {
	border: solid red 2px;
	background: BlanchedAlmond;
}

.verticalTop td, .verticalTop th,
td.verticalTop , th.verticalTop {
	vertical-align: top !important;
}
.verticalMiddle td, .verticalMiddle th,
td.verticalMiddle, th.verticalMiddle {
	vertical-align: middle !important;
}

.maximized {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	z-index: 10000;
	position: fixed;
	top: 0; left: 0;
	background-color: white;
	/* position: absolute; IE */
}
textarea.maximizable {
	border-top: 28px solid ButtonFace;
}
.maximized textarea.maximizable {
	width: 100%;
	height: 100%;
}
.maximized button.maximize {
	display: none;
}
button.unmaximize {
	display: none;
}
.maximized button.unmaximize {
	display: block;
	position: fixed;
	right: 0;
}

select option.highlight {
	font-weight: bold;
}

/* Bootstrap utils */
.width-mini {
	width: 60px !important;
}
.width-small {
	width: 90px !important;
}
.width-medium {
	width: 150px !important;
}
.width-large {
	width: 210px !important;
}
.width-xlarge {
	width: 270px !important;
}
.width-xxlarge {
	width: 530px !important;
}

.inline-block {
	display: inline-block;
}

.form-inline .form-control-static {
	display: inline-block;
	vertical-align: top;
}

.visible-collapsed {
	display: none !important;
}
.collapsed .visible-collapsed {
	display: inherit !important;
}
.hidden-collapsed {
	display: inherit !important;
}
.collapsed .hidden-collapsed {
	display: none !important;
}

.text-line-through {
	text-decoration: line-through;
}

/* Remove href values when printing */
@media print {
	a[href]:after {
		content: none !important;
	}
}

/* breadcrumb-triangle:
	Use in <ol> to have the stage numbers and in ul otherwise
	Examples:

	<ol class="breadcrumb-triangle">
		<li class="success">Browse</li>
		<li class="active"><a href="#">Compare</a></li>
		<li>Order Confirmation</li>
		<li>Checkout</li>
	</ol>
	<br/><br/>
	<ol class="breadcrumb-triangle inverse">
		<li>Browse</li>
		<li class="active">Compare</li>
		<li>Order Confirmation</li>
		<li>Checkout</li>
	</ol>
	<br/><br/>
	<ul class="breadcrumb-triangle inverse">
		<li>Browse</li>
		<li class="active">Compare</li>
		<li>Order Confirmation</li>
		<li>Checkout</li>
	</ul>
	<br/><br/>
	<ul class="breadcrumb-triangle flat">
		<li>Browse</li>
		<li class="active">Compare</li>
		<li>Order Confirmation</li>
		<li>Checkout</li>
	</ul>
 */
.breadcrumb-triangle {
	display: inline-block;
	overflow: hidden;
	border-radius: 0.25rem 0.25rem 0 0;
	border-bottom: 1px solid #ced4da;
	/* Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links */
	counter-reset: flag;
	text-align: center;
	padding: 0;
	vertical-align: middle;
}

.breadcrumb-triangle li {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	line-height: 3em;
	padding: 0 1em 0 3em;
	position: relative;
}
ol.breadcrumb-triangle li:not(.noNumber) {
	padding: 0 1em 0 4.5em; /* Need more margin on the left of links to accommodate the numbers */
}
.breadcrumb-triangle li:first-child { /* Since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links */
	padding-left: 1em;
	border-radius: 0.25rem 0 0 0.25rem; /* To match with the parent's radius */
}
ol.breadcrumb-triangle li:not(.noNumber):first-child {
	padding-left: 3em;
}
ol.breadcrumb-triangle li:not(.noNumber):first-child:before,
ol.breadcrumb-triangle li:first-child:before {
	left: 1em;
}
.breadcrumb-triangle li:last-child {
	border-radius: 0 0.25rem 0.25rem 0; /* This was to prevent glitches on hover */
}

.breadcrumb-triangle li:after { /* Adding the arrows for the breadcrumbs using rotated pseudo elements */
	content: '';
	position: absolute;
	top: 0;
	right: -1.5em; /* Half of square's length */
	/* Same dimension as the line-height of .breadcrumb-triangle a */
	width: 3em;
	height: 3em;
	/*	As you see the rotated square takes a larger height which makes it tough to position it properly.
		So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's:
		length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
		if diagonal required = 1; length = 1/1.414 = 0.707 */
	transform: scale(0.707) rotate(45deg);
	/* Prevent the arrows from getting buried under the next link */
	z-index: 1;
	/* Stylish arrow design using box shadow */
	box-shadow: 0.2em -0.2em 0 0.2em white;
	/*	5px - for rounded arrows and
		50px - to prevent hover glitches on the border created using shadows */
	border-radius: 0 0.25rem 0.25rem 99rem;
	background-color: #f0f0f0;
}
.breadcrumb-triangle li:last-child:after { /* Don't need an arrow after the last link */
	content: none;
}
ol.breadcrumb-triangle li:not(.noNumber)::before { /* Show numbers */
	content: counter(flag);
	counter-increment: flag;
	border-radius: 100%;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	margin: 0.75em 0;
	position: absolute;
	top: 0;
	left: 2.5em;

	font-weight: bold;
}
.breadcrumb-triangle li,
.breadcrumb-triangle li:after {
	transition: all 0.5s;
}

.collapsed .breadcrumb-triangle li:not(.active) {
	max-width: 7em;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.collapsed .breadcrumb-triangle li:not(.active):hover {
	max-width: none;
}
.collapsed ul.breadcrumb-triangle li:not(.active) {
	padding-left: 2em;
}
.collapsed ol.breadcrumb-triangle li:not(.active) {
	padding-left: 4.25em;
}
.collapsed ol.breadcrumb-triangle li:not(.active)::before {
	left: 2.25em;
}
.collapsed .breadcrumb-triangle li:not(.active):last-child {
	margin-right: 0.5em;
	overflow: hidden;
}

.breadcrumb-triangle li > .btn,
.breadcrumb-triangle li > .btn-group {
	margin-left: 0.5em;
}

/* Standard color */
.breadcrumb-triangle {
	background-color: white;
}
.breadcrumb-triangle li {
	color: #333;
	background: #f0f0f0;
}
.breadcrumb-triangle li:before {
	color: #333;
	background: white;
	box-shadow: 0 0 0 0.1em #ccc;
}
.breadcrumb-triangle li.active,
.breadcrumb-triangle li.active:after {
	color: white;
	background: var(--primary);
}
.breadcrumb-triangle li.success,
.breadcrumb-triangle li.success:after {
	color: white;
	background: var(--success);
}
.breadcrumb-triangle li.danger,
.breadcrumb-triangle li.danger:after {
	color: white;
	background: var(--danger);
}

/* Inverse color */
.breadcrumb-triangle.inverse {
	background: #666;
}
.breadcrumb-triangle.inverse li,
.breadcrumb-triangle.inverse li:after {
	color: white;
	background: #666;
	background: linear-gradient(#666, #333);
}
.breadcrumb-triangle.inverse li:before {
	color: white;
	background: #444;
	background: linear-gradient(#444, #222);
	box-shadow: none;
}
.breadcrumb-triangle.inverse li.active,
.breadcrumb-triangle.inverse li:hover {
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb-triangle.inverse li.active:after,
.breadcrumb-triangle.inverse li:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/* Original "flat" color */
.breadcrumb-triangle.flat li,
.breadcrumb-triangle.flat li:after {
	background: white;
	color: black;
}
.breadcrumb-triangle.flat li:before {
	background: white;
	box-shadow: 0 0 0 0.1em #ccc;
}
.breadcrumb-triangle.flat li:hover,
.breadcrumb-triangle.flat li.active,
.breadcrumb-triangle.flat li:hover:after,
.breadcrumb-triangle.flat li.active:after {
	background: #9eeb62;
}

/* TODO: remove when https://github.com/Nodws/bootstrap4-tagsinput is available on webjars */
.bootstrap-tagsinput .tag {
	background-color: #868e96;
	padding: 2px 5px;
	border-radius: 5px;
}

.callout {
	padding: 1.25rem;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
	border: 1px solid #eee;
	border-left-width: .25rem;
	border-radius: .25rem
}
.list-group-flush li.list-group-item.callout {
	margin-top: 0;
	margin-bottom: 1px;
	padding: 0.75rem 1.25rem;
	border-left: .25rem solid rgba(0, 0, 0, 0.125);
	border-radius: 0;
}

.callout.card {
	padding: 0;
}

.callout h4 {
	margin-top: 0;
	margin-bottom: .25rem
}

.callout p:last-child {
	margin-bottom: 0
}

.callout+.callout {
	margin-top: -.25rem
}

.callout-primary {
	border-left-color: var(--primary);
}

.callout-primary h4 {
	color: var(--primary);
}

.callout-secondary {
	border-left-color: var(--secondary) !important;
}

.callout-secondary h4 {
	color: var(--secondary);
}

.callout-success {
	border-left-color: var(--success) !important;
}

.callout-success h4 {
	color: var(--success);
}

.callout-danger {
	border-left-color: var(--danger) !important;
}

.callout-danger h4 {
	color: var(--danger);
}

.callout-warning {
	border-left-color: var(--warning) !important;
}

.callout-warning h4 {
	color: var(--warning);
}

.callout-info {
	border-left-color: var(--info) !important;
}

.callout-info h4 {
	color: var(--info);
}

.callout-light {
	border-left-color: var(--light) !important;
}

.callout-light h4 {
	color: var(--light);
}

.callout-dark {
	border-left-color: var(--dark) !important;
}

.callout-dark h4 {
	color: var(--dark);
}

table.table.bt-0 tr:first-child > th,
table.table.bt-0 tr:first-child > td,
table.table thead.bt-0 tr:first-child > th,
table.table thead.bt-0 tr:first-child > td,
table.table tbody.bt-0 tr:first-child > th,
table.table tbody.bt-0 tr:first-child > td,
table.table tr.bt-0 th,
table.table tr.bt-0 td {
	border-top: none;
}

.nav.nav-tabs .nav-item .nav-link {
	outline: none;
}

.navbar .pagination {
	margin-top: auto;
	margin-bottom: auto;
}

.form-inline .custom-select {
	width: auto;
}

.form-inline .custom-control {
	margin-right: 0.75rem;
}

.custom-control-label::before,
.custom-control-label::after {
	top: 0.18rem;
}

.dropdown-menu .dropdown-divider:first-child,
.dropdown-menu .dropdown-divider:last-child {
	display: none;
}

.ui-pnotify-icon {
	font-size: 1.2rem;
}
.ui-pnotify-icon.ui-pnotify-icon-bs4 > span {
	top: 0;
}

.pristine {
}
.beingEdited {
}
.changed,
input.changed,
textarea.changed {
	background-color: #fffcc8;
	border-color: #eedeb6;
}

@keyframes newFeature {
	from {
		color: var( --gray );
		transform: scale3d(1, 1, 1);
	}

	30% {
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		transform: scale3d(1.15, 0.85, 1);
	}

	65% {
		transform: scale3d(0.95, 1.05, 1);
	}

	75% {
		transform: scale3d(1.05, 0.95, 1);
	}

	to{
		color: var( --red );
		transform: scale3d(1, 1, 1);
	}
}

@keyframes newFeatureIcon {
	from {
		color: var( --gray );
		transform: rotate3d(5, 0, 1, -1080deg);
		transform-origin: center;
	}
	30% {
		transform: rotate3d(5, 0, 1, -756deg);
	}
	40% {
		transform: rotate3d(5, 0, 1, -648deg);
	}
	50% {
		transform: rotate3d(5, 0, 1, -540deg);
	}
	65% {
		transform:  rotate3d(5, 0, 1, -378deg);
	}
	75% {
		transform: rotate3d(5, 0, 1, -270deg);
	}
	to{
		color: var( --red );
		transform: translate3d(0, 0, 0);
		transform-origin: center;
	}
}

.newFeature {
	animation-name: newFeature;
	animation-duration: 1s;
}

.newFeature:after{
	content: '\f005';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-style: normal;
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: top;
	margin-top: -10px;
	text-decoration:none;
	color: var( --red );

	animation-name: newFeatureIcon;
	animation-duration: 2s;
}