﻿/*
    Component: callout
------------------------
*/
.callout {
  margin: 0 0 20px 0;
  padding: 15px 30px 15px 15px;
  border-left: 5px solid #eee;
}
.callout h1,
.callout h2,
.callout h3,
.callout h4 {
  margin-top: 0;
  font-family: "Segoe UI", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout code,
.callout .highlight {
  background-color: #fff;
}
.callout.callout-danger {
  background-color: #fbf5f5;
  border-color: #d59392;
}
.callout.callout-danger h1,
.callout.callout-danger h2,
.callout.callout-danger h3,
.callout.callout-danger h4 {
  color: #B94A48;
}
.callout.callout-warning {
  background-color: #fcfaf7;
  border-color: #dbc59e;
}
.callout.callout-warning h1,
.callout.callout-warning h2,
.callout.callout-warning h3,
.callout.callout-warning h4 {
  color: #C09853;
}
.callout.callout-info {
  background-color: #edf5f9;
  border-color: #7ab5d3;
}
.callout.callout-info h1,
.callout.callout-info h2,
.callout.callout-info h3,
.callout.callout-info h4 {
  color: #3A87AD;
}
.callout.callout-success {
  background-color: #edf9ef;
  border-color: #7ad38c;
}
.callout.callout-success h1,
.callout.callout-success h2,
.callout.callout-success h3,
.callout.callout-success h4 {
  color: #3AAD51;
}
/*
 * General Classes
 */
.margin-0 {
  margin: 0 !important;
}
.margin-t-50 {
  margin-top: 50px !important;
}
.margin-t-20 {
  margin-top: 20px !important;
}
.margin-t-10 {
  margin-top: 10px !important;
}
.block {
  display: block;
}
.relative {
  position: relative;
}
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 400;
}
h1,
.h1 {
  font-size: 20px;
  margin-top: 10px;
}
h2,
.h2 {
  font-size: 18px;
  margin-top: 8px;
}
h3,
.h3 {
  font-size: 16px;
  margin-top: 6px;
}
h4,
.h4 {
  font-size: 14px;
  margin: 0;
}
body {
  font-family: "Segoe UI", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
  font-size: 12px;
  color: #333;
}
.title {
  /*font-family: Tahoma;
    font-size: 11px;*/
  color: #333;
}
.content {
  /*font-family: Tahoma;
    font-size: 11px;*/
  /*color: @color-fg;*/
}
.ui-progressbar-value {
  -webkit-transition: width 0.5s ease-in-out, background-image 0.5s ease-in-out 0.2s;
  -moz-transition: width 0.5s ease-in-out, background-image 0.5s ease-in-out 0.2s;
  -o-transition: width 0.5s ease-in-out, background-image 0.5s ease-in-out 0.2s;
  transition: width 0.5s ease-in-out, background-image 0.5s ease-in-out 0.2s;
}
.hidden {
  display: none;
}
.icon {
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 5px;
  padding: 0 0 0 20px;
  min-height: 16px;
  min-width: 16px;
}
.icon.check {
  background-image: url(icons/check.png);
}
.icon.warning {
  background-image: url(icons/sign_warning.png);
}
.icon.delete {
  background-image: url(icons/delete.png);
}
.icon.loader {
  background-image: url(icons/ajax-loader.gif);
}
.loader {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.75;
  background-color: #fff;
  border-radius: 4px;
  z-index: 5000;
}
.loader .loader-img {
  background: url(Icons/ajax-loader-big.gif);
  height: 32px;
  width: 32px;
  margin: 48% auto;
}
/*************************************
 *
 *  FORMS
 *
 *************************************/
