@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/Roboto/Roboto-Regular.ttf) format('truetype');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/Roboto/Roboto-Medium.ttf) format('truetype');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/Roboto/Roboto-Bold.ttf) format('truetype');
}

:root {
	--text-color: #484848;
	--text-size: 16px;
	--text-font: 'Roboto', sans-serif;
	--primary: #a0c524;
	--primary-hover: #88a91c;
	--primary-text: #fff;
	--secondary: #606060;
	--secondary-hover: #464646;
	--secondary-text: #fff;
	--secondary-text-hover: #e2e2e2;
	--container-width: 1400px;
}


body {
	color: var(--text-color);
	font-size: var(--text-size);
	font-family: var(--text-font);

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	min-height: 100vh;
	min-height: 100svh;
}

a {
	color: var(--primary);
}
a:hover {
	color: var(--primary-hover);
}

form {
	position: relative;
}

label {
	margin-bottom: 0;
}
label a {
	text-decoration: underline;
}

.tooltip {
	pointer-events: none;
}

.table-responsive {
	-webkit-overflow-scrolling: auto; /* fix for iphone tables + position fixed */
}

.strikethrough {
	text-decoration: line-through #dc3545;
}
.highlighted {
	background-color: #fbfbbc;
	border-color: #bdbd07;
}

.form-control, .custom-select {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: var(--text-color) !important;
}
.input-group-text {
	background-color: #f5f5f5;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-control::-webkit-input-placeholder {
	color: #ccc;
}
.form-control::-moz-placeholder {
	color: #ccc;
}
.form-control:-ms-input-placeholder {
	color: #ccc;
}
.form-control::-ms-input-placeholder {
	color: #ccc;
}
.form-control::placeholder {
	color: #ccc;
}
body .selectize-input, body .selectize-input.dropdown-active {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-control:disabled, .form-control[readonly], .custom-select:disabled, .custom-select[readonly], body .selectize-control .selectize-input.disabled, body .selectize-control .selectize-input.locked {
	background-color: #f5f5f5;
	opacity: 1;
}
.custom-select[readonly] {
	pointer-events: none;
}
.form-control:focus, body .selectize-input.focus {
	border-color: var(--text-color);
	box-shadow: 0 0 0 0.2rem rgba(72, 72, 72, 0.25);
}
input + .input-group-prepend {
	margin-left: -1px;
}
.input-group-prepend + .input-group-prepend {
	margin-left: 2px;
}
.selectize-input.invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 40px center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.multi > .selectize-input.invalid {
	background-position: right 10px center;
}
.selectize-dropdown.selectize.clearonclick {
	top: 33px !important;
}
body .selectize-dropdown .optgroup-header {
	color: var(--text-color);
	font-weight: bold;
}
body .selectize-dropdown .selected {
	background-color: var(--primary);
	color: var(--primary-text);
}
body .selectize-dropdown .active:not(.selected) {
	background-color: #f1f1f1;
}

input.disabled {
	cursor: not-allowed;
}

iframe {
	border: 0;
}

/* Bootstrap override */
.container {
	max-width: var(--container-width);
	width: 100%;
}

.alert {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	margin-bottom: 15px;
}
.alert-warning {
	border-color: #e3d095;
}
.alert span[class^="icon-"] {
	margin-right: 10px;
	vertical-align: -1px;
}

/*.modal:nth-of-type(even) {
	z-index: 1052 !important;
}
.modal-backdrop.show:nth-of-type(even) {
	z-index: 1051 !important;
}*/
.modal {
	overflow-x: hidden;
	overflow-y: auto;
}
.modal.modal-static .modal-dialog {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.modal-header {
	background-color: var(--primary);
	border: 0;
	color: var(--primary-text);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 10px 1rem;
}
.modal-content {
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.modal-footer {
	border: 0;
}
.modal-header .close {
	color: #fff;
	padding: 13px 1.1rem;
	margin: -10px -1rem -10px auto;
	opacity: 1;
	outline: none;
	text-shadow: none;
}
.modal-body {
	background: #f5f5f5;
}

.dropdown-item.active, .dropdown-item:active {
	background-color: var(--primary);
}

.navbar {
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}
.bg-dark {
	background-color: var(--secondary) !important;
}
.bg-dark.navbar-dark .navbar-nav .active>.nav-link, .bg-dark.navbar-dark .navbar-nav .nav-link:focus, .bg-dark.navbar-dark .navbar-nav .nav-link:hover {
	color: var(--secondary-text-hover) !important;
}

.text-primary {
	color: var(--primary) !important;
}
a.text-primary:focus, a.text-primary:hover {
	color: var(--primary-hover) !important;
}
.text-gold {
	color: #ebcb1d;
}

.btn {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
	-moz-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
	-ms-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
	-o-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
	transition: color 0.5s, background-color 0.5s, border-color 0.5s;
}
.btn-sm {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.btn span[class^="icon-"] {
	font-size: 14px;
	margin-right: 8px;
	vertical-align: -1px;
}
.btn.btn-onlyicon span[class^="icon-"] {
	margin-right: 0;
}
.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--primary-text);
}
.btn-primary:hover, .btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	color: var(--primary-text);
}
.btn-primary.focus, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus,
.btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-primary.disabled, .btn-primary:disabled {
	/*background-color: inherit;
	border-color: inherit;*/
	background-color: var(--primary);
	border-color: var(--primary);
}
.btn-outline-primary {
	background-color: var(--primary-text);
	border-color: var(--primary);
	color: var(--primary);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
	color: var(--primary);
}
.btn-outline-primary:hover, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--primary-text);
}

