:root {
  --header-height: 45px;
  --sidebar-width: 240px;
  --sidebar-closed-width: 50px;
  --bg-color-body: #e8e9ef;
  --bg-color-header: #e8e9ef;
  /*--bg-color-sidebar: #1d2333;*/
  --bg-color-sidebar: rgb(33, 37, 41);
  --bg-color-sidebar-active: #007bff;
  --bg-color-isonline: #38b51e;
  /*--bg-color-isoffline: #bf0b0b;*/
  --bg-color-isoffline: #dd7c00;
  --bg-alertModal: #e35d6a;
  --bg-successModal: #53b96a;
  --bg-notificationModal: #e8e9ef;
  --font-family-body: system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-size: 16px;
  --color-blue: #0070dc;
  --color-grey: #7a7a7a;
  --group-none: #e3e3e3;
  --group-red: #bf0000;
  --group-yellow: #dede00;
  --group-black: #000;
  --group-green: #00bc00;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 1em;
}

.gap-2 {
  gap: 2em;
}

.gap-3 {
  gap: 3em;
}

.gap-4 {
  gap: 4em;
}

.gap-5 {
  gap: 5em;
}

/*
 * HEADER
 */
#header {
  background-color: var(--bg-color-isoffline);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /*box-shadow: 0 1px 1px rgba(0,0,0,.075);*/
  border-bottom: 1px solid #c0c2ce;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}
#header .inner {
  display: flex;
  align-items: center;
  gap: 1em;
  padding-block: 4px;
}
#header .inner .header-logo a {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
}
#header .inner .header-logo a:hover {
  text-decoration: none;
}
#header .inner .va-logo-container img {
  height: 37px;
  width: auto;
}

/*
 * MOBILE MENU
 */
#header .inner .burger-menu {
  display: flex;
  align-items: center;
  z-index: 9;
  position: absolute;
  top: 12px;
  right: 15px;
}

#header .inner .burger-menu #mmburger {
  width: 30px;
  height: 25px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#header .inner .burger-menu #mmburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#header .inner .burger-menu #mmburger span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#header .inner .burger-menu #mmburger span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}

#header .inner .burger-menu #mmburger span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}

#header .inner .burger-menu #mmburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 3px;
}

#header .inner .burger-menu #mmburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#header .inner .burger-menu #mmburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
  left: 3px;
}

.sidebar .r4flogo_container {
  background: rgb(20, 21, 25);
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
}

.sidebar .r4flogo_container img {
  width: auto;
  height: 35px;
}

.menu-closed .sidebar .r4flogo_container img {
  width: auto;
  height: 20px;
}

.sidebar .org_container {
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: black;
}

.sidebar .org_container img {
  width: 90px;
  height: auto;
}

/*
 * SIDEBAR
 */
.sidebar {
  display: none;
}

@media (min-width: 768px) {
  .sidebar {
    max-width: var(--sidebar-width);
    position: fixed;
    top: var(--header-height) !important;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
    background-color: var(--bg-color-sidebar) !important;
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.1), 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }
}
.sidebar-inner {
  padding: 20px 10px;
}

.sidebar li {
  width: 100%;
}

.sidebar li a {
  transition: 0.2s ease all;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.sidebar li a.active {
  background-color: #428bca;
}

ul.nav-pills a.nav-link.active {
  color: #fff;
  background-color: var(--bg-color-sidebar-active);
}

ul.nav-pills a.nav-link.active .sidebar-logo-container i {
  color: var(--bg-color-sidebar-active);
}

.sidebar-logo-container {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.sidebar-logo-container i {
  color: var(--bg-color-sidebar);
  margin: 0;
  margin-right: 0 !important;
  font-size: 1rem;
}

.sidebar-label {
  display: inline-block;
  color: white;
  font-size: 15px;
}

.menu-toggle {
  position: fixed;
  bottom: 0;
  margin: 20px 10px;
  left: calc(var(--sidebar-width) - 25px);
  transform: rotate(180deg);
  outline: 2px solid var(--bg-color-sidebar);
  border: none;
  border-radius: 50%;
}
.menu-toggle:active, .menu-toggle:focus, .menu-toggle:focus-visible {
  border: none !important;
  outline: 2px solid var(--bg-color-sidebar) !important;
}

@media (min-width: 768px) {
  .menu-closed .sidebar {
    max-width: var(--sidebar-closed-width);
  }
}
.menu-closed .sidebar .sidebar-inner {
  padding: 20px 5px;
}
.menu-closed .sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link {
  padding: 0.5rem 0.3rem;
}
.menu-closed .sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link .sidebar-label {
  display: none;
}
.menu-closed .sidebar .menu-toggle {
  position: fixed;
  bottom: 0;
  margin: 20px 10px;
  left: 20px;
  transform: rotate(0);
}

/*
 * OFFCANVAS MENU
 */
#offcanvas {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  opacity: 0;
  transition: 0.2s ease;
}

#offcanvas.menu-open {
  width: 100%;
  opacity: 1;
  border: none;
  border-radius: 0;
  transition: 0.2s ease;
}

