/* ******************************
:: 1.0 WEB FONTS
****************************** */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ******************************
:: 2.0 GLOBAL CSS
****************************** */
:root {
  --primary-font: "Roboto", sans-serif !important;
  --p-size: 0.8rem;
  --p-weight: 400;
  --primary-color: #565656;
  --left-nav-color: #3a3a3a;
  --left-nav-nav-hover-color: #2c2e30;
  --nav-toggler-color: #7e8085;
  --white-color: #ffffff;
  --primary-p-color: #3a3a3a;
  --secondary-p-color: #3771c8;
  --valid-color: #3a905a;
  --invalid-color: #e42c2c;
  --primary-bg-color: #ffffff;
  --grey-light-bg-color: #f5f5f5;
  --blue-bg-color: #3771c8;
  --blue-bg-hover: #255caf;
  --primary-gradient-bg-color: linear-gradient(-47deg, #ccc 10%, #fff 80%);
  --nav-bg-color: #3771c8;
  --breadcrumb-active-color: #3771c8;
  --grey-bg-color: #f7f7f7;
  --primary-btn-color: #324a5e;
  --primary-btn-hover-color: #3771c8;
  --border-color: #dee1e1;
  --button-grey-color: #eaf0f2;
  --button-white-color: #fff;
  --borderLight: #e3e3e3;
  --borderDark: #c7c7c7;
  --borderBlack: #000;
  --bg-white: #ffffff;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font18: 18px;
  --fontTitleLarge: 25px;
  --fontLight: 300;
  --fontNormal: 400;
  --fontMedium: 500;
  --fontBold: 600;
  --textWarning: #D4AF37;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--primary-font) !important;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: var(--p-weight);
  color: var(--primary-color);
  background-color: var(--grey-light-bg-color);
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}

.ml0 {
  margin-left: 0px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.container {
  /* width: 1920px;
  max-width: 1920px; */
  width: 100%;
  max-width: 100%;
  padding: 0px;
}

.Header {
  background-color: var(--nav-bg-color);
  width: 100%;
  position: fixed;
  width: 100%;
  height: 60px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, .04), 0 1px 6px rgba(0, 0, 0, .04);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  z-index: 100;
  padding: 0px;
}

.Logo {
  width: 120px;
}

.Logo img {
  width: 32px;
  height: 32px;
  margin: 10px auto;
  display: block;
}

.topCompanyName h2 {
  color: #324a5e;
  font-size: 14px;
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0px;
  font-weight: bold
}

.Header.navbar-light .navbar-nav .nav-link {
  font-size: 13px;
  color: #000;
  padding: 3px 5px;
}

.Header .rhs-menu {
  position: absolute;
  right: 10px;
}

.Header .rhs-menu a.userMenu img {
  width: 30px;
  border-radius: 100px;
}

.Header .rhs-menu a {
  display: inline-block;
  margin-left: 15px;
  position: relative;
}

.Header .rhs-menu a {
  font-size: 14px;
}

.Header .rhs-menu a i {
  font-size: 20px;
  position: relative;
  top: 5px;
}

.start-header {
  background-color: var(--primary-bg-color);
  width: 100%;
  display: flex;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--border-color);
}

.start-header ul {
  margin: 0px;
  padding: 0px;
}

.start-header ul li {
  display: inline-block;
  list-style: none;
  width: 95px;
  text-align: center;
  min-height: 90px;
  position: relative;
  background: #eaf0f2;
}

.start-header ul li a {
  color: #4b4e4d;
  font-size: 12px;
  padding: 8px 0px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.start-header ul li a img {
  width: 32px;
  height: 32px;
  margin: 0px auto 5px auto;
  display: block;
}

.start-header ul li a span {
  margin-top: 0px;
  display: inline-flex;
}

.start-header ul li.disabled {
  /* color: #879bab; */
  opacity: 0.5;
  filter: grayscale(100%);
}

.start-header ul li:hover {
  background-color: var(--grey-light-bg-color);
}

.startList {
  float: left;
}

.start-header ul.rightBorder {
  border-right: 1px solid var(--border-color);
}

.HeaderDropdown {
  position: absolute;
  left: 0;
  top: 89px;
  width: 200px;
  background: var(--primary-bg-color);
  /* box-shadow: 0 1px 15px rgba(0, 0, 0, .04), 0 1px 6px rgba(0, 0, 0, .04); */
  z-index: 2;
  display: none;
}

.start-header ul li.dropMenu:hover .HeaderDropdown {
  display: block;
}

.start-header .HeaderDropdown ul li {
  display: block !important;
  width: 100% !important;
  min-height: inherit !important;
  text-align: left !important;
}

.start-header .HeaderDropdown ul li a {
  display: inline-flex !important;
}

.start-header .HeaderDropdown ul li a img {
  width: 28px;
  height: 28px;
  margin: 0px 10px 0px 10px !important;
  display: inline-block;
}

.start-header .HeaderDropdown ul li a span {
  margin-top: 6px;
}

.LeftSection {
  /* border-right: 1px solid var(--border-color);
  background-color: #eaf0f2;
  height: calc(100vh - 188px); */
  position: fixed;
  top: 0px;
  height: calc(100vh - 0px);
  background: #fff;
  z-index: 100;
  width: 120px;
  max-width: 120px;
  padding: 0px;
}

.menu-sub-header {
  color: var(--primary-color);
  font-size: 12px;
  text-align: center;
  margin-bottom: 0px;
  padding: 5px 0px;
  font-weight: 500;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
}

.mainLeftMenu {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .08);
  height: calc(100vh - 0px);
}