.btn-secondary {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: var(--secondary-text);
}
.btn-secondary:hover, .btn-secondary.focus, .btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
	background-color: var(--secondary-hover);
	border-color: var(--secondary-hover);
	color: var(--secondary-text);
}
.btn.disabled, .btn:disabled {
	cursor: default;
}

input[type="radio"]:checked + .btn, input[type="checkbox"]:checked + .btn {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--primary-text);
}

.table {
	background-color: #fff;
	color: var(--text-color);
}
.table .thead-dark th {
	background-color: #434343;
	/*border-color: #434343;*/
}
.table tr th.highlight, .table tr td.highlight {
	background-color: #28a745;
	color: #fff;
}
.table.table-striped tbody tr:nth-of-type(odd) th.highlight, .table.table-striped tbody tr:nth-of-type(odd) td.highlight {
	background-color: #21953b;
}
.table-sm [class^="icon-"], .table-sm [class*="icon-"] {
	vertical-align: -1px;
}
tr.even {
	background-color: #efefef;
}
.actioncolumn {
	width: 140px;
}

.btn-group {
	font-size: 0;
	overflow: hidden;
}
.btn-group-sm {
	overflow: hidden;
}
td .btn-group {
	margin-top: 1px;
}

[data-toggle="popover"] {
	cursor: pointer;
}
.popover {
	max-width: 500px;
}
.popover .close {
	font-size: 18px;
	position: absolute;
	right: 5px;
	top: 0;
}

