@charset "UTF-8";
/*== Media queries breakpoints*/
/**/
/*## Define the breakpoints at which your layout will change, adapting to different screen sizes.*/
/* Extra small screen / phone*/
/*** Deprecated `$screen-xs` as of v3.0.1*/
/*** Deprecated `$screen-xs-min` as of v3.2.0*/
/*** Deprecated `$screen-phone` as of v3.0.1*/
/* Small screen / tablet*/
/*** Deprecated `$screen-sm` as of v3.0.1*/
/*** Deprecated `$screen-tablet` as of v3.0.1*/
/* Medium screen / desktop*/
/*** Deprecated `$screen-md` as of v3.0.1*/
/*** Deprecated `$screen-desktop` as of v3.0.1*/
/* Large screen / wide desktop*/
/*** Deprecated `$screen-lg` as of v3.0.1*/
/*** Deprecated `$screen-lg-desktop` as of v3.0.1*/
/* Large screen / wide desktop*/
/*** Deprecated `$screen-lg` as of v3.0.1*/
/*** Deprecated `$screen-lg-desktop` as of v3.0.1*/
/* So media queries don't overlap when required, provide a maximum*/
.title {
    font-size : 100px;
}

/*body {
    background: $color-background;
}*/
.container-loader {
    position         : fixed;
    width            : 100%;
    height           : 100%;
    background-color : #292b2c;
    z-index          : 9999;
}

.loader {
    width          : 535px;
    height         : 50px;
    line-height    : 50px;
    text-align     : center;
    position       : absolute;
    top            : 50%;
    left           : 50%;
    transform      : translate(-50%, -50%);
    font-family    : helvetica, arial, sans-serif;
    text-transform : uppercase;
    font-weight    : 900;
    color          : #ce4233;
    letter-spacing : 0.2em;
}
.loader::before, .loader::after {
    content    : "";
    display    : block;
    width      : 15px;
    height     : 15px;
    background : #ce4233;
    position   : absolute;
    animation  : load 0.7s infinite alternate ease-in-out;
}
.loader::before {
    top : 0;
}
.loader::after {
    bottom : 0;
}

@keyframes load {
  0% {
      left   : 0;
      height : 30px;
      width  : 15px;
  }
  50% {
      height : 8px;
      width  : 40px;
  }
  100% {
      left   : 540px;
      height : 30px;
      width  : 15px;
  }
}
/*
 * Base structure
 */
/* Move down content because we have a fixed navbar that is 50px tall */
body {
  padding-top: 50px;
}

/*
 * Typography
 */
h1 {
  margin-bottom: 20px;
  padding-bottom: 9px;
  font-size: 30px;
}

/*
 * Sidebar
 */
.sidebar {
  position: fixed;
  top: 51px;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  /* Scrollable contents if viewport is shorter than content. */
  border-right: 1px solid #eee;
}

/* Sidebar navigation */
.sidebar {
  padding-left: 0;
  padding-right: 0;
  background-color: #292b2c;
}
.sidebar .nav-item {
  width: 100%;
  border-bottom: 1px solid #CCC;
}
.sidebar .nav:first-child {
  border-top: 1px solid #CCC;
}
.sidebar .nav-item + .nav-item {
  margin-left: 0;
}
.sidebar .nav-link {
  border-radius: 0;
}
.sidebar a:hover {
  background-color: #c1c1c1;
  color: black;
}
.sidebar a {
  color: white;
}

/*
 * Dashboard
 */
/* Placeholders */
.placeholders {
  padding-bottom: 3rem;
}