#offcanvas_bg {
  position: fixed;
  width: 0;
  height: 0;
  right: 0;
  top: 0;
  background: none;
  transition: 0.2s ease background;
}

.menu-open #offcanvas_bg {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.2s ease background;
}

#offcanvas .offcanvas_sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--bg-color-sidebar);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-inline: 5px;
  transition: 0.2s ease;
}

#offcanvas .dropdown {
  text-align: end;
  padding: 0.5em 0;
}

#offcanvas.menu-open .offcanvas_sidebar {
  width: 60%;
  transition: 0.2s ease;
}

#offcanvas ul {
  overflow-y: auto;
}

#offcanvas li {
  width: 100%;
}

#offcanvas li a {
  transition: 0.2s ease all;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

#offcanvas li a.active {
  /*background-color: #428bca;*/
}

#offcanvas .nav_container {
  overflow-y: auto;
  padding-top: 3em;
}

/*
 * LAYOUT
 */
body {
  background-color: var(--bg-color-body);
  font-family: var(--font-family-body);
  font-size: var(--font-size);
}

h1, h2, h3 {
  font-weight: bold;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 20px;
}

h3 {
  font-size: 1.3rem;
}

#navbar {
  margin-left: auto;
}

#navbar ul {
  display: flex;
  list-style: none;
  gap: 1em;
  margin: 0;
  padding: 0;
}

body.isonline #header {
  background-color: var(--bg-color-isonline);
}

body.isoffline #header {
  background-color: var(--bg-color-isoffline);
}

#header .status-inner {
  background: white;
  border-radius: 15px;
  padding: 3px 15px;
  font-weight: bold;
}

body.isonline #header .status-inner {
  color: var(--bg-color-isonline);
}

body.isoffline #header .status-inner {
  color: var(--bg-color-isoffline);
}

.disabled-link {
  opacity: 0.5;
  position: relative;
}

.disabled-link:hover {
  opacity: 1;
}

.disabled-link:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.7;
  border-radius: 0.25rem;
}

.disabled-link:hover::after {
  content: "PRO Version";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

/*
 * MAIN
 */
.main {
  position: absolute;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 4em;
}

@media (min-width: 768px) {
  .main {
    left: var(--sidebar-width);
    padding-right: 15px;
    padding-left: 15px;
  }
  .menu-closed .main {
    left: var(--sidebar-closed-width);
  }
  .main.error-page {
    left: 0;
  }
}
.page-header {
  margin-top: 1rem;
}

.page-description {
  color: #606060;
  font-size: 0.9rem;
}

/*
 * MAIN
 */
.globalNotification.modal {
  z-index: 2000;
}

.globalNotification .modal-content {
  white-space: pre;
}

.alertModal .modal-content {
  background-color: var(--bg-alertModal);
}

.successModal .modal-content {
  background-color: var(--bg-successModal);
}

.notificationModal .modal-content {
  background-color: var(--bg-notificationModal);
}

.globalNotification .modal-title {
  font-weight: bold;
}

.globalNotification .modal-header {
  border-bottom: none;
}

.ajax_loader {
  background: url("/assets/ajax-loader.gif");
  height: 32px;
  width: 32px;
  margin: 0 auto;
  background-size: 100%;
  text-align: center;
}

.ajax_loader_sec {
  background: url("/assets/ajax-loader.gif");
  height: 32px;
  width: 32px;
  margin: 0 auto;
  background-size: 100%;
  text-align: center;
}

.form-group.chooseevents {
  margin-top: 30px;
  border-top: 1px solid;
  margin-bottom: 30px;
  border-bottom: 1px solid;
  padding: 30px 0;
}

.chooseevents > h5 {
  color: red;
  font-weight: bold;
  margin-bottom: 20px;
}

.chooseevents > h4 span {
  font-weight: bold;
}

.clear {
  clear: both;
}

#wrapper.overlay::after {
  display: block;
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
  background: rgba(176, 176, 176, 0.9) url("/assets/ajax-loader.gif") center center no-repeat;
}

.fullgroup {
  background: #fd5959;
}