.custom-control-input:checked ~ .custom-control-label:before {
	border-color: var(--primary);
	background-color: var(--primary);
}
.custom-control-input:not(:disabled):active~.custom-control-label:before {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
	border-color: var(--primary-hover);
}
.custom-control-input:focus ~ .custom-control-label:before {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.disablecheckbox {
	display: none;
}
.disablecheckbox ~ label span {
	cursor: pointer;
	font-size: 20px;
}
.disablecheckbox ~ label span.icon-disabled, .disablecheckbox:checked ~ label span.icon-check {
	display: none;
}
.disablecheckbox:checked ~ label span.icon-disabled, .disablecheckbox ~ label span.icon-check {
	display: block;
}

.selectall {
	cursor: pointer;
}
.selectall:before {
	border: 1px solid #ccc;
	content: '';
	display: inline-block;
	height: 12px;
	margin-right: 5px;
	width: 12px;
}

h3 .badge {
	font-size: 50%;
	vertical-align: 5px;
}
.badge-primary {
	background-color: var(--primary);
}
a.badge-primary:focus, a.badge-primary:hover {
	background-color: var(--primary-hover);
}
.badge-orange, a.badge-primary:focus, a.badge-primary:hover {
	background-color: #ff8c2e;
}

.nav-link [class^="icon-"] {
	font-size: 20px;
	margin-right: 10px;
	vertical-align: -2px;
}
.sidebar .nav:not(.nav-pills) .nav-link:hover {
	background-color: #343434;
}

.caption {
	border-left: 1px solid #d3d3d3;
	padding-left: 10px;
	padding-top: 10px;
}


.nav-pills {
	background-color: #fff;
	border: 1px solid var(--secondary);
	border-radius: 5px;
	margin: 0 auto -20px;
	overflow: hidden;
	position: relative;
	max-width: 180px;
	z-index: 30;
}
.nav-pills .nav-item {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	position: relative;
	text-align: center;
}
.nav-pills .nav-item + .nav-item {
	border-left: 1px solid var(--secondary);
}
.nav-pills .nav-link {
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	color: var(--secondary);
	display: block;
	outline: 0 !important;
	width: 100%;
}
.modal .nav-pills .nav-link {
	background-color: #fff;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	background-color: var(--secondary);
	border: 0;
	color: var(--secondary-text);
	outline: 0;
}
.nav-pills .nav-link:after {
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: var(--secondary) transparent transparent transparent;
	bottom: 0;
	content: '';
	display: block;
	height: 0;
	left: 50%;
	opacity: 0;
	position: absolute;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	-webkit-transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-ms-transition: transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	width: 0;
}
.nav-pills .nav-link.active:after {
	opacity: 1;
	-webkit-transform: translate(-50%, 100%);
	-moz-transform: translate(-50%, 100%);
	-ms-transform: translate(-50%, 100%);
	-o-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
}
.nav-pills + .tab-content > .tab-pane {
	background-color: #f5f5f5;
	border: 1px solid #c7c7c7;
	margin-top: -3px;
	margin-bottom: 20px;
	padding: 40px 15px 15px;
}
.modal .nav-pills + .tab-content > .tab-pane {
	background-color: #fff;
}

.tab-content > .tab-pane {
	border: 1px solid #dee2e6;
	border-top: 0;
	padding: 10px 15px;
}

.list-group {
	margin-bottom: 2px;
}
.list-group-item {
	line-height: 24px;
	min-height: 50px;
}
.list-group-sm .list-group-item {
	font-size: 14px;
	line-height: 20px;
	min-height: 35px;
	padding: 0.4rem 0.75rem;
}
.list-group-flush .list-group-item {
	background-color: #f3f3f3;
	border-bottom: 2px solid #fff;
}
.list-group-flush .list-group-flush .list-group-item {
	background-color: #e7e7e7;
}
.list-group .list-group-item.withimage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	align-items: flex-start;
	padding: 0;
}
.list-group .list-group-item.withimage > .eventdescription {
	align-self: stretch;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	justify-content: center;
	padding: 10px 0;
}
.list-group .list-group-item.withimage > .img {
	-webkit-flex: 0 0 80px;
	-ms-flex: 0 0 80px;
	flex: 0 0 80px;
	margin-right: 15px;
}
/*.list-group .list-group-item.withimage img {
	margin: -.75rem 20px -.75rem -1.25rem;
}*/
.list-group-flush .list-group-item.custom-checkbox {
	padding-left: 35px;
}
.list-group-flush .list-group-item:last-child {
	border-bottom: 0;
}
.list-group-flush .list-group-item-title {
	background-color: transparent;
	font-weight: bold;
	margin-top: 10px;
	padding-bottom: 0;
	padding-left: 0;
}
.list-group-item-action:focus, .list-group-item-action:hover {
	background-color: #e5e5e5;
}
.list-group-flush .list-group-item .icons {
	bottom: 0;
	line-height: 48px;
	position: absolute;
	right: 10px;
	top: 0;
}
.list-group-flush .list-group-item .icons a, .list-group-flush .list-group-item .icons-sm a {
	color: var(--secondary);
	text-decoration: none;
}
.list-group-flush .list-group-item .icons a:hover {
	color: var(--secondary-hover);
}
.list-group-flush .list-group-item .icons [class^="icon-"] {
	cursor: pointer;
	font-size: 14px;
	padding: 15px 10px;
	vertical-align: -1px;
}
.list-group-flush .list-group-item .icons .icon-qrcode-scanner {
	font-size: 18px;
	vertical-align: -2px;
}
.list-group-item .guideicons {
	line-height: 24px;
}
.list-group-item .guideicons [class^="icon-"] {
	font-size: 20px;
	padding: 0 5px;
}
.list-group-flush .list-group-item .badge {
	margin-left: 5px;
	vertical-align: text-bottom;
}
.list-group-item .spaceitem {
	margin-left: 15px;
}
.list-group-item .name {
	display: inline-block;
	min-width: 250px;
}
.list-group-item [class^="icon-"] {
	vertical-align: -2px;
}
.badge [class^="icon-"] {
	margin-right: 3px;
	vertical-align: -1px;
}
.list-group-item .commenticon {
	font-size: 16px;
	margin-left: 5px;
}
.list-group-item .comment, .modal .comment {
	border: 1px solid #ccc;
	background-color: #fff;
	font-size: 14px;
	line-height: normal;
	padding: 5px 10px;
}
.modal .comment {
	min-height: 60px;
}

