/* inline style for the splash and spinner so it does not wait for .css to load */

body {
  padding: 0px;
  margin: 0px;
}

.actionColoumn {
  max-width: 5.5rem;
}

.ogg-splashscreen {
  height: 100vh;
  width: 100vw;
  position: fixed;
  /* --oj-palette-neutral-190 */
  color: rgb(15, 14, 13);
  /* --oj-palette-neutral-30 */
  /* background-color:  rgb(241, 239, 237); */
  font-family: "Oracle Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  text-align: center;
  padding: 0px;
  height: 100%;
  background-color: white;
}
.ogg-splash-progress {
  margin: 24px auto;
  width: 40vw;
  max-width: 400px;
  position: relative;
  height: 4px;
  display: block;
  /* --oj-palette-neutral-190 */
  /* background-color: rgba(15, 14, 13, .15); */
  border-radius: 2px;
  background-clip: padding-box;
  overflow: hidden;
}
.ogg-splash-progress .ogg-indeterminate-value {
  /* --oj-palette-neutral-170 */
  background-color: rgb(44, 41, 38);
}
.ogg-splash-progress .ogg-indeterminate-value:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.ogg-splash-progress .ogg-indeterminate-value:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

.displayNoneStart {
  display: none;
}

.overflowScroll {
  overflow: scroll;
}

.overscroll-y-scroll {
  overflow-y: scroll;
}

.cursorPointer {
  cursor: pointer;
}

.textAlignCenter {
  text-align: center;
}

.white-space-normal {
  white-space: normal;
}

.font-size-initial {
  font-size: initial;
}

.position-relative {
  position: relative;
}

.full-height {
  height: 100%;
}

.demo-signin-bg {
  height: 100%;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-y: scroll;
  overflow-x: hidden;
  background-image: url(images/Desktop.jpg);
}

.demo-signin-appname {
  display: block;
  color: #000;
  font-weight: 500 !important;
  text-align: center !important;
  font-family: "Oracle Sans", "Segoe UI", "Helvetica Neue", sans-serif;
}

.demo-appname-lg {
  font-size: 36px;
  font-weight: 300;
}

.demo-appname-sm {
  font-size: 24px;
  font-weight: 300;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

/* .oj-focus{
  border-color: #6A9D67 !important;
} */

.oj-formAnimation {
  -webkit-animation: fadein 0.25s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.5s; /* Firefox < 16 */
  -ms-animation: fadein 0.5s; /* Internet Explorer */
  -o-animation: fadein 0.5s; /* Opera < 12.1 */
  animation: fadein 0.25s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.oj-requiredDivHidden {
  visibility: hidden;
  overflow: hidden;
  width: 0px;
  height: 0px;
  margin: 0;
}

.oj-requiredDiv {
  font-family: "Oracle Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  color: red;
  text-align: center;
  height: auto;
  padding: 0 20px;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
  float: left;
  text-align: center;
  visibility: visible;
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
abbr[title] {
  border-bottom: none !important;
  cursor: inherit !important;
  text-decoration: none !important;
}

/* Right Drawer Style */
.right-drawer-header {
  height: 5rem;
  align-items: center;
  width: 100%;
}
.right-drawer-content {
  height: calc(100vh - 10rem);
  /* offset header + footer height */
  overflow-y: scroll;
}
.right-drawer-footer {
  height: 5rem;
  align-items: center;
  width: 100%;
}

.train-parent-div {
  height: 7rem;
  align-items: center;
}
.form-parent-div {
  height: calc(100% - 7rem);
}

.form-div {
  overflow-y: scroll;
}

#genericMessagesDialog {
  display: none;
  width: 50vw;
}

#genericMessagesDialog > div:first-child {
  height: 2.5rem;
}

#genericMessagesDialogBody {
  overflow-y: auto;
  overflow-x: clip;
  max-height: 40vh;
  float: left;
  width: 100%;
}

#genericMessagesDialogDetails {
  position: relative;
}