.almost-fullgroup {
  background: #f4932b;
}

.message_text_mail {
  position: absolute;
  top: 60%;
  z-index: 9999999;
  left: 40%;
  display: none;
}

.module-box {
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.1), 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.module-box-small {
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
}

.module-box-outline {
  padding: 5px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.module-box-small-outline {
  padding: 5px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (min-width: 768px) {
  .module-box {
    /*padding: 1rem 2rem;*/
    padding: 0.5rem 0.7rem;
  }
  .module-box-small {
    padding: 0.5rem 0.7rem;
  }
  .module-box-outline {
    padding: 0.5rem 0.7rem;
  }
  .module-box-small-outline {
    padding: 0.5rem 0.7rem;
  }
}
.required,
.mandatory {
  color: #de2121;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 80%;
  }
}
.form-group .bootstrap-select.fullwidth {
  width: 100% !important;
  display: block;
}

#createbuchung .select_fahrer .btn-group.bootstrap-select {
  max-width: 300px;
  width: 100%;
}

.bootstrap-select .dropdown-toggle {
  border: 1px solid grey;
}

.selectgroup .radio:hover {
  cursor: pointer;
}

.selectgroup .radio {
  /*font-size: 16px;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 1em 2em;
  display: inline-block;
  margin: 0;
  margin-right: 10px;*/
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  padding: 0 5px;
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 10px solid;
}

.selectgroup .radio span {
  /*background: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;*/
}

.selectgroup .no-group .radio {
  background: none;
  border-color: var(--group-none);
}

.selectgroup .radio {
  box-shadow: 0px 0px 4px 0px #b9b9b9;
  background: none;
}

.color-col {
  display: flex;
  gap: 1em;
  align-items: center;
}

.cards-wrapper a {
  display: block;
  margin-inline: auto;
}

.card .card-icon i {
  font-size: 2rem;
}

.card .card-headline {
  font-size: 1rem;
  font-weight: bold;
}

.card.text-white a {
  color: white;
  text-decoration: none;
}

.card a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.column-min-width {
  width: 1%;
}

.action-buttons {
  display: flex;
  gap: 5px;
}

.event-exports .action-buttons {
  gap: 0.5rem;
}

.export-item {
  background: #ededed;
  padding: 0.5em 1.5em;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.8rem;
}

.action-buttons .dropdown-menu .dropdown-item {
  font-size: 1.2rem;
}

@media (min-width: 576px) {
  .modal .modal-dialog:not(.smallModal.modal .modal-dialog) {
    max-width: 80%;
  }
  .modal.globalNotification .modal-dialog:not(.smallModal.modal .modal-dialog) {
    max-width: 60%;
  }
  .modal.smallModal .modal-dialog {
    max-width: 600px;
  }
}
.close i {
  font-size: 2rem;
}

.table .danger td {
  background-color: #f2dede;
}

.selectgroup .group_wrapper {
  margin-top: 1em;
}

.jahreskarte_radios > div {
  display: flex;
  gap: 1em;
}

.jahreskarte_radios input {
  display: none;
}

.jahreskarte_radios label {
  border: 1px solid var(--color-blue);
  background: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-bottom: 0;
  font-size: 1.5rem;
  width: 250px;
  text-align: center;
}

.jahreskarte_radios label:hover {
  background: var(--color-blue);
  cursor: pointer;
  color: white;
  transition: background 0.2s ease;
}

.jahreskarte_radios input[type=radio]:checked + label {
  background: var(--color-blue);
  color: white;
}

.select_ticket_days ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select_ticket_days ul li {
  /*display: inline-block;*/
}

.select_ticket_days .event_day_item {
  padding-left: 2rem;
}

.select_ticket_days .event_day_item label {
  border: 2px solid var(--color-grey);
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  gap: 10px;
  cursor: pointer;
}

.select_ticket_days .day_name {
  background: var(--color-grey);
  padding: 15px;
  color: white;
  font-weight: bold;
  width: 60px;
}

.select_ticket_days .event_day {
  font-weight: bold;
  padding: 5px 10px;
}

