@charset "UTF-8";
/* TODO: remove into its own component style file and implement Sass
TODO: separate out into default styling*/
.configurable-table .export.button {
  margin-right: 0.45em;
}
.configurable-table select {
  padding: 0.6em 1em 0.6em 1em;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  user-select: none;
}
.configurable-table select.configuration-select {
  float: left;
  margin-bottom: 1em;
}
.configurable-table .table {
  user-select: none;
  cursor: pointer;
  width: 80em;
  overflow-x: scroll;
  color: black;
  overscroll-behavior-x: none;
}
.configurable-table .table .body {
  overflow-y: scroll;
  overflow-x: hidden;
  display: inline-block;
  height: 40em;
  min-width: 100%;
}
.configurable-table .table .head {
  display: inline-block;
  min-width: 100%;
}
.configurable-table .table .body .row, .configurable-table .table .head .row {
  white-space: nowrap;
  height: 4.4em;
  display: flex;
}
.configurable-table .table .body .row {
  animation-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.configurable-table .table .body .row:hover {
  background-color: #f8f8f8;
}
.configurable-table .table .body .row .cell {
  animation-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.configurable-table .table .head .row {
  height: 7em;
}
.configurable-table .table .head .row select {
  font-size: 0.8em;
  font-weight: normal;
  padding: 0.4em;
  width: 95%;
}
.configurable-table .table .body .row .cell, .configurable-table .table .head .row .cell {
  white-space: normal;
  width: 10em;
  height: 5em;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  overflow: hidden;
  padding-top: 0.7em;
  text-overflow: clip;
  padding-left: 0.5em;
}
.configurable-table .table .body .row .cell:last-of-type, .configurable-table .table .head .row .cell:last-of-type {
  border-right: 1px solid #ccc;
}
.configurable-table .table .head .row .cell {
  border-top: 1px solid #ccc;
}
.configurable-table .table .head .row .cell select {
  margin-top: 0.5em;
}
.configurable-table .table .body .row .cell {
  height: 4.4em;
}
.configurable-table .table .head .row .cell {
  background-color: #eee;
  height: 7em;
}
.configurable-table .table .head .row .cell .title {
  height: 1.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 9em;
}
.configurable-table .table .head .row .cell input {
  width: 8.75em;
  border: 1px #888 solid;
  border-radius: 3px;
  height: 1.7em;
  margin-top: 0.5em;
}
.configurable-table .head .row .cell .button {
  width: 1.3em;
  height: 1.3em;
  text-align: center;
  padding-top: 0.25em;
  color: #888;
  border-radius: 25% 25%;
  margin-right: 0.2em;
  font-size: 1.5em;
  background-color: #ccc;
  float: left;
}
.configurable-table .head .row .cell .button:hover {
  background-color: #bbb;
}
.configurable-table .head .row .cell .button.left .icon::after {
  content: "◀";
}
.configurable-table .head .row .cell .button.right .icon::after {
  content: "▶";
}
.configurable-table .head .row .cell .button.remove {
  padding-top: 0.2em;
}
.configurable-table .head .row .cell .button.remove .icon {
  transform: rotate(45deg);
}
.configurable-table .head .row .cell .button.remove .icon::after {
  transform: rotate(45deg);
  content: "+";
}
.configurable-table .head .row .cell .button.sort.descending .icon::after {
  content: "▲";
}
.configurable-table .head .row .cell .button.sort.ascending .icon::after {
  content: "▼";
}
.configurable-table .head .row .cell .button.sort.descending .icon, .configurable-table .head .row .cell .button.sort.ascending .icon, .configurable-table .head .row .cell .button.right .icon, .configurable-table .head .row .cell .button.left .icon {
  font-size: 0.6em;
}

/* ember-power-select */
.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 2.75em;
  user-select: none;
  -webkit-user-select: none;
  color: inherit;
  outline: none;
  padding: 0.67857143em 2.1em 0.67857143em 1em;
  border-color: #e2e2e2;
}

.dropzone {
  border: 1px dashed #ccc;
  width: 100%;
  height: 10em;
  text-align: center;
  padding-top: 4.5em;
}

.tenant-table td {
  max-width: 10em;
  overflow: hidden;
}

.tenant-table tr:hover {
  background-color: #eee;
}

.tenant-table tr {
  cursor: pointer;
}

.tenant-table .no-date, .tenant-table .alert-date.no-date, .tenant-table .warn-date.no-date {
  background-color: #eee;
}

.tenant-table .alert-date, .tenant-table .alert-date.warn-date {
  background-color: #fcc;
}

.tenant-table .warn-date {
  background-color: #ffc;
}

.configurable-table .export.button {
  margin-right: 0.45em;
}
.configurable-table select {
  padding: 0.6em 1em 0.6em 1em;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  user-select: none;
}
.configurable-table select.configuration-select {
  float: left;
  margin-bottom: 1em;
}
.configurable-table .table {
  user-select: none;
  cursor: pointer;
  width: 80em;
  overflow-x: scroll;
  color: black;
  overscroll-behavior-x: none;
}
.configurable-table .table .body {
  overflow-y: scroll;
  overflow-x: hidden;
  display: inline-block;
  height: 40em;
}
.configurable-table .table .head {
  display: inline-block;
}
.configurable-table .table .body .row, .configurable-table .table .head .row {
  white-space: nowrap;
  height: 4.4em;
  display: flex;
}
.configurable-table .table .body .row {
  animation-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.configurable-table .table .body .row:hover {
  background-color: #f8f8f8;
}
.configurable-table .table .body .row .cell {
  animation-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.configurable-table .table .head .row {
  height: 7em;
}
.configurable-table .table .head .row select {
  font-size: 0.8em;
  font-weight: normal;
  padding: 0.4em;
  width: 95%;
}
.configurable-table .table .body .row .cell, .configurable-table .table .head .row .cell {
  white-space: normal;
  width: 10em;
  height: 5em;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  overflow: hidden;
  padding-top: 0.7em;
  text-overflow: clip;
  padding-left: 0.5em;
}
.configurable-table .table .body .row .cell:last-of-type, .configurable-table .table .head .row .cell:last-of-type {
  border-right: 1px solid #ccc;
}
.configurable-table .table .head .row .cell {
  border-top: 1px solid #ccc;
}
.configurable-table .table .head .row .cell select {
  margin-top: 0.5em;
}
.configurable-table .table .body .row .cell {
  height: 4.4em;
}
.configurable-table .table .head .row .cell {
  background-color: #eee;
  height: 7em;
}
.configurable-table .table .head .row .cell .title {
  height: 1.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 9em;
}
.configurable-table .table .head .row .cell input {
  width: 8.75em;
  border: 1px #888 solid;
  border-radius: 3px;
  height: 1.7em;
  margin-top: 0.5em;
}
.configurable-table .head .row .cell .button {
  width: 1.3em;
  height: 1.3em;
  text-align: center;
  padding-top: 0.25em;
  color: #888;
  border-radius: 25% 25%;
  margin-right: 0.2em;
  font-size: 1.5em;
  background-color: #ccc;
  float: left;
}
.configurable-table .head .row .cell .button:hover {
  background-color: #bbb;
}
.configurable-table .head .row .cell .button.left .icon::after {
  content: "◀";
}
.configurable-table .head .row .cell .button.right .icon::after {
  content: "▶";
}
.configurable-table .head .row .cell .button.remove {
  padding-top: 0.2em;
}
.configurable-table .head .row .cell .button.remove .icon {
  transform: rotate(45deg);
}
.configurable-table .head .row .cell .button.remove .icon::after {
  transform: rotate(45deg);
  content: "+";
}
.configurable-table .head .row .cell .button.sort.descending .icon::after {
  content: "▲";
}
.configurable-table .head .row .cell .button.sort.ascending .icon::after {
  content: "▼";
}
.configurable-table .head .row .cell .button.sort.descending .icon, .configurable-table .head .row .cell .button.sort.ascending .icon, .configurable-table .head .row .cell .button.right .icon, .configurable-table .head .row .cell .button.left .icon {
  font-size: 0.6em;
}

/* ember-notify callout */
.custom-notify {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1060;
  width: 80%;
  max-width: 400px;
  margin: auto;
}

.custom-notify .callout {
  border-radius: 0.28571429rem;
  border: solid;
  border-width: 1px;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  max-height: 800px;
  color: #fff;
}

.custom-notify .message {
  display: inline-block;
  padding: 1em 1.5em;
  min-height: 1em;
}

.custom-notify .close {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.3;
  cursor: pointer;
}

.custom-notify .close:hover,
.custom-notify .close:focus {
  opacity: 1;
}

/* success */
.custom-notify .success {
  border-color: #a3c293;
  color: #2C662D;
  background-color: #FCFFF5;
}

.custom-notify .success .close {
  border-color: #a3c293;
  color: #2C662D;
  background-color: #FCFFF5;
}

/* info */
.custom-notify .info {
  border-color: #a9d5de;
  color: #4f889a;
  background-color: #f8ffff;
}

.custom-notify .info .close {
  color: #4f889a;
}

/* error */
.custom-notify .error {
  border-color: #e1b4b4;
  color: #b05e5d;
  background-color: #fff6f6;
}

.custom-notify .error .close {
  color: #b05e5d;
}

/* warning */
.custom-notify .warning {
  border-color: #c9ba9b;
  color: #573a09;
  background-color: #fffaf3;
}

.custom-notify .warning .close {
  color: #573a09;
}

/* custom coloring/fonts */
.feature-date {
  color: gray;
}

.feature-description {
  color: gray;
}

/* forgot password */
.forgot-password-link {
  display: flex;
  justify-content: center;
  font-size: 0.9em;
}

/* custom positioning */
.form-login {
  margin: 4em auto;
  padding: 0 1em;
  max-width: 30em;
}

.form-section {
  padding-bottom: 3em;
}

.form-section-break {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.table-section {
  padding-top: 1em;
}

.button-section {
  padding-bottom: 1em;
}

.feature-tag {
  padding-bottom: 5em;
}

/* semantic-ui fine tuning */
* {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
}

.ui.labels .label, .ui.label {
  font-size: 1em;
}

.ui.floating.label {
  left: 107%;
  top: 0.3em;
}

.ui.progress > .label {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-weight: normal;
}

.ember-notify-default.ember-notify-cn {
  border-style: hidden;
}

.main.container {
  margin-top: 6em;
}

.ui.table {
  border-radius: 0;
}

.ui.vertical.menu {
  box-shadow: none;
}

.ui.segment {
  box-shadow: none;
}

.ui.form .field > label {
  font-weight: normal;
  font-size: 1em;
  font-family: "Roboto", sans-serif;
}

.ui.form .field .display-text {
  color: #ccc;
  padding-bottom: 0.5em;
}

.ui.form .inline.field > label {
  font-weight: normal;
  font-size: 1em;
  font-family: "Roboto", sans-serif;
}

.ui.form .field > input {
  font-family: "Roboto", sans-serif;
}

.ui.breadcrumb {
  padding-bottom: 2em;
}

@media only screen and (min-width: 1200px) {
  .ui.modal {
    width: 90%;
    margin: 0em 0em 0em 0em;
  }
}
/* highlightjs */
.hljs {
  font-size: 1em;
  margin-top: -3em;
  margin-bottom: -2em;
}

pre {
  white-space: pre-wrap;
}

/* file-processor table view double borders */
.double-border-right {
  border-right: 3px solid rgba(34, 36, 38, 0.1);
}

.double-border-left {
  border-left: 3px solid rgba(34, 36, 38, 0.1);
}

.admin-user.row {
  cursor: pointer;
}

.admin-user.row:hover {
  background-color: #f8f8f8;
}

.field-note-label {
  padding-bottom: 0.5em;
  font-style: italic;
  color: #aaa;
}

/* pagination */
.paginated-content {
  padding-bottom: 3em;
  color: #8e949d;
}

.paginated-content .text-row {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2em;
  text-align: center;
  display: none;
}

.paginated-content .button-row {
  padding-top: 2em;
  margin-left: auto;
  margin-right: auto;
  width: 23.5em;
  height: 3em;
}

.paginated-content .button-row .text {
  padding: 0.4em;
  width: 5em;
  padding-bottom: 0;
  float: left;
  text-align: center;
}

.paginated-content .button-row .previous-button,
.paginated-content .button-row .next-button,
.paginated-content .button-row .submit-text {
  width: 2.5em;
  height: 2.5em;
  background-color: #51adfb;
  border-radius: 5px;
  float: left;
  cursor: pointer;
  margin-left: 0.3em;
  margin-right: 0.3em;
  color: white;
  padding-left: 0.55em;
  padding-top: 0.55em;
}

.paginated-content .button-row i {
  font-size: 0.8em;
  padding-top: 0.9em;
}

.paginated-content .button-row .previous-button {
  padding-left: 0.9em;
}

.paginated-content .button-row .next-button {
  padding-left: 1em;
}

.paginated-content .button-row .previous-button.disabled,
.paginated-content .button-row .next-button.disabled,
.paginated-content .button-row .submit-text.disabled {
  background-color: #ccc;
  color: white;
}

.paginated-content .button-row .submit-text,
.paginated-content .button-row .submit-text.disabled {
  border-radius: 0 5px 5px 0;
  margin-left: 0;
  border-left: none;
}

.paginated-content .button-row input {
  border-radius: 5px;
  width: 4em;
  color: #8e949d;
  float: left;
  text-align: center;
  border: 1px #ddd solid;
  height: 2.5em;
}

/* end pagination */
.search-field {
  width: 100%;
  margin-bottom: 1em;
}

.x-button {
  cursor: pointer;
  width: 1em;
  height: 1em;
  text-align: center;
  padding-top: 0.07em;
  transform: rotate(45deg);
  font-family: sans-serif;
  background-color: #ddd;
  color: #888;
  border-radius: 100% 100%;
  font-size: 2em;
  margin-top: 0.2em;
  margin-left: 0.3em;
  float: left;
}

.x-button:hover {
  background-color: #ccc;
}

.search-field input {
  float: left;
}

.search-field .search-field-input {
  color: #60656b;
  height: 2.5em;
  border-radius: 6px;
  padding-left: 2em;
  border: 1px #ccc solid;
}

.search-field .search-field-input::placeholder {
  color: #ccc;
  font-weight: normal;
  font-size: 0.9em;
}

.search-field .search-field-icon {
  width: 1.2em;
  height: 1.2em;
  float: left;
  position: relative;
  left: 0.7em;
  top: -2.2em;
  background-image: url(images/magnify_glass.svg);
  background-repeat: no-repeat;
}

.tenant-table-list .search-field {
  width: 50%;
  float: left;
}

.agency-select {
  float: right;
  width: 17.8em;
}

.agency-select button {
  height: 3.2em;
}

.tenant-table-list .ember-power-select-trigger {
  float: left;
  width: 15em;
}

.tenant-table-list .search-field input {
  height: 3em;
}

.tenant-table-list button {
  float: right;
}

th.sort-cell:hover {
  background-color: #eee !important;
  cursor: pointer !important;
}

th.sort-cell.ascending:after {
  content: "\f0d8";
  font-family: "Icons";
  float: right;
}

th.sort-cell.descending:after {
  content: "\f0d7";
  font-family: "Icons";
  float: right;
}

.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 1.75em;
  user-select: none;
  -webkit-user-select: none;
  color: inherit;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-placeholder {
  color: #999999;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #aaaaaa transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  display: inline-block;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  float: left;
  background-color: transparent;
  text-indent: 2px;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #eeeeee;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.ember-power-select-multiple-options {
  padding: 0;
  margin: 0;
}

.ember-power-select-multiple-option {
  border: 1px solid gray;
  border-radius: 4px;
  color: #333333;
  background-color: #e4e4e4;
  padding: 0 4px;
  display: inline-block;
  line-height: 1.45;
  float: left;
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: 1px solid #aaaaaa;
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-power-select-dropdown {
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  line-height: 1.75;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 1px solid #aaaaaa;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below, .ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid #aaaaaa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto; /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: 12.25em;
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 8px;
}

.ember-power-select-group[aria-disabled=true] {
  color: #999999;
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: #999999;
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: #dddddd;
}

.ember-power-select-option[aria-current=true] {
  background-color: #5897fb;
  color: #ffffff;
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #eeeeee;
}

.ember-power-select-trigger {
  padding: 0 16px 0 0;
}

.ember-power-select-selected-item, .ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: 25px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=rtl] {
  padding: 0 0 0 16px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item, .ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: 25px;
  right: initial;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

.ember-power-select-trigger {
  height: 3em;
  padding-top: 0.6em;
  padding-left: 0.8em;
}

.vpp-uploader {
  padding-bottom: 2em;
}

.password-requirement {
  color: red;
}
.password-requirement.is-met {
  color: green;
}

/*
* MFA UI
*/
.mfa-background {
  width: 100%;
  padding-left: 50%;
}
.mfa-background .mfa {
  width: 30em;
  margin-left: -15em;
}
.mfa-background .mfa .mfa-body {
  padding-top: 5em;
  text-align: center;
}
.mfa-background .mfa .mfa-body .mfa-body-column .mfa-form .mfa-form-segment .mfa-button {
  background: #8af;
  padding: 1em;
  color: white;
  border-radius: 0.5em;
}