/*
***************************************************************
*                                                             *
*                           NOTICE                            *
*                                                             *
*   THIS SOFTWARE IS THE PROPERTY OF AND CONTAINS             *
*   CONFIDENTIAL INFORMATION OF INFOR AND/OR ITS              *
*   AFFILIATES OR SUBSIDIARIES AND SHALL NOT BE DISCLOSED     *
*   WITHOUT PRIOR WRITTEN PERMISSION. LICENSED CUSTOMERS MAY  *
*   COPY AND ADAPT THIS SOFTWARE FOR THEIR OWN USE IN         *
*   ACCORDANCE WITH THE TERMS OF THEIR SOFTWARE LICENSE       *
*   AGREEMENT. ALL OTHER RIGHTS RESERVED.                     *
*                                                             *
*   (c) COPYRIGHT 2020 INFOR.  ALL RIGHTS RESERVED.           *
*   THE WORD AND DESIGN MARKS SET FORTH HEREIN ARE            *
*   TRADEMARKS AND/OR REGISTERED TRADEMARKS OF INFOR          *
*   AND/OR ITS AFFILIATES AND SUBSIDIARIES. ALL               *
*   RIGHTS RESERVED.  ALL OTHER TRADEMARKS LISTED HEREIN ARE  *
*   THE PROPERTY OF THEIR RESPECTIVE OWNERS.                  *
*                                                             *
***************************************************************
*/
.floatLeft {
  float: left !important; }

.floatRight {
  float: right; }

html[dir='rtl'] .floatRight {
  float: left; }

html[dir='rtl'] .floatLeft {
  float: right !important; }

/* disables selection of text/html */
.noSelection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/*
 * used with inforLabel
 */
label.fontBold {
  font-weight: bold; }

label.floatNone {
  float: none !important; }

label.displayInline {
  display: inline !important; }

label.whiteSpaceNormal {
  white-space: normal !important; }

label.widthAuto {
  width: auto !important; }

.boxsizeBorderbox {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

div.portalFieldset div.content {
  padding: 1em !important; }
  div.portalFieldset div.content p {
    margin: 0 12px 10px 0; }
  div.portalFieldset div.content img {
    /* arrow icon */
    margin-top: 5px; }

div.portalFieldset a.inforHyperlink {
  padding: 0; }

html[dir="rtl"] div.portalFieldset div.content img {
  /* flip arrow icon */
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH"; }

/* custom listbox */
.fileBox {
  border: 1px solid #999999 !important; }
  .fileBox > div {
    cursor: pointer;
    color: black;
    height: 20px;
    line-height: 20px; }
  .fileBox > div.selected {
    background-color: #C5D0D8; }
  .fileBox img {
    padding: 0 8px;
    vertical-align: middle; }

/*
 * bookmark manager and content
 */
div.findContainer {
  z-index: 100; }

div.contentLeft {
  border-right: #6699cc solid 1px;
  border-bottom: #6699cc solid 1px;
  overflow: auto; }

/*
 * used in form help and print.htm
 */
.ptFormTitle {
  font-weight: bold;
  font-size: 20px;
  margin-left: 20px; }

/*
 * used in viewlog and drill
 */
.ptFixed {
  font-family: Lucida Console, Monaco, Courier New, Courier;
  font-size: 1.4rem; }

/*
 * filter object, bookmark manager, toolbar
 */
.leftBarSelect {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 8pt;
  font-weight: bold; }

.fill-below-toolbar {
  height: calc(100% - 46px) !important; }

/**
* Tabs won't render the floating blue bar beneath the selected tab in the correct place if display:none;
* messes with sizing measurements, so use opacity. Can't use visibility:hidden; because visibility:visible;
* on a child element like the toolbar will still display though the parent is hidden.
 */
.prtlLoadingHidden {
  opacity: 0;
  transition: opacity 0s; }

/*
This file is for all the source colors for stuff, variables are named after the closest color name approximation
use this tool for coming up with names: http://chir.ag/projects/name-that-color/
*/
/* grays */
/* blues */
/* reds */
/* yellows */
/*****************************************/
/* color to usage mapping */
/*$control-text: $*/
@keyframes expand {
  from {
    height: 30px; }
  to {
    height: 166px; } }

#messageBar {
  border: 1px solid transparent;
  font-size: 1.2rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  box-shadow: #999 0 -8px 20px -10px;
  overflow: hidden;
  background-color: inherit;
  transition: background-color 0.4s ease-out; }
  html.light-theme #messageBar {
    background-color: #f0f0f0; }
  html.high-contrast-theme #messageBar {
    background-color: #bdbdbd; }
  html.dark-theme #messageBar {
    box-shadow: #1a1a1a 0 -8px 20px -10px;
    background-color: #313236; }
  #messageBar.flash-error {
    background-color: rgba(255, 0, 0, 0.25) !important; }
  #messageBar.flash-info {
    background-color: #368ac0 !important; }
  #messageBar.hidden {
    display: none; }
  #messageBar.closing {
    animation: expand 0.2s ease-in reverse; }
  #messageBar.expanding {
    animation: expand 0.2s ease-in; }
  #messageBar.closed {
    height: 30px; }
  #messageBar.expanded {
    height: 166px;
    overflow-y: auto; }
  #messageBar:focus {
    border: 1px solid #13a3f7; }
  #messageBar .message {
    display: inline-block;
    max-width: none !important; }
  #messageBar .icon {
    height: 16px;
    width: 16px;
    top: 4px;
    left: 3px; }
    #messageBar .icon.error {
      fill: red; }
    #messageBar .icon.info {
      fill: #005fff; }
  #messageBar #fixedButtons {
    position: absolute;
    right: 10px; }
    #messageBar #fixedButtons button {
      min-width: 0;
      vertical-align: top;
      padding: 0 0 0 10px; }
  #messageBar .bold {
    font-weight: bold; }
  #messageBar .inforHyperlink {
    font-size: inherit; }
  #messageBar .icon-error {
    margin-left: 0;
    display: inline-block;
    position: relative;
    width: 15px;
    top: 2px; }
  #messageBar .drillback-message .inforHyperlink {
    margin-left: 5px; }