.list-group-item .btn-sm {
	margin: -4px 0;
}
.sidebar .list-group-item [class^="icon-"] {
	color: #bdbdbd;
	float: left;
	font-size: 40px;
	margin-right: 15px;
	margin-left: -5px;
	margin-top: 3px;
	vertical-align: middle;
}
.sidebar .list-group-item:hover [class^="icon-"] {
	color: #e2001a;
}

.locationcolor {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	height: 16px;
	line-height: 16px;
	margin-right: 8px;
	text-align: center;
	vertical-align: middle;
	width: 16px;
}

.pagination {
}
.page-item {
}
.page-link, .page-item.disabled .page-link {
	border-color: #b1b1b1;
	color: var(--primary);
}
.page-item.disabled .page-link {
	color: var(--text-color);
}
.page-item:not(.disabled) .page-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	align-items: center;
	height: 100%;
}
.page-link:hover {
	border-color: #b1b1b1;
	background-color: #f5f5f5;
	color: var(--primary-hover);
}
.page-link span[class^="icon-"] {
	font-size: 14px;
	vertical-align: middle;
}

.bookingstatus {
	display: inline-block;
	margin-right: 10px;
	width: 30px;
}
.bookingstatus .completed {
	margin-left: -10px;
}

.selectize-control .selectize-input,
body .selectize-control.single .selectize-input.input-active {
	display: block;
}
body .selectize-control.multi .selectize-input > div.active {
	background-color: var(--secondary);
	color: var(--secondary-text);
}
.selectize-dropdown .option small {
	color: #999;
	margin-left: 5px;
}
.selectize-dropdown .option.ismember {
	font-weight: 700;
}
.selectize-dropdown .option.ismember:before {
	background-image: url('../img/logo.svg');
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
	content: '';
	display: inline-block;
	height: 20px;
	margin-right: 5px;
	vertical-align: middle;
	width: 40px;
}
.selectize-dropdown .option.ismember.selected:before {
	filter: grayscale(1);
}
.dropdownicon {
	font-size: 20px;
	margin-left: 5px;
}

.form-control.datepicker[readonly] {
	background-color: #fff;
}

.columnlist {
}

.navbar-brandlogo {
	display: block;
	padding: 0 0 15px;
	position: relative;
	text-align: center;
}
.navbar-brandlogo img {
	max-width: 100%;
}
.navbar-brand {
	/*border-left: 1px solid #6c6c6c;
	padding-left: 20px;
	margin-left: 320px;*/
	border-bottom: 1px solid #6c6c6c;
	border-top: 1px solid #6c6c6c;
	display: block;
	margin: 0 0 20px;
	padding: 10px 0;
	text-align: center;
}
.navbar-toggler {
	color: #fff;
	float: right;
	font-size: 16px;
	line-height: 30px;
	margin-top: 10px;
}
.navbar-toggler:focus {
	outline: none;
}
.navbar-toggler .navbar-icon {
	display: inline-block;
	font-size: 30px;
	height: 22px;
	line-height: 22px;
	margin: 0 5px;
	vertical-align: middle;
}
.navbar-nav .nav-link {
	padding-right: 5px;
	padding-left: 5px;
}
.navbar-nav .nav-link span[class^="icon-"] {
	vertical-align: -1px;
	margin-left: 5px;
}
.accountname {
	bottom: 0;
	left: 0;
	padding: 5px 15px;
	position: absolute;
	right: 0;
}
.accountname small {
	color: #ababab;
	display: block;
}

.loadingoverlay {
	display: none;
	background-color: rgba(255, 255, 255, 0.5);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 150;
}
.loading .loadingoverlay {
	display: block;
}
.loadingoverlay .spinner-border {
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
	position: absolute;
	top: 50%;
	z-index: 20;
}


/* Artikel Accordion */
.accordioncontainer {
}
.accordion {
	border: 1px solid var(--primary);
	margin-bottom: 10px;
}
.accordion.open {
}
.accordion .accordionlabel {
	cursor: pointer;
	float: left;
	text-decoration: underline;
}
.accordion .title {
	background-color: var(--primary);
	color: var(--primary-text);
	cursor: pointer;
	display: block;
	font-weight: 700;
	line-height: 40px;
	padding: 0 15px;
}
.accordioncontainer-xs .accordion .title {
	font-weight: 400;
	line-height: 26px;
	padding-left: 5px;
	padding-right: 5px;
}
.accordion .title:hover {
}
.accordion .title span {
	float: right;
	font-size: 12px;
	line-height: 40px;
}
.accordion .accordionlabel span {
	display: none;
}
.accordioncontainer-xs .accordion .title span {
	font-size: 10px;
	line-height: 26px;
}
.accordion.open > .title span {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.accordion .accordioncontent {
	display: none;
	overflow-x: auto;
	padding: 10px;
}


#header {
	/*background-color: #434343;
	border-bottom: 1px solid #6c6c6c;
	left: 0;
	padding: 5px 10px 5px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1200;*/
}
#header .fixedheader {
	padding-top: 56px;
}

