html,
body {
  font-size: 14px;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

*:focus {outline:0;}
*:focus, *:-webkit-direct-focus {
  outline-color: none;
  outline-style: none;
  outline-width: 0px;
  outline: none;
  border: 1px orange solid;
}
input:focus, button:focus, select:focus {
  outline-color: none;
  outline-style: none;
  outline-width: 0px;
  outline: none;
}
.form-control:focus {
  border-color: #ced4da;
  box-shadow: none;
}
.clearBoth {
  clear: both;
}
.noWrap {
  white-space: nowrap;
}
.noPadding {
  padding: 0px;
}
.dNone {
  display: none;
}
.wb-ap {
  word-break: auto-phrase;
}
.wb-bw {
  word-wrap: break-word;
}
select {
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;

  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='17' viewBox='0 0 20 20' width='17' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 5px);
  background-position-y: 35%;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  padding: 1rem;
  padding-right: 1.5rem !important;
}

@-moz-document url-prefix() {
  input:disabled {
    pointer-events: none;
  }
}

/*
 * Other BS Colors
 */
.bg-purple {
  background-color: #7f5fa3!important;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 5000; /* Behind the navbar */
  padding: 38px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
  position: relative;
  top: 0;
  margin-top: 10px;
  height: calc(100vh - 35px);
  padding-top: 0rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

#sidebarMenu ul {
  flex-wrap: nowrap;
  overflow: hidden;
  background-color: #424751;
}
#sidebarMenu ul .nav-link {
  color: #fff;
}
#sidebarMenu {
  max-width: fit-content;
  background-color: #343a40 !important;
  display: none;
  flex-direction: column;
}
#sidebarMenu .sidebar-sticky {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
#sidebarMenu .sidebar-sticky::-webkit-scrollbar {
  display: none;
}
#sidebarMenu {
  width: 50px;
  white-space: nowrap;
}
#sidebarMenu:hover {
  width: fit-content;
}
#sidebarMenu h6 {
  font-weight: bold;
}

.supportPointMenu {
  background-color: #dc3545 !important;
}

.navbar .trinityHeadLogo {
  height: 100%;
  position: relative;
}
.navbar .trinityHeadLogo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .trinityHeadLogo svg {
  width: auto;
  height: 100%;
}
.navbar .menuSwitcher {
  width: 50px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.navbar .toggleMainMenu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 20%;
  cursor: pointer;
  padding-left: 15px;
}
.navbar .rightUserMenu {
  width: 20%;
}
.navbar .toggleMainMenu .threebar {
  cursor: pointer;
}
.navbar .toggleMainMenu .threebar .bar {
    width: 20px;
    height: 2px;
    background: rgb(var(--hightlightColor));
    margin-bottom: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.navbar .toggleMainMenu .threebar .bar:nth-child(1) {
  transform-origin: 50% !important;
}
.navbar .toggleMainMenu .threebar .bar:nth-child(2) {
  transform-origin: 50% !important;
}
.navbar .toggleMainMenu .threebar .bar:nth-child(3) {
  margin-bottom: 0px;
}
.navbar .toggleMainMenu .threebar.cross .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
}
.navbar .toggleMainMenu .threebar.cross .bar:nth-child(2) {
  opacity: 0 !important;
  margin-left: -1000%;
}
.navbar .toggleMainMenu .threebar.cross .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
}
.navbar .toggleMainMenu .label {
  display: inline;
  font-size: var(--unit_x12);
  color: var(--col_pl10);
}
.navbar .toggleMainMenu .threebar .bar:nth-child(1) {
  transform-origin: 50% !important;
}
.navbar .toggleMainMenu .threebar .bar:nth-child(3) {
  margin-bottom: 0px;
}
.navbar .toggleMainMenu .label {
  display: inline;
  margin-right: 10px;
}
.navbar .toggleMainMenu .threebar {
  cursor: pointer;
}

#sidebarMenu.active {
  display: flex;
  min-width: 215px;
  background-color: #343a40 !important;
}
#sidebarMenu svg {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  margin-bottom: 2px;
}
#sidebarMenu .tinyHide {
  display: none;
}
#sidebarMenu .tinyOpa0 {
  opacity: 0;
}
#sidebarMenu:hover .tinyHide {
  display: inherit;
}
#sidebarMenu:hover .tinyOpa0 {
  opacity: 1;
}

#sidebarMenu.active .tinyHide {
  display: inherit;
}
#sidebarMenu.active .tinyOpa0 {
  opacity: 1;
}