#genericMessagesDialogDetails > div:first-child {
  width: 90%;
  padding: 1rem;
}

#loadingServicesProgressHeader {
  display: none;
  padding-top: 0.4em;
  text-align: center;
}

#loadingServicesHeader {
  display: none;
}

#progressCircle {
  width: 100%;
  height: 10%;
}

#baseHeaderMessage {
  display: none;
  padding-left: 0.4em;
}

#extendSessionDialog {
  display: none;
  width: 40vw;
}

#extendSessionDialogHeader {
  font-size: large;
  font-weight: 700;
}

#extendSessionDialogBody {
  padding-top: 20px;
  align-self: left;
}

#extendSessionButton {
  float: right;
  padding-right: 5px;
  min-width: 25%;
}

#signoutButton {
  float: right;
  padding-right: 5px;
  min-width: 25%;
}

.appFullNameHeading {
  line-height: normal;
  text-align: center;
  width: 50vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.headerControlsDiv {
  flex-shrink: 0;
}

#notificationButton {
  height: 3.143rem;
}

#helperButton {
  height: 3.143rem;
  position: relative;
}

#helpInfoModule {
  position: absolute;
}

#configButton {
  width: 3.143rem;
  height: 3.143rem;
}

#changeRefreshIntervalDialog {
  position: fixed;
}

#labelEnableDebugLog {
  margin-right: 30px;
}

#downloadDebugLogButtonDiv {
  margin-right: 10px;
}

#selectFilterDiagnosisDiv {
  width: 60%;
  margin-left: 0.5rem;
}

#filterInputDiv {
  width: 16rem;
  margin-left: 0.5rem;
}

#filterSeverityValueDiv {
  width: 16rem;
  margin-left: 0.5rem;
}

#filterSeverityValue {
  max-width: 20em;
}

.betweenDateFieldDiv {
  display: flex;
  width: 18rem;
  align-items: center;
}

.betweenDateInputField {
  margin-left: 0.5rem;
  max-width: 14rem;
}

#labelTo {
  margin-left: 0.5rem;
  max-width: 14rem;
}

.fromFieldDiv {
  display: flex;
  width: 18rem;
  align-items: center;
}

#debugLogTable {
  width: 100%;
  max-height: 50rem;
}

#notificationHeaderDiv {
  max-height: 20%;
}

#notificationHeader {
  margin-left: 15px;
}

#noNotificationMessage {
  margin: auto;
  margin-top: 1%;
}

.navigationTreeItem {
  display: block;
  max-width: 13rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loadingMessageDiv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.loadingMessageProgressCircle {
  width: 72px;
  height: 72px;
  margin-left: 40%;
}

#helpPopup {
  min-height: 70vh;
  min-width: 40vw;
  max-width: 80vw;
}

#helpIframe {
  height: 65vh;
  min-width: 40vw;
  max-width: 80vw;
  border: none;
}

.helpPopupButtons {
  width: 45%;
  margin: 0px;
}

.gg-message-icon {
  vertical-align: top;
  margin-right: 10px;
}

.gg-message-status-link {
  padding-left: 10px;
  padding-right: 10px;
}

#Account > div:first-child {
  width: 500px;
  border-radius: 10px;
  background-color: #fbf9f8;
  max-height: 500px;
}

.signout-oracle-logo-div {
  padding-left: 55%;
  filter: saturate(3);
}

.signout-header-label {
  margin-top: 0px;
  margin-bottom: 0px;
}

#labelSignoutSuccessMessage {
  font-weight: normal;
  padding-left: 1%;
}

#signoutGotoLoginPageDiv {
  padding-bottom: 20px;
}

#labelSignoutGoToLoginPageLabel {
  color: aliceblue;
}

.shortcuts-valueLabel {
  display: inline;
}

#rightDrawerTrain {
  height: 100%;
}

#activityWatchDialog {
  display: none;
  min-width: 25vw;
}

#sessionExpHeaderDiv {
  font-size: large;
  font-weight: 700;
}