#content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

#sidebarmenu {
	background-color: #434343;
	bottom: 0;
	color: #fff;
	left: 0;
	overflow: auto;
	padding: 0 20px;
	position: fixed;
	top: 0;
	width: 320px;
	z-index: 1000;
}
.sidebar-sticky {
	min-height: 100%;
	position: relative;
}

main {
	/*margin: 50px 0 30px;*/
	padding-top: 30px;
	/*overflow: hidden;*/
	padding-left: 340px;
	padding-right: 20px;
	width: 100%;
}

#footer {
	font-size: 90%;
	line-height: 20px;
	margin-top: 30px;
}

#header a, #sidebarmenu a {
	color: #fff;
}
#sidebarmenu a.yellow {
	color: #a79450;
}
#sidebarmenu a.red {
	color: #a95757;
}
#sidebarmenu a.green {
	color: #50a773;
}
#sidebarmenu a.blue {
	color: #5097a7;
}
#sidebarmenu a.purple {
	color: #a75098;
}


#login {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
#login .loginwrapper {
	border: 1px solid #e5e5e5;
	-webkit-box-shadow: 0 0 30px rgb(0 0 0 / 10%);
	-moz-box-shadow: 0 0 30px rgb(0 0 0 / 10%);
	box-shadow: 0 0 30px rgb(0 0 0 / 10%);
	margin-left: auto;
	margin-right: auto;
	max-width: 480px;
	padding: 10px 15px 0;
	position: relative;
	width: 100%;
}
body:not(.withoutframe) #login .loginwrapper.guestloginwrapper {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
#login .loginwrapper.registration {
	max-width: 800px;
}
#login .aboveloginbrand {
	left: 0;
	padding: 10px 15px;
	position: static;
	right: 0;
	top: 0;
	/*-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);*/
}
#login .loginbrand {
	/*background-color: var(--secondary);
	color: var(--secondary-text);*/
	/*border-bottom: 1px solid #e5e5e5;*/
	font-size: 18px;
	font-weight: 500;
	left: 0;
	margin: -11px -15px 20px;
	padding: 0 15px 20px;
	position: static;
	text-align: center;
	top: 0;
	width: auto;
}
#login .loginbrand img {
}
#login .loginbrand img.logo-dvg {
	margin-top: -39px;
}

/* oauth */
.oauth-separator {
	color: #a1a1a1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	align-items: center;
	margin-bottom: 30px;
	margin-top: 15px;
}
.oauth-separator:before, .oauth-separator:after {
	background-color: #d1d1d1;
	content: '';
	display: block;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	height: 1px;
	margin-top: 4px;
}
.oauth-separator span {
	margin: 0 20px;
}
.oauth-button {
	background-color: #fff;
	border: 1px solid #fff;
	line-height: 24px;
	text-align: center;
	width: 100%;
}
.oauth-button-google {
	border-color: #747775;
}
.oauth-button-apple, .oauth-button-apple:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.oauth-button img {
	display: inline-block;
	height: 20px;
	margin-right: 10px;
	vertical-align: -3px;
	width: auto;
}


/* Forms */
.clearinput {
	color: #e74747;
	display: none;
	float: right;
	font-size: 14px;
	line-height: 24px;
	padding: 0 5px;
}
.filter .clearinput {
	line-height: 20px;
}
.filled .clearinput {
	display: block;
}
.clearinput span[class^="icon-"] {
	vertical-align: middle;
}

.clearselectize {
	color: #e74747;
	display: none;
	float: right;
	font-size: 14px;
	line-height: 24px;
	padding: 0 5px;
}
.clearselectize.filled {
	display: block;
}

