.FdrsContent {
  height: 100%;
}

.FdrsContent #fdrs-form-left {
  width: 100%;
  height: 95px;
  overflow: auto;
  display: flex;
}

.FdrsContent #fdrs-form-right {
  width: calc(100% - 5px);
  height: calc(100% - 25px);
  position: relative;
}

#fdrsFormOptions {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.FdrsTableNameLabel {
  font-size: 11px;
  margin: 0 0 4px 0;
}

.FdrsFormRow {
  display: flex;
}

.FdrsFormCol {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4px;
}

.FdrsLongInput{
  width: 145px;
}

.FdrsMidInput{
  width: 75px;
}

.FdrsShortInput{
  width: 40px;
}

#fdrs-form-controls {
  text-align: left;
  padding: 16px;
}

.fdrsButton {
  text-align: center;
  border-radius: 3px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #d3d3d3;
  padding: 5px 12px;
  background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #555555;
  transition: all 0.4s ease 0s;
  line-height: 15px;
  display: block;
  text-decoration: none;
  margin: 0 2px;
}

.FdrsShortBtn {
  font-size: 12px;
  line-height: 13px;
  min-width: 25px;
  padding: 3px 8px;
}

.fdrsButton:hover {
  background: #fff;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
  transition: all 0.4s ease 0s;
}

.fdrsDataWrap {
  padding: 5px;
  display: block;
  margin-top: 14px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: scroll;
}

.fdrsDataBody {
  height: calc(100%);
  overflow-x: auto;
}

.fdrsDataRowHeader,
.fdrsDataRowHeaderFixed,
.fdrsDataRow {
  display: table-row;
  padding: 5px;
}

.fdrsDataRowHeader {
  width: calc(100% - 50px);
}

.fdrsDataRowHeaderFixed,
.fdrsDataRowHeader {
  font-weight: bold;
  text-transform: capitalize;
}

.fdrsDataRowHeaderFixed {
  z-index: 1;
  width: calc(100% - 15px);
  height: 20px;
  line-height: 12px;
  overflow-x: hidden;
  position: absolute;
  top: 0px;
  background-color: #bbb;
  display: flex;
}

.fdrsDataCol {
  display: table-cell;
  padding: 5px 25px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fdrsDataRow:nth-child(odd) {
  background: #ececec;
}

.fdrsDataRow {
  cursor: pointer;
}

.fdrsDataRow.fdrChosen {
  background-color: #c9e4f5;
}

.fdrsButtonDefault {
  flex: 1 1 auto;
  background: #ececec url(/stylesheets/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  color: #555;
  font-size: 11px;
  margin: 12px 0 0;
}

.fdrsButtonDefault:hover {
  background: #fff;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
  transition: all 0.4s ease 0s;
}

.fdrsButtonDisabled,
.fdrsButtonDisabled:hover {
  background: #d5d5d5 !important;
  cursor: not-allowed;
}

.fdrsButtonDelete {
  flex: 1 1 auto;
  background: #ffd9d9 url(/stylesheets/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  color: #555;
  font-size: 11px;
  margin: 12px -10px 0;
}

.fdrsButtonDelete:hover {
  background: #ff4949;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
  box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
  transition: all 0.4s ease 0s;
}

.FdrsFormColConditions {
  position: relative;
}

.ColumnHelper {
  position: fixed;
  background: rgba(52, 115, 188, 0.57);
  padding: 5px 8px;
  border-radius: 3px;
  border: 1px solid #bbb;
  width: 180px;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}

.ColumnHelperBtn {
  margin: 1px;
  background: #fff;
  border: 1px solid #bbb;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  min-width: 35px;
}

.ColumnHelperBtn:hover {
  background: #fafafa;
  cursor: pointer;
}

.ml-10 {
  margin-left: 10px;
}

.ml-4 {
  margin-left: 4px;
}

.mt-10 {
  margin-top: 10px;
}

.dflex {
  display: flex;
  flex-direction: row;
}

.flex1 {
  flex: 1 1 auto;
}

.textAlignRight {
  text-align: right;
}

.fdrsDataRowTip {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  font-family: monospace;
  background: #338cc6;
  color: #eee;
  font-size: 12px;
  line-height: 19px;
  margin: 0 20px 0 10px;
  cursor: pointer;
}

.fdrsDataRowDummy {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 20px 0 10px;
}

.fdrEditXyFormRow {
  display: flex;
}

.fdrEditRemoveValue {
  flex: 0 0 28px;
  width: 28px;
  height: auto;
  padding: 0px 2px;
  line-height: 22px;
  vertical-align: middle;
  text-align: center;
  margin: 2px 2px 0 0;
}

.fdrEditXyValueAdd {
  width: 100%;
  padding: 2px 6px;
  margin: 2px 2px 0 0;
}

.fdrEditXyValue {
  flex: 1;
  max-width: 155px;
  margin: 2px 2px 0 0;
}

.textAlignLeft {
  text-align: left;
  position: relative;
  max-width: 50%;
}

.form-selected-color {
  width: 30px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 2px;
}

.w100p {
  width: calc(100% - 10px);
}

.fdrsButtonContainer {
  display: flex;
  justify-content: space-between;
}

.fdrsButtonContainerLeft {
  display: flex;
  justify-content: flex-start;
}

.fdrsButtonContainerRight {
  display: flex;
  justify-content: flex-end;
}

.verticalResize {
  resize: vertical;
}

.fdrDialogBoby {
  max-height: 70vh;
  overflow: auto;
}