.select_ticket_days input {
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.select_ticket_days input:checked ~ label {
  border: 2px solid var(--color-blue);
}

.select_ticket_days input:checked ~ label .day_name {
  background: var(--color-blue);
}

.buchungen-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.buchung-element {
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background-color: rgb(108, 117, 125);
  color: white;
}

.buchung-element .block {
  white-space: nowrap;
}

.buchung-element .label {
  font-weight: bold;
  margin-right: 2px;
  color: #fff;
}

.buchung-element .ticket-truncate {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.buchung-element .meta-info {
  flex-basis: 100%; /* neue Zeile */
  margin-top: 2px;
  font-size: 0.75rem;
}

.event-umsatz {
  margin-bottom: 1em;
}

.event_zahl span {
  width: 17em;
  display: inline-block;
}

table.buchung-position th,
table.buchung-position td {
  padding-block: 0;
  border-top: none;
  background-color: rgb(108, 117, 125) !important;
}

.dataTables_filter label,
.dataTables_length label {
  margin: 0;
  padding: 5px;
}

.addInsurance label {
  width: 12em;
}

.startnummer_wrapper label {
  min-width: 200px;
}

.re_col.re_info-box-content {
  margin-left: 0;
}

.re_col.re_info-box-content span {
  font-weight: bold;
}

.labelforr4f {
  font-weight: bold;
}

#drop-area,
#drop-areashop {
  border: 2px dashed #ccc;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  margin: 1.5em 0;
  padding: 20px;
  font-family: Arial, sans-serif;
}

#drop-area.highlight,
#drop-areashop.highlight {
  border-color: purple;
}

.my-form {
  margin-bottom: 10px;
}

#fileElem,
#fileElemshop {
  display: none;
}

.button {
  display: inline-block;
  padding: 10px;
  background: #ccc;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

#gallery,
#galleryshop {
  display: flex;
  flex-wrap: wrap;
}

#gallery .preview,
#galleryshop .preview {
  position: relative;
  margin: 10px;
}

#gallery img,
#galleryshop img {
  width: 90px;
}

.remove-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}

progress,
#progress-bar-shop {
  width: 100%;
  height: 20px;
}

.re_info-box-content .checkbox label {
  margin-bottom: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.divider:after,
.divider:before {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

.h-custom {
  height: calc(100% - 73px);
}

@media (max-width: 450px) {
  .h-custom {
    height: 100%;
  }
}
.dropdown-menu.show {
  border: 1px solid black;
}

.r4f-event-input {
  border: 5px solid black;
}
.r4f-event-input .image_container {
  background: black;
  padding: 1em 0.5em;
  display: inline-block;
  border-radius: 5px;
  border-bottom-left-radius: 0;
}
.r4f-event-input .image_container img {
  width: 60px;
  height: auto;
}

.re_info-box {
  display: block;
  min-height: 90px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.re_info-box .re_info-box-icon {
  border-radius: 10px;
  display: block;
  float: left;
  height: 90px;
  width: 74px;
  text-align: center;
  font-size: 45px;
  line-height: 90px;
  color: #fff;
}
.re_info-box .re_info-box-content {
  padding: 5px 10px;
  margin-left: 90px;
}
.re_info-box .re_info-box-content .re_info-box-text {
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.re_info-box .re_info-box-content .re_info-box-number {
  display: block;
  font-weight: bold;
  font-size: 18px;
}
.re_info-box i {
  margin-right: 5px;
}

/*
 * Base structure
 */
/*
 * Global add-ons
 */
.sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/* Sidebar navigation */
.nav-sidebar {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}

.nav-sidebar > li > a {
  padding-right: 20px;
  padding-left: 20px;
}

.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #428bca;
}

.placeholders {
  margin-bottom: 30px;
  text-align: center;
}

.placeholders h4 {
  margin-bottom: 0;
}

.placeholder {
  margin-bottom: 20px;
}

.placeholder img {
  display: inline-block;
  border-radius: 50%;
}

/* Custom Colored Panels */
.huge {
  font-size: 40px;
}

.panel-green {
  border-color: #5cb85c;
}

.panel-green > .panel-heading {
  border-color: #5cb85c;
  color: #fff;
  background-color: #5cb85c;
}

.panel-green > a {
  color: #5cb85c;
}

.panel-green > a:hover {
  color: #3d8b3d;
}

.panel-red {
  border-color: #d9534f;
}

.panel-red > .panel-heading {
  border-color: #d9534f;
  color: #fff;
  background-color: #d9534f;
}

.panel-red > a {
  color: #d9534f;
}

.panel-red > a:hover {
  color: #b52b27;
}

.panel-yellow {
  border-color: #f0ad4e;
}

.panel-yellow > .panel-heading {
  border-color: #f0ad4e;
  color: #fff;
  background-color: #f0ad4e;
}

.panel-yellow > a {
  color: #f0ad4e;
}

.panel-yellow > a:hover {
  color: #df8a13;
}

.panel-heading .text-right {
  font-size: 2rem;
}

#navbar ul {
  display: flex;
  list-style: none;
  gap: 1em;
  margin: 0;
  padding: 0;
}

.navbar-right a {
  background: #f0ad4e;
  padding: 7px !important;
  margin-top: 8px;
  margin-right: 10px;
  color: #fff !important;
}

.nav.nav-sidebar li a {
  color: #fff;
}

.nav.nav-sidebar li a .fa {
  margin-right: 15px;
}

.col-sm-3.col-md-2.sidebar {
  background-color: #242424;
  top: 46px;
}

.nav > li > a:focus, .nav > li > a:hover {
  background-color: #428bca;
}

.nav.navbar-right > li > a:hover {
  background: #df8a13 !important;
}

.navbar-header {
  width: 16.96666667%;
}

.navbar-brand {
  background-color: #f0ad4e;
  width: 100%;
  color: #fff !important;
  text-align: center;
}

.navbar-brand:hover {
  background: #df8a13 !important;
}

#select-former-bookings {
  width: 50%;
  float: left;
}

.bg-green {
  background-color: #00a65a;
}

.bg-blue {
  background-color: #00c0ef;
}

.bg-orange {
  background-color: #f39c12;
}

.bg-red {
  background-color: #dd4b39;
}

.re_info-box.r4fwrapper img {
  max-width: 100% !important;
}

.checkstatus {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-left: 5px;
  border-radius: 100%;
}

.event_zusatz label input {
  margin-right: 1em;
}

.selecttickets h3 {
  margin-top: 1em;
}

.checkbox input, .addOptionEvent input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin-top: 0;
}

