@charset "utf-8";

/* FONT SETUP */
@font-face {
  font-family: 'Abel';
  src: url('../fonts/abel-v18-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* COLOR SETUP */
:root {
  --main-color-1: #f8f9fa;
  --main-color-2: #dee2e6;
  --main-color-3: #b2d3da;
  --main-color-4: #6cafbf;
  --main-color-5: #d2d2d2;
  --main-color-6: #333333;
}

/* BODY SETUP */
body {
  font-family: 'Abel', sans-serif;
  background: linear-gradient(to right, var(--main-color-5) 0%, var(--main-color-6) 100%);
  overflow-x: hidden;
  font-size: 16px;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* TOOLTIPS */
.tooltip {
	max-width: none !important;
	min-width: 250px !important;
}

.tooltip-inner {
	max-width: none !important;
	white-space: normal !important;
	text-align: left !important;
	padding: 1rem !important;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
	background-color: #333 !important;
	color: #fff !important;
	border-radius: 0.5rem !important;
}

/* BLINKENDE SCHRIFT AUF DETAILANSICHT */
.errorfont {
  color: #dc3545;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { opacity: 1; }
  50%   { opacity: 0.5; }
  100%   { opacity: 1; }
}

/* AJAX MSGs BEI EINSTELLUNGEN */
#ajaxInfo {
	display: inline-block;
	opacity: 0;
	transform: translateX(50px);
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.sprach-icon {
	height: 1rem;
	margin-top: -0.25rem;
	border-radius: 1rem;
}


/* Optional: Schriftarten und Formulare klarer machen */
body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea,
body.high-contrast button {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #ffff00 !important;
}

/* Tabellen optimieren */
body.high-contrast table,
body.high-contrast th,
body.high-contrast td {
  border-color: #fff !important;
  color: #fff !important;
}

/* Icons sauber invertieren */
body.high-contrast i,
body.high-contrast svg {
  filter: invert(1) grayscale(1);
}

/* Elemente vom Invertieren ausschließen */
body.high-contrast .no-invert,
body.high-contrast img.no-invert {
  filter: invert(1) grayscale(0) !important;
}

/* Bilder von Akteuren löschen */

.image-delete-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	border-radius: 1rem;
}

.image-delete-wrapper img {
	display: block;
	width: 100%;
	height: 10rem;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	transition: opacity 0.3s ease;
}

.image-delete-wrapper.logo img {
	object-fit: contain;
	object-position: center center;
}

.image-delete-wrapper.bild img {
	object-fit: cover;
}

.image-delete-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(220, 53, 69, 0.75);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 0.5rem;
}

.image-delete-wrapper:hover .image-delete-overlay {
	opacity: 1;
	cursor: pointer;
}

.image-delete-icon {
	font-size: 3rem;
	color: #fff;
}

/* BODY LOADER */

.loading-area {
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-heart,
.lds-heart div,
.lds-heart div:after,
.lds-heart div:before {
  box-sizing: border-box;
}
.lds-heart {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  transform-origin: 40px 40px;
}
.lds-heart div {
  top: 28px;
  left: 28px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--main-color-6);
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background: var(--main-color-6);
}
.lds-heart div:before {
  left: -24px;
  border-radius: 50% 0 0 50%;
}
.lds-heart div:after {
  top: -24px;
  border-radius: 50% 50% 0 0;
}
@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

/* SPINNING EFFECT */

.rotate-effect {
    display: inline-block;
    animation: rotate-effect 1.5s infinite;
}

@keyframes rotate-effect {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

a {
  text-decoration: none !important;
}

.main-text-color-1 {
  color: var(--main-color-1); 
}

.main-text-color-2 {
  color: var(--main-color-2); 
}

.main-text-color-3 {
  color: var(--main-color-3); 
}

.main-text-color-4 {
  color: var(--main-color-4); 
}

.main-text-color-5 {
  color: var(--main-color-5); 
}

.main-text-color-6 {
  color: var(--main-color-6); 
}

.main-text-color-light {
  color: var(--main-color-3); 
}

.main-text-color-dark {
  color: var(--main-color-6); 
}

.main-bg-color-1 {
  background-color: var(--main-color-1); 
}

.main-bg-color-2 {
  background-color: var(--main-color-2); 
}

.main-bg-color-3 {
  background-color: var(--main-color-3); 
}

.main-bg-color-4 {
  background-color: var(--main-color-4); 
}

.main-bg-color-5 {
  background-color: var(--main-color-5); 
}

.main-bg-color-6 {
  background-color: var(--main-color-6); 
}

/* Basics */

.text-blur-effect {
	filter: blur(3px);
}

tr.no-hover:hover>* {
  --bs-table-bg-state: transparent !important;
  cursor: default;
}

/* Simple Scrollbar */
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0 !important;
  bottom: 0;
  right: 0 !important;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  visibility: visible;
  overflow: auto;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  padding: 0 !important;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.simplebar-content:after,
.simplebar-content:before {
  content: " ";
  display: table;
}
.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}
.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 6px;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #a2adb7;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  transition: opacity 0s linear;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
.custom-scroll {
  height: 100%;
}

/* Common Css */
h1, .h1 {
  font-size: 4rem;
  color: #1d2630;
}
h2, .h2 {
  font-size: 3rem;
  color: #1d2630;
}
h3, .h3 {
  font-size: 2rem;
  color: #1d2630;
}
h4, .h4 {
  font-size: 1.7rem;
  color: #1d2630;
}
h5, .h5 {
  font-size: 1.3rem;
  color: #1d2630;
}
h6, .h6 {
  font-size: 1rem;
  color: #1d2630;
}
.card {
  border-color: #e7eaee !important;
  border-radius: 12px
}
.card-body {
  padding: 25px;
}
.card .card-header {
  border-bottom: 1px solid #e7eaee;
  padding: 23px 25px;
  margin-bottom: 0;
}
.card .card-header h5 {
  font-weight: 600 !important;
  color: #1d2630;
}
.card-header:first-child {
  border-radius: calc(12px - 1px) calc(12px - 1px) 0 0;
}
thead th {
  font-weight: 500 !important
}
.bi {
  line-height: 1 !important
}
.dropdown-menu {
  box-shadow: 0 4px 24px 0 rgba(62, 57, 107, 0.18) !important;
  border: 0px;
  border-radius: 8px;
  padding: 8px;
}
.dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 8px 15px;
}
select.form-control:hover, .form-control:hover, .datatable-input:hover, .custom-select:hover, .dataTable-selector:hover, .dataTable-input:hover {
  background-color: #f8f9fa;
}
.form-control {
  padding: 0.8rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #131920;
}
@keyframes animation-drawer-fade-in {
  from {
      opacity: 0
  }
  to {
      opacity: 1
  }
}
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  overflow: hidden;
  z-index: 1026;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  animation: animation-drawer-fade-in .3s ease-in-out 1;
}
.rightbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  overflow: hidden;
  z-index: 1026;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  animation: animation-drawer-fade-in .3s ease-in-out 1;
}
@media (max-width: 500px) {
  .my-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 18px !important;
  }
  .top-header .header-wrapper {
    padding: 0 11px 0px 6px !important;
  }
}
/* Sidebar */
.sidebar {
  position: fixed;
  height: 100%;
  background: transparent;
  width: 280px;
  position: fixed;
  top: 74px;
  bottom: 0;
  z-index: 1026;
  overflow: hidden;
  transition: all 0.2s ease;
}
.navbar-brand {
  background: transparent;
  height: 74px;
  width: 280px;
  display: flex;
  align-items: center;
}
.navbar-menus {
  box-shadow: inset 0 0 1px 1px #e7eaee;
  background: #fff;
  border-radius: 0 12px 0 0;
  padding: 18px 0 10px;
  height: calc(100% - 74px);
  position: relative;
}
.sidebar-nav ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.menu-title {
  color: #3e4853;
  display: block;
  padding: 24px 23px 8px;
  text-transform: uppercase;
  position: relative;
  line-height: 1.66;
  font-size: .7rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.metismenu li {
  display: block;
}
.menu-item {
  margin: 0 10px 4px 10px;
}
.nav-link {
  display: block;
  padding: 14px 20px;
  color: #5b6b79;
  position: relative;
  font-size: 1.1rem;
  border-radius: 8px;
}
.nav-link-sub {
  display: block;
  padding: 14px 20px;
  color: #5b6b79;
  position: relative;
  font-size: 1rem;
  border-radius: 8px;
}
.menu-icon {
  height: 25px;
  width: 25px;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
}
.sidebar-nav ul li ul.sub-menu li a {
  padding: 10px 30px 10px 50px;
}
.sub-menu .nav-link:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 28px;
  width: 5px;
  height: 5px;
  background: #5b6b79;
  opacity: 0.5;
  transition: all 0.08s cubic-bezier(0.37, 0.24, 0.53, 0.99);
}
.nav-link.mm-active {
  background: #04799720;
  color: var(--main-color-5);
}
.sub-menu  .mm-active .nav-link.active {
  color: var(--main-color-5);
}
.sub-menu  .mm-active .nav-link.active:after {
  background: var(--main-color-5);
  opacity: .9;
  transform: scale(1.2);
}
.nav-link:hover, .nav-link:focus {
  color: #5b6b79;
}
.sub-menu .nav-link:hover:after {
  background: var(--main-color-5);
  opacity: .9;
  transform: scale(1.2);
}
.sidebar-nav {
  height: calc(100vh - 100px)
}
@media (max-width: 650px) {
	.sidebar-nav {
	    height: calc(100vh - 160px) !important;
	}
}
.nav-link:focus[aria-expanded="true"], .menu-item > .nav-link:hover {
  background: #5b6b7918
}
@media (min-width: 1025px) {
  .sidebar-toggle .sidebar {
    margin-left: -280px;
    transition: all 0.2s ease;
  }
  .sidebar-toggle .top-header {
    left: 0;
  }
  .sidebar-toggle .my-container {
    margin-left: 0px;
  }
  .sidebar-toggle .navbar-brand {
    margin-left: -280px;
    transition: all 0.2s ease;
  }
  .navbar-brand {
    transition: all 0.2s ease;
  }
}
@media (max-width: 1024.98px) {
  .rightbar-toggle.sidebar-toggle .sidebar {
    z-index: 1028;
  }
  .navbar-brand {
    display: none;
  }
  .sidebar-toggle {
    overflow: hidden;
  }
  .sidebar-toggle .top-header {
    z-index: 1027;
  }
  .top-header .dropdown-notification {
    min-width: 364px !important;
  }
  .sidebar {
    margin-left: -280px;
    transition: all 0.2s ease;
  }
  .sidebar-toggle .sidebar {
    margin-left: 0px !important;
    transition: all 0.2s ease;
    z-index: 1027;
  }
  .my-container {
    margin-left: 0px !important;
  }
  .top-header {
    left: 0 !important;
  }
  .sidebar-toggle .bg-overlay {
    display: block !important;
  }
}
/* Header */
.nav-sticky .top-header {
  background: linear-gradient(to right, rgba(4,121,151,.8) 0%, rgba(11,43,51,.8) 100%) !important;
  backdrop-filter: blur(10px);
}
.top-header {
  position: fixed;
  background: linear-gradient(to right, var(--main-color-5) 0%, var(--main-color-6) 100%);
  color: #fff;
  min-height: 74px;
  position: fixed;
  left: 0px;
  right: 0;
  z-index: 1025;
  display: flex;
  transition: left 0.2s ease;
}
.top-header .header-wrapper {
  display: flex;
  padding: 0 25px;
  flex-grow: 1;
  background: linear-gradient(to right, var(--main-color-5) 0%, var(--main-color-6) 100%);
}
.top-header ul {
  margin-bottom: 0;
  display: inline-flex;
}
.top-header .head-item {
  min-height: 74px;
  display: flex;
  align-items: center;
  position: relative;
}
.top-header .head-link {
  margin: 0 4px;
  position: relative;
  font-weight: 500;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
}
.head-link > i {
  position: relative;
  z-index: 5;
  color: #fff;
  transition: all 0.08s cubic-bezier(0.37, 0.24, 0.53, 0.99);
}
.dropdown-toggle.arrow-none::after {
  display: none;
}
.drp-search {
  width: 20rem;
}
.top-header .user-avtar {
  width: 40px;
  border-radius: 50%;
}
.head-badge {
  position: absolute;
  top: 3px;
  right: 5px;
  border-radius: 50%;
  font-size: .7rem;
  z-index: 9;
}
.top-header .dropdown-notification {
  min-width: 400px;
  max-width: 100%;
}
.top-header .dropdown-notification .dropdown-body {
  padding: 16px 18px;
}
.top-header .dropdown-notification .card:hover {
  background: #f3f5f7;
  cursor: pointer;
}
.top-header .dropdown-user-profile {
  min-width: 350px;
  max-width: 100%;
}
.top-header .dropdown-user-profile .dropdown-body {
  padding: 16px 18px;
}
.remove-radius .navbar-menus {
  border-radius: 0px !important
}

