/******************
* COLORS
*******************/
/******************
* COLORS ENDE
*******************/
.login-form-row {
  margin-top: 20px; }

.main-container {
  padding-top: 20px; }

.hidden {
  display: none; }

.clearfix {
  clear: both; }

/******************
* NAVIGATION *
*******************/
.main-container {
  margin-left: 200px;
  transition: 0.5s; }

.side-menu-wrapper {
  /* style menu wrapper */
  overflow: hidden;
  background: #323232;
  padding-top: 0px;
  position: fixed;
  border-right: 1pt solid #282828;
  top: 0;
  /* Sidebar initial position. "right" for right positioned menu */
  min-height: 100%;
  z-index: 999;
  transition: 0.5s;
  /* CSS transition speed */
  width: 200px;
  font: 20px "Courier New", Courier, monospace;
  left: 0px; }

.side-menu-wrapper > ul {
  /* css ul list style */
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  /* enable scroll for menu items */
  width: 100%;
  /* this width will hide scroll bar */
  height: 95%;
  font-size: 0.6em;
  font-family: Arial; }

.side-menu-wrapper > ul > li > a, .menu-link {
  /* links */
  display: block;
  border-bottom: 1px solid #282828;
  padding: 20px;
  padding-right: 10px;
  color: #f8f8f8;
  transition: 0.2s;
  text-decoration: none;
  text-align: left; }

.side-menu-wrapper > ul > li.active, .sub-item.active {
  background-color: #282828;
  color: #fff; }

.side-menu-wrapper > ul > li > a .fas, .side-menu-wrapper > ul > li.sub-parent > i.fa,
.side-menu-wrapper > ul > li > a .fas, .side-menu-wrapper > ul > li.sub-parent > i.fas,
.side-menu-wrapper > ul > li > a .fas, .side-menu-wrapper > ul > li.sub-parent > i.fab {
  float: right;
  width: 20px;
  text-align: center; }

.side-menu-wrapper > ul > li > a:hover, .menu-link:hover {
  cursor: pointer;
  color: #fff;
  background-color: #282828; }

.side-menu-wrapper ul > li > a.menu-close-btn .fas, .side-menu-wrapper ul > li > a.menu-open-btn .fas {
  /* close button */
  margin-top: -5px; }

.side-menu-wrapper ul > li > a.menu-open-btn {
  display: none; }

.arrow {
  border: solid #666666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  float: left;
  transition: 0.2s;
  margin-right: 5px;
  margin-top: 3px; }

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

.sub-parent.openSub {
  background-color: #282828;
  border-left: none !important; }

.sub-menu {
  display: none;
  list-style: none;
  padding-left: 0; }

.sub-menu.openSub {
  display: block; }

.sub-item a {
  display: block;
  background-color: #282828;
  padding: 10px;
  color: #f8f8f8;
  transition: 0.2s;
  text-decoration: none;
  text-align: left;
  padding-left: 30px;
  text-decoration: none; }

.sub-item a:hover, .sub-parent.openSub:hover {
  color: #fff;
  text-decoration: underline; }

.user-nav {
  text-align: center;
  color: #666666;
  padding: 10px; }

@media (max-width: 767px) {
  .main-container {
    margin-left: 40px; }

  .side-menu-wrapper {
    left: -160px; }

  .side-menu-wrapper ul > li > a.menu-close-btn {
    display: none; }

  .side-menu-wrapper ul > li > a.menu-open-btn {
    display: block; } }
/******************
* ENDE NAVIGATION *
******************/
/******************
* SNACKBAR (TOAST) *
******************/
/* The snackbar - position it at the top and in the middle of the screen */
.snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  top: 30px;
  /* 30px from the bottom */ }

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s; }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0; }
  to {
    top: 30px;
    opacity: 1; } }
@keyframes fadein {
  from {
    top: 0;
    opacity: 0; }
  to {
    top: 30px;
    opacity: 1; } }
@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1; }
  to {
    top: 0;
    opacity: 0; } }
@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1; }
  to {
    top: 0;
    opacity: 0; } }
.snackbar-green {
  background-color: green !important; }

.snackbar-red {
  background-color: red !important; }