.checkbox label {
  margin-right: 10px;
}

.addOptionEvent .row:not(.no-border) {
  align-items: center;
  border-bottom: 1px solid #c2c2c2;
  padding: 1em 0;
}

.label-checkbox {
  display: flex;
  align-items: center;
}

.label-checkbox input {
  margin-right: 10px;
}

.btn-help {
  padding: 5px;
  margin-left: 10px;
  line-height: 1em;
}

.btn-help i {
  margin-right: 0;
}

#accordionFaq .card-header button {
  color: black;
  font-weight: 600;
  font-size: 1.3rem;
}

.r4f_features .checkbox-wrapper,
.r4f_versicherung .checkbox-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.event_panel_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
.event_panel_wrapper .event_panel {
  border: 2px solid #c9c9c9;
  border-radius: 5px;
  padding: 1em;
}

.row.ticket_status .col-xs-12 {
  display: flex;
  gap: 1em;
}
.row.ticket_status .col-xs-12 input {
  margin-right: 1em;
}
.row.ticket_status .col-xs-12 .status.green::after {
  content: "";
  display: inline-block;
  background: green;
  width: 1em;
  height: 1em;
}
.row.ticket_status .col-xs-12 .status.yellow::after {
  content: "";
  display: inline-block;
  background: yellow;
  width: 1em;
  height: 1em;
}
.row.ticket_status .col-xs-12 .status.red::after {
  content: "";
  display: inline-block;
  background: red;
  width: 1em;
  height: 1em;
}

.status_GRUEN {
  width: 2em;
  height: 2em;
  display: block;
  background: green;
  border-radius: 100%;
}

.status_GELB {
  width: 2em;
  height: 2em;
  display: block;
  background: yellow;
  border-radius: 100%;
}

.status_ROT {
  width: 2em;
  height: 2em;
  display: block;
  background: red;
  border-radius: 100%;
}

.buchung-element {
  display: flex;
}
.buchung-element .action-buttons {
  display: block;
}
.buchung-element b {
  margin-left: 0.5em;
  margin-right: 0.2em;
}
.buchung-element .ticket_small {
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-no-decoration {
  color: initial;
}
.link-no-decoration:hover {
  text-decoration: none;
}

.umsatz-section {
  background: #ededed;
  padding: 0.5em 1.5em;
  border-radius: 15px;
  display: inline-block;
}

.btn-light {
  border-color: #cecece;
}

/*
 * Loading screen
 */
.loader-overlay {
  display: grid;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.loader-bg {
  background: rgb(255, 255, 255);
  padding: 2em 3em;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader {
  --color-front-circle: #ffa516;
  --color-trail: #ffa516;
  --length-trail: 30%;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--color-front-circle) 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) var(--length-trail), var(--color-trail));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
#long-wait-message {
  margin-top: 2em;
}

footer {
  font-size: 0.8rem;
  margin-top: 2em;
  text-align: center;
}

