html.semi-dark .sidebar-wrapper {
  background-color: #343a40;
  border-right: 1px solid #1a2232;
}
html.semi-dark .sidebar-wrapper .sidebar-header {
  background-color: #343a40;
  border-right: 1px solid #1a2232;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fcfcfc;
}
html.semi-dark .sidebar-wrapper .sidebar-header .logo-text {
  color: #fcfcfc;
}
html.semi-dark .sidebar-wrapper .sidebar-header .toggle-icon {
  color: #fcfcfc;
}
html.semi-dark .sidebar-wrapper .metismenu .mm-active > a {
  text-decoration: none;
  background-color: #4c6574;
  color: #fff;
  border-radius: 0.25rem;
}
html.semi-dark .sidebar-wrapper .metismenu a {
  color: #c2c7d0;
}
html.semi-dark .sidebar-wrapper .metismenu a:active {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0.25rem;
}
html.semi-dark .sidebar-wrapper .metismenu a:focus {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0.25rem;
}
html.semi-dark .sidebar-wrapper .metismenu a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0.25rem;
}
html.semi-dark .sidebar-wrapper .metismenu ul {
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.02);
}
html.semi-dark .sidebar-wrapper .simplebar-scrollbar:before {
  background: rgba(255, 255, 255, 0.4);
}
html.semi-dark .top-header .navbar {
  background-color: #ffffff;
}
html.semi-dark .top-header .navbar .searchbar .form-control {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}
html.semi-dark .top-header .navbar .searchbar .form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
html.semi-dark .top-header .navbar .user-setting {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}
html.semi-dark .mobile-toggle-icon {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}
html.semi-dark .search-toggle-icon {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}
html.semi-dark .projects {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}
html.semi-dark .notifications {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}
html.semi-dark .messages {
  border: 1px solid #e2e3e4;
  box-shadow: none;
}

.login-page {
  background: #f7f9fb url(../images/bg.svg) no-repeat right 0 top 0;
}

.validate-page {
  background: #f7f9fb url(../images/bg.svg) no-repeat right 0 top 0;
  background-blend-mode: color-burn;
}

.login-copy {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 14px;
  position: fixed;
  left: 20px;
  bottom: 20px;
}
.login-copy img {
  max-height: 30px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .login-copy {
    left: auto;
    position: relative;
  }
  .login-copy div:not(.btn-group) {
    white-space: break-spaces;
  }
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type=checkbox] {
    --active: #00aad4;
    --border: #d8d8d8;
    --active-inner: #fff;
    --border-hover: #9d9d9d;
    --background: #fff;
    --disabled: #d8d8d8;
    --disabled-inner: #d8d8d8;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 18px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type=checkbox]:disabled + label {
    cursor: not-allowed;
  }
  input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type=checkbox]:not(.switch) {
    width: 18px;
    height: 18px;
  }
  input[type=checkbox]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type=checkbox]:not(.switch):checked {
    --o: 1;
  }
  input[type=checkbox] + label {
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
    color: #121518;
  }
  input[type=checkbox]:not(.switch) {
    border-radius: 3px;
    width: 18px;
    height: 18px;
  }
  input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 6px;
    top: 3px;
    transform: rotate(var(--r, 20deg));
  }
  input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  input[type=checkbox].switch {
    width: 33px;
    border-radius: 11px;
  }
  input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 15px;
  }
  input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
}
.gridview .sortable-widget-handler {
  cursor: pointer;
}
.gridview tr td {
  vertical-align: middle;
}
.gridview tr .badge {
  margin-left: 10px;
}
.gridview tr.warning {
  color: red !important;
  font-weight: 500;
  background: #f8f8f8;
}
.gridview tr.sorting-row {
  border-left: 2px solid red;
}
.gridview tr.sorting-row td {
  background: #dedede !important;
}
.gridview table.sorting-table tbody tr:not(.sorting-row) td {
  opacity: 0.4;
}

.form-check {
  display: flex;
  padding-left: 0;
}
.form-check .form-check-input {
  margin-left: 0;
}

.field-sellerform-accept .form-check {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.field-sellerform-accept .form-check .form-check-input {
  margin-left: 0;
}
.field-sellerform-accept .form-check .form-check-label {
  width: 90%;
}

.hinter-data {
  display: none;
  position: absolute;
  right: 0;
  bottom: 43px;
  width: 320px;
  white-space: break-spaces;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #d9d0d0;
  font-size: 14px;
}

.hinter-call {
  position: relative;
}

.hinter-call:hover .hinter-data {
  display: block;
}

.input-group button:disabled {
  background-color: #e9ecef;
  opacity: 1;
  border-color: #ced4da;
  padding: 0 10px;
}
.input-group button:disabled i {
  margin-left: 0;
}

.table-muted a,
.table-muted td {
  color: #afb7bf !important;
}

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