.placeholder img {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.label {
  overflow: hidden;
  padding: 0.5rem 0.75rem;
  text-align: right;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #706d6d;
}
.label.required::before {
  font-family: "FontAwesome";
  font-size: 0.7em;
  display: inline-block;
  margin-right: 0.5em;
  content: "";
  vertical-align: middle;
  color: #f5b324;
}
@media (max-width: 767px) {
  .label {
    line-height: 1.25;
    text-align: left;
  }
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #aacfff;
}

.loader_status_add_peutinger {
  visibility: hidden;
}
.loader_status_add_peutinger i {
  font-size: 14px;
}

.loader_table {
  font-size: 18px;
}

.selected {
  background-color: #7cb2ff !important;
}
.selected td:first-child:before {
  content: "";
  font-family: FontAwesome;
  font-size: 18px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.peutinger_in_progress {
  background-color: #f5e0ae !important;
}
.peutinger_in_progress td:first-child {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.peutinger_in_progress td:first-child:before {
  content: "";
  font-family: FontAwesome;
}

.bips_to_send td:first-child:before {
    content     : "";
    font-family : FontAwesome;
    color       : red;
    font-size   : 16px;
    animation   : allblink 1s infinite;
}

.bips_sended td:first-child:before {
    content     : "";
    font-family : FontAwesome;
    color       : green;
    font-size   : 16px;
}

.bips_error td:first-child:before {
    content     : "";
    font-family : FontAwesome;
    color       : red;
    font-size   : 16px;
}

.bips_waiting td:first-child:before {
    content     : "";
    font-family : FontAwesome;
    color       : orange;
    font-size   : 16px;
}

.bips_continue td:first-child:before {
    content     : "";
    font-family : FontAwesome;
    color       : red;
    font-size   : 16px;
}

.bip_send:before {
    content     : "";
    font-family : FontAwesome;
    color       : green;
    font-size   : 16px;
}

.bip_not_send:before {
    content     : "";
    font-family : FontAwesome;
    color       : red;
    font-size   : 16px;
}

@keyframes allblink {
  50% {
      color : black;
  }
}
.btn-action-simple {
  display: none;
}

.btn-action-multi {
  display: none;
}

.btn_bad_address {
    color : red !important;
}

/**
 * Bootstrap theme v4.x
 */
.tablesorter-bootstrap {
    width       : 100%;
    font-size   : 13px;
    font-family : "Verdana";
}
.tablesorter-bootstrap tr td:first-child {
    width : 50px;
}

.tablesorter-bootstrap thead th,
.tablesorter-bootstrap thead td,
.tablesorter-bootstrap tfoot th,
.tablesorter-bootstrap tfoot td {
  font: 14px/20px Arial, Sans-serif;
  font-weight: bold;
  padding: 4px;
  margin: 0 0 18px;
}

.tablesorter-bootstrap thead .tablesorter-header {
  background-position: right 5px center;
  background-repeat: no-repeat;
  cursor: pointer;
  white-space: normal;
}

.tablesorter-bootstrap:not(.table-inverse) thead:not(.thead-inverse) .tablesorter-header,
.tablesorter-bootstrap:not(.table-inverse) tfoot th,
.tablesorter-bootstrap:not(.table-inverse) tfoot td {
  background-color: #eee;
}

.tablesorter-bootstrap thead .sorter-false {
  cursor: default;
  background-image: none;
}

.tablesorter-bootstrap .tablesorter-header-inner {
  position: relative;
  padding: 4px 18px 4px 4px;
}

.tablesorter-bootstrap .sorter-false .tablesorter-header-inner {
  padding: 4px;
}

/* black icons */
.tablesorter-bootstrap thead .tablesorter-headerUnSorted:not(.sorter-false) {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE0IDIwIj48cGF0aCBkPSJNMTQgMTNsLTIuNS0yLjVMNyAxNWwtNC41LTQuNUwwIDEzbDcgN3pNMTQgNy41TDExLjUgMTAgNyA1LjUgMi41IDEwIDAgNy41bDctN3oiLz48L3N2Zz4=);
}

.tablesorter-bootstrap thead .tablesorter-headerAsc {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBkPSJNMTQgOS41TDExLjUgMTIgNyA3LjUgMi41IDEyIDAgOS41bDctN3oiLz48L3N2Zz4=);
}

.tablesorter-bootstrap thead .tablesorter-headerDesc {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBkPSJNMTQgNWwtMi41LTIuNS00LjUgNC41LTQuNS00LjVMMCA1IDcgMTJ6Ii8+PC9zdmc+);
}

/* white icons */
.tablesorter-bootstrap thead.thead-inverse .tablesorter-headerUnSorted:not(.sorter-false),
.tablesorter-bootstrap.table-inverse thead .tablesorter-headerUnSorted:not(.sorter-false) {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE0IDIwIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQgMTNsLTIuNS0yLjVMNyAxNWwtNC41LTQuNUwwIDEzbDcgN3pNMTQgNy41TDExLjUgMTAgNyA1LjUgMi41IDEwIDAgNy41bDctN3oiLz48L3N2Zz4=);
}

.tablesorter-bootstrap thead.thead-inverse .tablesorter-headerAsc,
.tablesorter-bootstrap.table-inverse thead .tablesorter-headerAsc {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQgOS41TDExLjUgMTIgNyA3LjUgMi41IDEyIDAgOS41bDctN3oiLz48L3N2Zz4=);
}