.form-control {
  box-shadow: none !important;
  border-radius: 0;
  height: 24px;
  font: 12px "Segoe UI", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
  padding: 3px;
  color: #333;
}
.form-control:hover,
.form-control:focus,
.form-control:active {
  box-shadow: none;
  border-color: #0072C6;
}
.form-inline .form-group {
  padding-right: 15px;
  vertical-align: bottom;
}
.btn {
  box-shadow: none;
  border-radius: 0;
  font: 12px "Segoe UI", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
}
.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  color: #fff;
  background-color: #0072C6;
  border-color: #0072C6;
}
.btn-default[disabled]:hover,
.btn-default.diabled:hover,
.btn-default[disabled]:active,
.btn-default.diabled:active,
.btn-default[disabled]:focus,
.btn-default.diabled:focus {
  color: inherit;
}
.btn-sm {
  padding: 3px 7px;
}
label {
  font-weight: normal;
}
.dropdown-menu {
  font-size: inherit;
  border-radius: 0;
  box-shadow: none;
}
.ui-select-bootstrap .ui-select-choices-row.active > a {
  background-color: #0072C6;
}
.ui-select-match:hover,
.ui-select-match:active,
.ui-select-match:focus,
.ui-select-match.btn-default-focus {
  color: #333;
  border-color: #0072C6;
  background-color: inherit;
  box-shadow: none;
  outline: none;
}
.ui-select-match[disabled] {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
/*************************************
 *
 *  WELLS
 *
 *************************************/
.well {
  background-color: transparent;
  box-shadow: none;
  border-color: #ccc;
  padding: 10px;
  border-radius: 0;
  margin-bottom: 10px;
}
/*************************************
 *
 *  LIST GROUPS
 *
 *************************************/
.list-group-item {
  border-radius: 0 !important;
  border-color: #ccc;
}
/*************************************
 *
 *   BELEGE
 *
 *************************************/
#beleg-positionen {
  border: 1px solid #ccc;
  padding: 20px 20px 35px;
  margin: 0 0 10px 0;
  position: relative;
  overflow: hidden;
  min-height: 375px;
}
#beleg-positionen > .row > .beleg-groups .list-group {
  margin: 0;
}
#beleg-positionen > .row > .beleg-groups .list-group p {
  margin: 0;
}
#beleg-positionen > .row > .beleg-groups .form-group {
  margin-top: 20px;
  margin-bottom: 0;
}
#beleg-positionen > .row > .group-items {
  position: relative;
  overflow: hidden;
}
#beleg-positionen > .row > .group-items table,
#beleg-positionen > .row > .group-items p {
  margin: 0;
  left: -110%;
  opacity: 0;
  -moz-transition: left 150ms ease-in-out, opacity 300ms ease-in-out;
  -o-transition: left 150ms ease-in-out, opacity 300ms ease-in-out;
  -webkit-transition: left 150ms ease-in-out, opacity 300ms ease-in-out;
  transition: left 150ms ease-in-out, opacity 300ms ease-in-out;
}
#beleg-positionen > .row > .group-items table.in,
#beleg-positionen > .row > .group-items p.in {
  left: 0;
  opacity: 1;
}
#beleg-positionen > .row > .group-items table {
  position: relative;
  margin-left: -15px;
  width: calc(100% + 15px);
}
#beleg-positionen > .row > .group-items p {
  position: absolute;
}
#beleg-gesamt {
  position: absolute;
  bottom: 0;
  right: 15px;
}
#beleg-add-group {
  position: absolute;
  top: -100px;
  width: 97%;
  left: 1.5%;
  background-color: #fff;
  z-index: 10;
  -moz-transition: top 0.5s ease-in-out;
  -o-transition: top 0.5s ease-in-out;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
}
#beleg-add-group.in {
  top: -1px;
}
#beleg-add-group .form-group .btn-aligned {
  margin-top: 14px;
}
/*************************************
 *
 *  LOGIN PAGE
 *
 *************************************/
#login-wrapper {
  width: 420px;
  margin: 30px auto 0 auto;
  text-align: center;
}
div.login_header div.login_title {
  color: #00325D;
  font-family: 'Verdana', 'Calibri', 'Arial';
  font-size: 30px;
  margin-top: 20px;
}
div.login_header div.login_client {
  color: #9FA3AC;
  font-family: 'Verdana', 'Calibri', 'Arial';
  font-size: 20px;
  margin-top: 5px;
}
div.login_header img.logo {
  margin-top: 25px;
}
div.login_header div.login_testumgebung {
  color: #C80000;
  font-family: 'Verdana', 'Calibri', 'Arial';
  font-size: 26px;
  margin-top: 10px;
}
#DivTestumgebungMaster {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 5px;
}
/*
 * Autocomplete CSS
 */
.autocomplete {
  width: 100%;
  position: relative;
}
.autocomplete ul {
  position: absolute;
  left: 0;
  width: 100%;
  border-left: 1px solid #888;
  border-right: 1px solid #888;
  border-bottom: 1px solid #888;
  z-index: 1;
  padding: 0;
}
.autocomplete li {
  text-align: left;
  list-style: none;
  width: 100%;
  padding: 0.4em;
  background-color: #fff;
}
.autocomplete li.active {
  width: 100%;
  background-color: #0072C6;
  color: #fff;
}
.autocomplete .highlight {
  font-weight: 600;
}
/*
 * Input fixes
 */
.input-group-addon {
  font-size: inherit;
  border-radius: 0;
  padding: 5px 7px;
}
/*
 * documents table
 */
table.documents {
  width: 100%;
  font: 12px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
  border-spacing: 0px;
}
table.documents th {
  text-align: left;
  font-size: 15px;
  color: #999999;
  padding: 2px 0px 10px 3px;
}
table.documents tr:nth-child(1) {
  font-weight: bold;
}
table.documents td {
  padding: 5px 0px 5px 8px;
  border-bottom: 1px solid #999999;
}
table.documents td:first-child {
  width: 250px;
}
table.documents a {
  color: Black;
}
/*************************************
 *
 *  BREADCRUMBS
 *
 *************************************/
.breadcrumbs {
  margin: 0;
  list-style-type: none;
  list-style-image: none;
  padding: 0;
}
.breadcrumbs li {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.breadcrumbs a {
  padding: 0 5px 0 0;
}
.breadcrumbs li:not(:first-child)::before {
  content: "»";
  padding-right: 5px;
}
table.breadcrumbs {
  border: 0;
}
/*************************************
 *
 *  DEVEXPRESS FIX
 *
 *************************************/
#ContentPlaceHolder_site_Scheduler .dxsc-selected.dxscApt .dxsc-apt-content-layer .dxsc-content-wrapper span {
  color: #333333;
}