.sticky-footer-actions {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #f3f3f5;
  display: flex;
  justify-content: end;
  box-shadow: 0px 4px 7px rgb(0, 0, 0);
  box-shadow: 0 -0.5em 1.5em rgba(0, 0, 0, 0.1), 0 -0.175em 0.5em rgba(0, 0, 0, 0.15);
  padding: 0.5em 2em;
  z-index: 99;
  left: 0;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .sticky-footer-actions .sticky-footer-actions {
    left: var(--sidebar-width);
    padding-right: 15px;
    padding-left: 15px;
  }
}
.sticky-footer-actions .footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 100%;
}
@media (min-width: 768px) {
  .sticky-footer-actions .footer-actions {
    flex-direction: row;
    align-items: end;
    gap: 1em;
    width: auto;
  }
}
.sticky-footer-actions .footer-actions .btn.btn-primary {
  padding: 0.4em 1.5em;
}
.sticky-footer-actions .footer-actions .checkbox label {
  margin: 0;
  border: 1px solid gray;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  background: white;
  width: 100%;
}
.sticky-footer-actions .footer-actions .checkbox label:hover {
  background: #ddd;
}

@media (min-width: 768px) {
  .menu-closed .sticky-footer-actions {
    left: var(--sidebar-closed-width);
  }
}
.toast-container {
  min-width: 400px;
  z-index: 9999;
  top: 2.5em;
  right: 0;
}
.toast-container .toast {
  width: 100%;
  max-width: 500px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.toast-container .toast.bg-success {
  background-color: rgba(40, 167, 69, 0.85) !important;
}
.toast-container .toast.bg-primary {
  background-color: rgba(0, 123, 255, 0.85) !important;
}
.toast-container .toast.bg-danger {
  background-color: rgba(220, 53, 69, 0.85) !important;
}
.toast-container .toast .toast-header {
  background: unset;
  color: unset;
  font-size: 1.1rem;
}
.toast-container .toast .toast-body {
  font-size: 1rem;
}
.toast-container .progress {
  height: 3px;
}
.toast-container .progress .progress-bar {
  height: 3px;
  border-radius: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7) !important;
}
@keyframes progressAnimationStrike {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

#ontrackbody {
  --bg-color-body: #e8e9ef;
  --bg-color-header: #e8e9ef;
  --bg-color-sidebar: #1d2333;
  --bg-color-isonline: #38b51e;
  /*--bg-color-isoffline: #bf0b0b;*/
  --bg-color-isoffline: #dd7c00;
  --bg-alertModal: #e35d6a;
  --bg-successModal: #53b96a;
  --bg-notificationModal: #e8e9ef;
  --font-family-body: system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-size-base: 14px;
  --font-color-main: #333;
  --group-none: #e3e3e3;
  --group-red: #bf0000;
  --group-yellow: #dede00;
  --group-black: #000;
  --group-green: #00bc00;
  background-color: var(--bg-color-body);
  font-family: var(--font-family-body);
  color: var(--font-color-main);
  padding-top: 50px;
  font-size: var(--font-size-base);
  /*
   * LAYOUT
   */
  /*
   * HEADER
   */
  /*
   * Module
   */
  /*
   * Main
   */
  /*
   * Base structure
   */
  /*
   * Global add-ons
   */
  /*
   * Top navigation
   * Hide default border to remove 1px line.
   */
  /*
   * Sidebar
   */
  /* Hide for mobile, show later */
  /* Sidebar navigation */
  /*
   * Main content
   */
  /*
   * Placeholder dashboard ideas
   */
  /* Custom Colored Panels */
}
#ontrackbody h1, #ontrackbody h2, #ontrackbody h3 {
  font-weight: bold;
  margin-top: 0;
}
#ontrackbody #header {
  background-color: var(--bg-color-isoffline);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding-block: 4px;
  border-bottom: 1px solid #c0c2ce;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}