.tablesorter-bootstrap thead.thead-inverse .tablesorter-headerDesc,
.tablesorter-bootstrap.table-inverse thead .tablesorter-headerDesc {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQgNWwtMi41LTIuNS00LjUgNC41LTQuNS00LjVMMCA1IDcgMTJ6Ii8+PC9zdmc+);
}

/* since bootstrap (table-striped) uses nth-child(), we just use this to add a zebra stripe color */
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.odd > td,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.tablesorter-hasChildRow.odd:hover ~ tr.tablesorter-hasChildRow.odd ~ .tablesorter-childRow.odd > td {
  background-color: #f9f9f9;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.hover > td,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.odd:hover > td,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.even:hover > td,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.tablesorter-hasChildRow.odd:hover ~ .tablesorter-childRow.odd > td,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.tablesorter-hasChildRow.even:hover ~ .tablesorter-childRow.even > td {
  background-color: #f5f5f5;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.even > td,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.tablesorter-hasChildRow.even:hover ~ tr.tablesorter-hasChildRow.even ~ .tablesorter-childRow.even > td {
  background-color: #fff;
}

/* processing icon */
.tablesorter-bootstrap .tablesorter-processing {
  background-image: url("data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=");
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Column Widget - column sort colors */
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.odd td.primary {
  background-color: #bfbfbf;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr td.primary,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.even td.primary {
  background-color: #d9d9d9;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.odd td.secondary {
  background-color: #d9d9d9;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr td.secondary,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.even td.secondary {
  background-color: #e6e6e6;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.odd td.tertiary {
  background-color: #e6e6e6;
}

.tablesorter-bootstrap:not(.table-inverse) > tbody > tr td.tertiary,
.tablesorter-bootstrap:not(.table-inverse) > tbody > tr.even td.tertiary {
  background-color: #f2f2f2;
}

/* caption */
.tablesorter-bootstrap:not(.table-inverse) > .caption {
  background-color: #fff;
}

/* filter widget */
.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,
.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter {
  width: 98%;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: height 0.1s ease;
  -moz-transition: height 0.1s ease;
  -o-transition: height 0.1s ease;
  transition: height 0.1s ease;
}

.tablesorter-bootstrap:not(.table-inverse) .tablesorter-filter-row {
  background-color: #efefef;
}

.tablesorter-bootstrap:not(.table-inverse) .tablesorter-filter-row input.tablesorter-filter,
.tablesorter-bootstrap:not(.table-inverse) .tablesorter-filter-row select.tablesorter-filter {
  color: #333;
}

.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled {
  cursor: not-allowed;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
  box-sizing: border-box;
  transition: height 0.1s ease;
}

.tablesorter-bootstrap:not(.table-inverse) .tablesorter-filter-row td {
  line-height: normal;
  text-align: center;
  padding: 4px 6px;
  vertical-align: middle;
  -webkit-transition: line-height 0.1s ease;
  -moz-transition: line-height 0.1s ease;
  -o-transition: line-height 0.1s ease;
  transition: line-height 0.1s ease;
}

/* hidden filter row */
.tablesorter-bootstrap .tablesorter-filter-row.hideme td {
  padding: 2px;
  /* change this to modify the thickness of the closed border row */
  margin: 0;
  line-height: 0;
}

.tablesorter-bootstrap .tablesorter-filter-row.hideme * {
  height: 1px;
  min-height: 0;
  border: 0;
  padding: 0;
  margin: 0;
  /* don't use visibility: hidden because it disables tabbing */
  opacity: 0;
  filter: alpha(opacity=0);
}

/* rows hidden by filtering */
.tablesorter .filtered {
  display: none;
}

/* pager plugin */
.tablesorter-bootstrap .tablesorter-pager .pagedisplay {
  border: 0;
}

/* ajax error row */
.tablesorter:not(.table-inverse) .tablesorter-errorRow td {
  text-align: center;
  cursor: pointer;
  background-color: #e6bf99;
}

.bootstrap-select.show > .dropdown-menu > .dropdown-menu {
    display : block;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden {
    display : none;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li a {
    display     : block;
    width       : 100%;
    padding     : 3px 1.5rem;
    clear       : both;
    font-weight : 400;
    color       : #292b2c;
    text-align  : inherit;
    white-space : nowrap;
    background  : 0 0;
    border      : 0;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder {
    color : #464a4c;
}

/*# sourceMappingURL=core.css.map */