/* Content Area */
.my-container {
  padding-top: 140px;
  transition: margin-left 0.2s ease;
  position: relative;
  top: 74px;
  margin-left: 280px;
}
.my-content {
  background: #f8f9fa;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 30px;
  min-height: calc(100vh - 214px);
}
.page-header {
  margin-top: -158px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 74px;
  left: 280px;
  right: 0;
  z-index: 1023;
  min-height: 55px;
  padding: 13px 0px;
  background: transparent;
  border-radius: 8px;
}
.page-block {
  width: 100%;
}
.page-header-title h2 {
  color: #fff !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.page-header .breadcrumb {
  margin-bottom: 3px;
}
.page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.page-header .breadcrumb .breadcrumb-item {
  color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}
.page-header .breadcrumb .breadcrumb-item:last-child {
  opacity: 0.75;
  co
}
.page-item {
  padding-top: 10px;
}
tr {
	cursor: pointer;
}
#has-rightbar tbody tr.active td {
  background: #4680ff20;
}
.rightbar {
  position: fixed;
  height: 100%;
  background: #fff;
  border-top-left-radius: 12px;
  width: 50%;
  position: fixed;
  top: 74px;
  right: -50%;
  bottom: 0;
  z-index: 1027;
  overflow: hidden;
  transition: all .5s ease;
  transition-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
.rightbar-toggle .rightbar-overlay {
  display: block;
}
.rightbar-toggle .top-header {
  z-index: 1027
}
.rightbar-toggle .rightbar {
  right: 0;
}
.rightbar-toggle {
  overflow: hidden;
}
.right-head {
  border-bottom: 1px solid #e7eaee;
  padding: 20px 17px 20px 20px;
}

.tabprohead .d-grid {
  background: #ECEFF2;
}
.tabprohead .nav-link {
  margin: 0 !important;
  padding: 9px 10px !important;
  color: #4b4b4b !important;
  font-weight: 600;
  border: 0px;
  font-size: 1rem;
  transition: unset;
}
.tabprohead .nav-line-tabs .nav-item .nav-link {
  border-bottom: 3px solid transparent;
}
.tabprohead .nav-line-tabs .nav-item .nav-link.active {
  border-top: 0px !important;
  border-bottom: 3px solid var(--main-color-5) !important;
  border-radius: 0px;
  background: #fff;
  color: var(--main-color-5) !important;
}
.tabprohead .nav-line-tabs .nav-item .nav-link.active i {
  color: var(--main-color-5) !important;
}
.tabprohead .nav-line-tabs .nav-item .nav-link:hover:not(.disabled) {
  border-top: 0px !important;
  border-bottom: 3px solid transparent;
}
.tabprohead .nav-line-tabs .nav-item .nav-link i {
  display: block;
  color: #666c86;
  font-size: 1rem;
  margin-bottom: 3px;
}
.tabprohead .nav-line-tabs.nav-line-tabs-2x .nav-item:last-child {
  border-right: 0px;
}
.tabprohead .nav-line-tabs.nav-line-tabs-2x .nav-item {
  flex-grow: 1;
  text-align: center;
  border-right: 1px solid #ddd;
}
.rightbar-body {
  padding: 0;
}
.righttab-body .tab-content {
  padding: 20px;
}
@media (max-width: 768.98px) {
  .rightbar {
    width: 90%;
    right: -90%;
  }
  .userlogo {
    display: none;
  }
}
thead th {
  padding: .7rem .5rem !important;
}