.text-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.Title1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
}
#page {
  max-width: 640px;
  min-width: 320px;
  width: 100%;
  margin: 4.375rem auto 0 auto;
  background-color: var(--kds-sema-color-utility-nonessential);
  flex: 1 0 auto;
  box-sizing: border-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}
.icon {
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
}
.icon.input {
  width: 16px;
  height: 16px;
}
.icon-search-gray600 {
  background-image: var(--icn-search-gray600) !important;
}
::-webkit-input-placeholder {
  color: var(--kds-sema-color-on-surface-subdued);
}
:-ms-input-placeholder {
  color: var(--kds-sema-color-on-surface-subdued);
}
::-moz-placeholder {
  color: var(--kds-sema-color-on-surface-subdued);
}
:-moz-placeholder {
  color: var(--kds-sema-color-on-surface-subdued);
}
::placeholder {
  color: var(--kds-sema-color-on-surface-subdued);
}
.placeholder {
  color: var(--kds-sema-color-on-surface-subdued);
}
.inputfield,
.inputfield-iconized {
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-radius: var(--kds-sema-border-radius-none);
  font-size: 0.875rem;
  color: var(--kds-sema-color-on-surface);
  outline: 0;
  padding: 0 0 15px 0;
}
.inputfield-iconized {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.125rem;
  padding: 10px 5px 10px 30px;
}
.headerbar {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 15px;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  min-width: 320px;
  height: 4.375rem;
  background-color: var(--kds-sema-color-surface);
  position: fixed;
  top: 0;
  z-index: 99;
}
.headerbar {
  color: var(--kds-sema-color-on-surface-subdued);
  border-bottom: 5px solid var(--kds-sema-color-primary);
}
.headerbar--logo {
  height: 35px;
  margin: 0;
  padding: 0 15px;
  vertical-align: middle;
  display: inline-block;
  width: 45px;
  border-right: 1px solid var(--kds-sema-color-utility-subdued);
  object-fit: contain;
}
.headerbar--nav {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-basis: 115px;
  -ms-flex-preferred-size: 115px;
  flex-basis: 115px;
  flex: 0 0 115px;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.headerbar--navbutton {
  width: 24px;
  height: 24px;
  background: var(--icn-burger) no-repeat center top;
  background-size: 24px;
  outline: 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: var(--kds-sema-border-radius-none);
}
.headerbar--search {
  margin-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  flex: 1 1 auto;
}
.flyoutnav {
  position: fixed;
  background-color: var(--kds-sema-color-surface);
  z-index: 1000;
  top: 0;
  height: 100%;
  height: 100vh;
  padding-top: 20px;
  box-sizing: border-box;
  max-width: 385px;
  overflow-y: auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.is-flyoutnav-ready .flyoutnav {
  width: 0;
  min-width: 0;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(0);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
a {
  color: var(--kds-sema-color-interactive);
  cursor: pointer;
  text-decoration: none;
}