/******************
* ENDE SNACKBAR (TOAST) *
******************/
/******************
**** TABELLEN *****
******************/
.top-gray-box {
  background-color: #f8f8f8;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  margin-bottom: 20px; }

tr.clickable-row:hover td, tr.clickable-row-new-tab:hover td {
  cursor: pointer;
  background-color: #e7e7e7; }

.table thead th {
  border-top: none; }

.table-top-item > label {
  width: 100%;
  display: block !important; }

.table-positionen {
  background-color: #f8f8f8; }

.table-positionen td {
  vertical-align: middle; }

.table-positionen td .input-group {
  margin-bottom: 0 !important; }

td .fas-clickable {
  line-height: 40px; }

tr.inactive {
  color: #cccccc; }

td.middleTd {
  vertical-align: middle !important; }

/******************
***TABELLEN ENDE**
******************/
/******************
**** LOADING *****
******************/
#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: -999;
  opacity: 0;
  transition: opacity .5s; }

.loader {
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid #708090;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  /* Negative half of height. */
  margin-left: -30px;
  /* Negative half of width. */ }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/******************
***LOADING ENDE***
******************/
/*************
** PAGINATION *
**************/
.pagination {
  margin-top: 10px; }

.pagination > li > a {
  color: #666666; }

.pagination .page-item.active > a {
  background-color: #708090 !important;
  border-color: #708090; }

/******************
** PAGINATION ENDE *
*******************/
body {
  margin: 0;
  font-family: Arial;
  color: #666666; }

a {
  color: #7ABCFF; }

h1 {
  font-size: 1.6em;
  color: #708090;
  margin-bottom: 20px; }

h2 {
  font-size: 1.4em;
  color: #708090;
  margin-bottom: 20px; }

#main {
  width: 100%;
  margin-left: 200px;
  color: #666666;
  padding-top: 10px;
  transition: 0.2s; }

.box {
  margin: 5px 0;
  border: 1pt solid #f0f0f0;
  padding: 20px; }

.form-control::-webkit-input-placeholder {
  color: #e7e7e7; }

/* WebKit, Blink, Edge */
.form-control:-moz-placeholder {
  color: #e7e7e7; }

/* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder {
  color: #e7e7e7; }

/* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder {
  color: #e7e7e7; }

/* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder {
  color: #e7e7e7; }

/* Microsoft Edge */
.rechnung-summe-zeile.letzte {
  font-weight: bold;
  line-height: 50px; }

.clickable:hover {
  cursor: pointer; }

.orderBy {
  color: #708090; }

a.fas {
  color: #666666; }

a.fas:hover {
  color: #708090;
  text-decoration: none; }

.add-top-border {
  margin-top: 10px;
  border-top: 1pt solid #e7e7e7;
  padding-top: 10px; }

#umsatzChartTabContent {
  padding-top: 20px;
  border-left: 1pt solid #dee2e6;
  border-bottom: 1pt solid #dee2e6;
  border-right: 1pt solid #dee2e6; }

.currency-big {
  font-size: 2em;
  color: #708090; }

.currency-red {
  color: red; }

.currency-green {
  color: green; }

.small-hinweistext {
  font-size: 0.6em; }

.btn-with-icon {
  font-size: .8em; }

.btn-with-icon i {
  font-size: .8em; }

.small_note {
  font-size: .6em;
  color: #e7e7e7; }

.item-as-list {
  padding-top: 10px;
  padding-bottom: 10px; }

.item-as-list:nth-of-type(odd) {
  background-color: #f8f8f8; }

.item-as-list:nth-of-type(even) {
  background-color: #fff; }

#ebay_layout {
  border: 1pt solid #708090; }

.ebay_edit a.btn {
  color: #fff; }

#ebay_bigImage_edit {
  width: 100%;
  padding-top: 75%;
  position: relative;
  border: 1pt solid gray; }

.floatLeft {
  float: left; }

.roundBtn {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #708090;
  padding: 7px 10px;
  border-radius: 50%;
  margin: 5px;
  font-size: 0.7em; }

.roundBtn i {
  color: #fff; }

.roundBtn:hover {
  cursor: pointer;
  background-color: #f0f0f0; }

.roundBtn i:hover,
.roundBtn:hover > i {
  color: #888; }

/*
* DROPDOWN SEARCH
*/
.dropdown_search {
  position: relative; }

.dropdown_search input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("searchicon.png");
  background-position: 12px 8px;
  padding-left: 45px;
  background-repeat: no-repeat; }

.dropdown_search .resultContainer {
  position: relative;
  display: none;
  z-index: 99; }

.dropdown_search .results {
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1pt solid #888; }

.dropdown_search .result {
  padding: 12px 16px;
  text-decoration: none;
  display: block; }

.dropdown_search .result:hover {
  background-color: #f0f0f0;
  cursor: pointer; }

/*
* DROPDOWN SEARCH ENDE
*/
/*
* ZEITERFASSUNG
*/
.running_zeiterfassung_container {
  display: none;
  -moz-box-shadow: 0 0 5px #888;
  -webkit-box-shadow: 0 0 5px #888;
  box-shadow: 0 0 5px #888;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99; }

.running_zeiterfassung {
  padding: 15px 10px;
  border-bottom: 1pt solid #f0f0f0; }

.zeiterfassung_kunde {
  font-size: .8em;
  color: #666666; }

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