*:not([type='text/css']) {
  box-sizing: border-box;
  margin: 0;
}

/* Note(Andrew) - temporary override of the previous rule for the aui-footer links,
 *                until we can remove the code block directly above `*:not([type='text/css'])`
 */
*[data-ref*="aui-footer"] {
  margin-right: 24px;
}

s-container {
  margin: 0 auto !important;
}

html, body {
  font-weight: 400;
  width: 100%;
  height: 100%;
}

body {
  margin: 0px;
  position: relative;
  min-height: 100%;
  height: auto;
}

#react-root {
  padding-left: 0;
  padding-right: 0;
  max-width: unset;
  min-height: calc(100vh - 92px);
}

.local-header {
  margin: 0;
  padding: 0 10px 10px 10px;
  background: #FFF099;
  text-align: center;
}

.local-env {
  border: 10px solid #FFF099;
  border-bottom: none;
}

.dev-header {
  margin: 0;
  padding: 0 10px 10px 10px;
  background: #D1C1F0;
  text-align: center;
}

.dev-env {
  border: 10px solid #D1C1F0;
  border-bottom: none;
}

.qa-header {
  margin: 0;
  padding: 0 10px 10px 10px;
  background: #C0DCF9;
  text-align: center;
}

.qa-env {
  border: 10px solid #C0DCF9;
  border-bottom: none;
}

.sandbox-header {
  margin: 0;
  padding: 0 10px 10px 10px;
  background: #FFA280;
  text-align: center;
}

.sandbox-env {
  border: 10px solid #FFA280;
  border-bottom: none;
}

/* staged production (NOT live production) */
.prod-header {
  margin: 0;
  padding: 0 10px 10px 10px;
  background: #B3FFB3;
  text-align: center;
}

.prod-env {
  border: 10px solid #B3FFB3;
  border-bottom: none;
}

a, .link {
  font-size: inherit;
  line-height: inherit;
}

a > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

* > span {
  font-size: inherit;
  color: inherit;
}

input[type="button"], button {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Overwriting above styles for buttons in aui-session-timeout for proper styling */
aui-session-timeout button {
  height: initial !important;
}

aui-session-timeout>s-dialog>[slot=footer]>button:first-child {
  margin-right: 7px !important;
}

/* s- addition */
input[type="button"][disabled], button[disabled],
input[type="button"][disabled]:hover, button[disabled]:hover {
  color: #FFF;
  cursor: not-allowed;
}

#esb-create {
  height: calc(100vh - 86px);
  min-width: 100%;
  margin: 0px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-status-display [data-ref="status"] {
  display: none
}

.address-valdiation-box-container {
  display: flex;
  flex-direction: row;
  gap: 18px;
  border: 0px;
}

.invalid-address {
  border-color: var(--color-yellow-darker);
  background: var(--color-yellow-lightest);
}