.filter {
	background-color: #f5f5f5;
	border: 1px solid #b1b1b1;
	margin-bottom: 10px;
	padding: 10px 10px 5px;
}
.filter, .filter .form-control, .filter .selectize-input {
	font-size: 14px;
	min-height: 38px;
}
.validate {
	text-align: center;
}
.validate span[class^="icon-"].text-success, .validate span[class^="icon-"].text-warning, .validate span[class^="icon-"].text-danger {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid;
	display: inline-block;
	font-size: 50px;
	height: 120px;
	line-height: 120px;
	margin-bottom: 20px;
	text-align: center;
	width: 120px;
}
.validate span[class^="icon-"].text-success {
	background-color: #b5e3c0;
}
.validate span[class^="icon-"].text-warning {
	background-color: #fff3cd;
}
.validate span[class^="icon-"].text-danger {
	background-color: #fbb6bd;
}

.withborder {
	background-color: #fff;
	border: 1px solid #c7c7c7;
	padding: 10px 15px;
}

span.icon-enter {
	font-size: 15px;
	margin-right: 5px;
}


/* datepicker */
.flatpickr-months .flatpickr-month {
	border-radius: 0;
}
.flatpickr-months .flatpickr-month:first-of-type {
	border-radius: 5px 0 0 0;
}
.flatpickr-months .flatpickr-month:last-of-type {
	border-radius: 0 5px 0 0;
}

/* timepicker */
.flatpickr-calendar.arrowTop.hasTime:after {
	border-bottom-color: #fff;
	margin-bottom: 2px;
}
.flatpickr-calendar.arrowTop.hasTime:before {
	margin-bottom: 2px;
}
.flatpickr-calendar.hasTime {
	width: 150px;
}
.flatpickr-calendar.hasTime .flatpickr-time {
	margin-top: -3px;
	border-radius: 0;
}


/* swiper*/
.swiper {
	--swiper-theme-color: var(--primary);
	--swiper-pagination-bullet-inactive-color: #fff;
	--swiper-navigation-size: 26px;
	--swiper-pagination-bullet-size: 10px;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 2px
}
.swiper .swiper-pagination {
}
.swiper .swiper-pagination-bullet {
	border: 1px solid #434343;
}
.swiper .swiper-pagination-bullet-active {
}


/* phone plugin */
body .iti {
	display: block;
}
.phoneprefixcol {
	-webkit-flex: 0 1 110px;
	-ms-flex: 0 1 110px;
	flex: 0 1 110px;
}


.participant {
	border: 1px solid #b1b1b1;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	padding: 5px 15px 0;
	margin-bottom: 20px;
}
.participanttitle {
	border-bottom: 1px solid #b1b1b1;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 10px;
}
.totalamount {
	font-size: 20px;
	line-height: 35px;
	vertical-align: middle;
}


