﻿/* 
    WICHTIG: Wenn Variablen geändert werden, müssen ALLE .LESS-Dateien im Projekt neu kompiliert werden.

    bxVariablesCustom.less: Wird durch bxVariables.less von byronONE automatisch eingebunden.
                            Dient dazu, Variablen aus dem Standard für Custom-Projekte zu überschreiben.
*/
.bxFieldset {
  border: 1px solid #A4BED4;
  margin: 12px 0 0 0;
  /* Aussparung für Legende */
  overflow: visible;
  border-radius: 4px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f6f6f6;
  position: relative;
  min-height: 0;
  /* Min-Height benötigt damit overflow mit Flexboxes funktioniert!: https://stackoverflow.com/questions/28636832/firefox-overflow-y-not-working-with-nested-flexbox*/
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
}
.bxFieldset .bxFieldset_Legend {
  color: #4D87C7;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 0 3px 1px 3px;
  top: -9px;
  left: 6px;
  border-bottom: 1px solid #A4BED4;
  z-index: 5;
  position: relative;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.bxFieldset .bxFieldset_Content {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: static;
  -ms-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  /* Min-Height benötigt damit overflow mit Flexboxes funktioniert!: https://stackoverflow.com/questions/28636832/firefox-overflow-y-not-working-with-nested-flexbox*/
  min-width: 0;
  margin-top: -4px;
  width: 100%;
  padding: 0 4px 0 4px;
  overflow: auto;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
span[disabled] {
  color: #9c9e9f;
}
label {
  padding: 0.3em;
}
input,
select,
textarea {
  border: 1px solid #A4BED4;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.2em 0.3em;
  border-radius: 2px;
}
select {
  cursor: pointer;
  padding: 0.1em 2px 0.1em 1px;
}
textarea {
  overflow: auto;
}
option {
  padding-left: 0.4em;
}
input[readonly],
textarea[readonly],
select[readonly],
input[disabled],
textarea[disabled],
select[disabled] {
  background-color: #f0f0f0;
  color: #9c9e9f;
}
input[type=checkbox][readonly] + label,
input[type=checkbox][disabled] + label {
  color: #9c9e9f;
}
input[type=button],
input[type=submit],
button {
  border: 1px solid #A4BED4;
  background-color: #e3e4e5;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.2em 1em;
  min-width: 100px;
  cursor: pointer;
  border-radius: 2px;
}
input[type=button][disabled],
input[type=submit][disabled],
button[disabled] {
  background-color: #f0f0f0;
  color: #9c9e9f;
}
input:focus,
select:focus,
textarea:focus,
input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input[type=button]:focus,
button:focus,
input[type=submit]:focus,
input[type=button]:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:active,
button:active,
input[type=submit]:active {
  background-color: #E3E4E5;
  border: 1px solid #81a5c4;
}
/* disable the default "clearing-X" in IE */
input::-ms-clear,
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.bxForm .bxFormBottomPanel {
  text-align: right;
  margin-top: 5px;
}
.bxForm .bxFormProperty {
  margin-bottom: 4px;
  overflow: hidden;
}
.bxForm .bxFormProperty label {
  width: 110px;
  display: inline-block;
  vertical-align: top;
}
.bxForm .bxFormProperty .bxUiEditEntityProperty {
  display: inline-block;
  width: 160px;
}
.bxForm .bxFormProperty .readOnlyTexts,
.bxForm .bxFormProperty .bxUiEditEntityProperty .readOnlyTexts {
  vertical-align: middle;
  padding-top: 0.3em;
  display: block;
}