#ontrackbody #header .inner {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-inline: 2rem;
  padding: 0;
}
#ontrackbody #header .header-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
#ontrackbody #header .header-logo a:hover {
  text-decoration: none;
}
#ontrackbody #navbar {
  margin-left: auto;
}
#ontrackbody #navbar ul {
  display: flex;
  list-style: none;
  gap: 1em;
  margin: 0;
  padding: 0;
}
#ontrackbody #header.isonline {
  background-color: var(--bg-color-isonline);
}
#ontrackbody #header.isoffline {
  background-color: var(--bg-color-isoffline);
}
#ontrackbody #header .status-inner {
  background: white;
  border-radius: 15px;
  padding: 3px 15px;
  font-weight: bold;
}
#ontrackbody .isonline #header .status-inner {
  color: var(--bg-color-isonline);
}
#ontrackbody .isoffline #header .status-inner {
  color: var(--bg-color-isoffline);
}
#ontrackbody .event-title {
  /*margin-inline: auto;*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#ontrackbody .event-title h1 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0;
  border: 4px solid white;
  border-radius: 30px;
  padding: 0px 1em;
}
#ontrackbody .module-box {
  padding: 2rem 3rem;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
}
#ontrackbody .module-box-small {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
}
#ontrackbody .module-box-outline {
  padding: 2rem 3rem;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#ontrackbody .module-box-small-outline {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#ontrackbody .globalNotification .modal-content {
  white-space: pre;
}
#ontrackbody .alertModal .modal-content {
  background-color: var(--bg-alertModal);
}
#ontrackbody .successModal .modal-content {
  background-color: var(--bg-successModal);
}
#ontrackbody .notificationModal .modal-content {
  background-color: var(--bg-notificationModal);
}
#ontrackbody .globalNotification .modal-title {
  font-weight: bold;
}
#ontrackbody .globalNotification .modal-header {
  border-bottom: none;
}
#ontrackbody .selectgroup .radio:hover {
  cursor: pointer;
}
#ontrackbody .driver_infos span {
  display: block;
}
#ontrackbody .additional_booking_infos span {
  display: block;
}
#ontrackbody .selectgroup .radio {
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  padding: 0 5px;
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 10px solid;
}
#ontrackbody .selectgroup .radio span {
  /*
  background: white;
  padding: 0rem 0.5rem;
  border-radius: 5px;
   */
}
#ontrackbody .selectgroup .no-group .radio {
  background: none;
  border-color: var(--group-none);
}
#ontrackbody .selectgroup .radio:nth-child(2) {
  background: none;
  border-color: var(--group-red);
}
#ontrackbody .selectgroup .radio:nth-child(3) {
  background: none;
  border-color: var(--group-black);
}
#ontrackbody .selectgroup .radio:nth-child(4) {
  background: none;
  border-color: var(--group-yellow);
}
#ontrackbody .selectgroup .radio:nth-child(5) {
  background: none;
  border-color: var(--group-green);
}
#ontrackbody .actions-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
}
#ontrackbody .action-wrapper > * {
  flex: 1;
}
#ontrackbody .driver-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#ontrackbody .startnumber-wrapper {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
#ontrackbody .startnumber-wrapper .bootstrap-select {
  max-width: 150px;
}
#ontrackbody .dropdown-toggle.btn-light.bs-placeholder .filter-option-inner-inner {
  color: #999;
}
#ontrackbody .selectgroup .radio:hover {
  cursor: pointer;
}
#ontrackbody .selectgroup .radio {
  /*font-size: 16px;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 1em 2em;
  display: inline-block;
  margin: 0;
  margin-right: 10px;*/
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  padding: 0 5px;
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 10px solid;
}
#ontrackbody .selectgroup .radio span {
  /*background: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;*/
}
#ontrackbody .selectgroup .no-group .radio {
  background: none;
  border-color: var(--group-none);
}
#ontrackbody .selectgroup .radio {
  box-shadow: 0px 0px 4px 0px #b9b9b9;
  background: none;
}
#ontrackbody .required,
#ontrackbody .mandatory {
  color: #de2121;
}
#ontrackbody .gruppen-container {
  border: 10px solid;
  border-radius: 5px;
  padding: 0px 5px;
  display: inline-block;
  margin: 0px 10px 10px 0px;
}
#ontrackbody .sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
#ontrackbody .navbar-fixed-top {
  border: 0;
}
#ontrackbody .sidebar {
  display: none;
}
@media (min-width: 768px) {
  #ontrackbody .sidebar {
    position: fixed;
    top: 51px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
    background-color: #f5f5f5;
    border-right: 1px solid #eee;
  }
}
#ontrackbody .nav-sidebar {
  margin-right: -21px; /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}