.borderedform {
	border: 1px solid #b1b1b1;
	padding: 15px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.pricetable {
	font-size: 14px;
	table-layout: fixed;
}
.pricetable th.price, .pricetable td.price {
	font-size: 22px;
	padding-top: 8px;
	padding-bottom: 7px;
	text-align: center;
}

.table-responsive .table th, .table-responsive .table td {
	white-space: nowrap;
}

.participantsoverride {
	max-width: 150px;
}

.editguest {
	cursor: pointer;
}


.subscriptionstate {
}
.list-group-item.subscriptionstate .num {
	/*display: inline-block;
	min-width: 20px;*/
	font-size: 24px;
	margin-right: 5px;
}
.list-group-item.subscriptionstate [class^="icon-"] {
	font-size: 18px;
}
.list-group-item.subscriptionstate .btn-sm [class^="icon-"] {
	font-size: 14px;
}
.fixedscannerbutton {
	background-color: #fff;
	border-top: 1px solid #bbbbbb;
	/*-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
	margin: 0 -20px;
	padding: 5px 0;
}

.qrcodescannerwrapper {
	min-height: 300px;
	position: relative;
}
.qrcodescannerwrapper.nocamera {
	min-height: 0;
}
.qrcodescanner {
	overflow: hidden;
	position: relative;
}
.qrcodescanner:before, .qrcodescanner:after {
	bottom: 0;
	content: '';
	display: block;
	height: 0;
	left: 0;
	margin: auto;
	padding-bottom: 60%;
	position: absolute;
	right: 0;
	top: 0;
	width: 60%;
}
.qrcodescanner:before {
	-webkit-box-shadow: 0 0 1000px 1000px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 1000px 1000px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 1000px 1000px rgba(0, 0, 0, 0.5);
}
.qrcodescanner:after {
	background:
			linear-gradient(to right, #fff 4px, transparent 4px) 0 0,
			linear-gradient(to right, #fff 4px, transparent 4px) 0 100%,
			linear-gradient(to left, #fff 4px, transparent 4px) 100% 0,
			linear-gradient(to left, #fff 4px, transparent 4px) 100% 100%,
			linear-gradient(to bottom, #fff 4px, transparent 4px) 0 0,
			linear-gradient(to bottom, #fff 4px, transparent 4px) 100% 0,
			linear-gradient(to top, #fff 4px, transparent 4px) 0 100%,
			linear-gradient(to top, #fff 4px, transparent 4px) 100% 100%;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	padding-top: 8px;
	padding-left: 4px;
	padding-right: 4px;
}
.qrcodescanner video {
	display: block;
	height: auto;
	width: 100% !important;
}
.qrcodescanner .placeholder {
	background-color: #cdcdcd;
	display: block;
	height: 0;
	padding-bottom: 40%;
	position: absolute;
	width: 100%;
	z-index: 100;
}
.qrcodescanner .placeholder .spinner-border {
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
	position: absolute;
	top: 50%;
}
/*.qrcodescannerwrapper .backgroundspinner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.qrcodescannerwrapper.loading .backgroundspinner {
	z-index: 100;
}*/
.qrcodescannerwrapper .loadingoverlay {
	display: block;
	z-index: 0;
}
.qrcodescannerwrapper.loading .loadingoverlay {
	z-index: 100;
}
.qrcodescanner canvas + div {
	display: none !important;
}
#cameraselect {
	z-index: 100;
}

.guestcardresult {
	display: inline-block;
	font-size: 30px;
	line-height: 38px !important;
	overflow: hidden;
	padding-left: 10px;
	-webkit-transition: width 0.5s;
	-moz-transition: width 0.5s;
	-ms-transition: width 0.5s;
	-o-transition: width 0.5s;
	transition: width 0.5s;
	vertical-align: middle;
	width: 0;
}
.guestcardresult.success {
	width: 40px;
}

.disabledsubscription, .disabledsubscription td {
	background-color: #ffe2e2 !important;
}

#searchguest {
}
.searchwrapper {
	position: relative;
}
.searchwrapper .autoComplete_wrapper > input {
	text-align: left;
}
.searchwrapper .autoComplete_wrapper > ul {
	margin-top: 10px;
	padding: 0;
}
.autoComplete_result {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}
.autoComplete_result .resultitem {
	-webkit-flex: 1 1 200px;
	-ms-flex: 1 1 200px;
	flex: 1 1 200px;
	overflow: hidden;
	padding: 0 10px;
	text-overflow: ellipsis;
}
.autoComplete_result .resultitem.birthyear {
	text-align: center;
	flex-basis: 40px;
}
.autoComplete_result .resultitem + .resultitem {
	border-left: 1px solid #ccc;
}
.autoComplete_result.resultlabels {
	background-color: var(--text-color);
	color: #fff;
	padding: 10px 0;
	position: sticky;
	top: 0;
	left: 0;
}
.searchloading {
	display: none;
	position: absolute;
	right: 5px;
	top: 5px;
}
.loading .searchloading {
	display: block;
}
#searchguestcard .searchloading {
	left: 0;
	max-width: 500px;
	pointer-events: none;
	right: auto;
	text-align: right;
	width: 100%;
}
#searchguestautocomplete {
	background-color: transparent;
	/*max-width: 500px;*/
}


.showbyrole {
	display: none;
}


/* leaflet */
.leafletmap {
	min-height: 300px;
	width: 100%;
}


/* chart */
.chart {
	border: 1px solid #e3e3e3;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	padding-top: 20px;
	padding-right: 20px;
}


/* card */
.card-body {
	background-color: #eee;
	margin-top: 1.25rem;
	border-top: 1px solid #dfdfdf;
}
.card > .card-body:first-child {
	border-top: 0;
}


/* subscription confirmation */
.subscriptionvalidationstate {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 80px;
	height: 150px;
	line-height: 170px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 150px;
}
.subscriptionvalidationcontainer .price {
	font-size: 24px;
}

.toastwrapper {
	bottom: 0;
	padding: 1rem;
	position: fixed;
	right: 0;
	z-index: 5;
}
.toast .toast-header.bg-success, .toast .toast-header.bg-success .close,
.toast .toast-header.bg-danger, .toast .toast-header.bg-danger .close {
	color: #fff;
}


/* signing box*/
.signingbox {
}
.signingbox .clearsignature {
	cursor: pointer;
	float: right;
}
.signingbox canvas {
	background-color: #fff;
	border: 1px solid #b2b2b2;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	margin: 0 0 10px;
	height: 200px;
	width: 100%;
}


