/**-- Dynamic Portion of the Layout --**/
.icarus-layout-dynamic {
  height: 100%;
  position: relative;

  .icarus-field {
    position: absolute;
    overflow-y: hidden;
  }
}

/**-- Static Portion of the Layout --**/
.icarus-layout-static {
  .icarus-field {
    padding: 10px 0;
  }
}

/**-- Form Field Generic --**/
.icarus-field {
  &.label-vertical {
    input, textarea, select {
      width: 100%;
    }

    input[type="radio"] {
      width: auto;
    }
  }

  &.hidden {
    display: none;
  }
}