#userInactiveTitleDiv {
  padding-top: 20px;
  align-self: left;
}

#resTimer-span {
  color: red;
  font-weight: bold;
}

#extendUserActivity {
  float: right;
  padding-right: 5px;
  min-width: 25%;
}

.demo-popup-body-div {
  width: 500px;
  border-radius: 10px;
  background-color: #fbf9f8;
  max-height: 500px;
}

.account-oracle-logo-div {
  padding-left: 55%;
  filter: saturate(3);
}

#labelLoginDiv {
  margin-top: 0px;
  margin-bottom: 0px;
}

.signInBtnDiv {
  padding-top: 40px;
  padding-bottom: 20px;
}

.labelSignInSpan {
  color: aliceblue;
}

.about-header-div-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 50%;
}

.about-header-div-2 {
  position: absolute;
  top: 0;
  right: 0%;
  width: 65%;
  height: 50%;
}

.about-header-div-3 {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 35%;
  height: 50%;
}

.about-header-div-4 {
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 65%;
  height: 50%;
}

.about-goldengate-logo {
  margin-top: 1rem;
}

.about-goldengate-logo img {
  float: right;
  width: 200px;
}

.about-header-title {
  margin-top: 1rem;
}

.about-label-div {
  margin-top: 2rem;
}

.about-version-platform-div {
  display: flex;
  align-items: center;
}

.about-platform-dbms {
  color: #6c706c;
}

.about-summary-div {
  margin-top: 1rem;
  height: 250px;
  overflow: scroll;
}

.about-TagSummary-values {
  margin-bottom: 1rem;
}

.about-copyright-div {
  margin-top: 1.5rem;
}

.main-page-content {
  width: calc(100% - 300px);
  height: 100%;
  overflow-y: scroll;
}

#navigationTreeColumn {
  height: 100%;
  overflow-y: scroll;
  align-content: flex-start;
}

#navigationTreeColumn > div:first-child {
  height: 7rem;
}

.navigationTreeColumnDiv {
  width: 300px;
  height: 100%;
}

.serviceIframe {
  height: 100%;
  width: 100%;
  border: none;
}

.serviceIframeDiv {
  height: 0px;
}

#offcanvasAbout {
  height: 550px;
  padding: 0px;
  min-width: 463px;
}

#pageHeaderModule {
  padding-left: 20px;
  padding-right: 20px;
}

#ogg-splash-copyright {
  position: absolute;
  bottom: 20px;
  width: 100%;
  letter-spacing: 0.05em;
  font-size: 11px;
  font-weight: 400;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

#ogg-splash-logo {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

#ogg-splash-message {
  margin-top: 5rem;
}

#ogg-splash-header {
  margin: 250px auto 20px;
  margin-top: min(calc(35vh - 20px), 250px);
}

#ogg-splash {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 7;
}

/* inline style for the splash and spinner so it does not wait for .css to load */
body {
  padding: 0px;
  margin: 0px;
}

.ogg-splashscreen {
  height: 100vh;
  width: 100vw;
  position: fixed;
  /* --oj-palette-neutral-190 */
  color: rgb(15, 14, 13);
  /* --oj-palette-neutral-30 */
  /* background-color:  rgb(241, 239, 237); */
  font-family: "Oracle Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  text-align: center;
  padding: 0px;
  height: 100%;
  background-color: white;
}
.ogg-splash-progress {
  margin: 24px auto;
  width: 40vw;
  max-width: 400px;
  position: relative;
  height: 4px;
  display: block;
  /* --oj-palette-neutral-190 */
  /* background-color: rgba(15, 14, 13, .15); */
  border-radius: 2px;
  background-clip: padding-box;
  overflow: hidden;
}
.ogg-splash-progress .ogg-indeterminate-value {
  /* --oj-palette-neutral-170 */
  background-color: rgb(44, 41, 38);
}
.ogg-splash-progress .ogg-indeterminate-value:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.ogg-splash-progress .ogg-indeterminate-value:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