/* guest backend */
.ownsubscriptions {
}
.ownsubscriptions > a {
	color: var(--text-color);
	text-decoration: none;
}
.ownsubscriptions > a:hover span.btn-primary {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
}


@media (max-width: 1600px) {

}


/* only large - xl */
@media (min-width: 1200px) {

}


/* large - lg */
@media (max-width: 1199px) {
	#sidebarmenu {
		padding: 0 10px;
		width: 240px;
	}
	#sidebarmenu .nav {
		margin-left: -10px;
		margin-right: -10px;
	}
	.accountname {
		padding-left: 5px;
		padding-right: 5px;
	}
	main {
		padding-left: 260px;
	}
}


@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 20px;
		padding-right: 20px;
	}
}


/* medium - md */
@media (max-width: 991px) {
	main {
		padding-left: 245px;
		padding-right: 5px;
	}

	.navbar-collapse {
		border-top: 1px solid #878787;
		margin-top: 7px;
	}
	.navbar-nav {
		padding-top: 35px;
	}
	.navbar-dark .navbar-toggler {
		color: #fff;
	}
	.navbar-brand {
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}


/* small - sm */
@media (min-width: 768px) {
	.sidebar-sticky {
		padding-bottom: 5rem;
	}

	@media (max-width: 991px) {
		.modal-dialog {
			max-width: 700px;
		}
	}
}


@media (max-width: 767px) {
	.dropdown-menu.show {
		bottom: auto !important;
		left: 0 !important;
		margin: auto;
		max-height: 90%;
		max-width: 90%;
		overflow: auto;
		position: fixed !important;
		right: 0 !important;
		top: 50% !important;
		-webkit-transform: translateY(-50%) !important;
		-moz-transform: translateY(-50%) !important;
		-ms-transform: translateY(-50%) !important;
		-o-transform: translateY(-50%) !important;
		transform: translateY(-50%) !important;
		z-index: 1200;
	}
	.dropdown-menu.show + .dropdown-bgdrop-sm {
		content: '';
		display: block;
		background-color: #000;
		opacity: 0.3;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1100;
	}
	.btn-group {
		max-width: 100%;
		overflow: auto;
		white-space: nowrap;
	}

	#content {
		margin-top: 30px;
	}

	#sidebarmenu {
		bottom: auto;
		max-height: 100%;
		/*overflow: visible;*/
		overflow: auto;
		padding: 0 20px;
		width: 100%;
	}
	main {
		padding-left: 5px;
		padding-right: 5px;
	}

	#mainnav {
		border-top: 1px solid #646464;
	}

	.navbar-brandlogo {
		display: inline-block;
		float: left;
		height: 50px;
		/*padding-top: 25px;*/
		padding-top: 0;
		width: 100px;
	}
	.navbar-brand {
		border: 0;
		display: inline-block;
		float: left;
		font-size: 16px;
		line-height: 30px;
		margin: 10px 0 0 10px;
		padding: 0;
		text-align: left;
	}
	.accountname {
		border-top: 1px solid #646464;
		padding: 10px 15px 5px;
		position: static;
	}


	.sidebar .list-group-item [class^="icon-"] {
		color: #000000;
		position: absolute;
		opacity: 0.1;
		right: 0;
		z-index: -1;
	}

	.guestcardresult {
		display: block;
		height: 0;
		margin-right: 0;
		margin-left: auto;
		-webkit-transition: height 0.5s;
		-moz-transition: height 0.5s;
		-ms-transition: height 0.5s;
		-o-transition: height 0.5s;
		transition: height 0.5s;
		width: 40px;
	}
	.guestcardresult.success {
		height: 40px;
	}

}


/* extra small - xs */
@media (max-width: 575px) {
	#sidebarmenu {
		padding: 0 10px;
	}

	.navbar-brand {
		font-size: 0.8rem;
		-webkit-flex: 1 0 auto;
		-ms-flex: 1 0 auto;
		flex: 1 0 auto;
		margin-right: 10px;
		padding-right: 10px;
		white-space: normal;
		width: auto;
	}
	.navbar-brandlogo {
		width: 80px;
		/*padding-top: 30px;*/
		padding-top: 0;
	}
	.navbar-nav {
		padding-top: 20px;
	}

	.list-group-item.subscriptionstate .numcol {
		position: absolute;
		right: 15px;
	}
	.list-group-item.subscriptionstate .numcol > span {
		font-size: 26px;
	}
	.list-group-item.subscriptionstate {
		margin: 0 -20px;
	}
}

@media (max-width: 320px) {
	body {
		min-width: 320px;
	}
}