#sidebarMenu .nav-item:hover {
  background-color: rgba(0,0,0,0.1);
}
#sidebarMenu .nav-item svg {
  color: rgb(var(--hightlightColor));
  fill: rgb(var(--hightlightColor));
}

.mainAppContent {
  width: 100%;
}
.mainAppContent {
  width: 100%;
  max-width: calc(100% - 50px - 1.5rem);
  margin-left: 50px;
  padding-left: 1.5rem;
}

.mainAppContent.mainMenuOpened {
  max-width: calc(100% - 215px - 1.5rem);
  margin-left: 215px;
}

.mainAppContent .tinyW-100 {
  width: 100%;
}
.mainAppContent .tinyW-100 {
  width: 100%;
}
@media (max-width: 767.98px) {
  #sidebarMenu {
    width: 100% !important;
    max-width: 100% !important;
  }
  #sidebarMenu .tinyHide {
    display: inherit;
  }
  #sidebarMenu .tinyOpa0 {
    opacity: 1;
  }
  #sidebarMenu .sidebar-sticky {
    flex-grow: 1;
  }
  #sidebarMenu .mainMenuPin {
    display: none;
  }
  .mainAppContent {
    width: calc(100% - 1.5rem) !important;
    max-width: 100% !important;
    margin-left: 0px !important;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
  font-weight: 200;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link.active {
  color: #007bff;
  background-color: rgba(0,0,0,0.1);
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
  background-color: #343a40;
}
.sidebarMenu .sidebar-heading:not(:last-child) {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.sidebar-heading a {
  color: white !important;
  text-decoration: none !important;
}
.sidebar-heading svg {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar-heading.opened svg {
  transform: rotate(180deg);
}

/*
 * Navbar
 */
.navbar {
  z-index: 6000;
  height: 38px;
}
.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  /*background-color: rgba(0, 0, 0, .25);*/
  /*box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);*/
}

.navbar .navbar-toggler {
  top: 0rem;
  right: 1rem;
  border: none;
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.navbar .dropdown-menu .nav-link {
  color: #16181b !important;
}
.navbar .nav-link:hover {
  color: rgb(166, 159, 159) !important;
}

.form-control-sm {
  border: 1px solid #ced4da;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.openActionsCircle {
  background-color: red;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: -15px;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  padding-top: 4px;
  font-size: 8px;
  display: none;
}

.linkStyle {
  cursor: pointer;
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

.modal-backdrop2 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5)
}

/*
 * Page specific
 */


.loginLogo {
  background-image: url(../img/TRINITY_RGB_Rot.svg);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 80%;
  width: 100%;
  margin: 0px auto;
  max-width: 300px;
  height: 50px;
}
.companyLogo {
  background-image: url(../img/Logo_WellerAutomobile.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  margin:0px auto;
  max-width: 300px;
  height: 80px;
}

.loginBottomInfoBox {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  z-index: 50000;
  color: #6c757d;
}

.alert {
  position: fixed;
  top: 10px;
  width: 80%;
  left: 10%;
  z-index: 100000;
}



/* For Dynamic Form Elements */
[data-dynamicload-zip-suggestions] {
  display: none;
  border: 1px #ced4da solid;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: absolute;
  top: calc(100% - 2px);
  width: auto;
  /*white-space: nowrap;*/
  text-align: left;
  background-color: white;
  z-index: 50000;
  max-height: 150px;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 12px;
  -webkit-box-shadow: 2px 5px 15px -6px rgba(183,183,183,0.5);
  box-shadow: 2px 5px 15px -6px rgba(183,183,183,1);
}
[data-dynamicload-zip-suggestions] .propObj {
  padding: 5px;
  cursor: pointer;
}
[data-dynamicload-zip-suggestions] .propObj:hover {
  background-color: #f1f1f1;
}




/* For Select2 jQuery Plugin */
.select2-container {
  width: 100% !important;
  font-size: 1rem;
}
.select2-container--default .select2-selection--single {
  border-color: #ced4da;
}
.select2-selection__rendered {
    line-height: calc(1.5em + .75rem + 3px) !important;
}
.select2-container .select2-selection--single {
    height: calc(1.5em + .75rem + 5px) !important;
}
.select2-selection__arrow {
    height: calc(1.5em + .75rem + 1px) !important;
}


/* SpecialPlaceholder */
.containsSpecialPlaceholder {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.specialPlaceholderLabel {
  position: absolute;
  display: none;
  left: 0px;
  top: -9px;
  font-size: 12px;
  margin-left: calc(0.75rem - 3px);
  padding: 0px 3px;
  background-color: white;
  color: rgb(158,165,170);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  white-space: nowrap;
  max-width: calc(100% - 0.75rem - 3px);
  overflow: hidden;
  z-index: 10;
}

/* Absent? */
.setUserAbsent {
  cursor: pointer;
}
.absentInfoBox {
  position: fixed;
  z-index: 50000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  background-color: rgba(255,255,255,0.8);
}
.absentInfoBox.active {
  display: flex;
}
.absentInfoBox > div {
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 350px;
  background-color: #343a40!important;
  color: #fff;
}
.absentInfoBox > h6 {
  font-size: 20px;
}

/* Error Reporting */
.errorReportingPopUp {

  padding: 50px;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 50000;
}
.errorReportingPopUp .bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.errorReportingPopUp .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.errorReportingPopUp .inner2 {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 350px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}
.errorReportingPopUp .inner2 textarea[name="mainTxt"] {
  height: 100%;
}
/*
.errorReportingPopUp .left {
  width: 50%;
  padding: 0px 25px 25px 0px;
}
.errorReportingPopUp .left .screenshot {
}
.errorReportingPopUp .left canvas {
  width: 100% !important;
  height: auto !important;
}
*/
.errorReportingPopUp .inner2.maximized {
  max-width: 90%;
  max-height: 90%;
}
.errorReportingPopUp .rowLine {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.errorReportingPopUp .rowLine .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.errorReportingPopUp .rowLine .header h5 {
  margin: 0px;
}
.errorReportingPopUp .rowLine .header .minimizeIco,
.errorReportingPopUp .rowLine .header .maximizeIco {
  opacity: 0.5;
  cursor: pointer;
}
.errorReportingPopUp .rowLine .header .minimizeIco:hover,
.errorReportingPopUp .rowLine .header .maximizeIco:hover {
  opacity: 0.8;
}
.errorReportingPopUp .rowLine .fGrow { flex-grow: 1; }
.errorReportingPopUp .rowLine .attachmentsBox {
  font-size: 0.8em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: flex-start;
}
.errorReportingPopUp .rowLine textarea {
  resize: none;
}
.errorReportingPopUp .rowLine .addAttach {
  /*color: #007bff;
  cursor: pointer;
  font-size: 0.8em;*/
}
.errorReportingPopUp .attachmentsBox .elm input[type="file"] {
  display: none;
}

/* VinBlacklist */
.vinBlacklistPopUp {

  padding: 50px;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 50000;
}
.vinBlacklistPopUp .bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.vinBlacklistPopUp .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.vinBlacklistPopUp .inner2 {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  max-width: 600px;
  height: fit-content;
  max-height: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}
.vinBlacklistPopUp .rowLine {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.vinBlacklistPopUp .rowLine .fGrow { flex-grow: 1; }
.vinBlacklistPopUp .vinBlacklistInfoTextBox { overflow: scroll; width: 100%; }
.vinBlacklistPopUp .vinBlacklistInfoFooter {
  width: 100%;
  border-top: 1px silver solid;
}


.usrBox {
  display: inline-block;
}
.usrBox .inner {
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  background-color: rgba(255,255,255,0.6);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 5px 4px 5px -3px rgba(0,0,0,0.21);
  -webkit-box-shadow: 5px 4px 5px -3px rgba(0,0,0,0.21);
  -moz-box-shadow: 5px 4px 5px -3px rgba(0,0,0,0.21);
}

.usrBox .img {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.usrBox .inner > span {
  margin-left: 5px;
  max-width: 150px;
  overflow: hidden;
  position: relative;
}
.usrBox .inner > span.blendout {
  cursor: help;
  white-space: nowrap;
  padding-right: 25px;
}
.usrBox .inner > span.blendout:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 100%;
  right: 0px;
  top: 0px;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 95%);
}
.usrBox .inner > span div {
  white-space: nowrap;
}



/* new Maxxx User Box */
.maxxxUserBox {
  display: inline-block;
}
.maxxxUserBox .inner {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.maxxxUserBox .img {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.maxxxUserBox .inner > span {
  margin-left: 5px;
  max-width: 150px;
  overflow: hidden;
  position: relative;
}

/* Location Box -> Standortverwaltung */
.locationBox {
  display: inline-block;
}
.locationBox .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.locationBox .img {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.locationBox .inner > span {
  margin-left: 5px;
  max-width: 150px;
  overflow: hidden;
  position: relative;
}



/* Bootstrap Override */
.card-header {
  padding: 0.50rem 1.25rem;
}

.modal-95percent {
  max-width: 95%;
}