#messageArea #loadingIndicator {
  height: 20px;
  width: 20px;
  display: inline-block; }

#messageArea .statusTag {
  margin-right: 5px; }

#messageArea .inforBusyIndicatorContainer {
  margin-top: -23px;
  top: auto; }

#messages li {
  list-style-type: none;
  line-height: 15px;
  position: relative; }
  #messages li .icon-error {
    margin-top: 2px; }

#messages.filter-drillbacks > li {
  display: none; }

#messages.filter-drillbacks > .drillback-message {
  display: block; }

#messages.filter-errors > li {
  display: none; }

#messages.filter-errors > .sb-error-message {
  display: block; }

#currentMessage li {
  line-height: 25px; }

#currentMessage .icon-error {
  margin-top: 0;
  top: 6px; }

#messageFilters {
  line-height: initial;
  display: inline-block; }
  #messageFilters > * {
    display: inline-block; }
  #messageFilters label {
    color: #666;
    font-weight: bold;
    cursor: pointer; }

#statusBarExpandIcon {
  transition: transform 0.2s ease-in;
  transform-style: preserve-3d; }
  .expanded #statusBarExpandIcon {
    transform: rotate(180deg); }

#errorsFilterButton.active {
  color: #b3000c; }

#linksFilterButton.active {
  color: #005ce6; }

html[dir="rtl"] #messageBar #fixedButtons {
  right: auto;
  left: 10px; }

html[dir="rtl"] #messageArea li > span {
  margin-right: auto;
  margin-left: 5px; }

/* variables that should match control styling */
/* should match the background color of tabsets */
div.inforModuleHeaderLeft {
  padding-left: 5px !important; }

div.infor2ColumnLayout {
  margin: 0; }

button.inforHyperlink, input.inforHyperlink {
  background-color: transparent;
  border: 0; }

/* ensures spinning loading indicator is pushed left in IE8 */
div.inforBusyIndicator.small {
  left: 0 !important;
  top: 7px !important; }

/* IE8 opacity */
.overlay, .inforOverlay {
  opacity: .5 !important; }

/*
 * used in confighost.js / hotkeys.htm / searchdlg.js
 */
fieldset.inforFieldSet div.content {
  padding: 0 12px; }