.mainLeftMenu ul {
  margin: 0px;
  padding: 0px;
}

.mainLeftMenu ul li {
  list-style: none;
  text-align: center;
}

.mainLeftMenu ul li a {
  padding: 8px 10px;
  display: block;
  text-decoration: none;
  color: var(--left-nav-color);
  font-size: 13px;
  display: block;
  font-weight: 400;
}

.mainLeftMenu ul li a img {
  height: 39px;
  width: 39px;
  display: block;
  margin: 0 auto 6px;
}

.mainLeftMenu ul li.leftInfoIcon {
  background-color: #eaf0f2;
  position: absolute;
  bottom: 0;
}

.mainLeftMenu ul li.leftInfoIcon a img {
  margin: 0 auto !important;
}

.LeftMenuTitle {
  color: #324a5e;
  font-size: 13px;
  padding: 8px 10px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

.mainLeftMenu li {
  width: 120px;
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.mainLeftMenu li a {
  font-weight: 600;
}

.mainLeftMenu li .triangle {
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  border-color: transparent transparent #3771c8;
  border-style: solid;
  border-width: 0 0 20px 20px;
  opacity: 0;
}

.mainLeftMenu li.active .triangle,
.mainLeftMenu li:hover .triangle {
  opacity: 1;
}

/*slide menu*/
.slideMenu {
  position: fixed;
  top: 0px;
  height: calc(100vh - 0px);
  background: #fff;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .08);
  z-index: 1;
  width: 220px;
  transition: all .24s ease-in-out;
  left: -220px;
}

.slideMenu ul li {
  display: block;
  width: 100%;
  padding: 0px;
  text-align: left;
}

.slideMenu ul li a {
  color: #332e38;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 10px 10px 15px;
  -webkit-transition: all .15s ease-in;
  transition: all .15s ease-in;
  width: 100%;

}

.HoverLabel {
  text-align: left;
  font-weight: bold;
  display: block;
  padding: 10px;
}

.slideMenu ul li a img {
  height: 27px;
  width: 27px;
  display: inline-block;
  margin: 0px 10px 0px 0px;
}

.mainLeftMenu li:hover .slideMenu {
  left: 0px;
  transition: all .24s ease-in-out;
}

.slideMenu ul li a:hover {
  background-color: #f5f5f5;
}

/*breadcrumb*/
.breadcrumb {
  background: var(--primary-bg-color);
  border-radius: 0px;
  padding: 10px 0px;
  margin-bottom: 0px;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb ul li {
  display: inline-block;
  position: relative;
  /* padding: 0 .6rem; */
  line-height: normal;
  vertical-align: middle;
  margin-right: 15px;
}

.breadcrumb ul li .menuIcon {
  cursor: pointer;
}

.breadcrumb ul li a {
  color: var(--primary-p-color);
  text-decoration: none;
}

.breadcrumb ul li span.active {
  color: var(--breadcrumb-active-color) !important;
}

.breadcrumb ul li::after {
  position: absolute;
  top: -1px;
  right: 0;
  content: "";
  height: 16px;
  width: 1px;
  background: #70657b;
  border-radius: 5px;
  display: none;
}

.breadcrumb ul li:last-child::after {
  display: none;
}

.toggleHeader {
  position: absolute;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #f5f5f5;
}

.toggleHeader div {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.mainBody {
  height: 100vh;
}

.mainBody .left {
  width: 120px;
  max-width: 120px;
  padding: 0px;
}

.mainBody .right {
  width: calc(100% - 120px);
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0px;
  height: calc(100vh - 0px);
  overflow: hidden;
  background-color: var(--grey-light-bg-color);
  background-color: #fff;
  margin-left: 120px;
  transition: 0.5s;
}

.mainBody .right.active {
  margin-left: 0px;
  position: relative;
  z-index: 10;
  transition: 0.5s;
}

.LeftMenuActive .LeftSection {
  left: 0px;
  transition: 0.5s;
}

.LeftMenuHide .LeftSection {
  left: -120px;
  transition: 0.5s;
}

.ProductLeft.active {
  max-width: 0%;
  transition: 0.5s;
  border: 0;
}

.ProductRight {
  background: #fff;
  padding: 0px;
  margin-left: 1px;
}

.ProductRight,
.ProductLeft {
  transition: 0.5s;
}

.ProductRight.active {
  max-width: 100% !important;
  flex: 0 0 100%;
  transition: 0.5s;
  position: relative;
  z-index: 10;
}

.react-tabs__tab-panel {
  margin-top: 0px;
}

.MainTab {
  width: 100%;
}

.MainTab {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  margin-bottom: 0px;
  padding: 0px
}

.MainTab li {
  padding: 8px 10px;
  font-size: 12px;
  border-right: 1px solid var(--border-color);
  color: var(--white-color);
  background-color: #eaf0f2;
  color: #324a5e;
}

.MainTab li.react-tabs__tab--selected {
  border-color: var(--border-color);
  border-radius: 0px;
  background-color: #eaf0f2;
  background-color: #fff;
  color: #324a5e;
}

.react-tabs__tab-panel {
  background-color: #fff;
}

.form-check-input {
  margin-top: 3px;
}

.ProductLeft {
  border-right: 1px solid var(--border-color);
  height: calc(100vh - 215px);
  background-color: #fff;
}

.ProductLeft.fullView {
  height: calc(100vh - 90px);
}

.ProductHeader {
  padding: 10px 0px;
  border-bottom: 1px solid var(--border-color);
  background-color: #fff;
}

.ProductHeader .form-check-input {
  margin-top: 0.15rem;
  margin-left: -1.25rem;
}

.rowPadding {
  padding: 3px 0px;
  color: #324a5e;
  font-size: 13px;
}

.form-control {
  height: 25px !important;
  border-radius: 0px;
  font-size: 12px;
  border: 1px solid var(--border-color);
  padding: 3px;
}

.form-control:focus {
  box-shadow: none
}

.rowPadding .icon {
  padding: 0px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  width: 30px;
  height: 27px;
  margin: 0 auto;
}

.rowPadding .icon img {
  width: 27px;
  height: 27px;
}

.productList {
  padding: 0px 0px 10px 0px;
  /* border-bottom: 1px solid #e9e9e9; */
  height: calc(100vh - 410px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.productList.fullView {
  height: calc(100vh - 210px);
}

.productList::-webkit-scrollbar {
  width: 3px;
}

.productList::-webkit-scrollbar-track {
  background: transparent;
}

.productList::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 0px;
  border: 0px solid #515a6f;
}

.productList .accordion {
  border: 0px;
  border-radius: 0px;
}

.productList .accordion__button {
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid var(--border-color) !important;
  border-top: 0px !important;
  font-size: 12px;
  color: #324a5e;
}

.productChildList {
  margin: 0px;
  padding: 0px;
}

.productChildList li {
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid var(--border-color) !important;
  border-top: 0px !important;
  list-style: none;
  font-size: 12px;
  text-decoration: none;
  color: #324a5e;
  cursor: pointer;
}

.productChildList li a {
  font-size: 14px;
  text-decoration: none;
  color: #324a5e;
}

.productList .accordion__panel {
  padding: 2px 0px 0px 15px;
}

.productList .accordion__button::before {
  height: 7px;
  width: 7px;
  margin-right: 12px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: relative;
  top: -2px;
}

.productList .no-arrow .accordion__button {
  margin-top: 2px;
  border-top: 1px solid #ebf0f6 !important;
}

.productList .icon {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.bt1 {
  border-top: 1px solid var(--border-color) !important;
  margin-top: -1px;
}

.productList .accordion__button:hover {
  background-color: #d8e0e4
}

/* .productList .accordion__button:first-child {
  border-top: 1px solid var(--border-color) !important;
} */
.productList .no-arrow .accordion__button:last-child::before {
  display: none !important;
}

.product-subsub-cat .selected_nav .accordion__button {
  background-color: #1467ad;
  color: #fff;
}

.accordion__button[aria-expanded="true"]::before,
.accordion__button[aria-selected="true"]::before {
  position: relative;
  top: -3px;
}

.rightTitle {
  color: #324a5e;
  font-size: 14px;
  font-weight: 500;
  background-color: #d8e0e4;
  padding: 7px 10px;
  margin-bottom: 0px;
  border-bottom: 1px solid #fff;
}

.formBase {
  padding: 15px;
}

.formBase label {
  color: #324a5e;
  font-size: 13px;
  margin-bottom: 0px;
}

.formBase .form-group {
  margin-bottom: 10px;
}

.detextbox1 {
  border: 1px solid var(--border-color) !important;
  border-radius: 0px;
  padding: 5px;
  font-size: 14px;
  width: 40px;
  text-align: center;
  border-bottom: 1px solid #fff !important;
  background: #fff;
  margin-top: 1px;
}

.detextbox {
  border: 1px solid var(--border-color) !important;
  border-radius: 0px;
  padding: 5px;
  font-size: 14px;
  width: 40px;
  text-align: center;
  position: absolute;
  left: 0px;
  border-right: 1px solid #fff !important;
  background: #fff;
}

.ptextbox {
  min-height: 100px;
  padding-left: 0px;
}

.ptextbox .form-control {
  min-height: 80px;
  overflow-y: scroll;
  resize: none;
}

.search-button {
  background: var(--button-grey-color);
  border: 1px solid var(--border-color) !important;
  height: 60px;
  width: 140px;
  text-align: center;
  color: var(--primary-p-color);
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  /* background-image: linear-gradient(to top, #324a5e 0%, #D7DDE8  20%, #324a5e  100%);
  background-size: auto 200% ; */
}

.search-button:hover {
  background: var(--blue-bg-color);
  color: var(--white-color);
}

.btn-grad {
  background-image: linear-gradient(to right, #757F9A 0%, #D7DDE8 51%, #757F9A 100%)
}

.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;

  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-grad:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.search-button img {
  margin-right: 10px;
  margin-left: 10px;
}

.close-button {
  border: 1px solid var(--border-color) !important;
  padding: 4.5px 5px;
  font-size: 12px;
  background: #fff;
  color: #324a5e;
  line-height: normal;
  width: 100%;
  position: relative;
  top: 0px;
}

.searchbar {
  position: relative;
}

.searchbar .form-control {
  height: 35px !important;
  padding-left: 8px;
  border: 0px;

}

.searchbar .search-icon {
  border-radius: 0px;
  font-size: 14px;
  width: 35px;
  height: 35px;
  text-align: center;
  position: absolute;
  right: 0px;
  background: #fff;
  top: 0;
}

.searchbar .search-icon img {
  width: 19px;
  position: relative;
  top: 4px;
}

table {
  width: 100%;
}

.search-table-head table tr th {
  font-size: 13px;
  padding: 5px 8px;
  border: 1px solid var(--border-color) !important;
  background: #eaf0f2;
  font-weight: normal;
}

.search-table-result {
  height: calc(100vh - 601px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.search-table-result::-webkit-scrollbar {
  width: 3px;
}

.search-table-result::-webkit-scrollbar-track {
  background: transparent;
}

.search-table-result::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 0px;
  border: 0px solid #515a6f;
}

.bliderRightIcons {
  text-align: center;
  padding: 5px;
  border-left: 0px solid var(--border-color) !important;
  background-color: #fff;
}

.bliderRightIcons .icon {
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
  background-color: #fff;
}

.bliderRightIcons .icon img {
  width: 35px;
  height: 35px;
}

.blider-table-result {
  height: 130px;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 1px solid var(--border-color) !important;
  padding-right: 1px;
}

table {
  margin-bottom: 0px !important;
}

.table-head table tr th {
  font-size: 13px;
  padding: 8px;
  border: 1px solid var(--border-color) !important;
  background: #eaf0f2;
  font-weight: normal;
}

table tr td {
  font-size: 13px;
  padding: 8px;
  /* border: 1px solid var(--border-color) !important; */
  background: #fff;
  font-weight: normal;
}

table tr td input {
  border: 0px;
  width: 100%;
}

.table-bordered td,
.table-bordered th {
  padding: 5px;
  white-space: nowrap;
  border: 1px solid var(--border-color) !important;
}

.SubTab {
  width: 100%;
}

.SubTab {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  margin-bottom: 1px;
  padding: 0px;
  position: relative;
  z-index: 1;
}

.SubTab li {
  padding: 8px 10px;
  color: #324a5e;
  font-size: 12px;
  border-right: 1px solid var(--border-color);
  background-color: #eaf0f2;
}

.SubTab li:after {
  display: none;
}

.SubTab li.react-tabs__tab--selected {
  border-color: var(--border-color);
  border-radius: 0px;
  background: var(--primary-bg-color);
}

.Zubehor-table-result {
  height: calc(100vh - 500px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 1px solid var(--border-color) !important;
  padding-right: 1px;
}

.MandatenTitle {
  color: #324a5e;
  font-size: 14px;
  padding: 7px 0px;
  text-align: center;
}

.mandatenChooseBox {
  height: calc(100vh - 445px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border: 1px solid var(--border-color) !important;
  padding: 5px;
}

.zubehorLeft {
  flex: 0 0 94.666667%;
  max-width: 94.666667%;
}

.zubehorRight {
  flex: 0 0 5.333333%;
  max-width: 5.333333%;
}

.specialProdukte {
  border: 1px solid var(--border-color) !important;
  padding: 5px;
}

.productFirstTab {
  height: calc(100vh - 380px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.verkaufMinHeight {
  height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  background-color: #fff;
}

.adresseBox {
  border: 1px solid var(--border-color) !important;
  margin-bottom: 10px;
}

.zusatzHeight {
  min-height: 100px;
  resize: none;
}

.adressFirstTab {
  height: 369px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.VorschauHeight {
  height: calc(100vh - 721px);
}

.BildAufnehmen {
  background-color: #fff;
  height: 20vh;
  position: relative;
}

.BildAufnehmen p {
  color: #324a5e;
  font-size: 14px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.brl1 {
  border-left: 1px solid var(--border-color) !important;
}

.brR1 {
  border-right: 1px solid var(--border-color) !important;
}

.brT1 {
  border-top: 1px solid var(--border-color) !important;
}

.br1 {
  border: 1px solid var(--border-color) !important;
}

.BildAufnehmenBtn {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid var(--border-color) !important;
  text-align: center;
  color: #324a5e;
  font-size: 13px;
  padding: 5px;
}

.Bemerkungen p,
.PopMeldung p {
  color: #324a5e;
  font-size: 13px;
  margin-bottom: 5px;
}

.Bemerkungen {
  height: calc(100vh - 600px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-bottom: 1px solid var(--border-color) !important;
}

.PopMeldung {
  height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  padding-top: 10px;
}

.Kartentyp {
  border: 1px solid var(--border-color) !important;
}

.SaldoRefresh {
  background: #fff;
  border: 1px solid var(--border-color) !important;
  text-align: left;
  color: #324a5e;
  font-size: 13px;
  height: 50px;
  width: 140px;
  line-height: 50px;
  margin-top: 45px;
  float: right;
  border-radius: 6px;
  cursor: pointer;
}

.SaldoRefresh img {
  margin-right: 10px;
  margin-left: 10px;
}

.Verfugbare {
  height: calc(100vh - 376px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.Verfugbare ul,
.VerfugbareBtns ul {
  padding: 0px;
  margin: 0px;
}

.Verfugbare ul li {
  list-style: none;
  color: #324a5e;
  font-size: 13px;
  margin-bottom: 5px;
  padding: 5px;
}

.VerfugbareBtns {
  padding: 15px;
  margin-top: 20px;
}

.VerfugbareBtns ul li {
  list-style: none;
  color: #324a5e;
  font-size: 13px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid var(--border-color) !important;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
}

.Verfugbare ul li.active {
  background: #4a6a86;
  color: #fff;
}

.VerfugbareBtns ul li img {
  width: 23px;
  margin-right: 5px;
}

/* .Infrastructre{
  background-color: #eaf0f2;
} */
.infraLeftPadding {
  padding-left: 35px !important;
}

.InfrastructreBottom {
  text-align: center;
  padding: 5px;
  border-left: 1px solid var(--border-color) !important;
  background-color: #fff;
}

.InfrastructreBottom .icon {
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
}

.InfrastructreBottom .icon img {
  width: 35px;
  height: 35px;
}

.infraHeight {
  height: calc(100vh - 780px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.infraTextAreaheight {
  min-height: 100px;
  resize: none;
}

.InfraLeftTableHeight {
  height: calc(100vh - 395px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 0px solid var(--border-color) !important;
}

.bliderRightIcons.Infrastructre {
  border-left: 0px solid var(--border-color) !important;
}

.KPTextAreaHeight {
  min-height: 63px;
  resize: none;
}

.search-table-head {
  width: 100%;
}

.KontaktInfoHeight {
  height: 445px;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 1px solid var(--border-color) !important;
}

.KontaktInfoHeight1 {
  height: 320px;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 1px solid var(--border-color) !important;
}

.KontaktInfoHeight1 td {
  background: #fff;
}

.ResizePanel-module_ResizeContentVertical__1OGHY {
  flex-flow: nowrap !important;
}

.ResizePanel-module_ResizeHandleVertical__I0jId {
  width: 100% !important;
  border: 0px !important;
  background-color: #d9dbdb !important;
  height: 5px !important;
}

.ResizePanel-module_ResizeHandleVertical__I0jId>span {
  display: none !important;
}

.ResizePanel-module_ResizeBarVertical__2LUZV {
  height: 5px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.MitarbeiterFirstTab {
  height: 285px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.Gruppenzuweisungen {
  height: calc(100vh - 780px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 0px solid var(--border-color) !important;
}

.mitarLiginBase {
  border: 1px solid var(--border-color) !important;
}

.RegulareDayHeight {
  height: calc(100vh - 748px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 0px solid var(--border-color) !important;
}

.bildTable {
  height: calc(100vh - 327px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  border-right: 0px solid var(--border-color) !important;
}

.bildTable table tr.active {
  background: #d8e0e4;
}

.bildTable table tr:hover {
  background: #d8e0e4;
}

.bildTable table td {
  vertical-align: middle;
  background: transparent !important;
}

.bildTableProductImg {
  height: calc(100vh - 419px);
  position: relative;
}

.bildTableProductImg img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}


/**slide-modal**/

.minPopup {
  z-index: 100000 !important;
  padding-right: 0px !important;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.mediumPopup {
  z-index: 100000 !important;
  padding-right: 0px !important;
  position: fixed;
  width: 100% !important;
  height: 100% !important;
  padding: 0px !important;
}

.modal-slide {
  z-index: 100000 !important;
  padding-right: 0px !important;
  position: fixed;
}

.modal .modal-header .close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  z-index: 100;
  background-color: var(--primary-btn-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 20px;
  padding: 0px;
  margin: 0px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.modal .modal-header .close span {
  font-size: 20px
}

.modal .modal-header {
  overflow: hidden;
  clear: both;
  padding: 8px 15px 10px 15px;
  color: #333;
  margin: 0;
  border-bottom: 1px solid #e3e3e3;
  line-height: 1;
  position: relative;
  background: #e8ebf0;
  align-items: center;
}

.profile_details li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 20px;
}

.profile_details li a {
  font-size: 13px;
  display: block;
  font-size: 12px;
  font-weight: 300;
  padding: 9px 10px 9px 0px;
  display: inline-flex;
  color: #333;
  text-decoration: none;
}

.userInfoHeader {
  text-align: left;
  position: relative;
  padding: 20px 20px 20px 20px;
  color: #fff;
  border-bottom: 1px solid #d5dde7;
  background-color: #f6f8fb;
}

.userInfoHeader .userTitle {
  width: 40px;
  height: 40px;
  background: #fff;
  margin: 5px auto 10px auto;
  margin-right: auto;
  border-radius: 100px;
  text-align: center;
  font-size: 14px;
  color: #000;
  float: left;
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.chat_status {
  position: relative;
}

.online::after {
  background-color: #14b474;
  color: #14b474;
}

.chat_status::after {
  content: '';
  height: 10px;
  width: 10px;
  border: solid 2px white;
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.modal .modal-body {
  padding: 0px;
}

.modal .modal-header .modal-title {
  font-size: 16px;
}

.profile_details li a i {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  margin-right: 15px;
  font-size: 13px;
  position: relative;
  top: 3px;
}

.modal-slide.show .modal-content {
  top: 0px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-slide .modal-content {
  position: absolute;
  top: 0%;
  right: 0px;
  height: 100vh;
  background: #fff;
  width: 400px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0px;
}

.modal-slide .modal-dialog {
  max-width: inherit;
  margin: 0;
}

.userBottom .link {
  color: #0b6eaf !important;
  font-size: 14px;
}

.modal-backdrop {
  background-color: #000;
  z-index: 10000;
}

.userInfoHeader .userTitle img {
  width: 100%;
  border-radius: 100px;
}

.userInfoHeader .profile-section {
  margin-bottom: 20px;
  position: relative;
  font-size: 12px;
  color: #5a616f;
  font-weight: 300;
  text-align: left;
}

.userInfoHeader .profile-section>span {
  display: block;
  width: 80%;
  margin: auto;
  font-size: 14px;
  font-weight: 500;
  color: #5a616f;
}

.btn-rounded {
  border-radius: 30px;
  padding: 10px 30px 10px;
  line-height: 1.42857143;
  font-size: 14px;
  font-weight: 300;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary-btn-color);
  border-color: var(--primary-btn-color);
}

.btn-primary:hover {
  background-color: var(--primary-btn-hover-color);
  border-color: var(--primary-btn-hover-color);
}

.modal-slide .modal-footer {
  justify-content: flex-start !important;
}

.modal-slide .modal-footer .userBottom {
  width: 100%;
}

.modal-slide .modal-footer .btn-primary {
  width: 100%;
}

.reportList li {
  list-style: none;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 5px 5px 5px 30px;
  position: relative;
}

.ReportLogo {
  padding: 10px;
}

.reportList li.active::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 9px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--primary-color);
}

.ReportLogo {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  background-color: #fff;
  height: calc(100vh - 252px);
}

.reportList {
  height: calc(100vh - 349px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.ReportPagination {
  background-color: #fff;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
}

.ReportPagination ul {
  margin-bottom: 0px;
  text-align: right;
}

.ReportPagination ul li {
  display: inline-block;
  list-style: none;
}

.ReportPagination ul li a {
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  margin-left: 10px;
  text-decoration: none;
  color: var(--primary-color);
  display: block;
}

.ReportPagination ul li a:hover {
  color: var(--primary-btn-hover-color);
  border-color: var(--primary-btn-hover-color);
}

.white-bg {
  background-color: #fff;
}

.AbschlussHeight {
  height: calc(100vh - 577px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.tableHoverArrow table tr.active {
  background: #f1f1f1;
}

.tableHoverArrow table td {
  vertical-align: middle;
  background: transparent !important;
}

.tableHoverArrow table tr:hover {
  background: #f1f1f1;
}

.tableHoverArrow table tr.active td:nth-child(1) {
  position: relative;
  text-align: center;
}

.tableHoverArrow table tr.active td:nth-child(1)::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.GruppeBeschreibungHeight {
  height: calc(100vh - 550px);
  background: #fff;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-top: 37px
}

.GruppeBliderHeight {
  height: calc(100vh - 715px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.GruppeBliderHeight.fullView {
  height: calc(100vh - 535px);
}


.logistikHeight {
  height: calc(100vh - 481px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.reportKundenHeight {
  height: calc(100vh - 498px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.gutscheineHeight {
  height: calc(100vh - 438px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.sub-search-button {
  background: var(--primary-bg-color);
  border: 1px solid var(--border-color) !important;
  height: 50px;
  width: 100%;
  text-align: center;
  color: var(--primary-p-color);
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

.sub-search-button:hover {
  background: var(--blue-bg-color);
  color: var(--white-color);
}

.inputGroupImg {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: transparent;
  border: 1px solid var(--border-color);
  width: 25px;
  cursor: pointer;
}

.inputGroupImg img {
  width: 20px;
  padding: 0px;
}

.refresh-btn {
  border: 1px solid var(--border-color) !important;
  padding: 4.5px 5px;
  font-size: 12px;
  background: #fff;
  color: #324a5e;
  line-height: normal;
  width: 100%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  top: 10px;
  display: block;
  border-radius: 3px;
}

.refresh-btn img {
  width: 20px;
  padding: 0px;
}

.refresh-btn:hover {
  border: 1px solid var(--valid-color) !important;
}

.willkommenHeight {
  height: calc(100vh - 474px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.browseBtn {
  border: 1px solid var(--border-color) !important;
  padding: 4.5px 10px;
  font-size: 12px;
  background: #fff;
  color: #324a5e;
  line-height: normal;
  cursor: pointer;
}

.BackupDays {
  margin: 10px 0px 0px 10px;
  padding: 0px;
}

.BackupDays li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
}

.not-found-base {
  position: relative;
  height: 100vh;
}

.not-found {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.not-found h1 {
  font-size: 35px;
  font-weight: 600;
  color: var(--breadcrumb-active-color) !important;
}

.not-found p {
  font-size: 18px;
  font-weight: 400;
}

.tableWrap {
  display: block;
  max-width: 101%;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.fulltable {
  background: #eaf0f2;
  width: 100% !important;
  display: block;
}

.tableSortIcon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.tableContextMenu {
  width: 200px;
  background: var(--primary-bg-color);
  box-shadow: 0 1px 15px rgba(0, 0, 0, .04), 0 1px 6px rgba(0, 0, 0, .04);
  z-index: 1;
  border-radius: 6px;
}

.tableContextMenu ul {
  padding: 0px 15px;
  margin: 0px;
}

.tableContextMenu ul li {
  display: block !important;
  width: 100% !important;
  border-bottom: 1px dotted var(--border-color) !important;
  padding: 7px 0px;
}

.tableContextMenu ul li:hover {
  background-color: var(--grey-light-bg-color);
}

.tableContextMenu ul li label {
  margin-bottom: 0px;
}

.tableContextMenu ul li label span {
  margin-left: 10px;
}

.tableContextMenu a {
  display: block !important;
  width: 100% !important;
  padding: 8px;
  border: 1px solid var(--border-color) !important;
  text-decoration: none;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 6px;
}

.tableContextMenu a:hover {
  background: var(--blue-bg-color);
  color: var(--white-color);
}

.mandatLogo {
  border: 1px solid var(--border-color) !important;
  padding: 15px;
  text-align: center;
}

.ModuleBelegeHeight {
  height: calc(100vh - 580px);
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
  margin-bottom: 0px;
}

.TabellenAbfrageHeight {
  min-height: 300px;
  resize: none;
}

.TabellenTextTable {
  border-top: 1px solid var(--border-color) !important;
}

.TabellenTextTable table td,
.TabellenTextTable table th {
  height: 30px;
}


/**login**/

.loginForm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 500px;
}

.LoginRight {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 250px;
}

.login-overlay {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.LoginRight h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: var(--textBlack);
  /* text-transform: uppercase; */
  font-size: 2em;
  width: 70%;
  z-index: 1;
}

.loginForm .loginFormInner {
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: var(--shadowHover);
  overflow: hidden;
  border: 1px solid var(--borderDark)
}

.loginForm .loginFormInner form {
  padding: 15px;
}

.commonForm {
  margin-top: 20px;
}

.commonForm .floating {
  height: 50px;
  position: relative;
}

.commonForm .form-control {
  border-radius: 0px;
  height: 45px !important;
  padding-left: 0px;
  border: 0px;
  border-bottom: 1px solid var(--borderLight);
  background: transparent !important;
  font-size: var(--font14);
  box-shadow: none;
  color: var(--textBlack);
}

.commonForm .form-control:focus {
  border-bottom: 1px solid var(--borderBlack);
}

.button-large {
  background: var(--blue-bg-color);
  padding: 15px;
  color: var(--bg-white);
  border-radius: 10px;
  align-items: center;
  cursor: pointer;
  border: 0px;
  width: 100%;
  font-weight: var(--fontBold);
  letter-spacing: 2px;
  text-align: center;
  font-size: 18px;
}

.button-large:hover {
  background: var(--blue-bg-hover);
  color: var(--bg-white);
}

.formIcon {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 5px;
  top: 10px;
  cursor: pointer;
}

.formIcon img {
  width: 20px;
  height: 20px;
}

.loginForm p {
  font-size: var(--font14);
}

.commonForm-title {
  font-size: var(--fontTitleLarge);
  line-height: 1.25;
  margin: 20px 0;
  word-break: break-word;
  text-align: center;
}

.loginFormInner .link {
  font-size: 14px;
}

.loginlogo {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin: 20px auto;
  width: 103px;
}

.homeBg {
  background: #fff url(../images/login-bg.png) no-repeat;
  background-size: cover;
  background-color: var(--bg-color1);
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

.errorMsg {
  color: #d31313;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.alert {
  border: 1px solid var(--bg-default) !important;
  border: 0px;
  border-left: 5px solid #ffff;
  width: 100%;
  margin: 0 auto;
  color: var(--primary-color);
  border: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  position: fixed;
  top: -15%;
  z-index: 10000;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 15px 40px 15px 10px;
  display: flex;
  align-items: center;
  min-height: 72px;
}

.alert.active {
  top: 0px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.alert-close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 19px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--textBlack);
  z-index: 100;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);

}

.alert-success {
  border-left: 5px solid var(--valid-color) !important;
}

.alert-info {
  border-left: 5px solid #2f86eb !important;
  background-color: #fff !important;
}

.alert-warning {
  border-left: 5px solid var(--warning) !important;
}

.alert-danger {
  border-left: 5px solid var(--invalid-color) !important;
  background-color: #fff !important;
}

.alert span.icon {
  width: 30px;
  height: 30px;
  line-height: normal;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  margin-right: 10px;
  position: relative;
  background: red;
}

.alert span.icon i {
  color: var(--bg-white);
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.alert-success span.icon {
  background-color: var(--valid-color) !important;
}

.alert-info span.icon {
  background-color: #2f86eb !important;

}

.alert-warning span.icon {
  background-color: var(--warning) !important;
}

.alert-danger span.icon {
  background-color: var(--invalid-color) !important;
}

.alert-success {
  background-color: var(--bg-white) !important;
}

.css-cnfek5-Popover {
  z-index: 2000 !important;
  /* position: fixed !important;
  left: 10% !important;
  top: 10% !important; */
}

.css-yxnuqv-ColorPicker {
  height: 133px !important;
}

.css-19gs8ny-Popover {
  padding: 5px !important;
}

.css-1iqvnao-ColorPicker {
  width: 100%;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.sortOrderNumber {
  float: right;
}

.productListTitle {
  display: flex;
  padding: 9px 0px;
}

.productListTitle div {
  width: 50%;
}

.BliderTableIcon td {
  vertical-align: middle;
  padding: 5px 8px;
}

.rightTitle {
  display: flex;
  background-color: #eaf0f2;
  align-items: center;
  position: relative;
  z-index: 1;
}

.productFull,
.productFull:hover {
  color: #000;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  text-align: center;
  background-color: #eaf0f2;
  font-size: 12px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.Resizer {
  background: #000;
  opacity: 0.2;
  z-index: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}

.Resizer:hover {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.Resizer.horizontal {
  height: 11px;
  margin: -5px 0;
  border-top: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  cursor: row-resize;
  width: 100%;
}

.Resizer.horizontal:hover {
  border-top: 5px solid rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid rgba(0, 0, 0, 0.5);
}

.Resizer.vertical {
  width: 9px;
  margin: 0 -5px;
  border-left: 5px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 255, 0);
  cursor: col-resize;
}

.Resizer.vertical:hover {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.Resizer.disabled {
  cursor: not-allowed;
}

.Resizer.disabled:hover {
  border-color: transparent;
}

.SplitPane.vertical {
  left: 15px !important;
  right: 15px !important;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.PaneVerticalActive {
  min-width: 0px !important;
}

.Pane.horizontal {
  top: 37px !important;
}

.Resizer.horizontal {
  top: 37px !important;
  position: relative;
}

.BeschreibungBottom {
  width: 100%;
}

.grupPopupBtns {
  margin-left: 10px;
}

.grupPopupContent {
  background: #f0f0f0;
  width: 100%;
  height: 150px;
  padding: 10px;
}

.grupPopupBtns .btn {
  display: block;
  margin-bottom: 10px;
  background: #eaf0f2;
  color: #000;
  border: 1px solid #eaf0f2;
}

.grupPopup .form-control {
  margin-top: 10px;
  height: 30px !important;
  ;
}


.App {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.list-container {
  display: flex;
  font-size: 18px;
  background-color: #eee;
  flex-direction: column;
}

.item-container {
  background-color: #fff;
  border: 1px solid black;
  padding: 25px 70px;
  margin: 15px 50px;
}

.bildUpload {
  padding: 5px;
  margin-bottom: 0px;
}

.bildUpload li {
  position: relative;
  width: 70px;
  height: 70px;
  margin-right: 5px;
  border-radius: 8px;
  overflow: hidden;
  display: inline-block;
  border: 1px solid var(--border-color);
}

.bildUpload li img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.imgClrBtn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid var(--bg-default);
  text-align: center;
  font-size: 20px;
  border-radius: 4px;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

.imgClrBtn i {
  font-size: 14px;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.uploadBtn {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  cursor: pointer;
  height: 70px !important;
  width: 70px !important;
  z-index: 1;

}

.imageAddBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  display: block;
}

.imageAddBtn i {
  font-size: 30px;
  color: #d1d1d1;
}

.webCamPop {
  padding: 10px;
  width: 100%;
  height: calc(100vh - 100px);
  position: relative
}

.webCamBase {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 600px;
  width: 600px;
}

.webCamBase video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}
.camBtn{
  max-width: 180px;
  margin: 0 auto;
}
.mediumPopup {
  overflow: hidden !important;
}

.mediumPopup .modal-dialog {
  max-width: 100% !important;
  max-height: 100% !important;
  height: 100% !important;
  margin-top: 0px !important;
}

.mediumPopup .modal-content {
  height: 100% !important;
}