#ontrackbody .nav-sidebar > li > a {
  padding-right: 20px;
  padding-left: 20px;
}
#ontrackbody .nav-sidebar > .active > a,
#ontrackbody .nav-sidebar > .active > a:hover,
#ontrackbody .nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #428bca;
}
#ontrackbody .main {
  padding: 20px;
}
@media (min-width: 768px) {
  #ontrackbody .main {
    padding-right: 40px;
    padding-left: 40px;
  }
}
#ontrackbody .main .page-header {
  margin-top: 0;
}
#ontrackbody .placeholders {
  margin-bottom: 30px;
  text-align: center;
}
#ontrackbody .placeholders h4 {
  margin-bottom: 0;
}
#ontrackbody .placeholder {
  margin-bottom: 20px;
}
#ontrackbody .placeholder img {
  display: inline-block;
  border-radius: 50%;
}
#ontrackbody .huge {
  font-size: 40px;
}
#ontrackbody .panel-green {
  border-color: #5cb85c;
}
#ontrackbody .panel-green > .panel-heading {
  border-color: #5cb85c;
  color: #fff;
  background-color: #5cb85c;
}
#ontrackbody .panel-green > a {
  color: #5cb85c;
}
#ontrackbody .panel-green > a:hover {
  color: #3d8b3d;
}
#ontrackbody .panel-red {
  border-color: #d9534f;
}
#ontrackbody .panel-red > .panel-heading {
  border-color: #d9534f;
  color: #fff;
  background-color: #d9534f;
}
#ontrackbody .panel-red > a {
  color: #d9534f;
}
#ontrackbody .panel-red > a:hover {
  color: #b52b27;
}
#ontrackbody .panel-yellow {
  border-color: #f0ad4e;
}
#ontrackbody .panel-yellow > .panel-heading {
  border-color: #f0ad4e;
  color: #fff;
  background-color: #f0ad4e;
}
#ontrackbody .panel-yellow > a {
  color: #f0ad4e;
}
#ontrackbody .panel-yellow > a:hover {
  color: #df8a13;
}
#ontrackbody .re_info-box {
  display: block;
  min-height: 90px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#ontrackbody a.re_info-box-wrapper,
#ontrackbody a.re_info-box-wrapper:hover {
  color: inherit;
  text-transform: none;
  text-decoration: none;
}
#ontrackbody .re_info-box:hover {
  background: #efefef;
  transition: 0.2s ease background;
}
#ontrackbody .bg-green {
  background-color: #00a65a;
}
#ontrackbody .bg-blue {
  background-color: #00c0ef;
}
#ontrackbody .bg-orange {
  background-color: #f39c12;
}
#ontrackbody .bg-red {
  background-color: #dd4b39;
}
#ontrackbody .re_info-box-icon {
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 90px;
  width: 90px;
  text-align: center;
  font-size: 45px;
  line-height: 90px;
  color: #fff;
  border-radius: 15px;
}
#ontrackbody .re_info-box-content {
  padding: 5px 10px;
  margin-left: 90px;
}
#ontrackbody .re_info-box-text {
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#ontrackbody .re_info-box-number {
  display: block;
  font-weight: bold;
  font-size: 14px;
}
#ontrackbody .checkstatus {
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-left: 5px;
  border-radius: 100%;
}

body.dark-theme {
  --darkreader-bg--bg-color-body: #232627;
  --darkreader-bg--bg-color-isoffline: #b16300;
  background-color: var(--darkreader-bg--bg-color-body, #181a1b);
}
body.dark-theme #header {
  background-color: var(--darkreader-bg--bg-color-isoffline, #181a1b) !important;
}
body.dark-theme .sidebar {
  background-color: rgb(28, 28, 28) !important;
}
body.dark-theme .sidebar a.nav-link .sidebar-logo-container {
  background-color: rgb(58, 61, 62);
}
body.dark-theme .sidebar a.nav-link .sidebar-logo-container i {
  color: rgb(232, 230, 227);
}
body.dark-theme .sidebar a.nav-link .sidebar-label {
  color: rgb(232, 230, 227);
}
body.dark-theme .sidebar a.nav-link.active .sidebar-logo-container i {
  color: var(--bg-color-sidebar-active);
}
body.dark-theme .module-box,
body.dark-theme .module-box-outline,
body.dark-theme .module-box-small,
body.dark-theme .module-box-small-outline,
body.dark-theme .modal-dialog .modal-content,
body.dark-theme .sticky-footer-actions,
body.dark-theme .footer-actions label,
body.dark-theme .re_info-box {
  background-color: #333 !important;
}
body.dark-theme .table .danger td {
  background-color: rgb(56, 22, 22);
}
body.dark-theme * {
  color: rgb(209, 205, 199);
}
body.dark-theme .menu-toggle i,
body.dark-theme .btn.btn-light,
body.dark-theme form input[type=text],
body.dark-theme form input[type=textarea],
body.dark-theme #drop-area label,
body.dark-theme .dropdown-item,
body.dark-theme .dropdown-item i,
body.dark-theme .dropdown.bootstrap-select *,
body.dark-theme select.custom-select {
  color: var(--bg-color-sidebar) !important;
}
body.dark-theme .btn, body.dark-theme .btn i {
  color: rgb(232, 230, 227);
}
body.dark-theme table th span {
  background-color: #181a1b !important;
}

/*# sourceMappingURL=styles.css.map */
