html, body {
  font-family: GEInspiraSans-Regular, GE Inspira Sans !important;
}

body {
  margin: 0;
  height: 100%;
}

/*************************************************
 **               Flex Layout                   **
 *************************************************/
.flex {
  display: flex;
}
.flex--row {
  flex-flow: row nowrap;
}
.flex--col {
  flex-flow: column nowrap;
}
.flex--center {
  justify-content: center;
}
.flex__item {
  flex: 1 0 0;
  width: 100%;
  height: 100%;
}
.full-height {
  height: 100%;
}

/*************************************************
 **               Helpers                       **
 *************************************************/
.actionable {
  color: #007acc;
  height: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: none;
  white-space: nowrap;
  line-height: inherit;
  text-decoration: none;
  font: inherit;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}
.actionable:hover {
  color: #005c99;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 10;
}

.text-input {
  -webkit-appearance: textfield;
  background-color: white;
  -webkit-rtl-ordering: logical;
  cursor: text;
  padding: 1px;
  border-width: 2px;
  border-style: inset;
  border-color: initial;
  border-image: initial;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  font: 400 11px system-ui;
  height: 2em;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #889aa5;
  padding: 0 .33333rem;
  color: #2c404c;
  font: inherit;
  outline: 0;
  background-color: var(--px-input-background-color,transparent);
  transition: background .4s,border-color .4s,color .4s;
  margin-right: 15px;
}
.text-input:hover {
  background-color: #d8e0e5;
}
.text-input:focus {
  border-color: #007acc;
  background-color: #eefbff;
}
.btn {
  display: inline-block;
  margin: 0 0 .5rem 0;
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  cursor: pointer;
  overflow: visible;
  vertical-align: middle;
  border: 1px solid #2886af;
  background-color: #2886af;
}
.btn:hover{
  border: 1px solid #3ab4d4;
  background-color: #3ab4d4;
  color: #fff;
  box-shadow: none;
}

/*************************************************
 **           Common Elements                   **
 *************************************************/

.copyright {
  font-size: 12px;
  color: #89909A;
}