table.fieldSetTable {
  table-layout: fixed;
  width: 100%;
  border: 0; }
  table.fieldSetTable td, table.fieldSetTable th {
    padding: 6px 3px;
    text-align: left;
    word-wrap: break-word;
    font-size: 1.2rem; }
  table.fieldSetTable th label {
    font-weight: bold; }

/* confighost container */
#tableDiv .inforFieldSet {
  margin-bottom: 30px; }

table.borderedTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem; }
  table.borderedTable th {
    border-left: none;
    text-align: left; }
    table.borderedTable th span {
      font-weight: bold;
      padding: 5px; }
  table.borderedTable tr:first-child td {
    border-top: none; }
  table.borderedTable td {
    padding: 5px;
    border-top: 1px solid lightgrey;
    border-left: 1px solid lightgrey; }
    table.borderedTable td:first-child {
      border-left: none; }

.borderlessTable td {
  border: none !important; }

.borderlessTable th {
  border: none !important; }

.inforDataGrid .slick-cell .inforBusyIndicator.small {
  background-size: contain; }

/* start control overlapping workaround */
div.inforTriggerField input.inforTextbox {
  padding-right: 0; }

div.inforTriggerField button.inforTriggerButton {
  margin-left: 0; }

div.field-short input.lookup, div.field-short input.datepicker {
  padding-right: 20px; }

div.field-short div.dropdown {
  padding-right: 18px; }

div.field-short .icon-error {
  visibility: hidden;
  margin-left: -18px !important; }

/* end control overlapping workaround */
html[dir="rtl"] div.inforBusyIndicator.small {
  right: 0 !important; }

html[dir="rtl"] table.fieldSetTable td, html[dir="rtl"] table.fieldSetTable th {
  text-align: right; }

html[dir="rtl"] input.dropdown {
  padding-right: 2px !important;
  padding-left: 19px !important; }

html[dir="rtl"] div.inforTriggerField input.inforTextbox {
  padding-left: 0; }

html[dir="rtl"] div.inforTriggerField button.inforTriggerButton {
  margin-right: 0; }

html[dir="rtl"] div.card > div.card-header > h1 {
  width: auto; }

html[dir="rtl"] div.dropdown-list.text-align-reverse {
  text-align: right !important; }

div.buttonset span.separator.prtlSplitButtonSeparator {
  height: 15px;
  top: 10px; }

div.buttonset button.go-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.tab-container.tab-borders {
  margin-top: 0 !important; }
  .tab-container.tab-borders::after {
    width: 0 !important; }

input {
  text-overflow: clip !important; }

.tab-panel-container {
  margin-bottom: 0 !important; }

div.dropdown-list.text-align-reverse {
  text-align: left !important; }

#browsingTabset {
  height: auto;
  /* override controls 100% */ }

/* hide the close tab 'x' button when there's only one tab.
   the TabbedBrowsing object prevents closing tabs when only 1 remains,
   but it looks neater when you can't see the 'x' too */
#tabList .tabdock-header:only-child .icon {
  display: none; }

#tabPanelElement .tab-panel {
  padding-top: 0; }

/*
This file is for all the source colors for stuff, variables are named after the closest color name approximation
use this tool for coming up with names: http://chir.ag/projects/name-that-color/
*/
/* grays */
/* blues */
/* reds */
/* yellows */
/*****************************************/
/* color to usage mapping */
/*$control-text: $*/
#migrate-log {
  overflow: auto; }
  #migrate-log p {
    margin: 0 0; }
  #migrate-log svg.prtl-icon-select {
    fill: #89bf65; }

/*
 * dialogs
 */
div.hotkeysDlg {
  height: 500px;
  width: 450px; }
  div.hotkeysDlg fieldset.inforFieldSet {
    margin-bottom: 1em; }
  div.hotkeysDlg h2:not(:first-child) {
    margin-top: 2rem; }

html[dir="rtl"] #signOut {
  right: auto;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH"; }

div.wizard-header {
  padding: 20px 40px 75px 30px; }

.application-menu + .page-container {
  transition: none !important; }

@media print {
  body * {
    visibility: hidden !important; }
  .tab-panel.is-visible * {
    visibility: visible !important;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    overflow: visible !important; } }
