.fullscreen {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.block {
  display: inline-block;
  flex-direction: column;
  vertical-align: top;
}

.card {
  background-color: #F9F9F9;
}

.block.card.ddk-card {
  display: inline-flex;
  box-sizing: border-box;
  background-color: #F9F9F9;
}

.block.card.ddk-card {
  word-wrap: normal;
}

.block.card.ddk-card:not(.card--content) {
  position: static;
  border: medium none;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-left-width: medium;
    border-left-style: none;
    border-left-color: currentcolor;
  min-width: 0;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.12), 0px 1px 2px rgba(0,0,0,0.24);
  margin: 15px;
  padding: 5px;
  border-width: 0px 0px 0px 0px;
  border-style: solid;
  border-color: #e2e2e2;
  border-radius: 0px;
  outline-width: 0px;
  outline-style: solid;
  outline-color: #e2e2e2;
}

.tab-parent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.toolbar-right .modebar {
    display: flex !important;
    flex-direction: row !important;   /* vertical stack */
    top: -50px !important;
    right: 0px !important;
}

.ddk-container.ddk-container input::placeholder {
  color: var(--ffbad-blue, #101F69);
  opacity: 0.6;
}
.ddk-container input::placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ddk-container ::placeholder {
  color: var(--ffbad-blue, #101F69) !important;
}

.DateRangePicker_picker {
  z-index: 3;
  background-color: #fff;
  position: absolute
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.ddk-container input:not([type]):not(.form-control),
.ddk-container input[type="email"]:not(.form-control),
.ddk-container input[type="number"]:not(.form-control),
.ddk-container input[type="search"]:not(.form-control),
.ddk-container input[type="text"]:not(.form-control),
.ddk-container input[type="tel"]:not(.form-control),
.ddk-container input[type="url"]:not(.form-control),
.ddk-container input[type="password"]:not(.form-control),
.ddk-container textarea:not(.form-control),
.ddk-container select:not(.form-control) {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  /* border: 1px solid #D1D1D1; */
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  font-family: inherit;
  color: inherit;
  font-size: inherit; /*https://stackoverflow.com/questions/6080413/why-doesnt-input-inherit-the-font-from-body*/}

.ddk-container input {
  overflow: visible;
}