@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-help-container {
  position: absolute;
  right: 0;
  top: 0;
  padding: 18rem;
}
.fdx-help-container a {
  color: #666;
}
.fdx-help-container a:hover {
  color: #00a9ce;
}
.modal-header .fdx-help-container {
  position: initial;
  padding: 0;
}
.modal-header .fdx-help-container a {
  color: #999;
}
.modal-header .fdx-help-container a:hover {
  color: #00a9ce;
}
.fdx-help-text a {
  text-decoration: underline;
}
.ab-modal-container .fdx-remove {
  position: absolute;
  right: 18rem;
  top: 26rem;
  font-size: 16rem;
  cursor: pointer;
  font-weight: bold;
  --tw-text-opacity: 1;
  color: rgb(156 163 175/var(--tw-text-opacity));
}
.ab-modal-container iframe {
  display: block !important;
}

label.fdx-input-checkbox {
  margin: 0 5rem;
  -webkit-tap-highlight-color: transparent;
  font-weight: 100;
}
label.fdx-input-checkbox:not(.disabled-checkbox) {
  cursor: pointer;
}
label.fdx-input-checkbox input[type="checkbox"] {
  display: none;
}
label.fdx-input-checkbox input[type="checkbox"] + i:before {
  font-size: 24rem;
  display: inline-block;
}
label.fdx-input-checkbox input[type="checkbox"]:checked + i {
  position: relative;
}
label.fdx-input-checkbox input[type="checkbox"]:checked + i:before,
label.fdx-input-checkbox input[type="checkbox"]:checked + i + span {
  color: #3191b2;
}
label.fdx-input-checkbox input[type="checkbox"]:disabled + i:before,
label.fdx-input-checkbox input[type="checkbox"]:disabled + i + span {
  color: #bfbfbf;
}
label.fdx-input-checkbox input[type="checkbox"]:checked + i.pre-selected:before,
label.fdx-input-checkbox input[type="checkbox"]:checked + i.pre-selected + span {
  color: #3191b2 !important;
}
label.fdx-input-checkbox input[type="checkbox"]:disabled + i.pre-selected:before,
label.fdx-input-checkbox input[type="checkbox"]:disabled + i.pre-selected + span {
  color: #686868;
}
label.fdx-input-checkbox i {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-style: normal;
  color: #686868;
}
label.fdx-input-checkbox span {
  display: inline-block;
  line-height: 22rem;
  vertical-align: middle;
  color: #686868;
  margin-left: 3rem;
}
label.fdx-input-checkbox:focus {
  outline: none;
}
label.fdx-input-checkbox:focus input[type="checkbox"]:checked + i:before {
  color: rgba(62, 178, 218, 0.9);
}
label.fdx-input-checkbox:focus input[type="checkbox"]:checked:disabled + i:before,
label.fdx-input-checkbox:focus input[type="checkbox"]:checked:disabled + i + span {
  color: #bfbfbf;
}
label.fdx-input-checkbox:focus i {
  color: #9d9c9c;
}
/* The switch - the box around the slider */
.fdx-switch {
  position: relative;
  display: inline-block;
  width: 40rem;
  height: 21rem;
}
/* Hide default HTML checkbox */
.fdx-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.fdx-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fdx-slider:before {
  position: absolute;
  content: "";
  height: 16rem;
  width: 16rem;
  left: 3rem;
  bottom: 3rem;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .fdx-slider {
  background-color: #3191b2;
}
input:focus + .fdx-slider {
  box-shadow: 0 0 1px #3191b2;
}
input:checked + .fdx-slider:before {
  -webkit-transform: translateX(19rem);
  -ms-transform: translateX(19rem);
  transform: translateX(19rem);
}
/* Rounded sliders */
.fdx-slider.round {
  border-radius: 24rem;
}
.fdx-slider.round:before {
  border-radius: 50%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mdb-form-input-directive label {
  font-weight: bold;
  text-align: right;
}
.mdb-form-input-directive .remove-selection {
  color: #999;
  position: absolute;
  right: 10rem;
  cursor: pointer;
}
.mdb-form-input-directive .file-list-wrapper {
  margin-left: 5rem;
}
.mdb-form-input-directive .file-list-wrapper .list-item-text:before {
  content: "\00BB \0020 \0020";
  font-size: large;
}

label.fdx-input-radio {
  cursor: pointer;
  margin: 0 5rem;
  -webkit-tap-highlight-color: transparent;
  display: block;
}
label.fdx-input-radio.display-inline {
  display: inline-block;
  width: unset;
}
label.fdx-input-radio input[type="radio"] {
  display: none;
}
label.fdx-input-radio input[type="radio"]:checked + i {
  position: relative;
  -webkit-animation: radio-icon-anim 0.1s ease;
  animation: radio-icon-anim 0.1s ease;
}
label.fdx-input-radio input[type="radio"]:checked + i:before {
  color: #3191b2;
}
label.fdx-input-radio input[type="radio"]:checked + i + span {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  color: #3191b2;
}
label.fdx-input-radio i {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-size: 24rem;
  font-style: normal;
  color: #ccc;
}
label.fdx-input-radio span {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  color: gray;
  margin-left: 3rem;
}
@-webkit-keyframes radio-icon-anim {
  0% {
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes radio-icon-anim {
  0% {
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

fdx-select-date-range .modal-body {
  overflow: visible;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.modal-timeout-backdrop {
  z-index: 5000 !important;
}
.modal-timeout-window {
  z-index: 5001 !important;
}
.modal-timeout {
  padding-top: 30rem!important;
  padding-bottom: 15rem!important;
}
.modal-timeout > div {
  margin-bottom: 30rem;
}
.modal-timeout .remaining-time {
  font-size: 45rem;
  line-height: 40rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-color-input {
  position: relative;
  display: inline-block;
  --col-back: transparent;
  --col-frnt: black;
}
fdx-color-input .colour-input-wrapper {
  user-select: none;
  position: relative;
  display: inline-flex;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
  border: 1rem solid #d3d3d3;
  border-radius: 5rem;
}
fdx-color-input .colour-input-wrapper span.text-preview {
  background: var(--col-back);
  color: var(--col-frnt);
  transition: color 0.2s ease-in-out;
  line-height: normal;
  margin: 0;
  font-family: monospace;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0.5em 1.5em;
  user-select: text;
}
fdx-color-input .colour-input-wrapper span.text-preview.none {
  background: transparent;
  color: #d3d3d3;
}
fdx-color-input .colour-input-wrapper.disabled span.text-preview {
  font-weight: normal;
  font-style: italic;
  cursor: default;
}
fdx-color-input .colour-input-wrapper input[type='color'] {
  display: inline-block;
  width: 0rem !important;
  height: 0rem !important;
  margin: 0;
  padding: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
fdx-color-input .colour-input-wrapper button.btn {
  width: auto;
  margin: 0;
  margin-left: -1rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.password-policy {
  margin-top: 10rem;
  margin-bottom: 0;
  padding-left: 12rem / 2 + 1rem;
  font-size: 12rem;
}
.password-policy > span {
  font-weight: bold;
}
.password-policy > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.pagination-container {
  position: relative;
  text-align: center;
}
.pagination-container > .pagination-left {
  position: absolute;
  left: 0;
}
.pagination-container > .pagination-right {
  position: absolute;
  right: 0;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0;
  padding: 0;
  border-radius: 5rem;
  font-size: 0;
}
.pagination > li {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  font-size: 14rem;
}
.pagination > li > a,
.pagination > li > button,
.pagination > li > span {
  display: inline-block;
  vertical-align: middle;
  padding: 8rem 4rem;
  line-height: 20rem;
  text-decoration: none;
  background-color: transparent;
  border: none;
  margin: 1rem 0;
  margin-left: -1rem;
}
.pagination > li:first-child:after,
.pagination > li:nth-child(2):after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  content: "|";
  padding-left: 12rem;
  padding-right: 12rem;
  color: #d9d9d9;
}
.pagination > li:last-child:before,
.pagination > li:nth-last-child(2):before {
  content: "|";
  padding-right: 12rem;
  padding-left: 12rem;
  color: #d9d9d9;
}
.pagination > li > a:hover,
.pagination > li > button:hover,
.pagination > li > a:focus,
.pagination > li > button:focus {
  color: #02d2ff;
}
.pagination > .active > a,
.pagination > .active > button,
.pagination > .active > a:hover,
.pagination > .active > button:hover,
.pagination > .active > a:focus,
.pagination > .active > button:focus {
  z-index: 2;
  color: #454545;
  background-color: transparent;
  border-color: transparent;
  padding-right: 12rem;
  padding-left: 12rem;
  cursor: default;
}
.pagination > li > button:disabled {
  color: #999;
  background-color: transparent;
  border-color: #d9d9d9;
}
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999;
  background-color: transparent;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding-right: 4rem;
  padding-left: 4rem;
  font-size: 16rem;
}
.pagination-lg > li:first-child .pagination-lg > li:nth-child(2):after {
  padding-left: 12rem;
  padding-right: 12rem;
}
.pagination-lg > li:last-child:before,
.pagination-lg > li:nth-last-child(2):before {
  padding-left: 12rem;
  padding-right: 12rem;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding-right: 4rem;
  padding-left: 4rem;
  font-size: 12rem;
}
.pagination-sm > li:first-child .pagination-sm > li:nth-child(2):after {
  padding-left: 12rem;
  padding-right: 12rem;
}
.pagination-sm > li:last-child:before,
.pagination-sm > li:nth-last-child(2):before {
  padding-left: 12rem;
  padding-right: 12rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.overlay-loading-wrapper {
  position: fixed;
  width: calc(100% - 85rem);
  height: 100%;
  top: 0;
  left: 85rem;
  right: 0;
  bottom: 0;
  background-color: rgba(247, 247, 247, 0.85);
  z-index: 99999;
  opacity: 0;
  transition: 0.15s ease opacity;
}
.overlay-loading-wrapper.show-overlay {
  opacity: 1!important;
}
.loader {
  width: 45rem;
  height: 45rem;
  transform: rotateZ(0deg);
}
.loader-container {
  position: absolute;
  left: calc(50% - 22rem);
  top: calc(50% - 10rem);
}
.loader-message {
  display: block;
  position: absolute;
  width: 100%;
  height: 37rem;
  top: calc(50% + 44rem);
  text-align: center;
  font-size: 15rem;
}
.loader-message span {
  transition: 0.1s ease opacity;
  opacity: 1;
}
.loader-message.out span {
  opacity: 0;
}
.loader.loading {
  animation-name: rotate-loader;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: normal;
}
.loader .loader-circle {
  fill: #00a9ce;
  transition: fill 0.3s ease;
}
.loader .loader-path {
  fill: transparent;
  stroke: white;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40% 0% 40% 1000%;
  stroke-dashoffset: -176%;
}
.loader.success,
.loader.error {
  animation-name: none;
}
.loader.success .loader-circle {
  fill: #6aa445;
}
.loader.success .loader-path {
  animation-name: loader-success;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.loader.error .loader-circle {
  fill: #aa1c1c;
}
.loader.error .loader-path {
  animation-name: loader-error;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes rotate-loader {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@keyframes loader-success {
  0% {
    stroke-dashoffset: -176%;
  }
  100% {
    stroke-dashoffset: -44%;
  }
}
@keyframes loader-error {
  0% {
    stroke-dasharray: 40% 0% 40% 1000%;
    stroke-dashoffset: -176%;
  }
  35% {
    stroke-dasharray: 40% 0% 40% 1000%;
  }
  100% {
    stroke-dasharray: 55% 48% 55% 1000%;
    stroke-dashoffset: -1;
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
}
ngb-modal-window.modal {
  z-index: 1055;
}
.modal-dialog {
  position: relative;
  width: auto;
  z-index: 1050;
  background: #f9f9f9;
}
.modal-content {
  position: relative;
  outline: none;
  color: #4c4c4c;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  border: 1rem solid #d9d9d9;
  background-color: #fcfcfc;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0 !important;
  filter: alpha(opacity=0) !important;
}
.modal-backdrop.in {
  opacity: 0.65 !important;
  filter: alpha(opacity=65) !important;
}
.modal-backdrop.show {
  opacity: 0.65 !important;
  filter: alpha(opacity=65) !important;
}
.modal-header {
  position: relative;
  border-bottom: 1rem solid #d9d9d9;
  padding: 20rem;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}
.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header .modal-title {
  font-size: 18rem;
  color: #333;
  font-weight: bold;
  font-family: "interstate", "PT Sans", "interstate", Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  display: inline;
}
.modal-header .close,
.modal-header .fdx-help-container,
.modal-header .fdx-modal-drag-and-drop {
  display: block;
  float: right;
  opacity: 1;
  filter: alpha(opacity=100);
  font-weight: normal;
  color: #333;
  font-size: 16rem;
  line-height: 16rem;
  margin: 5rem;
  cursor: pointer;
}
.modal-header .close:hover,
.modal-header .fdx-help-container:hover,
.modal-header .fdx-modal-drag-and-drop:hover {
  color: #00a9ce;
  opacity: 1;
}
.modal-header .close:hover:disabled,
.modal-header .fdx-help-container:hover:disabled,
.modal-header .fdx-modal-drag-and-drop:hover:disabled {
  color: #333;
  opacity: 1;
  filter: alpha(opacity=100);
}
.modal-body {
  position: relative;
  padding: 15rem;
  padding-bottom: 0;
  margin-bottom: 15rem;
  max-height: calc(100vh - 260rem);
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.modal-body.confirm-modal {
  padding: 55rem 25rem 40rem;
  text-align: center;
}
.modal-body.confirm-modal .modal-icon {
  display: block;
  font-size: 25rem;
  margin-bottom: 5rem;
  color: #00a9ce;
}
.modal-body label {
  font-weight: bold;
  line-height: 38rem;
}
.modal-body .checkbox label {
  line-height: 20rem;
}
.modal-info {
  padding: 15rem 31rem 10rem;
  background-color: #e9f3f7;
  text-align: center;
  color: #00a9ce;
  margin-bottom: 15rem;
}
.modal-info .fdxicon-regular {
  float: left;
  font-size: 25rem;
  top: -3rem;
  margin-right: 5rem;
}
.modal-warn {
  padding: 15rem 31rem 10rem;
  background-color: #fbf5bb;
  text-align: center;
  color: #961414;
  margin-bottom: 15rem;
}
.modal-warn .fdxicon-regular {
  float: left;
  font-size: 25rem;
  top: -3rem;
  margin-right: 5rem;
}
.modal-footer {
  position: relative;
  padding: 0 15rem 15rem 15rem;
  text-align: right;
  display: flex;
  justify-content: space-around;
}
.scrolling .modal-footer {
  border-top: 1rem solid #cfcfcf;
  padding: 14rem 15rem 15rem;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn {
  width: 100%;
}
.modal-footer .btn + .btn {
  margin-left: 5rem;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1rem;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollable.modal,
.modal-expanded.modal {
  overflow: hidden;
  overflow-y: hidden;
}
.modal-scrollable .modal-dialog,
.modal-expanded .modal-dialog {
  display: block;
  max-height: calc(100% - 140rem);
}
.modal-scrollable .modal-body,
.modal-expanded .modal-body {
  max-height: 515rem;
  overflow-y: auto;
}
.modal-expanded .modal-body {
  height: 70%;
  min-height: 360rem;
}
.modal-fitted .modal-body {
  padding: 0;
}
.modal-dialog {
  margin: 55rem auto;
  width: auto;
  outline: none;
  max-width: 768rem;
}
.modal-dialog.modal-max {
  max-width: none;
  width: 90%;
}
.modal-dialog.modal-xl {
  max-width: 1536rem;
}
.modal-dialog.modal-lg {
  max-width: 1152rem;
}
.modal-dialog.modal-md {
  max-width: 768rem;
}
.modal-dialog.modal-sm {
  max-width: 576rem;
}
.fdx-modal-drag-and-drop {
  cursor: pointer;
}
.fdx-modal-drag-and-drop:hover {
  color: #0085a2;
}
#fdxWhatsNewModal #fdxWhatsNewModalHeader {
  margin: 10rem 0 10rem 0;
  text-transform: uppercase;
  line-height: 40rem;
  color: #4c4c4c;
  font-size: 16rem;
  letter-spacing: 1px;
  font-weight: bold;
  border-bottom: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.05);
  padding-bottom: 10rem;
}
#fdxWhatsNewModal #fdxWhatsNewModalHeader .fdx-whats-new {
  font-size: 22rem;
  padding-left: 20rem;
}
#fdxWhatsNewModal #fdxWhatsNewModalHeader .header-text {
  padding: 0 0 5rem 25rem;
}
#fdxWhatsNewModal .fdx-remove {
  margin: 10rem 20rem 0 0;
  opacity: 1!important;
  font-weight: normal;
  color: #333;
  font-size: 16rem;
  line-height: 16rem;
  cursor: pointer;
}
#fdxWhatsNewModal .fdx-modal-drag-and-drop {
  margin: 10rem 12rem 0 0;
  font-size: 11rem;
  float: right;
  font-weight: normal;
  color: #333;
  font-size: 16rem;
  line-height: 16rem;
  cursor: pointer;
}
#fdxWhatsNewModal .whats-new-text {
  max-width: 425rem;
  padding: 40rem 40rem 55rem 65rem;
}
#fdxWhatsNewModal .whats-new-text h2 {
  font-weight: bolder;
}
#fdxWhatsNewModal .whats-new-image {
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.09);
  border-radius: 30px;
  width: 596rem!important;
  height: 350rem!important;
  float: right;
  margin: 10rem 70rem 0 0;
}
#fdxWhatsNewModal .modal-footer {
  padding: 20px 15rem 15rem 20rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-user-settings .modal-body {
  overflow-x: hidden!important;
}
fdx-user-settings .edit-profile-settings .property-value {
  margin: 9rem 0;
}
fdx-user-settings .edit-profile-settings .profile-image-hint {
  margin: 10rem;
  text-align: center;
}
fdx-user-settings .edit-profile-settings .profile-image-large {
  width: 128rem;
  height: 128rem;
  border: 1rem solid #d3d3d3;
  vertical-align: middle;
}
fdx-user-settings .edit-profile-settings .profile-image-small {
  position: absolute;
  left: 150rem;
  border-radius: 50%;
  width: 32rem;
  height: 32rem;
  border: 1rem solid #d3d3d3;
  vertical-align: middle;
}
fdx-user-settings .edit-profile-settings .profile-image-icon.fdxicon-regular {
  margin: auto;
  font-size: 100rem;
  padding: 10rem 14rem;
  color: #d3d3d3;
  border: 1rem solid #d3d3d3;
  background-color: #f6f6f6;
  box-sizing: content-box;
}
fdx-user-settings .edit-profile-settings .alert.alert-danger {
  margin: 10rem -4rem;
  border: 2rem solid #aa1c1c;
  padding: 15rem 10rem;
  text-align: center;
  background: #fcfcfc;
}
fdx-user-settings .edit-profile-settings .alert.alert-danger .alert-icon {
  margin-top: -4rem;
}
fdx-user-settings .edit-profile-settings .alert.alert-danger .fdxicon-regular {
  font-size: 28rem;
}
fdx-user-settings .change-email {
  margin-left: 10rem;
}

fdx-user-permissions .view-user-permissions {
  min-height: 100rem;
}
fdx-user-permissions .view-user-permissions-header {
  margin-top: 0;
}
fdx-user-permissions .view-user-permissions-list-item {
  width: 50%;
  display: inline-block;
  margin: 0.75% 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-main-nav {
  width: 85rem;
  height: 100%;
  z-index: 1005;
}
.fdx-main-nav.dark-theme {
  background-color: #323232;
  color: #fff;
}
.fdx-main-nav.dark-theme .fdx-main-nav-item.disabled-item {
  color: rgba(255, 255, 255, 0.3);
}
.fdx-main-nav.light-theme {
  background-color: #fff;
  color: #888c99;
}
.fdx-main-nav.light-theme .fdx-main-nav-item.disabled-item {
  color: rgba(137, 141, 154, 0.4);
}
.fdx-main-nav .current-hovered-menu-item.show-active-styling {
  color: #00a9ce;
}
.fdx-main-nav .current-hovered-menu-item.show-active-styling .fdx-main-nav-item-image {
  color: #00a9ce;
}
.fdx-main-nav .current-hovered-menu-item.show-active-styling .fdx-main-nav-item-arrow {
  display: block;
  transition: width 1s;
}
.fdx-main-nav .ryze-image {
  width: 85rem;
  padding: 20rem;
}
.fdx-main-nav-menu {
  overflow-y: auto;
  direction: rtl;
  height: calc(100vh - 185rem);
  padding: 0;
}
.fdx-main-nav-menu-has-scrollbar {
  border-top: 2rem solid #595959;
}
.fdx-main-nav-footer {
  padding: 0;
  position: absolute;
  width: 85rem;
  bottom: 0;
}
.fdx-main-nav ul {
  list-style: none;
}
.fdx-main-nav.sub-menu-visible fdx-sub-nav .fdx-sub-nav {
  width: 300rem;
  transition: width 0.5s;
}
fdx-sub-nav .fdx-sub-nav:not(.minimizing-sub-menu):hover {
  width: 300rem;
  transition: width 0.5s;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-main-nav-item {
  display: block;
  position: relative;
  padding: 12rem 5rem 7rem;
}
.fdx-main-nav-item.active-state {
  color: #00a9ce;
}
.fdx-main-nav-item.active-state .fdx-main-nav-icon-image {
  border-color: #00a9ce;
}
.fdx-main-nav-item:not(.disabled-item):hover {
  color: #00a9ce;
  cursor: pointer;
}
.fdx-main-nav-item:not(.disabled-item):hover .fdx-main-nav-item-image {
  border-color: #00a9ce;
}
.fdx-main-nav-item:not(.disabled-item):hover.has-sub-menu .fdx-main-nav-item-arrow {
  display: block;
  transition: width 1s;
}
.fdx-main-nav-item-arrow {
  border-top: 8rem solid transparent;
  border-bottom: 8rem solid transparent;
  border-right: 8rem solid #00a9ce;
  display: none;
  position: absolute;
  right: 0;
  top: 33%;
}
.fdx-main-nav-item .swap-animation.ng-enter {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: 1s;
  position: absolute;
}
.fdx-main-nav-item .swap-animation.ng-leave {
  opacity: 1;
  animation-name: fadeOutOpacity;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: 1s;
  position: absolute;
}
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutOpacity {
  0% {
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
  }
}
.fdx-main-nav-item-default {
  font-size: 28rem !important;
  width: 100% !important;
  margin: 0;
  text-align: center;
}
.fdx-main-nav-item-image {
  border-radius: 50%;
  width: 40rem;
  height: 40rem;
  border: 2rem solid #a2a2a2;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  background: #fcfcfc;
}
.fdx-main-nav-item-notification {
  position: absolute;
  color: white;
  background-color: #cc2929;
  border-radius: 50rem;
  height: 18rem;
  width: 18rem;
  text-align: center;
  right: 15rem;
  top: 6rem;
  display: flex;
  justify-content: center;
}
.fdx-main-nav-item-notification-text {
  font-size: 10rem;
  line-height: 19rem;
  vertical-align: top;
}
.fdx-main-nav-item-label {
  text-align: center;
  margin: 0;
  font-size: 12rem;
  overflow-wrap: break-word;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-sub-nav {
  background-color: #00a9ce;
  height: 100%;
  width: 0;
  transition: width 0.4s;
  position: absolute;
  z-index: 1005;
  top: 0;
  left: 85rem;
  overflow: hidden;
  -webkit-box-shadow: 31rem 7rem 54rem -27rem rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 31rem 7rem 54rem -27rem rgba(0, 0, 0, 0.5);
  box-shadow: 31rem 7rem 54rem -27rem rgba(0, 0, 0, 0.5);
}
.fdx-sub-nav-content {
  width: 300rem;
}
.fdx-sub-nav-header {
  padding: 15rem 20rem 10rem;
  color: #fff;
}
.fdx-sub-nav-header-label {
  font-size: 20rem;
  margin: 5rem 10rem;
  vertical-align: text-bottom;
}
.fdx-sub-nav-header-icon {
  font-size: 22rem !important;
  vertical-align: top;
}
.fdx-sub-nav-menu {
  list-style-type: none;
  padding: 0;
  color: #fff;
}
.fdx-sub-nav-menu-item {
  padding: 11rem 15rem;
  margin: 0 11rem;
  border-bottom: 1rem solid rgba(255, 255, 255, 0.5);
}
.fdx-sub-nav-menu-item-container {
  width: 100%;
  height: 100%;
}
.fdx-sub-nav-menu-item-label {
  display: inline-block;
  margin: 0 0 0 8rem;
  font-size: 18rem;
}
.fdx-sub-nav-menu-item-icon {
  font-size: 20rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}
.fdx-sub-nav-menu-item-desc {
  font-size: 14rem;
  margin: 3rem 0;
}
.fdx-sub-nav-menu-item:hover {
  cursor: pointer;
}
.fdx-sub-nav-menu-item:hover .fdx-sub-nav-menu-item-icon {
  color: #fff;
}
.fdx-sub-nav-menu-item:first-child {
  border-top: 1rem solid rgba(255, 255, 255, 0.5);
}


@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-logs button {
  line-height: 16rem;
  position: relative;
}
fdx-logs button span:nth-of-type(2) {
  margin-left: 5rem;
}
fdx-logs button:focus {
  outline: none;
}
#mdblViewContainer fdx-logs {
  display: inline-block;
}
.modal.fdx-logs-modal .modal-dialog.modal-max {
  margin: 30rem auto;
  width: 90% !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container {
  display: flex;
  min-height: 80vh;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container.closed .logs-content {
  margin-left: 0;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container.closed .logs-filters {
  left: -360rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease all;
  width: 360rem;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  background-color: #fff;
  z-index: 2;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied {
  text-align: right;
  margin-bottom: 20rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  color: #949494;
  font-size: 11rem;
  text-transform: uppercase;
  text-align: right;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div:nth-of-type(1) {
  margin-right: 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div .fdxicon-regular {
  font-size: 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div.no-filters {
  cursor: not-allowed;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list {
  padding: 15rem 15rem 0;
  overflow: auto;
  height: 90%;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group {
  margin-bottom: 15rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-title {
  position: relative;
  margin-bottom: 8rem;
  border-bottom: 1rem solid #d9d9d9;
  font: 14rem;
  padding-bottom: 5rem;
  font-weight: bold;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-body {
  position: relative;
  padding: 0 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-property {
  margin-bottom: 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-property #dateRangeComponent .col-md-6 {
  width: 100% !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-property p.input-group {
  margin: 0 !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1rem solid #d9d9d9;
  height: 10%;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-button-container button {
  width: 90%;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content {
  width: 100%;
  position: relative;
  margin-left: 360rem;
  transition: 0.3s ease all;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters {
  position: absolute;
  left: -13rem;
  top: 5rem;
  padding: 5rem 10rem !important;
  transition: 0.3s ease all;
  overflow: hidden;
  color: #00a9ce;
  background-color: #fff;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  border: 1rem solid #E1E1E1;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  white-space: nowrap;
  width: 35rem;
  line-height: 16rem;
  z-index: 5;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters .browse-message {
  padding-left: 5rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters:focus {
  outline: none !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters:hover {
  width: 118rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .download {
  position: absolute;
  top: 10rem;
  right: 60rem;
  z-index: 2;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-result {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-result .download-dropdown {
  width: 140rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-result .download-dropdown li {
  padding: 7rem;
  text-align: center;
  transition: background-color ease-in-out 0.3s;
  cursor: pointer;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-result .download-dropdown li:hover,
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-result .download-dropdown li.active {
  background: #d7e8ef;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-load-all-filter {
  position: absolute;
  top: 0;
  right: 166rem;
  z-index: 2;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .load-more {
  position: relative;
  height: 20rem;
  margin: 20rem 0 20rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .spinner {
  z-index: 1;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .fdx-smart-table .fdx-smart-table-controls {
  display: block !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content #columnVisibility .dropdown-menu {
  left: -166rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .fdx-smart-table-wrapper {
  height: 67vh !important;
  overflow: auto;
  margin-top: 20rem !important;
}
.menu-expanded fdx-logs {
  left: 230rem;
}
fdx-logs-modal #searchFilters {
  padding-top: 10rem;
  padding-left: 0;
  position: relative;
}
fdx-logs-modal #searchFilters ul {
  padding: 0;
  list-style: none;
}
fdx-logs-modal #searchFilters ul button {
  padding: 5rem;
}
fdx-logs-modal #searchFilters ul button span {
  font-size: 12rem;
}
fdx-logs-modal .mdb-load-logs {
  min-height: 360rem;
}
fdx-logs-modal .mdb-load-logs span {
  text-align: center;
  font-style: italic;
  color: #999;
  position: absolute;
  top: 180rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5001;
}
fdx-logs-modal .modal-body {
  max-height: none;
  margin-bottom: 0rem;
  overflow: hidden;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-logs-angular button {
  line-height: 16rem;
  position: relative;
}
fdx-logs-angular button span:nth-of-type(2) {
  margin-left: 5rem;
}
fdx-logs-angular button:focus {
  outline: none;
}
#mdblViewContainer fdx-logs {
  display: inline-block;
}
.modal.fdx-logs-modal .modal-dialog.modal-max {
  margin: 30rem auto;
  width: 90% !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container {
  display: flex;
  min-height: 80vh;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container.closed .logs-content {
  margin-left: 0;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container.closed .logs-filters {
  left: -360rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease all;
  width: 360rem;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  background-color: #fff;
  z-index: 2;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied {
  text-align: right;
  margin-bottom: 20rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  color: #949494;
  font-size: 11rem;
  text-transform: uppercase;
  text-align: right;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div:nth-of-type(1) {
  margin-right: 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div .fdxicon-regular {
  font-size: 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-applied .filter-options div.no-filters {
  cursor: not-allowed;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list {
  padding: 15rem 15rem 0;
  overflow: auto;
  height: 90%;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group {
  margin-bottom: 15rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-title {
  position: relative;
  margin-bottom: 8rem;
  border-bottom: 1rem solid #d9d9d9;
  font: 14rem;
  padding-bottom: 5rem;
  font-weight: bold;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-body {
  position: relative;
  padding: 0 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-property {
  margin-bottom: 10rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-property #dateRangeComponent .col-md-6 {
  width: 100% !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-list > .group .group-filters-property p.input-group {
  margin: 0 !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1rem solid #d9d9d9;
  height: 10%;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-filters-button-container button {
  width: 90%;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content {
  width: 100%;
  position: relative;
  margin-left: 360rem;
  transition: 0.3s ease all;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters {
  position: absolute;
  left: -13rem;
  top: 5rem;
  padding: 5rem 10rem !important;
  transition: 0.3s ease all;
  overflow: hidden;
  color: #00a9ce;
  background-color: #fff;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  border: 1rem solid #E1E1E1;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  white-space: nowrap;
  width: 33rem;
  line-height: 16rem;
  z-index: 5;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters .browse-message {
  padding-left: 5rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters:focus {
  outline: none !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .log-hide-filters:hover {
  width: 118rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .download {
  position: absolute;
  top: 0;
  right: 50rem;
  z-index: 2;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .download button {
  display: flex;
  align-items: center;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content-result {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .load-more {
  position: relative;
  height: 20rem;
  margin: 20rem 0 20rem;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .spinner {
  z-index: 1;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .fdx-smart-table .fdx-smart-table-controls {
  display: block !important;
}
.modal.fdx-logs-modal .modal-dialog.modal-max .logs-container .logs-content .fdx-smart-table-wrapper {
  height: 67vh !important;
  position: unset !important;
  margin-top: 20rem !important;
}
.menu-expanded fdx-logs {
  left: 230rem;
}
fdx-logs-modal #searchFilters {
  padding-top: 10rem;
  padding-left: 0;
  position: relative;
}
fdx-logs-modal #searchFilters ul {
  padding: 0;
  list-style: none;
}
fdx-logs-modal #searchFilters ul button {
  padding: 5rem;
}
fdx-logs-modal #searchFilters ul button span {
  font-size: 12rem;
}
fdx-logs-modal .mdb-load-logs {
  min-height: 300rem;
}
fdx-logs-modal .mdb-load-logs span {
  text-align: center;
  font-style: italic;
  color: #999;
  position: absolute;
  top: 180rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5001;
}
fdx-logs-modal .modal-body {
  max-height: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.logs-filters-applied .logs-current-filters {
  position: relative;
  border: 1rem solid #d3d3d3;
  background: #fcfcfc;
  margin-top: 5rem;
}
.logs-filters-applied .logs-current-filters .current-filter {
  text-align: left;
  border-bottom: 1rem solid #d3d3d3;
  padding: 7rem;
  position: relative;
}
.logs-filters-applied .logs-current-filters .current-filter-wrapper {
  width: 95%;
}
.logs-filters-applied .logs-current-filters .current-filter:nth-of-type(odd) {
  background: #fff;
}
.logs-filters-applied .logs-current-filters .current-filter:last-child {
  margin-bottom: 0;
}
.logs-filters-applied .logs-current-filters .current-filter .filter-value {
  font-weight: bold;
  max-width: 290rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.logs-filters-applied .logs-current-filters .current-filter .fdx-circle-remove {
  color: #999;
  cursor: pointer;
  position: absolute;
  right: 8rem;
  top: 8rem;
}
.logs-filters-applied .logs-current-filters .current-filter span {
  display: inline-block;
}
.logs-filters-applied .logs-current-filters .current-filter .filter-item {
  padding-right: 5rem;
}
.logs-filters-applied .logs-current-filters-msg {
  text-align: left;
  padding: 8rem;
  border-bottom: 1rem solid #d3d3d3;
  cursor: pointer;
  background: #f5f5f5;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.logs-filters-applied .logs-current-filters {
  position: relative;
  border: 1rem solid #d3d3d3;
  background: #fcfcfc;
  margin-top: 5rem;
}
.logs-filters-applied .logs-current-filters .current-filter {
  text-align: left;
  border-bottom: 1rem solid #d3d3d3;
  padding: 7rem;
  position: relative;
}
.logs-filters-applied .logs-current-filters .current-filter-wrapper {
  width: 95%;
}
.logs-filters-applied .logs-current-filters .current-filter:nth-of-type(odd) {
  background: #fff;
}
.logs-filters-applied .logs-current-filters .current-filter:last-child {
  margin-bottom: 0;
}
.logs-filters-applied .logs-current-filters .current-filter .filter-value {
  font-weight: bold;
  max-width: 290rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
.logs-filters-applied .logs-current-filters .current-filter .fdx-circle-remove {
  color: #999;
  cursor: pointer;
  position: absolute;
  right: 8rem;
  top: 8rem;
}
.logs-filters-applied .logs-current-filters .current-filter span {
  display: inline-block;
  padding-right: 5rem;
}
.logs-filters-applied .logs-current-filters .current-filter .filter-item {
  padding-right: 5rem;
}
.logs-filters-applied .logs-current-filters-msg {
  text-align: left;
  padding: 8rem;
  border-bottom: 1rem solid #d3d3d3;
  cursor: pointer;
  background: #f5f5f5;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-icon-menu .sticky {
  margin-left: 6rem;
  display: inline-flex;
  vertical-align: middle !important;
  cursor: pointer;
}
fdx-icon-menu .sticky-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-content: center;
}
fdx-icon-menu .sticky-button {
  flex-basis: 40rem;
  text-align: center;
  padding: 8rem 0 0 !important;
}
fdx-icon-menu .sticky .fdx-elipsis {
  line-height: 20rem;
}
fdx-icon-menu .sticky .rules-warning {
  color: #ce6c0d;
}
fdx-icon-menu .sticky .fdxicon-regular {
  color: #00a9ce;
}
fdx-icon-menu .sticky .individual-remove.disabled {
  color: #e5e5e5;
  cursor: not-allowed;
}
fdx-icon-menu .icon-menu {
  border: 1rem solid lightgrey;
  display: inline-flex;
  border-radius: 5em;
  overflow: hidden;
}
fdx-icon-menu .icon-menu .menu-icon {
  width: auto;
  margin: 0;
  padding: 0.55em;
  border-radius: 5em;
  font-size: 1.1em;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  box-shadow: 0 0 0 1rem hsl(0, 0%, 95%);
  transition: box-shadow 0.3s, background-color 0.3s, color 0.3s;
  cursor: default;
}
fdx-icon-menu .icon-menu .action-button {
  width: auto;
  margin: 0;
  padding: 0.55em;
  border-radius: 5em;
  color: #38aace;
  transition: background-color 0.2s, color 0.2s;
  font-size: 1.1em;
  cursor: pointer;
}
fdx-icon-menu .icon-menu .action-button.rules {
  color: #ce6c0d;
}
fdx-icon-menu .icon-menu .action-button.rules:hover,
fdx-icon-menu .icon-menu .action-button.rules.hover {
  background: #ce6c0d;
  color: white;
}
fdx-icon-menu .icon-menu .action-button:hover {
  background: #38aace;
  color: white;
}
fdx-icon-menu .icon-menu .action-button.disabled,
fdx-icon-menu .icon-menu .action-button[disabled],
fdx-icon-menu .icon-menu .action-button.disabled:hover,
fdx-icon-menu .icon-menu .action-button[disabled]:hover {
  color: rgba(0, 0, 0, 0.1);
  background-color: transparent;
  cursor: default;
}
fdx-icon-menu .icon-menu .action-list {
  display: inline-flex;
  overflow: hidden;
}
fdx-icon-menu .icon-menu:hover .menu-icon,
fdx-icon-menu .icon-menu.keep-open .menu-icon {
  box-shadow: 0 0 0 24.2em hsl(0, 0%, 95%);
}
fdx-icon-menu .icon-menu.collapsable .action-list.collapsable-actions {
  max-width: 0;
  transition: max-width 0.3s;
}
fdx-icon-menu .icon-menu.collapsable:hover .action-list.collapsable-actions,
fdx-icon-menu .icon-menu.collapsable.keep-open .action-list.collapsable-actions {
  max-width: 24.2em;
}
fdx-icon-menu .icon-menu.right {
  flex-direction: row-reverse;
}
.action-list-rules {
  padding: 2rem !important;
}
.action-list-rules .drpdwn-rule-entry {
  padding: 2rem 5rem;
  line-height: 23rem;
}
.action-list-rules .drpdwn-rule-entry.editable {
  position: relative;
  margin-left: 0;
  width: 100%;
}
.action-list-rules .drpdwn-rule-entry.editable .rule-entry-text {
  width: calc(100% - 37rem);
  display: inline-block;
  font-size: 13rem;
}
.action-list-rules .drpdwn-rule-entry.editable .fdxicon-regular {
  margin-top: 6rem;
  vertical-align: top;
}
.action-list-rules .drpdwn-rule-entry-text {
  color: #97510b;
}
.action-list-rules .drpdwn-rule-entry-text:before {
  color: #ce6c0d;
  content: '\2023';
  font-size: 16rem;
  margin-right: 3rem;
  vertical-align: top;
}
.action-list-rules .drpdwn-rule-entry .fdxicon-regular {
  cursor: pointer;
  font-size: 13rem;
  color: #ce6c0d;
  margin-top: 3rem;
}
.action-list-rules .drpdwn-rule-entry .fdxicon-regular:hover {
  color: #97510b;
}
.action-rules.dropdown-menu li {
  cursor: pointer;
  padding: 7rem;
  text-align: center;
}
.action-rules.dropdown-menu li:hover {
  background: #d7e8ef;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#openIconParentMenu {
  overflow-y: unset !important;
  width: 230rem !important;
}
#openIconParentMenu menu-items > fdx-icon-menu li {
  border-bottom: none;
}
#openIconParentMenu menu-items > fdx-icon-menu:nth-child(1) > li > ul {
  top: 1rem !important;
}
#openIconParentMenu menu-items > fdx-icon-menu:nth-child(2) > li > ul {
  top: 36rem !important;
}
#openIconParentMenu menu-items > fdx-icon-menu:nth-child(3) > li > ul {
  top: 72rem !important;
}
#openIconParentMenu menu-items > fdx-icon-menu:nth-child(4) > li > ul {
  top: 104rem !important;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu {
  position: absolute;
  display: block;
  right: 100%;
  margin-top: -1px;
  left: auto;
  overflow-y: visible;
  padding: 0 !important;
  border: none !important;
  -webkit-box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  width: 230rem !important;
  left: 230rem !important;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li {
  color: #333;
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li:first-child {
  border-top: 1px solid #d3d3d3;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li.disabled {
  color: #d3d3d3 !important;
  font-weight: normal!important;
  font-style: italic;
  cursor: not-allowed;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li.disabled:hover {
  color: #d3d3d3;
  background: white;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li.disabled:hover.rule,
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li.disabled:hover.rule-entry {
  color: #d3d3d3;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .fdxicon-regular:not(.fdx-edit):not(.fdx-remove) {
  margin: 8rem 12rem;
  font-size: 16rem;
  height: 18rem;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .fdx-edit,
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .fdx-remove {
  cursor: pointer;
  font-size: 11rem;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li span:not(.fdxicon-regular):not(.fdxicon-outline) {
  flex: 1;
  font: bold 9rem "PT Sans", "interstate", Helvetica, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 10rem 10rem 10rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li:hover:not(.rule-entry) {
  color: white;
  background: #3caace;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li.rule,
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li.rule-entry {
  color: #ce6c0d;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-text {
  width: 90rem;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-add,
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-remove {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-add span,
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-remove span {
  font-size: 14rem;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-add:hover,
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-remove:hover {
  color: white;
  background: #3caace;
}
#openIconParentMenu .dropdown-submenu:hover .dropdown-menu li .rule-entry-add {
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
fdx-icon-parent-menu .sticky {
  margin-left: 6rem;
  display: inline-flex;
  vertical-align: middle !important;
}
fdx-icon-parent-menu .sticky-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-content: center;
}
fdx-icon-parent-menu .sticky-button {
  flex-basis: 40rem;
  text-align: center;
  padding: 8rem 0 0 !important;
}
fdx-icon-parent-menu .sticky .fdx-elipsis {
  line-height: 20rem;
}
fdx-icon-parent-menu .sticky .rules-warning {
  color: #ce6c0d;
}
fdx-icon-parent-menu .sticky .fdxicon-regular {
  vertical-align: baseline !important;
}
fdx-icon-parent-menu .sticky .individual-remove.disabled {
  color: #e5e5e5;
  cursor: not-allowed;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-icon-cta {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
fdx-icon-cta > span {
  pointer-events: none;
  display: block;
  text-align: center;
}
fdx-icon-cta > span > span.cta-icon {
  display: block;
  position: relative;
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  border-width: 3rem;
  border-style: solid;
  margin: 0 auto;
  margin-bottom: 8rem;
  box-sizing: border-box;
}
fdx-icon-cta > span > span.cta-icon > span {
  position: absolute;
  font-size: 42rem;
  left: 50%;
  margin-left: -21rem;
  top: 50%;
  margin-top: -21rem;
}
fdx-icon-cta > span > span.cta-icon > img {
  position: absolute;
  width: 94rem;
  height: 94rem;
}
fdx-icon-cta > span > span.cta-icon > span.cta-badge {
  display: block;
  position: absolute;
  margin: 0;
  top: -6rem;
  right: -12rem;
  left: auto;
  bottom: auto;
  padding: 3rem 10rem;
  color: #fff;
  background-color: #A5A5A5;
  font-size: 14rem;
  border-radius: 17rem;
}
fdx-icon-cta > span.cta-title {
  font-weight: bold;
  font-size: 14rem;
  line-height: 20rem;
}
fdx-icon-cta > span.cta-text {
  font-weight: normal;
  font-size: 14rem;
  color: #666;
  line-height: 20rem;
}
.dragged-over .droppable > span > span.cta-icon {
  border-style: dashed;
}
.cta-default > span > span.cta-icon {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  border-color: #A5A5A5;
  color: #A5A5A5;
  background-color: #FBFBFB;
}
.cta-default > span > span > span.cta-badge {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.cta-default > span.cta-title {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #999;
}
.cta-default.droppable.dragged-over > span > span.cta-icon {
  border-style: solid;
  border-color: #00a9ce;
  color: #00a9ce;
}
.cta-default.droppable.dragged-over > span > span.cta-icon > .cta-badge {
  background-color: #00a9ce;
}
.cta-default:hover > span > span.cta-icon,
.cta-default:focus > span > span.cta-icon {
  border-color: #00a9ce;
  color: #00a9ce;
  background-color: #FFF;
}
.cta-default:hover > span > span.cta-icon > span.cta-badge,
.cta-default:focus > span > span.cta-icon > span.cta-badge {
  background-color: #00a9ce;
}
.cta-default:hover > span.cta-title,
.cta-default:focus > span.cta-title {
  color: #00a9ce;
}
.cta-compare > span > span.cta-icon {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  border-color: #A5A5A5;
  color: #A5A5A5;
  background-color: #FFF;
}
.cta-compare > span > span > span.cta-badge {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.cta-compare > span.cta-title {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #AFCB37;
}
.cta-compare.droppable.dragged-over > span > span.cta-icon {
  border-style: solid;
  border-color: #AFCB37;
  color: #AFCB37;
}
.cta-compare.droppable.dragged-over > span > span.cta-icon > .cta-badge {
  background-color: #AFCB37;
}
.cta-compare:hover > span > span.cta-icon,
.cta-compare:focus > span > span.cta-icon {
  border-color: #AFCB37;
  color: #AFCB37;
  background-color: #FFF;
}
.cta-compare:hover > span > span.cta-icon > span.cta-badge,
.cta-compare:focus > span > span.cta-icon > span.cta-badge {
  background-color: #AFCB37;
}
.cta-compare:hover > span.cta-title,
.cta-compare:focus > span.cta-title {
  color: #AFCB37;
}
.cta-convert > span > span.cta-icon {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  border-color: #A5A5A5;
  color: #A5A5A5;
  background-color: #FFF;
}
.cta-convert > span > span > span.cta-badge {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.cta-convert > span.cta-title {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #A70064;
}
.cta-convert.droppable.dragged-over > span > span.cta-icon {
  border-style: solid;
  border-color: #A70064;
  color: #A70064;
}
.cta-convert.droppable.dragged-over > span > span.cta-icon > .cta-badge {
  background-color: #A70064;
}
.cta-convert:hover > span > span.cta-icon,
.cta-convert:focus > span > span.cta-icon {
  border-color: #A70064;
  color: #A70064;
  background-color: #FFF;
}
.cta-convert:hover > span > span.cta-icon > span.cta-badge,
.cta-convert:focus > span > span.cta-icon > span.cta-badge {
  background-color: #A70064;
}
.cta-convert:hover > span.cta-title,
.cta-convert:focus > span.cta-title {
  color: #A70064;
}
.cta-publish > span > span.cta-icon {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  border-color: #A5A5A5;
  color: #A5A5A5;
  background-color: #FFF;
}
.cta-publish > span > span > span.cta-badge {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.cta-publish > span.cta-title {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #008AAB;
}
.cta-publish.droppable.dragged-over > span > span.cta-icon {
  border-style: solid;
  border-color: #008AAB;
  color: #008AAB;
}
.cta-publish.droppable.dragged-over > span > span.cta-icon > .cta-badge {
  background-color: #008AAB;
}
.cta-publish:hover > span > span.cta-icon,
.cta-publish:focus > span > span.cta-icon {
  border-color: #008AAB;
  color: #008AAB;
  background-color: #FFF;
}
.cta-publish:hover > span > span.cta-icon > span.cta-badge,
.cta-publish:focus > span > span.cta-icon > span.cta-badge {
  background-color: #008AAB;
}
.cta-publish:hover > span.cta-title,
.cta-publish:focus > span.cta-title {
  color: #008AAB;
}
.cta-validate > span > span.cta-icon {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  border-color: #A5A5A5;
  color: #A5A5A5;
  background-color: #FFF;
}
.cta-validate > span > span > span.cta-badge {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.cta-validate > span.cta-title {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #FF5000;
}
.cta-validate.droppable.dragged-over > span > span.cta-icon {
  border-style: solid;
  border-color: #FF5000;
  color: #FF5000;
}
.cta-validate.droppable.dragged-over > span > span.cta-icon > .cta-badge {
  background-color: #FF5000;
}
.cta-validate:hover > span > span.cta-icon,
.cta-validate:focus > span > span.cta-icon {
  border-color: #FF5000;
  color: #FF5000;
  background-color: #FFF;
}
.cta-validate:hover > span > span.cta-icon > span.cta-badge,
.cta-validate:focus > span > span.cta-icon > span.cta-badge {
  background-color: #FF5000;
}
.cta-validate:hover > span.cta-title,
.cta-validate:focus > span.cta-title {
  color: #FF5000;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.user-group-select__properties {
  padding-left: 2em;
}
.user-group-select__properties ul {
  padding-left: 0;
}
.user-group-select__properties li {
  list-style: none;
  text-transform: capitalize;
}
.user-group-select__properties li:hover {
  cursor: pointer;
  color: #00a9ce;
}
.user-group-select__properties__editname {
  padding-left: 0 !important;
  margin-bottom: 1em;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.user-group-select__properties {
  padding-left: 2em;
}
.user-group-select__properties ul {
  padding-left: 0;
}
.user-group-select__properties li {
  list-style: none;
  text-transform: capitalize;
}
.user-group-select__properties li:hover {
  cursor: pointer;
  color: #00a9ce;
}
.user-group-select__properties li .fdxicon-regular {
  margin-left: 0.3em;
  vertical-align: middle;
}
.user-group-select__properties__editname {
  padding-left: 0 !important;
  margin-bottom: 1em;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
}
ngb-modal-window.modal {
  z-index: 1055;
}
.modal-dialog {
  position: relative;
  width: auto;
  z-index: 1050;
  background: #f9f9f9;
}
.modal-content {
  position: relative;
  outline: none;
  color: #4c4c4c;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  border: 1rem solid #d9d9d9;
  background-color: #fcfcfc;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0 !important;
  filter: alpha(opacity=0) !important;
}
.modal-backdrop.in {
  opacity: 0.65 !important;
  filter: alpha(opacity=65) !important;
}
.modal-backdrop.show {
  opacity: 0.65 !important;
  filter: alpha(opacity=65) !important;
}
.modal-header {
  position: relative;
  border-bottom: 1rem solid #d9d9d9;
  padding: 20rem;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}
.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header .modal-title {
  font-size: 18rem;
  color: #333;
  font-weight: bold;
  font-family: "interstate", "PT Sans", "interstate", Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  display: inline;
}
.modal-header .close,
.modal-header .fdx-help-container,
.modal-header .fdx-modal-drag-and-drop {
  display: block;
  float: right;
  opacity: 1;
  filter: alpha(opacity=100);
  font-weight: normal;
  color: #333;
  font-size: 16rem;
  line-height: 16rem;
  margin: 5rem;
  cursor: pointer;
}
.modal-header .close:hover,
.modal-header .fdx-help-container:hover,
.modal-header .fdx-modal-drag-and-drop:hover {
  color: #00a9ce;
  opacity: 1;
}
.modal-body {
  position: relative;
  padding: 15rem;
  padding-bottom: 0;
  margin-bottom: 15rem;
  max-height: calc(100vh - 260rem);
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.modal-body.confirm-modal {
  padding: 55rem 25rem 40rem;
  text-align: center;
}
.modal-body.confirm-modal .modal-icon {
  display: block;
  font-size: 25rem;
  margin-bottom: 5rem;
  color: #00a9ce;
}
.modal-body label {
  font-weight: bold;
  line-height: 38rem;
}
.modal-body .checkbox label {
  line-height: 20rem;
}
.modal-info {
  padding: 15rem 31rem 10rem;
  background-color: #e9f3f7;
  text-align: center;
  color: #00a9ce;
  margin-bottom: 15rem;
}
.modal-info .fdxicon-regular {
  float: left;
  font-size: 25rem;
  top: -3rem;
  margin-right: 5rem;
}
.modal-warn {
  padding: 15rem 31rem 10rem;
  background-color: #fbf5bb;
  text-align: center;
  color: #961414;
  margin-bottom: 15rem;
}
.modal-warn .fdxicon-regular {
  float: left;
  font-size: 25rem;
  top: -3rem;
  margin-right: 5rem;
}
.modal-footer {
  position: relative;
  padding: 0 15rem 15rem 15rem;
  text-align: right;
  display: flex;
  justify-content: space-around;
}
.scrolling .modal-footer {
  border-top: 1rem solid #cfcfcf;
  padding: 14rem 15rem 15rem;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn {
  width: 100%;
}
.modal-footer .btn + .btn {
  margin-left: 5rem;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1rem;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollable.modal,
.modal-expanded.modal {
  overflow: hidden;
  overflow-y: hidden;
}
.modal-scrollable .modal-dialog,
.modal-expanded .modal-dialog {
  display: block;
  max-height: calc(100% - 140rem);
}
.modal-scrollable .modal-body,
.modal-expanded .modal-body {
  max-height: 515rem;
  overflow-y: auto;
}
.modal-expanded .modal-body {
  height: 70%;
  min-height: 360rem;
}
.modal-fitted .modal-body {
  padding: 0;
}
.modal-dialog {
  margin: 55rem auto;
  width: auto;
  outline: none;
  max-width: 768rem;
}
.modal-dialog.modal-max {
  max-width: none;
  width: 90%;
}
.modal-dialog.modal-xl {
  max-width: 1536rem;
}
.modal-dialog.modal-lg {
  max-width: 1152rem;
}
.modal-dialog.modal-md {
  max-width: 768rem;
}
.modal-dialog.modal-sm {
  max-width: 576rem;
}
.fdx-modal-drag-and-drop {
  cursor: pointer;
}
.fdx-modal-drag-and-drop:hover {
  color: #0085a2;
}
#fdxWhatsNewModal #fdxWhatsNewModalHeader {
  margin: 10rem 0 10rem 0;
  text-transform: uppercase;
  line-height: 40rem;
  color: #4c4c4c;
  font-size: 16rem;
  letter-spacing: 1px;
  font-weight: bold;
  border-bottom: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.05);
  padding-bottom: 10rem;
}
#fdxWhatsNewModal #fdxWhatsNewModalHeader .fdx-whats-new {
  font-size: 22rem;
  padding-left: 20rem;
}
#fdxWhatsNewModal #fdxWhatsNewModalHeader .header-text {
  padding: 0 0 5rem 25rem;
}
#fdxWhatsNewModal .fdx-remove {
  margin: 10rem 20rem 0 0;
  opacity: 1!important;
  font-weight: normal;
  color: #333;
  font-size: 16rem;
  line-height: 16rem;
  cursor: pointer;
}
#fdxWhatsNewModal .fdx-modal-drag-and-drop {
  margin: 10rem 12rem 0 0;
  font-size: 11rem;
  float: right;
  font-weight: normal;
  color: #333;
  font-size: 16rem;
  line-height: 16rem;
  cursor: pointer;
}
#fdxWhatsNewModal .whats-new-text {
  max-width: 425rem;
  padding: 40rem 40rem 55rem 65rem;
}
#fdxWhatsNewModal .whats-new-text h2 {
  font-weight: bolder;
}
#fdxWhatsNewModal .whats-new-image {
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.09);
  border-radius: 30px;
  width: 596rem!important;
  height: 350rem!important;
  float: right;
  margin: 10rem 70rem 0 0;
}
#fdxWhatsNewModal .modal-footer {
  padding: 20px 15rem 15rem 20rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-dropdown .dropdown-clear-btn {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  margin: 11rem 0 11rem 6rem;
  color: #999;
}
fdx-dropdown .dropdown-clear-btn:hover {
  color: #666;
}
fdx-dropdown .dropdown-wrapper {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 38rem;
  width: 100%;
  font-size: 14rem;
  background: #fff;
}
fdx-dropdown .dropdown-wrapper .dropdown {
  outline: none;
  width: 100%;
  min-height: 38rem;
  border: 1rem solid #d9d9d9;
  line-height: 38rem;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
fdx-dropdown .dropdown-wrapper .dropdown:hover {
  border-color: #00a9ce;
  background: #e5f4f8;
}
fdx-dropdown .dropdown-wrapper .dropdown .select-label {
  padding: 0 34rem 0 10rem;
  color: #666;
  overflow: hidden;
}
fdx-dropdown .dropdown-wrapper .dropdown .select-label .fdx-triangle-s {
  position: absolute;
  right: 10rem;
  top: 0;
  line-height: 38rem;
  font-size: 14rem;
  color: #666;
}
fdx-dropdown .dropdown-wrapper .dropdown .select-label .icon {
  vertical-align: baseline;
}
fdx-dropdown .dropdown-wrapper .dropdown .select-label .single-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in {
  width: calc(100% - 9rem);
  margin: 0 -5rem !important;
  padding: 4rem 0 0 0 !important;
  line-height: 17rem;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in li {
  position: relative;
  display: inline-block;
  max-width: 200rem;
  margin-right: 5rem;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in li .label {
  background: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5rem 10rem 6rem;
  display: block;
  margin-right: 25rem;
  border-radius: 3rem 0 0 3rem;
  border: 1rem solid #e1e1e1;
  border-right-width: 0;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in li .label:hover {
  color: #333;
  background-color: #fcfcfc;
  border-color: #d9d9d9;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in li .remove {
  position: absolute;
  top: -1rem !important;
  right: 0 !important;
  font-size: 12rem !important;
  background-color: #00a9ce;
  color: #fff;
  width: 25rem;
  padding: 8rem 6rem !important;
  border-radius: 0 3rem 3rem 0;
  line-height: 14rem;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in li .remove:hover {
  color: #fff;
  background-color: #00a9ce;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in .has-hidden {
  display: inline-block;
  padding: 5rem 10rem 6rem;
  font-size: 18rem;
  line-height: 16rem;
  vertical-align: top;
  border-radius: 3rem;
  border: 1rem solid #e1e1e1;
  background: white;
}
fdx-dropdown .dropdown-wrapper .dropdown .selected-in .has-hidden:hover {
  background: #fcfcfc;
}
fdx-dropdown .dropdown-wrapper .dropdown .fdx-circle-remove {
  position: absolute;
  font-size: 14rem;
  color: #727272;
  top: 0;
  right: 0;
}
fdx-dropdown .dropdown-wrapper .dropdown .fdx-circle-remove.icon {
  color: #333;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu {
  top: 100%;
  left: -1rem;
  width: calc(100% + 2rem);
  border-color: transparent;
  border-width: 0;
  border-radius: 0 0 3rem 3rem;
  border-top: none;
  padding: 0;
  box-shadow: none;
  max-height: 0;
  overflow: hidden;
  display: block !important;
  margin: 1rem 0;
  -webkit-transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .search-options {
  height: 38rem;
  overflow: hidden;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .search-options input {
  width: 100%;
  height: 35rem;
  outline: none;
  border: none;
  border-bottom: 1rem solid #d9d9d9;
  padding: 5rem 8rem;
  background-color: #fcfcfc;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .search-options input:focus {
  color: #333;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .search-options .fdxicon-regular {
  color: #666;
  position: absolute;
  right: 9rem;
  top: 0rem;
  font-size: 13rem;
  line-height: 36rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .search-options .container-filter-active {
  top: 50rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select {
  height: 38rem;
  overflow: hidden;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions {
  height: 35rem;
  outline: none;
  border: none;
  border-bottom: 1rem solid #d9d9d9;
  display: block;
  padding: 6rem 10rem;
  font-size: 14rem;
  line-height: 18rem;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions .checkbox {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: 12rem;
  min-height: 0;
  padding: 0;
  padding-left: 0 !important;
  border-radius: 2rem;
  margin-right: 10rem;
  background: #e5e5e5;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  color: #fff;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions.selected .select-all {
  color: #d3d3d3;
  cursor: not-allowed;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions.selected .checkbox {
  background: #00a9ce;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions.disabled .select-all {
  color: #d3d3d3;
  cursor: not-allowed;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions .select-all {
  font-weight: bold;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions .clear {
  float: right;
  font-weight: bold;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .mass-select-actions .clear.disabled {
  color: #d3d3d3;
  cursor: not-allowed;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter {
  height: 48rem;
  overflow: hidden;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group {
  display: flex;
  flex: 0 1 auto;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
  margin: 5rem;
  background-color: white;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group:last-child {
  border-right: none;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group .btn {
  width: 30%;
  line-height: 1;
  font-size: 12rem;
  border-right: 1rem solid #d9d9d9;
  font-weight: normal;
  padding: 6rem 20rem;
  flex: 1;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group .btn.active {
  background-color: #00a9ce;
  border: 1rem solid #0087ab;
  color: white;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group .btn.active .fdxicon-regular {
  color: white;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group .btn:hover {
  border-color: #0087ab;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group .btn .fdxicon-regular {
  color: #666;
  font-size: 16rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-filter .btn-group .btn .type {
  font-size: 12rem;
  vertical-align: top;
  line-height: 16rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options {
  position: relative;
  width: 100%;
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option {
  display: block;
  color: #333;
  font-size: 14rem;
  line-height: 18rem;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  padding: 6rem 10rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option .checkbox {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: 12rem;
  min-height: 0;
  padding: 0;
  padding-left: 0 !important;
  border-radius: 2rem;
  margin-right: 10rem;
  background: #e5e5e5;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  color: #fff;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option-title {
  background: #f2f2f2;
  padding: 7rem;
  border-bottom: 1rem solid #d9d9d9;
  font: bold 11rem "interstate", Helvetica, sans-serif;
  text-decoration: none;
  color: #00677d;
  text-transform: uppercase;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.selected,
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.selected .info {
  color: #d3d3d3;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.selected .checkbox {
  background: #00a9ce;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.closed {
  height: 0;
  padding: 0 10rem;
  overflow: hidden;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.empty {
  font-style: normal;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option:hover,
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option:focus {
  background: #e4f1f5;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.ng-enter,
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.ng-leave,
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.ng-move {
  transition: none;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .option.not-clickable {
  cursor: default;
  background: transparent;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .group-title {
  background: #f2f2f2;
  padding: 7rem;
  border-bottom: 1px solid #d9d9d9;
  font: bold 11rem "interstate", Helvetica, sans-serif;
  text-decoration: none;
  color: #00677d;
  text-transform: uppercase;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .dropdown-options .group-title .fdxicon-regular {
  float: right;
  font-size: 11rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper {
  display: flex;
  border: 1px solid #d9d9d9;
  border-radius: 5rem;
  line-height: 26rem;
  margin: 5rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item {
  flex: 1;
  text-align: center;
  color: #999;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item .fdxicon-regular {
  vertical-align: middle;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item-label {
  font-size: 11rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item:not(:last-child) {
  border-right: 1px solid #d9d9d9;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item:first-child {
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item:last-child {
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
fdx-dropdown .dropdown-wrapper .dropdown-menu .type-switch-wrapper .type-switch-item.active {
  background-color: #00a9ce;
  color: white;
}
fdx-dropdown .dropdown-wrapper .open .dropdown-menu {
  max-height: 275rem;
  border-color: #d9d9d9;
  border-width: 1rem;
}
fdx-dropdown .dropdown-wrapper .open .dropdown-menu.with-search .dropdown-options {
  max-height: 181rem;
}
fdx-dropdown .dropdown-wrapper .open .dropdown-menu.with-search .dropdown-options .loading-more {
  height: 181rem;
}
fdx-dropdown .dropdown-wrapper .open .dropdown-menu .dropdown-options {
  max-height: 223rem;
}
fdx-dropdown .dropdown-wrapper .open .dropdown-menu .dropdown-options .loading-more {
  height: 275rem;
}
fdx-dropdown .dropdown-wrapper .dropdown.dropup.open .dropdown-menu {
  border-radius: 3rem 3rem 0 0;
  border-bottom: none;
  border-top: 1rem solid #d9d9d9;
}
fdx-dropdown .dropdown-wrapper.simplified {
  width: fit-content !important;
  background: transparent;
}
fdx-dropdown .dropdown-wrapper.simplified .dropdown {
  border: none !important;
}
fdx-dropdown .dropdown-wrapper.simplified .dropdown:hover {
  background: #fff;
}
fdx-dropdown .dropdown-wrapper.simplified .dropdown .select-label {
  width: calc(100% + 20rem);
  position: relative;
}
fdx-dropdown .dropdown-wrapper.simplified .dropdown-menu {
  min-width: 0 !important;
  top: 100%;
}
fdx-dropdown .dropdown-wrapper.simplified .dropdown-menu .dropdown-options {
  border-top: 1rem solid #d9d9d9;
}
fdx-dropdown .dropdown-wrapper .clearButton {
  position: absolute;
  top: 0;
  right: 30rem;
  color: #00a9ce;
}
fdx-dropdown .disabled {
  cursor: not-allowed;
}
fdx-dropdown .selected-list {
  margin-top: 7rem;
  font-size: 14rem;
}
fdx-dropdown .selected-list.scroll {
  max-height: 150rem;
  overflow: auto;
}
fdx-dropdown .selected-list .list-item {
  display: inline-block;
  padding: 5rem;
}
fdx-dropdown .selected-list .list-item-label {
  border: 1px solid #D9D9D9;
  border-radius: 20rem;
  padding: 5rem;
  width: fit-content;
  display: flex;
  align-items: center;
}
fdx-dropdown .selected-list .list-item-label .option-label {
  flex-direction: row-reverse;
}
fdx-dropdown .selected-list .list-item-label:hover {
  border-color: #00a9ce;
}
fdx-dropdown .selected-list .list-item-label .fdxicon-regular {
  font-size: 20rem;
}
fdx-dropdown .selected-list .list-item-label .invalid-icon {
  color: #aa1c1c;
  display: none;
}
fdx-dropdown .selected-list .list-item-label.invalid {
  border-color: #aa1c1c;
}
fdx-dropdown .selected-list .list-item-label.invalid:hover {
  border-color: #aa1c1c;
}
fdx-dropdown .selected-list .list-item-label.invalid .invalid-icon {
  display: block;
}
fdx-dropdown .selected-list .list-item-chevron {
  font-size: 18rem;
  line-height: 0;
  padding-right: 2rem;
  color: #666;
}
fdx-dropdown .selected-list .list-item-remove {
  cursor: pointer;
  color: #00a9ce;
  overflow: visible;
  margin-left: 5rem;
}
fdx-dropdown .selected-list .list-item:hover {
  background: #fbfbfb;
}
fdx-dropdown .option-label {
  display: flex;
  align-items: center;
  margin-left: 5rem;
}
fdx-dropdown .option-label span {
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-dropdown .option-label .sub {
  display: block;
  color: #999;
  text-transform: uppercase;
  font-size: 11rem;
  line-height: 11rem;
  margin-top: 5rem;
}
fdx-dropdown .option-label .info {
  display: block;
  color: #999;
  font-size: 11rem;
  line-height: 11rem;
  margin-top: 5rem;
}
fdx-dropdown .label-name {
  display: flex;
  align-items: center;
}
fdx-dropdown .label-name .icon {
  width: 1.2em;
}
fdx-dropdown .icon {
  margin-right: 7rem;
  font-size: 15rem;
  vertical-align: top;
  line-height: 16rem;
}
fdx-dropdown .empty {
  color: #999 !important;
  font-style: italic;
  margin: 0 !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: calc(100% - 7rem);
}
fdx-dropdown .ng-enter,
fdx-dropdown .ng-leave,
fdx-dropdown .ng-move {
  transition: none !important;
}
fdx-dropdown md-virtual-repeat-container {
  width: 100%;
}
fdx-dropdown md-virtual-repeat-container .option {
  height: 46rem;
}
fdx-dropdown md-virtual-repeat-container .option-label {
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-dropdown .vs-wrapper.loading-more {
  position: relative;
  height: 181rem;
}
fdx-dropdown .vs-wrapper.empty {
  height: 181rem;
}
fdx-dropdown md-virtual-repeat-container:-webkit-scrollbar {
  width: 0 !important;
}
fdx-dropdown .not-specified {
  color: #6666;
  font-style: italic;
}
fdx-dropdown .single-line-sublabel {
  display: initial;
  text-transform: initial;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-dropdown-angular .dropdown-wrapper {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 38rem;
  width: 100%;
  font-size: 14rem;
  background: #fff;
}
fdx-dropdown-angular .dropdown-wrapper.dropdown-disabled {
  cursor: default!important;
}
fdx-dropdown-angular .dropdown-wrapper.dropdown-disabled .dropdown {
  background: #f9f9f9 !important;
  border: 1rem solid #d3d3d3 !important;
}
fdx-dropdown-angular .dropdown-wrapper.dropdown-disabled .dropdown:hover {
  background: #f9f9f9 !important;
  border: 1rem solid #d3d3d3 !important;
}
fdx-dropdown-angular .dropdown-wrapper.dropdown-disabled .select-label {
  cursor: default!important;
  color: #d3d3d3 !important;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown {
  outline: none;
  width: 100%;
  min-height: 38rem;
  border: 1rem solid #d9d9d9;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown:hover {
  border-color: #00a9ce;
  background: #e5f4f8;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-toggle {
  width: 100%;
  text-align: left;
  -webkit-appearance: none;
  padding-block: 0;
  padding-inline: 0;
  background: transparent;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .select-label {
  padding: 0 34rem 0 10rem;
  color: #666;
  overflow: hidden;
  height: 38rem;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .select-label .fdx-triangle-s {
  position: absolute;
  right: 10rem;
  top: 0;
  line-height: 38rem;
  font-size: 14rem;
  color: #666;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .select-label .icon {
  vertical-align: baseline;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .select-label .single-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in {
  width: calc(100% - 9rem);
  margin: 0 -5rem !important;
  padding: 4rem 0 0 0 !important;
  line-height: 17rem;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in li {
  position: relative;
  display: inline-block;
  max-width: 200rem;
  margin-right: 5rem;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in li .label {
  background: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5rem 10rem 6rem;
  display: block;
  margin-right: 25rem;
  border-radius: 3rem 0 0 3rem;
  border: 1rem solid #e1e1e1;
  border-right-width: 0;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in li .label:hover {
  color: #333;
  background-color: #fcfcfc;
  border-color: #d9d9d9;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in li .remove {
  position: absolute;
  top: -1rem !important;
  right: 0 !important;
  font-size: 12rem !important;
  background-color: #00a9ce;
  color: #fff;
  width: 25rem;
  padding: 8rem 6rem !important;
  border-radius: 0 3rem 3rem 0;
  line-height: 14rem;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in li .remove:hover {
  color: #fff;
  background-color: #00a9ce;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in .has-hidden {
  display: inline-block;
  padding: 5rem 10rem 6rem;
  font-size: 18rem;
  line-height: 16rem;
  vertical-align: top;
  border-radius: 3rem;
  border: 1rem solid #e1e1e1;
  background: white;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .selected-in .has-hidden:hover {
  background: #fcfcfc;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .fdx-circle-remove {
  position: absolute;
  font-size: 14rem;
  color: #727272;
  top: 0;
  right: 0;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown .fdx-circle-remove.icon {
  color: #333;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu {
  top: 100%;
  left: -1rem;
  width: calc(100% + 2rem);
  border-color: transparent;
  border-width: 0;
  border-radius: 0 0 3rem 3rem;
  border-top: none;
  padding: 0;
  box-shadow: none;
  max-height: 0;
  overflow: hidden;
  display: block !important;
  margin: 1rem 0;
  -webkit-transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .search-options {
  height: 38rem;
  overflow: hidden;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .search-options input {
  width: 100%;
  height: 35rem;
  outline: none;
  border: none;
  border-bottom: 1rem solid #d9d9d9;
  padding: 5rem 8rem;
  background-color: #fcfcfc;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .search-options input:focus {
  color: #333;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .search-options .fdxicon-regular {
  color: #666;
  position: absolute;
  right: 9rem;
  top: 0rem;
  font-size: 13rem;
  line-height: 36rem;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options {
  position: relative;
  width: 100%;
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option {
  display: block;
  padding: 6rem 10rem;
  color: #333;
  font-size: 14rem;
  line-height: 18rem;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option .checkbox {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: 12rem;
  min-height: 0;
  padding: 0;
  padding-left: 0 !important;
  border-radius: 2rem;
  margin-right: 10rem;
  background: #e5e5e5;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  color: #fff;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.selected {
  color: #d3d3d3;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.selected .checkbox {
  background: #00a9ce;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.closed {
  height: 0;
  padding: 0 10rem;
  overflow: hidden;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.empty {
  font-style: normal;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option:hover {
  background: #e4f1f5;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.ng-enter,
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.ng-leave,
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .option.ng-move {
  transition: none;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .group-title {
  background: #f2f2f2;
  padding: 7rem;
  border-bottom: 1rem solid #d9d9d9;
  font: bold 11rem "interstate", Helvetica, sans-serif;
  text-decoration: none;
  color: #00677d;
  text-transform: uppercase;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown-menu .dropdown-options .group-title .fdxicon-regular {
  float: right;
  font-size: 11rem;
}
fdx-dropdown-angular .dropdown-wrapper .show .dropdown-menu {
  max-height: 223rem;
  border-color: #d9d9d9;
  border-width: 1rem;
}
fdx-dropdown-angular .dropdown-wrapper .show .dropdown-menu.with-search .dropdown-options {
  max-height: 181rem;
}
fdx-dropdown-angular .dropdown-wrapper .show .dropdown-menu.with-search .dropdown-options .loading-more {
  height: 181rem;
}
fdx-dropdown-angular .dropdown-wrapper .show .dropdown-menu .dropdown-options {
  max-height: 223rem;
}
fdx-dropdown-angular .dropdown-wrapper .show .dropdown-menu .dropdown-options .loading-more {
  height: 223rem;
}
fdx-dropdown-angular .dropdown-wrapper .dropdown.dropup.show .dropdown-menu {
  border-radius: 3rem 3rem 0 0;
  border-bottom: none;
  border-top: 1rem solid #d9d9d9;
}
fdx-dropdown-angular .dropdown-wrapper.simplified {
  width: fit-content !important;
  background: transparent;
}
fdx-dropdown-angular .dropdown-wrapper.simplified .dropdown {
  border: none !important;
}
fdx-dropdown-angular .dropdown-wrapper.simplified .dropdown:hover {
  background: #fff;
}
fdx-dropdown-angular .dropdown-wrapper.simplified .dropdown .select-label {
  width: calc(100% + 20rem);
  position: relative;
}
fdx-dropdown-angular .dropdown-wrapper.simplified .dropdown-menu {
  min-width: 0 !important;
  top: 100%;
}
fdx-dropdown-angular .dropdown-wrapper.simplified .dropdown-menu .dropdown-options {
  border-top: 1rem solid #d9d9d9;
}
fdx-dropdown-angular .disabled {
  cursor: not-allowed;
}
fdx-dropdown-angular .selected-list {
  margin-top: 7rem;
  max-height: 150rem;
  overflow: auto;
  font-size: 14rem;
}
fdx-dropdown-angular .selected-list .list-item {
  display: block;
  padding: 5rem;
}
fdx-dropdown-angular .selected-list .list-item-label {
  border: 1px solid #D9D9D9;
  border-radius: 20rem;
  padding: 5rem;
  width: fit-content;
  display: flex;
  align-items: center;
}
fdx-dropdown-angular .selected-list .list-item-label .option-label {
  flex-direction: row-reverse;
}
fdx-dropdown-angular .selected-list .list-item-label:hover {
  border-color: #00a9ce;
}
fdx-dropdown-angular .selected-list .list-item-label .fdxicon-regular {
  font-size: 20rem;
}
fdx-dropdown-angular .selected-list .list-item-label .invalid-icon {
  color: #aa1c1c;
  display: none;
}
fdx-dropdown-angular .selected-list .list-item-label.invalid {
  border-color: #aa1c1c;
}
fdx-dropdown-angular .selected-list .list-item-label.invalid:hover {
  border-color: #aa1c1c;
}
fdx-dropdown-angular .selected-list .list-item-label.invalid .invalid-icon {
  display: block;
}
fdx-dropdown-angular .selected-list .list-item-chevron {
  font-size: 18rem;
  line-height: 0;
  padding-right: 2rem;
  color: #666;
}
fdx-dropdown-angular .selected-list .list-item-remove {
  cursor: pointer;
  color: #00a9ce;
  overflow: visible;
  margin-left: 5rem;
}
fdx-dropdown-angular .selected-list .list-item:hover {
  background: #fbfbfb;
}
fdx-dropdown-angular .option-label {
  display: flex;
  align-items: center;
  margin-left: 5rem;
}
fdx-dropdown-angular .option-label span {
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-dropdown-angular .option-label .sub {
  display: block;
  color: #999;
  text-transform: uppercase;
  font-size: 11rem;
  line-height: 11rem;
  margin-top: 5rem;
  margin-left: 5rem;
}
fdx-dropdown-angular .option-label .info {
  display: block;
  color: #999;
  font-size: 11rem;
  line-height: 11rem;
  margin-top: 5rem;
}
fdx-dropdown-angular .icon {
  margin-right: 7rem;
  font-size: 15rem;
  vertical-align: top;
  line-height: 16rem;
}
fdx-dropdown-angular .empty {
  color: #999 !important;
  font-style: italic;
  margin: 0 !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: calc(100% - 7rem);
}
fdx-dropdown-angular .ng-enter,
fdx-dropdown-angular .ng-leave,
fdx-dropdown-angular .ng-move {
  transition: none !important;
}
fdx-dropdown-angular md-virtual-repeat-container {
  height: 300rem;
  width: 100%;
}
fdx-dropdown-angular md-virtual-repeat-container .option-label {
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-dropdown-angular .vs-wrapper.loading-more {
  position: relative;
  height: 181rem;
}
fdx-dropdown-angular .vs-wrapper.empty {
  height: 181rem;
}
fdx-dropdown-angular md-virtual-repeat-container:-webkit-scrollbar {
  width: 0 !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-date-range [uib-datepicker] .btn-default {
  border-image: none;
  text-transform: unset;
}
fdx-date-range [uib-datepicker] .btn-default.active {
  background-image: none;
  background-color: #00a9ce;
  color: white !important;
}
fdx-date-range [uib-datepicker] .btn-default.active .text-info {
  color: white !important;
}
fdx-date-range [uib-datepicker] .btn-default:hover {
  background-image: none;
  background-color: #00a9ce;
  color: white;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-cookie-policy {
  position: fixed;
  z-index: 1055;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: white;
  padding: 15rem;
  font-size: 12rem;
  border-top: 1rem solid #e5e5e5;
}
.fdx-cookie-policy-text {
  display: inline-block;
}
.fdx-cookie-policy-text p {
  margin: 0;
}
.fdx-cookie-policy-text p:first-child {
  margin-bottom: 5rem;
}
.fdx-cookie-policy-btn {
  vertical-align: top !important;
  margin: 0rem 10rem;
}

.ctaButtonsContainer {
  display: inline-block;
}
.ctaButtonsContainer .ctaButton {
  margin: 5rem;
  float: left;
}
.ctaButtonsContainer.buttonOutline {
  background-color: #e5e5e5;
  border: 1rem solid #d3d3d3;
  border-radius: 3rem;
  padding: 5rem;
}
.ctaButtonsContainer.topRight {
  position: fixed;
  top: 9.25em;
  right: 2em;
}
.ctaButtonsContainer.bottomRight {
  position: fixed;
  bottom: 2em;
  right: 3em;
  z-index: 99;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.addUserModal.modal-body .header {
  position: absolute;
  top: 14rem;
  left: 15rem;
  right: 15rem;
  bottom: 15rem;
}
.addUserModal.modal-body .header .fdx-clearable-wrapper {
  float: right;
}
.addUserModal.modal-body .addUserModalTable .tr-selected > td {
  background-color: #00a9ce;
  color: #fff;
}
.addUserModal.modal-body .addUserModalTable .tr-selected > td .fdx-user {
  color: #00a9ce !important;
}
ngb-modal-window.fdx-add-user.modal {
  z-index: 1050 !important;
}
ngb-modal-backdrop.fdx-add-user.modal-backdrop {
  z-index: 1050  !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-smart-table {
  position: relative;
  min-height: 230rem;
}
.fdx-smart-table md-virtual-repeat-container {
  min-height: 300rem;
  height: calc(100vh - 330rem);
  width: 100%;
}
.fdx-smart-table md-virtual-repeat-container:-webkit-scrollbar {
  width: 0 !important;
}
.fdx-smart-table-controls {
  height: 38rem;
}
.fdx-smart-table-controls-title {
  display: inline-block;
  max-width: calc(100% - 500rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 10rem;
  line-height: 38rem;
}
.fdx-smart-table-controls-title {
  float: left;
}
.fdx-smart-table-controls-columns,
.fdx-smart-table-controls-rows,
.fdx-smart-table-controls-download,
.fdx-smart-table-controls-locales,
.fdx-smart-table-controls-filter {
  float: right;
  height: 38rem;
  margin-left: 10rem;
}
.fdx-smart-table-controls-transcluded-left {
  float: left;
}
.fdx-smart-table-controls-transcluded-right {
  float: right;
}
.fdx-smart-table-controls-columns,
.fdx-smart-table-controls-rows {
  padding: 0 !important;
}
.fdx-smart-table-controls-columns .dropdown-toggle,
.fdx-smart-table-controls-rows .dropdown-toggle {
  padding: 9rem 11rem;
}
.fdx-smart-table-controls-columns .dropdown-menu,
.fdx-smart-table-controls-rows .dropdown-menu {
  top: 36rem;
  left: -165rem;
  width: 205rem;
  max-height: 235rem;
  overflow: auto;
}
.fdx-smart-table-controls-columns .dropdown-header,
.fdx-smart-table-controls-rows .dropdown-header {
  border-bottom: 1rem solid #d3d3d3;
}
.fdx-smart-table-controls-columns .dropdown .visibleColumnList,
.fdx-smart-table-controls-rows .dropdown .visibleColumnList {
  padding: 0;
  margin: 0;
}
.fdx-smart-table-controls-columns .fdx-table,
.fdx-smart-table-controls-rows .fdx-table {
  margin-right: 0 !important;
}
.fdx-smart-table-wrapper {
  position: relative;
  overflow: auto;
  margin-top: 10rem;
}
.fdx-smart-table-wrapper table {
  border-collapse: collapse;
  width: 100%;
  border: 1rem solid #DDDDDD;
}
.fdx-smart-table-wrapper table td {
  border-bottom: 1rem solid #DDDDDD;
}
.fdx-smart-table-wrapper table td .none {
  color: #6666;
  font-style: italic;
  padding: 0;
}
.fdx-smart-table-wrapper table th {
  border-bottom: 2rem solid #DDDDDD;
  background-color: #F3F3F3;
  padding: 16rem 12rem 14rem 12rem;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
}
.fdx-smart-table-wrapper table th .orderIcon {
  display: inline-block;
  width: 13rem;
}
.fdx-smart-table-wrapper table th .orderIcon span {
  font-size: smaller;
}
.fdx-smart-table-wrapper table tbody p {
  margin: 0;
}
.fdx-smart-table-wrapper table tbody .sortable-drag td,
.fdx-smart-table-wrapper table tbody .sortable-drag:nth-child(odd) td {
  background: #e5e5e5;
}
.fdx-smart-table-wrapper table tbody .sortable-ghost td,
.fdx-smart-table-wrapper table tbody .sortable-ghost:nth-child(odd) td {
  background: #e5e5e5;
  border-width: 0rem;
  opacity: 0.4;
}
.fdx-smart-table-wrapper table tbody tr td {
  padding: 8rem 12rem;
  background: #fff;
  transition: all 0.3s;
}
.fdx-smart-table-wrapper table tbody tr td.propertyChangeOldValue div,
.fdx-smart-table-wrapper table tbody tr td.propertyChangeNewValue div {
  white-space: pre-wrap;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-linkuuid {
  cursor: pointer;
  color: #00a9ce;
  text-decoration: underline;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-missing-data {
  color: #666;
  font-style: italic;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-filter {
  cursor: pointer;
  color: #00a9ce;
  font-size: 12rem;
  padding-left: 5rem;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-filter:hover {
  color: #00a9ce;
}
.fdx-smart-table-wrapper table tbody tr:nth-child(odd) td {
  background: #fcfcfc;
}
.fdx-smart-table-wrapper table tbody tr:nth-child(even) td {
  background-color: #F8F8F8;
}
.fdx-smart-table-wrapper table tbody tr.sortable-item.active td,
.fdx-smart-table-wrapper table tbody tr.sortable-item:hover td {
  background: #e1eef4;
}
.fdx-smart-table-wrapper table td.none {
  color: #999;
  background: #fff;
  text-align: center;
  font-size: 14rem;
  font-style: italic;
  padding: 10rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
[vs-repeat] {
  overflow-anchor: none;
}
fdx-smart-table-vs .fdx-smart-table-wrapper table tbody tr:nth-child(odd) td,
fdx-smart-table-vs .fdx-smart-table-wrapper table tbody tr:nth-child(even) td {
  background: #fcfcfc;
}
fdx-smart-table-vs .fdx-smart-table-wrapper table tbody tr.odd td {
  background: #F8F8F8;
}

fdx-tab-select input {
  display: none;
}
fdx-tab-select .fdx-tab-select {
  display: flex;
  line-height: 2.5;
}
fdx-tab-select .fdx-tab-select .tab-option {
  flex: 1;
  margin: 0;
  padding: 5rem 15rem;
  background-color: #f8f8f8;
  border: 1rem solid #d9d9d9;
  border-right: none;
  text-align: center;
  user-select: none;
  display: flex;
}
fdx-tab-select .fdx-tab-select .tab-option:last-child {
  border-right: 1rem solid #d9d9d9;
}
fdx-tab-select .fdx-tab-select .tab-option > .tab-icon {
  font-size: 1.2em;
  margin: 0;
  width: auto;
  line-height: inherit;
}
fdx-tab-select .fdx-tab-select .tab-option > label {
  flex: 1;
  line-height: inherit;
  font-weight: normal;
  margin: 0;
}
fdx-tab-select .fdx-tab-select .tab-option.selected {
  background-color: white;
  border-bottom: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-loading .lds-spinner {
  color: #000;
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}
fdx-loading .lds-spinner div {
  transform-origin: 12px 12px;
  animation: lds-spinner 1.2s linear infinite;
}
fdx-loading .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 1px;
  left: 12px;
  width: 2px;
  height: 5px;
  border-radius: 20%;
  background: #000;
}
fdx-loading .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
fdx-loading .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
fdx-loading .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
fdx-loading .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
fdx-loading .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
fdx-loading .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
fdx-loading .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
fdx-loading .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
fdx-loading .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
fdx-loading .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
fdx-loading .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
fdx-loading .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.error-page.error-overlay {
  z-index: 4000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #3ba9cf;
  /* Fallback for browsers that doesn't support RGBa */
  background-color: rgba(59, 169, 207);
}
.error-page.error-overlay > div {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  margin: -145rem auto;
  padding: 0 300rem;
}
.error-page.error-overlay > div .error-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36rem;
}
.error-page.error-overlay > div .error-logo img {
  height: 112rem;
}
.error-page.error-overlay > div .error-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-page.error-overlay > div .error-image img {
  max-height: 360rem;
}
.error-page.error-overlay > div h1 {
  margin-top: 56rem;
  font-weight: bold;
  color: #fff;
  font-size: 30rem;
}
.error-page.error-overlay > div p {
  font-size: 20rem;
  color: #fff;
}
.error-page.error-overlay > div button {
  margin-top: 26rem;
  margin-bottom: 26rem;
  display: inline-flex;
  color: #00a9ce;
  padding: 8rem 36rem;
  font-size: 12rem;
}
.error-page.error-overlay > div .fdxicon-regular {
  font-size: 16rem;
  color: #00a9ce;
  margin-right: 8rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-file-upload section {
  width: 100%;
  height: 100%;
}
fdx-file-upload section label {
  font-weight: normal !important;
  line-height: 20rem !important;
  cursor: pointer;
}
fdx-file-upload section .fdx-file-drop-zone {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
fdx-file-upload section .fdx-file-drop-zone:hover #dropFilesText {
  color: #00a9ce;
}
fdx-file-upload section .fdx-file-drop-zone.vertical {
  flex-direction: column;
}
fdx-file-upload section .fdx-file-drop-zone.vertical img {
  width: 5em;
}
fdx-file-upload section .fdx-file-drop-zone.vertical #dropFilesTitle {
  font-size: 22rem;
  margin-top: 20rem;
  margin-bottom: 10rem;
}
fdx-file-upload section .fdx-file-drop-zone.vertical #dropFilesText {
  margin: 0 0 10rem;
}
fdx-file-upload section .fdx-file-drop-zone.horizontal {
  border: 1rem dashed #d9d9d9;
  border-radius: 10rem;
  padding: 8rem;
}
fdx-file-upload section .fdx-file-drop-zone.horizontal img {
  margin-right: 15rem;
  width: 4em;
}
fdx-file-upload section .fdx-file-drop-zone.horizontal #dropFilesTitle {
  font-weight: bold;
}
fdx-file-upload section .fdx-file-drop-zone.horizontal #dropFilesText {
  font-size: 12rem;
  font-style: italic;
}

fdx-asset-list-item .item-card {
  display: flex;
  justify-content: space-between;
}
fdx-asset-list-item .item-card .fdxicon-regular {
  font-size: 18rem;
}
fdx-asset-list-item .item-card-info {
  display: flex;
  align-items: center;
}
fdx-asset-list-item .item-card-info-icon {
  margin-right: 10rem;
}
fdx-asset-list-item .item-card-status {
  display: flex;
  align-items: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-asset-relationship-item .item-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
fdx-asset-relationship-item .item-card .fdxicon-regular {
  font-size: 18rem;
}
fdx-asset-relationship-item .item-card-info {
  display: flex;
  align-items: center;
  overflow: hidden;
}
fdx-asset-relationship-item .item-card-info .primary {
  font-weight: bold;
}
fdx-asset-relationship-item .item-card-info .secondary:before {
  content: '(';
}
fdx-asset-relationship-item .item-card-info .secondary:after {
  content: ')';
}
fdx-asset-relationship-item .item-card-info .primary,
fdx-asset-relationship-item .item-card-info .secondary {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
fdx-asset-relationship-item .item-card-info .fdxicon-regular {
  font-size: 15rem;
}
fdx-asset-relationship-item .item-card-info > span {
  margin-right: 10rem;
}
fdx-asset-relationship-item .item-card-actions {
  display: flex;
  align-items: center;
  color: #00a9ce;
}
fdx-asset-relationship-item .item-card-actions span {
  margin-left: 10rem;
}
fdx-asset-relationship-item .item-card-actions span:first-child {
  color: #333;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.growl-notification-container {
  position: fixed;
  z-index: 5000;
}
.growl-notification-container.top {
  top: 31rem;
  left: 50%;
  width: 400rem;
  margin-left: -200rem;
  text-align: center;
}
.growl-notification-container.top .notification {
  display: inline-block;
  margin-bottom: 0;
  min-width: 50rem;
  width: auto;
}
.growl-notification-container.top-left {
  top: 40rem;
  left: 10rem;
}
.growl-notification-container.top-right {
  top: 40rem;
  right: 10rem;
}
.growl-notification-container.bottom-left {
  bottom: 10rem;
  left: 10rem;
}
.growl-notification-container.bottom-right {
  bottom: 44rem;
  right: 10rem;
}
.growl-notification-container .notification {
  position: relative;
  padding: 12rem 10rem;
  padding-left: 36rem;
  margin-bottom: 10rem;
  min-width: 300rem;
  width: 300rem;
  text-align: justify;
  -webkit-box-shadow: 0 0 7rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7rem rgba(0, 0, 0, 0.2);
}
.growl-notification-container .notification .notification-icon {
  position: absolute;
  top: 14rem;
  left: 10rem;
  font-size: 16rem;
}
.growl-notification-container .notification-dismissable {
  padding-right: 35rem;
}
.growl-notification-container .notification-dismissable .close {
  position: relative;
  right: -21rem;
  color: inherit;
  margin-left: 5rem;
}
.growl-notification-container .notification.ng-enter {
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}
.growl-notification-container .notification.ng-enter {
  opacity: 0;
}
.growl-notification-container .notification.ng-enter.ng-enter-active {
  opacity: 1;
  -webkit-box-shadow: 0 0 7rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7rem rgba(0, 0, 0, 0.2);
}

.ctaButtonsContainer {
  display: inline-block;
}
.ctaButtonsContainer .ctaButton {
  margin: 5rem;
  float: left;
}
.ctaButtonsContainer.buttonOutline {
  background-color: #e5e5e5;
  border: 1rem solid #d3d3d3;
  border-radius: 3rem;
  padding: 5rem;
}
.ctaButtonsContainer.topRight {
  position: fixed;
  top: 9.25em;
  right: 2em;
}
.ctaButtonsContainer.bottomRight {
  position: fixed;
  bottom: 2em;
  right: 3em;
  z-index: 99;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-help-angular-container {
  position: absolute;
  right: 0;
  top: 0;
  padding: 18rem;
}
.fdx-help-angular-container a {
  color: #666;
}
.fdx-help-angular-container a:hover {
  color: #00a9ce;
}
.modal-header .fdx-help-angular-container {
  position: initial;
  padding: 0;
}
.modal-header .fdx-help-angular-container a {
  color: #999;
}
.modal-header .fdx-help-angular-container a:hover {
  color: #00a9ce;
}
.fdx-help-angular-text a {
  text-decoration: underline;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mdb-form-input-directive label {
  font-weight: bold;
  text-align: right;
}
.mdb-form-input-directive .remove-selection {
  color: #999;
  position: absolute;
  right: 10rem;
  cursor: pointer;
}
.mdb-form-input-directive .file-list-wrapper {
  margin-left: 5rem;
}
.mdb-form-input-directive .file-list-wrapper .list-item-text:before {
  content: "\00BB \0020 \0020";
  font-size: large;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.password-policy {
  margin-top: 10rem;
  margin-bottom: 0;
  padding-left: 12rem / 2 + 1rem;
  font-size: 12rem;
}
.password-policy > span {
  font-weight: bold;
}
.password-policy > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-smart-table {
  position: relative;
  min-height: 100rem;
  display: grid;
}
.fdx-smart-table cdk-virtual-scroll-viewport {
  min-height: 300rem;
  height: calc(100vh - 330rem);
  width: 100%;
}
.fdx-smart-table-controls {
  height: 38rem;
}
.fdx-smart-table-controls-title {
  display: inline-block;
  max-width: calc(100% - 500rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 10rem;
  line-height: 38rem;
}
.fdx-smart-table-controls-title {
  float: left;
}
.fdx-smart-table-controls-columns,
.fdx-smart-table-controls-rows,
.fdx-smart-table-controls-download,
.fdx-smart-table-controls-locales,
.fdx-smart-table-controls-filter {
  float: right;
  height: 38rem;
  margin-left: 10rem;
}
.fdx-smart-table-controls-transcluded-left {
  float: left;
}
.fdx-smart-table-controls-transcluded-right {
  float: right;
}
.fdx-smart-table-controls-columns,
.fdx-smart-table-controls-rows {
  padding: 0 !important;
}
.fdx-smart-table-controls-columns .dropdown-toggle,
.fdx-smart-table-controls-rows .dropdown-toggle {
  padding: 9rem 11rem;
}
.fdx-smart-table-controls-columns .dropdown-menu,
.fdx-smart-table-controls-rows .dropdown-menu {
  top: 36rem;
  left: -165rem;
  width: 205rem;
  max-height: 235rem;
  overflow: auto;
}
.fdx-smart-table-controls-columns .dropdown-header,
.fdx-smart-table-controls-rows .dropdown-header {
  border-bottom: 1rem solid #d3d3d3;
}
.fdx-smart-table-controls-columns .dropdown .visibleColumnList,
.fdx-smart-table-controls-rows .dropdown .visibleColumnList,
.fdx-smart-table-controls-columns .dropdown .visibleRowList,
.fdx-smart-table-controls-rows .dropdown .visibleRowList {
  padding: 0;
  margin: 0;
}
.fdx-smart-table-controls-columns .fdx-table,
.fdx-smart-table-controls-rows .fdx-table {
  margin-right: 0 !important;
}
.fdx-smart-table-wrapper {
  position: relative;
  overflow: auto;
  margin-top: 10rem;
}
.fdx-smart-table-wrapper table {
  border-collapse: collapse;
  width: 100%;
  border: 1rem solid #DDDDDD;
}
.fdx-smart-table-wrapper table td {
  border-bottom: 1rem solid #DDDDDD;
}
.fdx-smart-table-wrapper table td .none {
  color: #6666;
  font-style: italic;
  padding: 0;
}
.fdx-smart-table-wrapper table th {
  border-bottom: 2rem solid #DDDDDD;
  background-color: #F3F3F3;
  padding: 16rem 12rem 14rem 12rem;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
}
.fdx-smart-table-wrapper table th .orderIcon {
  display: inline-block;
  width: 13rem;
  margin-left: 4rem;
}
.fdx-smart-table-wrapper table th.sort-ascent .orderIcon span {
  font-size: smaller;
}
.fdx-smart-table-wrapper table th.sort-descent .orderIcon span {
  font-size: smaller;
}
.fdx-smart-table-wrapper table tbody p {
  margin: 0;
}
.fdx-smart-table-wrapper table tbody .sortable-drag td,
.fdx-smart-table-wrapper table tbody .sortable-drag:nth-child(odd) td {
  background: #e5e5e5;
}
.fdx-smart-table-wrapper table tbody .sortable-ghost td,
.fdx-smart-table-wrapper table tbody .sortable-ghost:nth-child(odd) td {
  background: #e5e5e5;
  border-width: 0rem;
  opacity: 0.4;
}
.fdx-smart-table-wrapper table tbody tr td {
  padding: 8rem 12rem;
  background: #fff;
  transition: all 0.3s;
}
.fdx-smart-table-wrapper table tbody tr td.propertyChangeOldValue div,
.fdx-smart-table-wrapper table tbody tr td.propertyChangeNewValue div {
  white-space: pre-wrap;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-linkuuid {
  cursor: pointer;
  color: #00a9ce;
  text-decoration: underline;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-missing-data {
  color: #666;
  font-style: italic;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-filter {
  cursor: pointer;
  color: #00a9ce;
  font-size: 12rem;
  padding-left: 5rem;
}
.fdx-smart-table-wrapper table tbody tr td .fdx-filter:hover {
  color: #00a9ce;
}
.fdx-smart-table-wrapper table tbody tr:nth-child(odd) td {
  background: #fcfcfc;
}
.fdx-smart-table-wrapper table tbody tr:nth-child(even) td {
  background-color: #F8F8F8;
}
.fdx-smart-table-wrapper table tbody tr.sortable-item.active td,
.fdx-smart-table-wrapper table tbody tr.sortable-item:hover td {
  background: #e1eef4;
}
.fdx-smart-table-wrapper table td.none {
  color: #999;
  background: #fff;
  text-align: center;
  font-size: 14rem;
  font-style: italic;
  padding: 10rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-minimize-section {
  color: #4c4c4c;
  margin-bottom: 15rem;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  border: 1rem solid #d9d9d9;
  background-color: #fff;
}
.fdx-minimize-section-header {
  position: relative;
  border-bottom: 1rem solid #d9d9d9;
  padding: 15rem;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.fdx-minimize-section-header h3 {
  line-height: 20rem;
  margin: 0 0 0 35rem;
  display: inline-block;
  color: #4c4c4c;
  text-transform: uppercase;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
}
.fdx-minimize-section-header .fdxicon-regular {
  position: absolute;
  top: 20rem;
}
.fdx-minimize-section-header .fdxicon-regular.interaction-button {
  right: 30rem;
  color: #33A1CB;
}
.fdx-minimize-section-header .fdxicon-regular.fdx-filter {
  right: 14rem;
}
.fdx-minimize-section-header .fdx-minimize-section-icon::before {
  font-size: 24rem;
  line-height: 7rem;
  color: #4c4c4c;
}
.fdx-minimize-section .fdx-minimize-section-header-controls {
  position: absolute;
  right: 75rem;
  top: -1rem;
  z-index: 2;
  color: #00a9ce;
}
.fdx-minimize-section-body {
  transition: 1s;
  overflow: hidden;
}
.fdx-minimize-section-body.minimized {
  height: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-date-range-angular .input-group-btn .btn-date {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
fdx-date-range-angular .input-group-btn .btn-date:focus {
  outline: none;
  box-shadow: none;
}
fdx-date-range-angular .col-md-6 {
  margin-bottom: 10rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-file-upload-angular section {
  width: 100%;
  height: 100%;
}
fdx-file-upload-angular section label {
  font-weight: normal !important;
  line-height: 20rem !important;
  cursor: pointer;
}
fdx-file-upload-angular section .fdx-file-drop-zone {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
fdx-file-upload-angular section .fdx-file-drop-zone:hover #dropFilesText {
  color: #00a9ce;
}
fdx-file-upload-angular section .fdx-file-drop-zone.vertical {
  flex-direction: column;
}
fdx-file-upload-angular section .fdx-file-drop-zone.vertical img {
  width: 5em;
}
fdx-file-upload-angular section .fdx-file-drop-zone.vertical #dropFilesTitle {
  font-size: 22rem;
  margin-top: 20rem;
  margin-bottom: 10rem;
}
fdx-file-upload-angular section .fdx-file-drop-zone.vertical #dropFilesText {
  margin: 0 0 10rem;
}
fdx-file-upload-angular section .fdx-file-drop-zone.horizontal {
  border: 1rem dashed #d9d9d9;
  border-radius: 10rem;
  padding: 8rem;
}
fdx-file-upload-angular section .fdx-file-drop-zone.horizontal img {
  margin-right: 15rem;
  width: 4em;
}
fdx-file-upload-angular section .fdx-file-drop-zone.horizontal #dropFilesTitle {
  font-weight: bold;
}
fdx-file-upload-angular section .fdx-file-drop-zone.horizontal #dropFilesText {
  font-size: 12rem;
  font-style: italic;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-exporter-body .search-container {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem 0;
}
.fdx-mdb-exporter-body .search-container-search {
  position: relative;
  margin: 0 10rem 0 0;
  border: 1rem solid #d3d3d3;
  flex: 1;
  display: flex;
  align-items: center;
}
.fdx-mdb-exporter-body .search-container-search i.fdxicon-regular {
  margin: 0 1em;
}
.fdx-mdb-exporter-body .search-container-search input {
  border: none;
  height: 40rem;
  flex: 1;
  box-shadow: none;
  padding: 0 10rem 0 0;
  background-color: #fcfcfc;
}
.fdx-mdb-exporter-body .search-container-search input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a0a0a0;
  opacity: 1;
  /* Firefox */
}
.fdx-mdb-exporter-body .search-container-search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a0a0a0;
}
.fdx-mdb-exporter-body .search-container-search input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a0a0a0;
}
.fdx-mdb-exporter-body .search-container-search input:focus {
  outline: none;
}
.fdx-mdb-exporter-body .search-container .dropdown {
  padding: 0;
}
.fdx-mdb-exporter-body .search-container .dropdown-toggle {
  padding: 10rem 14rem;
}
.fdx-mdb-exporter-body .search-container .dropdown-header {
  padding: 8rem 70rem 8rem 16rem;
}
.fdx-mdb-exporter-body .search-container .dropdown-header .dropdown-menu-icon-right {
  padding: 0;
}
.fdx-mdb-exporter-body .search-container .dropdown-menu {
  left: auto !important;
}
.fdx-mdb-exporter-body .search-container .plugin-drop {
  width: 200rem;
}
.fdx-mdb-exporter-body .options {
  max-height: 445rem;
  overflow: auto;
  border: 1rem solid #d3d3d3;
  position: relative;
  min-height: 48rem;
}
.fdx-mdb-exporter-body .options .accordion-item {
  color: #333;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  position: relative;
}
.fdx-mdb-exporter-body .options .accordion-item .export-group-title {
  width: 100%;
  text-align: left;
  background-color: #f6f6f6;
  text-decoration: none;
  color: #333;
  margin: 0;
  padding: 10rem;
  position: relative;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  border-bottom: 1rem solid #d3d3d3;
}
.fdx-mdb-exporter-body .options .accordion-item .export-group-title .header-text {
  white-space: nowrap;
  width: 87%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 26rem;
  vertical-align: middle;
  font-size: 16rem;
}
.fdx-mdb-exporter-body .options .accordion-item .export-group-title .pull-right {
  margin: 11rem;
}
.fdx-mdb-exporter-body .options .accordion-item .export-group-title .pull-right.fdxicon-regular {
  font-size: 16rem;
  color: #00677d;
  position: absolute;
  right: 0;
  top: 4rem;
}
.fdx-mdb-exporter-body .options .accordion-item .expGroup-body {
  background-color: #fff;
  padding: 0;
}
.fdx-mdb-exporter-body .options .accordion-item .expGroup-body .exp {
  padding: 5rem 5rem 5rem 20rem;
  border-bottom: 1rem solid #d3d3d3;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.fdx-mdb-exporter-body .options .accordion-item .expGroup-body .exp p {
  text-decoration: none;
  color: #4c4c4c;
  font-size: 14rem;
  line-height: 36rem;
  margin: 0;
  display: inline-block;
  width: 90%;
  vertical-align: top;
}
.fdx-mdb-exporter-body .options .accordion-item .expGroup-body .exp:hover p {
  text-decoration: underline;
}
.fdx-mdb-exporter-body .options .no-options {
  text-align: center;
  color: #666;
  font-style: italic;
  position: absolute;
  width: 100%;
  top: 0;
}
.fdx-mdb-exporter-body .options .no-options p {
  margin: 5rem;
  line-height: 36rem;
}
.fdx-mdb-exporter-body.loading-state {
  position: relative;
  height: 300rem;
}
.fdx-mdb-exporter-body.loading-state p {
  color: #4c4c4c;
  position: absolute;
  z-index: 5001;
  left: 0;
  right: 0;
  text-align: center;
  top: 100rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-error-icon .dropdown {
  border: none!important;
}
fdx-mdb-error-icon .error-wrapper {
  margin-top: 7rem;
  overflow: visible;
  float: right;
  width: 30rem;
  height: 20rem;
  position: absolute;
  top: 5rem;
  right: 0;
}
fdx-mdb-error-icon .error-wrapper .error-icon {
  float: right;
  font-size: 20rem;
}
fdx-mdb-error-icon .error-wrapper .error-icon.fdx-circle-alert {
  color: #ce6c0d;
}
fdx-mdb-error-icon .error-wrapper .error-icon.fdx-circle-remove {
  color: #aa1c1c;
}
fdx-mdb-error-icon .error-wrapper .errors-list {
  overflow-x: hidden;
}
fdx-mdb-error-icon .error-wrapper .errors-list span {
  line-height: 17rem!important;
}
fdx-mdb-error-icon .error-wrapper .errors-list-item {
  text-align: left;
  border-bottom: 1px solid #d3d3d3;
  line-height: 1;
  vertical-align: text-bottom;
  padding: 15rem 10rem;
  transition: background-color 0.3s;
  width: 128rem !important;
}
fdx-mdb-error-icon .error-wrapper .errors-list-item:hover {
  background-color: #e1eef4;
}
fdx-mdb-error-icon .error-wrapper .errors-list-item .message {
  width: calc(100% - 21rem);
  display: inline-block;
  overflow-wrap: break-word;
}
fdx-mdb-error-icon .error-wrapper .errors-list-item .fdx-circle-alert {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #ce6c0d;
}
fdx-mdb-error-icon .error-wrapper .errors-list-item .fdx-circle-remove {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #aa1c1c;
}
fdx-mdb-error-icon .error-wrapper .errors-list-item.ng-enter,
fdx-mdb-error-icon .error-wrapper .errors-list-item.ng-leave,
fdx-mdb-error-icon .error-wrapper .errors-list-item.ng-move {
  transition: none !important;
}
fdx-mdb-error-icon .error-wrapper .dropdown-menu {
  display: block !important;
  opacity: 0;
  transition: all 0.3s;
  left: -92rem;
  top: 21rem;
  width: 0;
  pointer-events: none;
  height: auto;
  max-height: unset;
}
fdx-mdb-error-icon .error-wrapper .dropdown-menu:hover {
  opacity: 1;
  width: 128rem;
}
fdx-mdb-error-icon .error-wrapper.open .dropdown-menu,
fdx-mdb-error-icon .error-wrapper:hover .dropdown-menu {
  opacity: 1;
  width: 128rem;
}
fdx-mdb-error-icon.no-margin .error-wrapper {
  margin-top: 0;
}
.expanded fdx-mdb-asset-error .error-wrapper .errors-list-item {
  width: 300rem !important;
}
.expanded fdx-mdb-asset-error .error-wrapper .dropdown-menu:hover {
  width: 300rem;
}
.expanded fdx-mdb-asset-error .error-wrapper.open .dropdown-menu,
.expanded fdx-mdb-asset-error .error-wrapper:hover .dropdown-menu {
  width: 300rem;
}
.asset-cats-wrapper.view fdx-mdb-asset-error .error-wrapper {
  margin-top: 0;
}
.errors-list {
  overflow-x: hidden;
}
.errors-list span {
  line-height: 17rem!important;
}
.errors-list-item {
  text-align: left;
  border-bottom: 1px solid #d3d3d3;
  line-height: 1;
  vertical-align: text-bottom;
  padding: 15rem 10rem;
  transition: background-color 0.3s;
  width: 128rem !important;
}
.errors-list-item:hover {
  background-color: #e1eef4;
}
.errors-list-item .message {
  width: calc(100% - 21rem);
  display: inline-block;
  overflow-wrap: break-word;
}
.errors-list-item .fdx-circle-alert {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #ce6c0d;
}
.errors-list-item .fdx-circle-remove {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #aa1c1c;
}
.errors-list-item.ng-enter,
.errors-list-item.ng-leave,
.errors-list-item.ng-move {
  transition: none !important;
}
.popover-content {
  padding: 0 !important;
}
.popover {
  border-radius: 0 !important;
  z-index: 3333 !important;
}
.popover .arrow {
  display: none !important;
}
.popover .arrow + .popover-inner {
  border-top: none !important;
}

fdx-mdb-breadcrumbs .fdx-breadcrumbs {
  display: flex;
  overflow: hidden;
  margin: auto;
  width: 100%;
  height: 49.5rem;
  text-align: center;
  z-index: 1;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  text-decoration: none;
  margin: auto;
  height: 100%;
  max-width: 270rem;
  padding-left: 33rem;
  padding-right: 13.2rem;
  background-color: transparent;
  color: #888;
  user-select: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:first-child {
  padding-left: 13.2rem;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:last-child {
  padding-right: 13.2rem;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:last-child:after {
  content: none;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 49.5rem;
  height: 49.5rem;
  top: 0;
  right: -24.44444444rem;
  background-color: transparent;
  border-top-right-radius: 5rem;
  transform: scale(0.707) rotate(45deg);
  box-shadow: 1rem -1rem rgba(0, 0, 0, 0.25);
  z-index: 1;
  transition: background-color 0.1s, color 0.1s;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb .breadcrumb-icon {
  width: auto;
  font-size: 2em;
  margin-right: 0.5em;
  margin-left: 0.5em;
  color: rgba(51, 51, 51, 0.2);
  transition: color 0.2s, margin 0.2s;
  z-index: 2;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb .breadcrumb-text {
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  transition: max-width 0.2s;
  overflow: hidden;
  white-space: nowrap;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb .breadcrumb-text span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb .breadcrumb-text .breadcrumb-title {
  font-weight: bold;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb div.breadcrumb-dropdown-menu div.btn {
  width: auto;
  padding: 0.4em;
  margin: 0;
  border-radius: 50%;
  z-index: 2;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb.active,
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:hover,
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:last-child {
  background: transparent;
  color: #333;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb.active:after,
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:hover:after,
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:last-child:after {
  background: transparent;
  color: #333;
}
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb.active .breadcrumb-icon,
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:hover .breadcrumb-icon,
fdx-mdb-breadcrumbs .fdx-breadcrumbs div.fdx-breadcrumb:last-child .breadcrumb-icon {
  color: #333;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-compliance-icon span.compliance-icon.fdxicon-regular {
  vertical-align: text-center;
  font-size: inherit;
}
fdx-mdb-compliance-icon span.compliance-icon.fdxicon-regular.rule-compliance {
  color: #6aa445;
}
fdx-mdb-compliance-icon span.compliance-icon.fdxicon-regular.rule-deviation {
  color: #ce6c0d;
}
fdx-mdb-compliance-icon span.compliance-icon.fdxicon-regular.rule-outOfDate {
  color: #AA1C1C;
}
.tooltip.compliance-tooltip .tooltip-inner {
  width: 100rem !important;
  text-align: center;
  display: inline-block !important;
  background-color: #036B82;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-compliance-detailed a {
  display: block;
  margin: 5rem 0 0 0;
}
fdx-mdb-compliance-detailed a .compliance {
  color: #6aa445;
  vertical-align: middle;
  position: relative;
  bottom: 1rem;
}
fdx-mdb-compliance-detailed a .deviation {
  color: #ce6c0d;
  vertical-align: middle;
  position: relative;
  bottom: 1rem;
}
fdx-mdb-compliance-detailed a .nonStandard {
  color: #00a9ce;
  vertical-align: middle;
  position: relative;
  bottom: 1rem;
}
fdx-mdb-compliance-detailed a .outOfDate.fdx-warning {
  color: #AA1C1C;
  vertical-align: middle;
  position: relative;
  bottom: 1rem;
}
fdx-mdb-compliance-detailed .tooltip {
  left: 40rem!important;
}
fdx-mdb-compliance-detailed .tooltip .tooltip-inner {
  width: 100rem !important;
  text-align: center;
  display: inline-block !important;
  background-color: #036B82;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-identifier-input input.form-control {
  display: inline-block;
  width: calc(100% - 74rem);
}
fdx-mdb-identifier-input .identifier-input-with-counter input.form-control {
  display: inline-block;
  width: calc(100% - 100rem);
}
fdx-mdb-identifier-input button {
  display: inline-block;
  height: 39rem;
  width: 66rem;
  padding: 0rem;
  margin-left: 4rem;
  margin-top: -2rem;
  outline: none!important;
  vertical-align: initial !important;
}
fdx-mdb-identifier-input button:focus {
  color: #00a9ce !important;
}
fdx-mdb-identifier-input .error-icon {
  left: -30rem !important;
}
fdx-mdb-identifier-input .text-view {
  display: inline-block;
  width: calc(100% - 25rem);
  word-break: break-word;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-vis-body {
  max-height: 72vh !important;
  min-height: 25vh;
}
.fdx-mdb-vis-body .search-container {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem 0;
}
.fdx-mdb-vis-body .search-container-search {
  position: relative;
  margin: 0 10rem 0 0;
  border: 1rem solid #d3d3d3;
  display: inline-block;
  background-color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
}
.fdx-mdb-vis-body .search-container-search input {
  border: none;
  height: 40rem;
  width: 100%;
  box-shadow: none;
  padding: 0 10rem 0 35rem;
}
.fdx-mdb-vis-body .search-container-search input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a0a0a0;
  opacity: 1;
  /* Firefox */
}
.fdx-mdb-vis-body .search-container-search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a0a0a0;
}
.fdx-mdb-vis-body .search-container-search input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a0a0a0;
}
.fdx-mdb-vis-body .search-container-search input:focus {
  outline: none;
}
.fdx-mdb-vis-body .search-container-search .fdx-search {
  left: 0;
  position: absolute;
  padding: 10rem;
  pointer-events: none;
  color: #757575;
}
.fdx-mdb-vis-body .search-container .dropdown {
  float: right;
  padding: 0;
}
.fdx-mdb-vis-body .search-container .dropdown-toggle {
  padding: 10rem 14rem;
}
.fdx-mdb-vis-body .search-container .dropdown-header {
  padding: 8rem 70rem 8rem 16rem;
}
.fdx-mdb-vis-body .search-container .dropdown-header .dropdown-menu-icon-right {
  padding: 0;
}
.fdx-mdb-vis-body .search-container .plugin-drop {
  width: 200rem;
}
.fdx-mdb-vis-body .options {
  max-height: 60vh;
  overflow: auto;
  border: 1rem solid #d3d3d3;
  position: relative;
  min-height: 48rem;
  background-color: #fff;
}
.fdx-mdb-vis-body .options .panel-group .panel {
  color: #333;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  position: relative;
}
.fdx-mdb-vis-body .options .panel-group .panel-text {
  white-space: nowrap;
  width: 87%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 26rem;
  vertical-align: middle;
}
.fdx-mdb-vis-body .options .panel-group .panel .pull-right {
  margin: 11rem;
}
.fdx-mdb-vis-body .options .panel-group .panel .pull-right.fdxicon-regular {
  font-size: 16rem;
  color: #00677d;
  position: absolute;
  right: 0;
  top: 4rem;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-heading {
  background-color: #f6f6f6;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-heading .panel-title {
  margin: 0;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-heading .panel-title a {
  text-decoration: none;
  color: #333;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-heading .panel-title a .panel-title-content {
  margin: 0;
  padding: 10rem;
  position: relative;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  border-bottom: 1rem solid #d3d3d3;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body {
  background-color: #fff;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body h1 {
  margin: 0;
  display: inline-block;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body .vis {
  border-bottom: 1rem solid #d3d3d3;
  background: #fff;
  position: relative;
  display: flex;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body .vis .vis-open {
  flex: 1;
  padding: 5rem 5rem 5rem 20rem;
  cursor: pointer;
  text-decoration: none;
  color: #4c4c4c;
  font-size: 14rem;
  line-height: 36rem;
  margin: 0;
  display: inline-block;
  width: 90%;
  vertical-align: top;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body .vis .vis-open .substring {
  color: #666;
  font-size: 11rem;
  margin-left: 2rem;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body .vis .vis-open:hover .mainstring {
  text-decoration: underline;
}
.fdx-mdb-vis-body .options .panel-group .panel .panel-body .vis button.btn {
  position: relative;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-radius: 0;
}
.fdx-mdb-vis-body .options .no-options {
  text-align: center;
  color: #666;
  font-style: italic;
  position: absolute;
  width: 100%;
  top: 0;
  background-color: #fff;
}
.fdx-mdb-vis-body .options .no-options p {
  margin: 5rem;
  line-height: 36rem;
}
.fdx-mdb-vis-body.loading-state {
  position: relative;
  height: 300rem;
}
.fdx-mdb-vis-body.loading-state p {
  color: #4c4c4c;
  position: absolute;
  z-index: 5001;
  left: 0;
  right: 0;
  text-align: center;
  top: 100rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.selectedOption {
  width: 280rem;
  display: inline-block;
}
.vs-scroll-shadow {
  position: absolute;
  z-index: 200;
  opacity: 0;
  transition: all linear 150ms;
}
.vs-scroll-shadow:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity ease-out 0.5s;
  transition: opacity ease-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  pointer-events: none;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bfd2d2d2', endColorstr='#00d2d2d2', GradientType=0);
}
.vs-scroll-container {
  width: 99.9%;
  height: 100%;
  overflow-y: auto;
  display: block;
  background-color: white;
  z-index: 94;
  position: relative;
}
.vs-scroll-container .canvas {
  background-color: white;
  position: relative;
}
.vs-scroll-container div.renderer {
  width: 100%;
  cursor: pointer;
  height: 30rem;
  position: absolute;
  color: #333;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  border-bottom: 1rem solid #d3d3d3;
}
.vs-scroll-container div.renderer.odd {
  background-color: #F6F6F6;
}
.vs-scroll-container div.renderer.selected div {
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  padding-left: 7rem;
}
.vs-scroll-container div.renderer.selected::before {
  content: "";
  background-color: #00677d;
  position: absolute;
  height: 100%;
  width: 6rem;
}
.vs-scroll-container div.renderer:hover {
  box-shadow: 0rem 0rem 50rem -8rem #999;
  z-index: 300;
}
.vs-scroll-container div.no-items {
  text-align: center;
  padding: 100rem 30rem 0;
  color: #989898;
  font-style: italic;
}
#fdxMdbSearchResultsList .vs-scroll-container div.renderer:hover {
  box-shadow: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-identifier-input-angular input.form-control {
  display: inline-block;
  width: calc(100% - 74rem);
}
fdx-mdb-identifier-input-angular .identifier-input-with-counter input.form-control {
  display: inline-block;
  width: calc(100% - 100rem);
}
fdx-mdb-identifier-input-angular button {
  display: inline-block;
  height: 39rem;
  width: 66rem;
  padding: 0rem;
  margin-left: 4rem;
  margin-top: -2rem;
  outline: none!important;
  vertical-align: initial !important;
}
fdx-mdb-identifier-input-angular button:focus {
  color: #00a9ce !important;
}
fdx-mdb-identifier-input-angular .error-icon {
  left: -30rem !important;
}
fdx-mdb-identifier-input-angular .text-view {
  display: inline-block;
  width: calc(100% - 25rem);
  word-break: break-word;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-cats .asset-cats-wrapper {
  height: calc(100vh - 169rem);
  background-color: #fff;
  position: relative;
  padding-bottom: 0;
}
fdx-mdb-asset-cats .asset-cats-wrapper .empty-message {
  text-align: center;
  font-style: italic;
  color: #666;
  padding: 10rem;
}
fdx-mdb-asset-cats .asset-cats-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60rem;
  border-top: 1rem solid #d3d3d3;
  padding: 5rem 10rem;
  text-align: right;
}
fdx-mdb-asset-cats .asset-cats-buttons .ng-hide.ng-hide-animate {
  display: none;
}
fdx-mdb-asset-cats .asset-cats-buttons .btn {
  margin: 5rem;
  transition-delay: 0.1s;
}
fdx-mdb-asset-cats .asset-cats-buttons .fdxicon-regular {
  font-size: 10rem;
}
fdx-mdb-asset-cats .asset-cats-buttons .left-aligned-button {
  float: left;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list {
  line-height: 50rem;
  padding: 0;
  cursor: pointer;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-msg {
  font-style: italic;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-msg .fdxixon-circled {
  font-size: 18rem;
  vertical-align: text-bottom;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-msg .error-msg {
  margin-right: 5rem;
  color: #aa1c1c;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-msg .warning-msg {
  color: #ce6c0d;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-box {
  position: absolute;
  width: 350rem;
  bottom: 53rem;
  left: 10rem;
  background-color: #fff;
  border: 1rem solid #d3d3d3;
  box-shadow: 0 0 15rem -3rem #7b7b7b;
  display: none;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list #scrollableErrorList {
  max-height: 350rem;
  overflow: auto;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item {
  display: flex;
  align-items: center;
  text-align: left;
  border-bottom: 1rem solid #d3d3d3;
  line-height: 1;
  vertical-align: text-bottom;
  padding: 15rem;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item:hover {
  transition: background-color 0.3s;
  background-color: #e1eef4;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item .error-text-container {
  overflow: hidden;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item .fdxicon-regular {
  font-size: 1.2em;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item .error-msg {
  font-size: 1.1em;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item .error-path {
  font-size: 0.9em;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item .fdx-circle-alert {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #ce6c0d;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item .fdx-circle-remove {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #aa1c1c;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item.ng-enter,
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item.ng-leave,
fdx-mdb-asset-cats .asset-cats-buttons .error-list-item.ng-move {
  transition: none !important;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list:hover .error-list-box {
  display: block;
}
fdx-mdb-asset-cats .asset-cats-buttons .error-list .noErrors {
  color: #6666;
  font-style: italic;
  text-align: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-cats .loading-cats {
  position: relative;
  height: 100rem;
}
fdx-mdb-cats .loading-cats-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #999;
  font-style: italic;
  text-align: center;
}
fdx-mdb-cats .cat-wrapper .panel-title .cat-help {
  color: #d3d3d3;
  font-size: 14rem;
}
fdx-mdb-cats .noCATs {
  padding: 30rem;
  text-align: center;
  font-style: italic;
  color: #999;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-cats-copy .modal-body {
  min-height: 145rem;
  overflow-y: visible;
  overflow: visible;
}
fdx-mdb-cats-copy .none-msg {
  margin: 10rem;
  border: 1px solid #d9d9d9;
  font-style: italic;
  color: #999;
  text-align: center;
  padding: 20rem;
}
fdx-mdb-cats-copy .warning {
  margin: 5rem;
  border: 1px solid #00a9ce;
  padding: 10rem;
  text-align: center;
}
fdx-mdb-cats-copy .warning .fdxicon-regular {
  color: #00a9ce;
  font-size: 19rem;
}
fdx-mdb-cats-copy .warning-text {
  line-height: 24rem;
  vertical-align: top;
  margin-left: 5rem;
}
fdx-mdb-cats-copy .assets-wrapper {
  margin-top: 10rem;
}
fdx-mdb-cats-copy .assets-wrapper .select-msg {
  margin-bottom: 5rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-cats-props .cat-list-wrapper {
  min-width: 200rem;
  overflow-y: visible;
}
fdx-mdb-cats-props .cat-list-wrapper .cat-value,
fdx-mdb-cats-props .cat-list-wrapper fdx-mdb-asset-view-list span {
  display: block;
  padding-top: 10rem;
}
fdx-mdb-cats-props .cat-list-wrapper .text-area-block {
  white-space: pre-wrap;
}
fdx-mdb-cats-props .cat-help {
  color: #d3d3d3;
  font-size: 13rem;
  margin-left: 2rem;
}
fdx-mdb-cats-props .nested-row {
  margin-bottom: 10rem;
  position: relative;
}
fdx-mdb-cats-props .nested-row .data-list-wrapper {
  position: relative;
  min-height: 30rem;
}
fdx-mdb-cats-props .nested-row .data-list-wrapper.colour .remove-btn,
fdx-mdb-cats-props .nested-row .data-list-wrapper.colour .add-btn {
  vertical-align: baseline;
}
fdx-mdb-cats-props .choice-option {
  font-size: 0;
}
fdx-mdb-cats-props .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
fdx-mdb-cats-props .row:nth-child(even) {
  background-color: #fafafa;
}
fdx-mdb-cats-props .row .col-md-3,
fdx-mdb-cats-props .row .col-md-9 {
  padding: 5rem 15rem;
}
fdx-mdb-cats-props .row .col-md-3 .label-wrapper {
  display: inline-block;
  padding: 9rem 0;
  width: auto;
}
fdx-mdb-cats-props .row .col-md-3 .label-wrapper label {
  font-weight: bold;
  display: inline;
  line-height: unset !important;
}
fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error {
  float: right;
  margin-top: 3rem;
  margin-right: -17rem;
}
fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper.open .dropdown-menu,
fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper:hover .dropdown-menu {
  width: 100rem !important;
}
fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper .errors-list-item {
  width: 100rem !important;
}
fdx-mdb-cats-props .row .col-md-12 {
  padding-left: 30rem;
  padding-right: 0;
}
fdx-mdb-cats-props .row .col-md-12.opened .before-element {
  border-left: 1px solid #929292;
  border-bottom: 1px solid #929292;
  width: 14rem;
  position: absolute;
  left: 16rem;
  top: -10rem;
}
fdx-mdb-cats-props .row .col-md-12.closed {
  padding: 0 !important;
  min-height: 0;
  line-height: 0;
}
fdx-mdb-cats-props .row .col-md-12.closed .before-element {
  display: none;
}
fdx-mdb-cats-props .row .col-md-12.closed .nested-cats-title {
  padding: 0 20rem;
  min-height: 0;
  line-height: 0;
  overflow: hidden;
}
fdx-mdb-cats-props .rc-wrapper {
  margin-bottom: 10rem;
}
fdx-mdb-cats-props .no-rc-wrapper {
  margin: 10rem;
  padding: 10rem !important;
  border: 1px solid #ececec;
}
fdx-mdb-cats-props .line {
  transition: background-color 0.3s;
}
fdx-mdb-cats-props .line.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #f1f6fa;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-cats-props .nested-cats {
  overflow-x: unset !important;
  overflow-y: visible !important;
  border: 1px solid #dddddd;
  border-right: 0px solid transparent;
  margin: 0;
  position: relative;
}
fdx-mdb-cats-props .nested-cats.not-last:before {
  content: '';
  border-bottom: 1px solid #929292;
  height: 20rem;
  width: 14rem;
  position: absolute;
  top: 0;
  left: -14rem;
}
fdx-mdb-cats-props .nested-cats.not-last {
  border-bottom: 0px solid transparent;
}
fdx-mdb-cats-props .nested-cats.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
fdx-mdb-cats-props .nested-cats.collpased {
  opacity: 0;
}
@keyframes boxanim {
  0% {
    background: #f1f6fa;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-cats-props .nested-cats-title {
  padding: 10rem 15rem 6rem;
  font-weight: bold;
  min-height: 40rem;
  display: flex;
  justify-content: flex-end;
}
fdx-mdb-cats-props .nested-cats-title .CAT-summary {
  font-weight: normal;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-cats-props .nested-cats-title .CAT-summary.expanded {
  display: none;
}
fdx-mdb-cats-props .nested-cats-title .CAT-summary.expanded {
  display: none;
}
fdx-mdb-cats-props .nested-cats-title-btns {
  display: flex;
}
fdx-mdb-cats-props .nested-cats-title-btns span {
  cursor: pointer;
  margin-top: 3rem;
  margin-left: 10rem;
  color: #00a9ce;
  font-size: 15rem;
}
fdx-mdb-cats-props .nested-cats-title-btns span:hover {
  color: #00677d;
}
fdx-mdb-cats-props .nested-cats-title-btns span.disabled {
  cursor: not-allowed;
  color: #d3d3d3;
}
fdx-mdb-cats-props .nested-cats-title-btns span.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-cats-props .nested-cats-wrapper {
  overflow-x: unset;
  overflow-y: visible;
  border-top: 1px solid #e9ebf2;
  display: none;
}
fdx-mdb-cats-props .nested-cats-wrapper.expanded {
  display: initial !important;
}
fdx-mdb-cats-props .with-button-input {
  width: calc(100% - 60rem) !important;
  display: inline-block;
}
fdx-mdb-cats-props .add-btn,
fdx-mdb-cats-props .remove-btn {
  cursor: pointer;
  color: #00a9ce;
  font-size: 16rem;
  display: inline-block;
}
fdx-mdb-cats-props .add-btn:hover,
fdx-mdb-cats-props .remove-btn:hover {
  color: #00677d;
}
fdx-mdb-cats-props .add-btn.disabled,
fdx-mdb-cats-props .remove-btn.disabled {
  color: #999;
  cursor: not-allowed;
}
fdx-mdb-cats-props .add-btn.disabled:hover,
fdx-mdb-cats-props .remove-btn.disabled:hover {
  color: #999;
}
fdx-mdb-cats-props .add-nested-btn,
fdx-mdb-cats-props .remove-nested-btn {
  cursor: pointer;
  color: #00a9ce;
  display: inline-block;
}
fdx-mdb-cats-props .add-nested-btn-text,
fdx-mdb-cats-props .remove-nested-btn-text {
  vertical-align: text-bottom;
}
fdx-mdb-cats-props .add-nested-btn .fdxicon-regular,
fdx-mdb-cats-props .remove-nested-btn .fdxicon-regular {
  font-size: 16rem;
}
fdx-mdb-cats-props .add-nested-btn:hover,
fdx-mdb-cats-props .remove-nested-btn:hover {
  color: #00677d;
}
fdx-mdb-cats-props .add-nested-btn.disabled,
fdx-mdb-cats-props .remove-nested-btn.disabled {
  color: #999;
  cursor: not-allowed;
}
fdx-mdb-cats-props .add-nested-btn.disabled:hover,
fdx-mdb-cats-props .remove-nested-btn.disabled:hover {
  color: #999;
}
fdx-mdb-cats-props .add-nested-btn {
  padding: 10rem 0 6rem;
}
fdx-mdb-cats-props .remove-nested-btn {
  float: right;
  padding-top: 3rem;
}
fdx-mdb-cats-props .input-wrapper {
  position: relative;
  margin-bottom: 5rem;
}
fdx-mdb-cats-props .input-wrapper input,
fdx-mdb-cats-props .input-wrapper textarea {
  display: inline-block;
  width: calc(100% - 30rem);
}
fdx-mdb-cats-props .CAT-error input,
fdx-mdb-cats-props .CAT-error .dropdown {
  border: 1px solid #aa1c1c;
  border-color: #aa1c1c !important;
  margin-top: 0;
}
fdx-mdb-cats-props .CAT-error input.search-input,
fdx-mdb-cats-props .CAT-error .dropdown.search-input {
  border-color: #d9d9d9 !important;
}
fdx-mdb-cats-props .group-used {
  color: #999;
  float: right;
}
fdx-mdb-cats-props .group-used-text {
  float: right;
  color: #999;
  font-size: 13rem;
  margin-right: 9rem;
}
fdx-mdb-cats-props input[type="color"] {
  width: 50rem !important;
  outline: none;
}
fdx-mdb-cats-props .colour-box {
  display: inline-block;
  width: 11rem;
  height: 11rem;
  border-radius: 25rem;
}
fdx-mdb-cats-props .colour-text {
  line-height: 33rem;
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-cats-props .none,
fdx-mdb-cats-props .no-property-value-replacement {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-mdb-cats-props .data-list-wrapper {
  padding-top: 9rem;
}
fdx-mdb-cats-props .collapse {
  display: block !important;
  overflow: hidden;
}
.expanded fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper .errors-list-item {
  width: 222rem !important;
}
.expanded fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper .dropdown-menu:hover {
  width: 222rem!important;
}
.expanded fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper.open .dropdown-menu,
.expanded fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper:hover .dropdown-menu {
  width: 222rem!important;
}
.CAT-tooltip.tooltip {
  max-width: 280rem !important;
}
.mapping-invalid-summary-icon {
  color: #aa1c1c;
  font-size: 14rem!important;
  margin-right: 3rem;
}
fdx-mdb-cats-props-dataset-mapping .mapping-loading,
fdx-mdb-cats-props-variable-mapping .mapping-loading {
  position: relative;
  height: 44rem;
}
fdx-mdb-cats-props-dataset-mapping .mapping-tooltip,
fdx-mdb-cats-props-variable-mapping .mapping-tooltip {
  font-size: 12rem!important;
  line-height: 14rem!important;
}
fdx-mdb-cats-props-dataset-mapping .mapping-tooltip em,
fdx-mdb-cats-props-variable-mapping .mapping-tooltip em {
  opacity: 0.8;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line,
fdx-mdb-cats-props-variable-mapping .mapping-line {
  overflow: visible;
  margin-bottom: 5rem;
  line-height: 32rem;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line.collapsed,
fdx-mdb-cats-props-variable-mapping .mapping-line.collapsed {
  overflow: hidden;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line.asset,
fdx-mdb-cats-props-variable-mapping .mapping-line.asset {
  display: flex;
  margin-bottom: 0;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line-dropdown,
fdx-mdb-cats-props-variable-mapping .mapping-line-dropdown {
  flex: 1;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line fdx-dropdown .dropdown-wrapper.with-clear,
fdx-mdb-cats-props-variable-mapping .mapping-line fdx-dropdown .dropdown-wrapper.with-clear {
  width: calc(100% - 48rem);
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .dropdown-clear-btn,
fdx-mdb-cats-props-variable-mapping .mapping-line .dropdown-clear-btn {
  font-size: 20rem;
  border: 1px solid #d9d9d9;
  padding: 9rem 8rem 9rem 8rem;
  width: 38rem!important;
  border-radius: 3rem;
  color: #00a9ce;
  margin: 0;
  margin-left: 5rem;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line-btn,
fdx-mdb-cats-props-variable-mapping .mapping-line-btn {
  cursor: pointer;
  align-self: flex-start;
  font-size: 20rem;
  border: 1px solid #00a9ce;
  padding: 9rem 8rem 9rem 8rem;
  width: 38rem!important;
  border-radius: 3rem;
  color: #00a9ce;
  margin-left: 7rem;
  margin-bottom: 9rem;
  margin-top: 0;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line-btn.collapsed,
fdx-mdb-cats-props-variable-mapping .mapping-line-btn.collapsed,
fdx-mdb-cats-props-dataset-mapping .mapping-line-btn.fdx-visualisation,
fdx-mdb-cats-props-variable-mapping .mapping-line-btn.fdx-visualisation,
fdx-mdb-cats-props-dataset-mapping .mapping-line-btn.fdx-remove,
fdx-mdb-cats-props-variable-mapping .mapping-line-btn.fdx-remove {
  border-color: #d9d9d9;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line-btn:hover,
fdx-mdb-cats-props-variable-mapping .mapping-line-btn:hover {
  color: #00a9ce;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .error .dropdown,
fdx-mdb-cats-props-variable-mapping .mapping-line .error .dropdown {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .error-text,
fdx-mdb-cats-props-variable-mapping .mapping-line .error-text {
  font-style: italic;
  color: #d3d3d3;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .fdx-arrow-5-e,
fdx-mdb-cats-props-variable-mapping .mapping-line .fdx-arrow-5-e {
  cursor: pointer;
  color: #00a9ce;
  padding: 5rem;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .fdx-arrow-5-e:hover,
fdx-mdb-cats-props-variable-mapping .mapping-line .fdx-arrow-5-e:hover {
  color: #00677d;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .fdx-circle-remove,
fdx-mdb-cats-props-variable-mapping .mapping-line .fdx-circle-remove {
  cursor: pointer;
  font-size: 14rem;
  padding: 5rem;
  color: #666;
}
fdx-mdb-cats-props-dataset-mapping .mapping-line .fdx-circle-remove:hover,
fdx-mdb-cats-props-variable-mapping .mapping-line .fdx-circle-remove:hover {
  color: #454545;
}
fdx-mdb-cats-props-dataset-mapping .noCATs,
fdx-mdb-cats-props-variable-mapping .noCATs {
  padding: 30rem;
  text-align: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-associate-asset .modal-body {
  overflow: visible!important;
  overflow-y: visible!important;
}
fdx-mdb-associate-asset .associate-position-controls {
  display: flex;
  align-items: center;
}
fdx-mdb-associate-asset .associate-position-controls-label,
fdx-mdb-associate-asset .associate-position-controls-position,
fdx-mdb-associate-asset .associate-position-controls-asset-reference {
  padding: 0 2rem;
}
fdx-mdb-associate-asset .associate-position-controls-position {
  width: 20%;
}
fdx-mdb-associate-asset .associate-position-controls-asset-reference {
  width: 40%;
}
fdx-mdb-associate-asset .associate-asset-search {
  width: 140% !important;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table {
  margin: 0;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table-scroller {
  width: 100% !important;
  max-height: 460rem;
  border: 1px solid #d3d3d3;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table-controls-visibility {
  margin-right: 0!important;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table thead tr {
  z-index: 2;
  position: sticky;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table th {
  position: sticky!important;
  top: 0;
  border: 0!important;
  outline: 1rem solid #d3d3d3;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table .asset-smart-table-controls-transcluded-left {
  width: 70%;
  white-space: nowrap;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table .checkbox-column {
  position: sticky!important;
  z-index: 1;
  width: 60rem;
  min-width: 60rem;
  max-width: 60rem;
  text-align: center;
  left: 0;
  border: 0!important;
  outline: 1rem solid #d3d3d3;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table .bold {
  font-weight: bold;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table table {
  width: 100%!important;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table td {
  background: #fcfcfc !important;
  word-wrap: break-word;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table td:not(.checkbox-column) {
  pointer-events: none;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table td li.cell-list-item div.flex-line.sticky-line {
  background: #fcfcfc !important;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table td.last {
  border-right: 0;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table tr.last td,
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table tr.none td {
  border-bottom: 0!important;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table tr.none td {
  border: 0!important;
}
fdx-mdb-associate-asset fdx-asset-smart-table .asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td {
  vertical-align: middle;
}
fdx-mdb-associate-asset fdx-asset-smart-table fdx-mdb-compliance-icon {
  display: none;
}
fdx-mdb-associate-asset fdx-asset-smart-table .fdx-mdb-rule-visibility {
  display: none !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dropdown-menu.import-asset-selection-options-menu li a {
  display: flex;
  padding: 0;
}
.dropdown-menu.import-asset-selection-options-menu li a span {
  flex: 1 0 auto;
  padding: 8rem 16rem;
}
.dropdown-menu.import-asset-selection-options-menu li a span.right {
  flex: 0 0 auto;
  border-left: 1rem solid gray;
  background: white;
}
.dropdown-menu.import-asset-selection-options-menu li a span.right:hover {
  background: rgba(115, 189, 221, 0.4);
}
fdx-mdb-associate-from-source .modal-body {
  overflow: visible!important;
  overflow-y: visible!important;
}
fdx-mdb-associate-from-source .loader {
  height: 300rem;
  width: 100%;
}
fdx-mdb-associate-from-source .source-header-text {
  max-width: 400rem;
  white-space: nowrap;
  overflow: hidden;
  float: left;
  text-overflow: ellipsis;
  line-height: 38rem;
  margin-right: 5rem;
}
fdx-mdb-associate-from-source .semicolon:after {
  content: ':';
}
fdx-mdb-associate-from-source .btn.toolbar-button {
  width: auto;
  margin: 0;
  padding: 8rem 12rem;
  font-size: 15rem;
  line-height: 1.2;
}
fdx-mdb-associate-from-source .btn.toolbar-button.toggled {
  background-color: #00a9ce;
  color: white;
}
fdx-mdb-associate-from-source .rule-cell {
  white-space: nowrap;
}
fdx-mdb-associate-from-source .required {
  font-weight: bold;
}
fdx-mdb-associate-from-source .notsuggested {
  font-style: italic;
}
fdx-mdb-associate-from-source .fdx-circle-alert {
  color: #aa1c1c;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table {
  margin: 0;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table-scroller {
  width: 100% !important;
  max-height: 460rem;
  border: 1px solid #d3d3d3;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table-controls-visibility {
  margin-right: 0!important;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table thead tr {
  z-index: 2;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table th {
  position: sticky!important;
  top: 0;
  border: 0!important;
  outline: 1rem solid #d3d3d3;
  white-space: break-spaces !important;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table .control-column {
  position: sticky!important;
  z-index: 1;
  text-align: center;
  border: 0!important;
  outline: 1rem solid #d3d3d3;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table .control-column.select-column {
  min-width: 86rem;
  max-width: 86rem;
  left: 0;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table .control-column.delete-column {
  min-width: 126rem;
  max-width: 126rem;
  left: 86rem;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table .control-column.rule-column {
  left: 212rem;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table table {
  width: 100%!important;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table td {
  background: #fcfcfc !important;
  word-wrap: break-word;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table td:not(.control-column) {
  pointer-events: none;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table td li.cell-list-item div.flex-line.sticky-line {
  background: #fcfcfc !important;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table td.last {
  border-right: 0;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table tr.last td {
  border-bottom: 0!important;
}
fdx-mdb-associate-from-source fdx-asset-smart-table-vs .asset-smart-table tr.none td {
  border: 0!important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body {
  overflow: visible!important;
  overflow-y: visible!important;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm {
  padding: 0 1.7em;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .flex-row {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  padding: 8rem 0 7rem 0;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .flex-row.vertical {
  flex-direction: column;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .text-row {
  align-items: center;
  flex-direction: row;
  padding-bottom: 20rem;
  text-overflow: ellipsis;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdx-circle-info {
  font-size: 24px;
  color: #AA1C1C;
  left: 40rem;
  margin-top: 0rem;
  margin-right: 10px;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .help-message-container {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .form-message {
  font-size: 1.2em;
  flex: 1;
  text-align: center;
  font-weight: bold;
  margin-left: 10px;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdxMdbAssociateFromSourceConfirmDeletionTableWrapper {
  display: inline-flex;
  border-collapse: collapse;
  max-height: 400rem;
  overflow-y: auto;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdxMdbAssociateFromSourceConfirmDeletionTableWrapper table {
  border-collapse: collapse;
  width: 100%;
  border: 1rem solid #DDDDDD;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdxMdbAssociateFromSourceConfirmDeletionTableWrapper table th {
  border-bottom: 2rem solid #DDDDDD;
  background-color: #F3F3F3;
  padding: 16rem 0rem 14rem 0rem;
  color: #333;
  white-space: nowrap;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdxMdbAssociateFromSourceConfirmDeletionTableWrapper table td {
  border-bottom: 1rem solid #DDDDDD;
  padding: 10rem 0rem 10rem 0rem;
  max-width: 90rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdxMdbAssociateFromSourceConfirmDeletionTableWrapper table td .fdxicon-regular {
  margin-left: 26rem;
}
fdx-mdb-associate-from-source-confirm-deletion .modal-body #fdxMdbAssociateFromSourceConfirmDeletionForm .fdxMdbAssociateFromSourceConfirmDeletionTableWrapper table td:nth-child(1) {
  width: 70rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-dissociate-asset .modal-body {
  overflow: visible!important;
  overflow-y: visible!important;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm {
  padding: 0 1.7em;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .flex-row {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  padding: 8rem 0 10rem 0;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .flex-row.vertical {
  flex-direction: column;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .text-row {
  align-items: center;
  flex-direction: row;
  padding-bottom: 20rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .help-message-container {
  display: flex;
  align-items: center;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .help-message-container .fdx-help {
  font-size: 24px;
  color: #3BA9CF;
  margin-right: 10rem;
  margin-left: 50rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .help-message-container .form-message {
  font-size: 1.2em;
  flex: 1;
  font-weight: bold;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper {
  display: inline-flex;
  border-collapse: collapse;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper table {
  border-collapse: collapse;
  width: 100%;
  border: 1rem solid #DDDDDD;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper table th {
  border-bottom: 2rem solid #DDDDDD;
  background-color: #F3F3F3;
  padding: 16rem 10rem 14rem 10rem;
  color: #333;
  white-space: nowrap;
  width: 212rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper table th:first-child {
  width: 70rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper table td {
  border-bottom: 1rem solid #DDDDDD;
  padding: 10rem 10rem 10rem 10rem;
  max-width: 90rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper table td .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .fdxMdbDissociateAssetTableWrapper table td .fdxicon-regular {
  margin-left: 16rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .checkbox-row {
  margin-bottom: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .checkbox-row .fdx-circle-info {
  font-size: 16px;
  color: #AA1C1C;
  padding-top: 5rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .checkbox-row .fdx-input-checkbox {
  font-weight: normal !important;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .checkbox-row .fdx-input-checkbox i {
  float: right;
  padding-top: 11rem;
}
fdx-mdb-dissociate-asset .modal-body #fdxMdbDissociateAssetForm .checkbox-row .fdx-input-checkbox span {
  padding-right: 12rem;
  margin-top: 5rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-clone #duplicate-modal-tabs {
  margin: 0;
}
fdx-mdb-asset-clone .fdx-mdb-clone-asset-modal {
  background-color: #fff;
}
fdx-mdb-asset-clone .fdx-mdb-clone-asset-modal .modal-body {
  padding: 30rem;
  max-height: calc(100vh - 260rem);
}
fdx-mdb-asset-clone .fdx-mdb-clone-asset-modal .left-column,
fdx-mdb-asset-clone .fdx-mdb-clone-asset-modal .right-column {
  padding: 0 30rem;
}
fdx-mdb-asset-clone .replace-input {
  padding: 0;
}
fdx-mdb-asset-clone .replace-input #replaceString {
  display: inline-block;
  margin-right: 5rem;
}
fdx-mdb-asset-clone .small-input {
  width: 80rem !important;
}
fdx-mdb-asset-clone .form-control-error {
  padding: 0 !important;
  margin: 0 !important;
}
fdx-mdb-asset-clone .form-group .control-label {
  text-align: right;
  margin: 0;
}
fdx-mdb-asset-clone .form-group .clone-type-desc {
  padding: 10rem 5rem;
  color: #666;
  font-size: 12rem;
}
fdx-mdb-asset-clone .form-group .clone-type-desc-text {
  display: block;
  overflow: auto;
  padding-left: 5rem;
}
fdx-mdb-asset-clone .form-group .clone-type-desc .fdxicon-regular {
  float: left;
  color: #3BA9CF;
}
fdx-mdb-asset-clone .form-group input.form-control {
  margin-bottom: 15rem;
}
fdx-mdb-asset-clone .form-group input.form-control.error {
  border-color: #aa1c1c;
}
fdx-mdb-asset-clone .smartCloneTab .control-label {
  text-align: left;
}
fdx-mdb-asset-clone .smartCloneTab .append-checkbox {
  padding: 0;
}
fdx-mdb-asset-clone .nav-tabs {
  padding: 0;
  margin-bottom: 10rem;
  border: none;
}
fdx-mdb-asset-clone .nav-tabs li {
  width: 50%;
  text-align: center;
}
fdx-mdb-asset-clone .nav-tabs li:first-child a {
  border-left: 1rem solid #fff !important;
}
fdx-mdb-asset-clone .nav-tabs li a {
  padding: 15rem 10rem;
  border-radius: 0;
  border-top: none;
  margin: 0 !important;
}
fdx-mdb-asset-clone .nav-tabs li a .fdxicon-regular {
  margin-right: 5rem;
}
fdx-mdb-asset-clone .nav-tabs li a span {
  font-size: 13rem;
}
fdx-mdb-asset-clone .nav-tabs li.active a .fdxicon-regular {
  color: #00a9ce;
}
fdx-mdb-asset-clone .nav-tabs li.disabled a {
  background-color: #f8f8f8;
  color: #666;
}
fdx-mdb-asset-clone .nav-tabs li.disabled a:hover {
  color: #666;
  cursor: not-allowed;
}
fdx-mdb-asset-clone .preview-card {
  background: #F8F8F8;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
}
fdx-mdb-asset-clone .preview-card-row {
  margin-bottom: 10rem;
}
fdx-mdb-asset-clone .preview-card-label {
  color: #999999;
  display: inline-block;
  width: 70rem;
}
fdx-mdb-asset-clone .preview-card-text {
  letter-spacing: 2.8rem;
  color: #333333;
  font-size: 16rem;
}
fdx-mdb-asset-clone .preview-card-number-preview {
  color: #00a9ce;
}
fdx-mdb-asset-clone .preview-card .no-property-value-replacement {
  color: #6666;
  font-style: italic;
  font-size: 14rem;
  letter-spacing: normal;
}
fdx-mdb-asset-clone .preview-card .highlight {
  background: #00A9CE80;
  border-radius: 4px;
  letter-spacing: normal;
}
fdx-mdb-asset-clone .preview-card .replacement {
  color: #00a9ce;
  font-weight: bold;
}
fdx-mdb-asset-clone .card-body {
  margin-bottom: 15rem;
}
fdx-mdb-asset-clone .error-icon {
  font-size: 19rem;
  float: right;
  padding-top: 8rem;
}
fdx-mdb-asset-clone .error-icon.fdx-circle-remove {
  color: #aa1c1c;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-delete-asset-modal #deleteAssetModalBody {
  overflow: auto;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMainMessage,
fdx-mdb-delete-asset-modal #deleteDatasetAssetModalMainMessage {
  padding: 20rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMainMessage #deleteAssetModalQuestionIcon,
fdx-mdb-delete-asset-modal #deleteDatasetAssetModalMainMessage #deleteAssetModalQuestionIcon,
fdx-mdb-delete-asset-modal #deleteAssetModalMainMessage #deleteDatasetAssetModalQuestionIcon,
fdx-mdb-delete-asset-modal #deleteDatasetAssetModalMainMessage #deleteDatasetAssetModalQuestionIcon {
  display: block;
  margin-left: calc(50% - 9rem);
  font-size: 25rem;
  margin-bottom: 5rem;
  color: #0085a2;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMainMessage #deleteAssetModalMessage,
fdx-mdb-delete-asset-modal #deleteDatasetAssetModalMainMessage #deleteAssetModalMessage,
fdx-mdb-delete-asset-modal #deleteAssetModalMainMessage #deleteDatasetAssetModalMessage,
fdx-mdb-delete-asset-modal #deleteDatasetAssetModalMainMessage #deleteDatasetAssetModalMessage {
  text-align: center;
}
fdx-mdb-delete-asset-modal .delete-asset-modal-affected-list {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 300rem;
}
fdx-mdb-delete-asset-modal .delete-asset-modal-affected {
  display: inline-block;
  width: 100%;
}
fdx-mdb-delete-asset-modal .delete-asset-modal-affected .fdxicon-regular {
  float: left;
  font-size: 26rem;
  line-height: 55rem;
  color: #333;
}
fdx-mdb-delete-asset-modal .delete-asset-modal-affected .label {
  padding-left: 10rem;
  line-height: 21rem;
  margin: 0;
  margin-top: 8rem;
  width: calc(100% - 26rem);
  float: left;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-delete-asset-modal .delete-asset-modal-affected .name {
  line-height: 18rem;
  float: left;
  padding-left: 10rem;
  width: calc(100% - 26rem);
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  font-size: 12rem;
}
fdx-mdb-delete-asset-modal .multiple-assets {
  width: 100%;
  height: 300rem;
  border: 1rem solid #d3d3d3;
  flex: 1 1 0px;
  min-height: 0;
  display: inline-block;
  position: relative;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 71rem;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem > span.fdxicon-regular {
  font-size: 26rem;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemTitle {
  flex-grow: 1;
  line-height: 21rem;
  margin: 0 0 0 10rem;
  width: 63%;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemTitle .secondary,
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemTitle .tertiary {
  font-size: 12rem;
  line-height: 17rem;
  color: #333;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemFlags {
  color: #333;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemFlags .fdxicon-outline,
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemFlags .fdxicon-regular {
  font-size: 20rem;
  margin-left: 4rem;
  vertical-align: top;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem span.itemFlags .flag-icon-tooltip {
  font-size: 13rem;
  line-height: 13rem;
  text-align: justify;
}
fdx-mdb-delete-asset-modal div.assetBrowseListItem .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper {
  display: flex;
  flex-direction: column;
  background-color: #f5e2cf;
  border: 1px solid #ce6c0d;
  border-radius: 5rem;
  padding: 12rem 30rem;
  color: black;
  font-size: 14rem;
  font-weight: 500;
  margin-top: 10rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .warning-content {
  display: flex;
  margin: 0 0 0 15rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .warning-content #deleteAssetModalMetaDataWarningIcon {
  color: #ce6c0d;
  font-size: 16rem;
  margin-right: 15rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .warning-content .warning-text-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 82%;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .warning-content .warning-text-wrapper #deleteAssetModalMetaDataWarning {
  flex: 1;
  display: block;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .warning-content .warning-text-wrapper #deleteAssetModalMetaDataWarningMappingsNotFixed {
  flex: 1;
  font-weight: bold;
  padding-bottom: 10rem;
  display: block;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .acknowledgement-wrapper {
  display: flex;
  align-items: center;
  margin-left: 45rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .acknowledgement-wrapper fdx-checkbox {
  order: -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 18rem;
  background-color: white;
  border-radius: 5rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .acknowledgement-wrapper fdx-checkbox label.fdx-input-checkbox i {
  width: 100%;
  height: 100%;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .acknowledgement-wrapper fdx-checkbox label.fdx-input-checkbox i:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-right: -4rem;
  margin-bottom: 5rem;
}
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .acknowledgement-wrapper #deleteAssetModalDeleteAcknowledgementLabel,
fdx-mdb-delete-asset-modal #deleteAssetModalMetaDataWarningWrapper .acknowledgement-wrapper #deleteAssetModalDeleteAcknowledgementCheckbox {
  padding: 5rem 7rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-delete-multiple-asset-modal #deleteAssetModalBody {
  overflow: auto;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-checkbox {
  display: flex;
  justify-content: center;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-checkbox fdx-checkbox {
  margin-top: -8rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion {
  margin-top: 20rem;
  border: 1px solid #d3d3d3;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion.top {
  margin-top: 70rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .panel-title a {
  text-decoration: none;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .panel-title-content {
  position: relative;
  border-bottom: 1rem solid #d3d3d3;
  padding: 5rem 15rem 15rem;
  margin-bottom: -11rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .panel-title-content .panel-text {
  color: #333;
  font-size: 15rem;
  font-weight: bold;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .panel-title-content .panel-text span.counter {
  font-weight: normal;
  font-size: 12rem;
  border: 1px solid #999999;
  color: #999999;
  border-radius: 100%;
  margin-left: 5rem;
  padding: 1rem 6rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .panel-title-content .fdxicon-regular {
  position: absolute;
  top: 7rem;
  right: 15rem;
  font-size: 1em;
  color: #00677d;
  cursor: pointer;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .panel-body {
  padding-top: 3rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .icon {
  vertical-align: middle;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .table-text {
  margin: 0 3rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .table-text.sm {
  font-size: 13rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-accordion .fdx-smart-table-wrapper td {
  padding: 15rem 12rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-header {
  display: flex;
  justify-content: center;
  padding: 15rem 0 5rem 0;
  border: 1px solid #00a9ce;
  border-radius: 5rem;
  background-color: #00A9CE1A;
  margin-bottom: 30rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-header .fdxicon-regular {
  display: block;
  margin-right: 5rem;
  margin-top: -2rem;
  font-size: 25rem;
  margin-bottom: 5rem;
  color: #0085a2;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-header-message {
  font-weight: bold;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-affected-list {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 300rem;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-affected {
  display: inline-block;
  width: 100%;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-affected .fdxicon-outline {
  float: left;
  font-size: 26rem;
  line-height: 55rem;
  color: #333;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-affected .label {
  padding-left: 10rem;
  line-height: 21rem;
  margin: 0;
  margin-top: 8rem;
  width: calc(100% - 26rem);
  float: left;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-delete-multiple-asset-modal .delete-asset-modal-affected .name {
  line-height: 18rem;
  float: left;
  padding-left: 10rem;
  width: calc(100% - 26rem);
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  font-size: 12rem;
}
fdx-mdb-delete-multiple-asset-modal .multiple-assets {
  width: 100%;
  height: 300rem;
  border: 1rem solid #d3d3d3;
  flex: 1 1 0px;
  min-height: 0;
  display: inline-block;
  position: relative;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 71rem;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem > span.fdxicon-regular {
  font-size: 26rem;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemTitle {
  flex-grow: 1;
  line-height: 21rem;
  margin: 0 0 0 10rem;
  width: 63%;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemTitle .secondary,
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemTitle .tertiary {
  font-size: 12rem;
  line-height: 17rem;
  color: #333;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemFlags {
  color: #333;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemFlags .fdxicon-outline,
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemFlags .fdxicon-regular {
  font-size: 20rem;
  margin-left: 4rem;
  vertical-align: top;
}
fdx-mdb-delete-multiple-asset-modal div.assetBrowseListItem span.itemFlags .flag-icon-tooltip {
  font-size: 13rem;
  line-height: 13rem;
  text-align: justify;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-reorder-assets-modal .modal-header {
  border-bottom: none;
  box-shadow: none;
}
fdx-mdb-reorder-assets-modal .group-msg {
  display: inline-block;
  line-height: 15rem;
  width: calc(100% - 41rem);
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-reorder-assets-options fdx-tab-select .fdx-tab-select .tab-option {
  border-color: #e3e3e3;
  background-color: #fff;
}
fdx-mdb-reorder-assets-options fdx-tab-select .fdx-tab-select .tab-option > label {
  cursor: pointer;
}
fdx-mdb-reorder-assets-options fdx-tab-select .fdx-tab-select .tab-option.selected > label {
  font-weight: bold;
  cursor: auto;
}
fdx-mdb-reorder-assets-options fdx-tab-select .fdx-tab-select .tab-option:first-child {
  border-left: none;
}
fdx-mdb-reorder-assets-options fdx-tab-select .fdx-tab-select .tab-option:last-child {
  border-right: none;
}
fdx-mdb-reorder-assets-options .tab-wrapper {
  min-height: 400rem;
  display: flex;
  flex-direction: column;
  margin-top: 15rem;
  background-color: #fff;
}
fdx-mdb-reorder-assets-options .flex-container {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: center;
  padding-top: 30rem;
}
fdx-mdb-reorder-assets-options .flex-expand {
  flex: 1 0 auto;
}
fdx-mdb-reorder-assets-options .modal-body.reorder-assets-options {
  max-height: 65vh;
  padding: 0;
  margin: 0;
}
fdx-mdb-reorder-assets-options .modal-footer {
  padding: 15rem;
}
fdx-mdb-reorder-assets-options .card:first-child {
  border-right: 1rem solid #e3e3e3;
  padding-right: 30rem;
  margin-right: 30rem;
}
fdx-mdb-reorder-assets-options .card h1 {
  padding: 0 15rem;
  margin: 0;
}
fdx-mdb-reorder-assets-options .card h1::after {
  content: ':';
}
fdx-mdb-reorder-assets-options .card fieldset {
  padding: 15rem 15rem;
}
fdx-mdb-reorder-assets-options .card label.option {
  display: flex;
  border: 1px solid #e3e3e3;
  border-radius: 4rem;
  padding-left: 16rem;
  width: 410rem;
  height: 52rem;
  align-items: center;
  margin-bottom: 16rem;
  cursor: pointer;
}
fdx-mdb-reorder-assets-options .card label.option.selected {
  border-color: #3BA9CF;
}
fdx-mdb-reorder-assets-options .card label.option.selected > input[type="radio"]::after {
  border-color: #3BA9CF;
  color: #3BA9CF;
}
fdx-mdb-reorder-assets-options .card label.option.selected > input[type="radio"]::before {
  transform: scale(1);
}
fdx-mdb-reorder-assets-options .card label.option input,
fdx-mdb-reorder-assets-options .card label.option span {
  vertical-align: middle;
  margin: 0 16rem 0 0;
}
fdx-mdb-reorder-assets-options .card label.option > input[type="radio"] {
  appearance: none;
  position: relative;
  width: 1.45em;
}
fdx-mdb-reorder-assets-options .card label.option > input[type="radio"]::after {
  position: absolute;
  content: "";
  width: 1.45em;
  height: 1.45em;
  border: 0.4em solid #e3e3e3;
  border-radius: 50%;
  color: #e3e3e3;
  display: block;
  top: -10px;
}
fdx-mdb-reorder-assets-options .card label.option > input[type="radio"]::before {
  position: absolute;
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 0.5em 0.5em #3BA9CF;
  top: -3px;
  left: 7px;
}
fdx-mdb-reorder-assets-options .select-assets-field {
  position: relative;
  min-height: 39rem;
}
fdx-mdb-reorder-assets-options .control-label {
  font-size: 0;
}
fdx-mdb-reorder-assets-options .control-label span {
  font-size: 14rem;
}
fdx-mdb-reorder-assets-options .group-msg {
  display: inline-block;
  line-height: 15rem;
  width: calc(100% - 41rem);
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.asset-reorder-table-typeahead-dropdown .no-property-value-replacement,
fdx-asset-reorder-table .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
fdx-asset-reorder-table tr {
  height: 45px;
}
fdx-asset-reorder-table .sortable-item {
  cursor: grab;
}
fdx-asset-reorder-table .asset-reorder-table-scroller {
  height: 60vh;
}
fdx-asset-reorder-table .asset-reorder-table-scroller md-virtual-repeat-container {
  height: 60vh !important;
}
fdx-asset-reorder-table .asset-reorder-table-scroller.no-data md-virtual-repeat-container {
  height: 110px !important;
}
fdx-asset-reorder-table td.flex-row {
  display: flex;
  min-height: 45px;
}
fdx-asset-reorder-table td.flex-row input {
  flex: 1 1 auto;
  margin-right: 0.5em;
}
fdx-asset-reorder-table td.flex-row button.btn.fdxicon-regular {
  width: auto;
  font-size: 1.5em;
  margin-top: 0;
}
fdx-asset-reorder-table .asset-reorder-table {
  position: relative;
  margin-left: 22rem;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper {
  position: relative;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller {
  overflow: auto;
  margin-top: 10rem;
  width: calc(100% - 22rem);
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table {
  width: calc(100% - 1rem);
  border-collapse: separate;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table th,
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table td {
  border-right: 1rem solid #d3d3d3;
  border-bottom: 1rem solid #d3d3d3;
  transition: background-color 0.3s;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table th:first-child,
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table td:first-child {
  border-left: 1rem solid #d3d3d3;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table th {
  border-top: 1rem solid #d3d3d3;
  padding: 16rem 12rem 14rem 12rem;
  color: #333;
  white-space: nowrap;
  background: #fff;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody.sortable-ghost td {
  background: #e5e5e5;
  border-width: 0rem;
  opacity: 0.4;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody:nth-child(odd) > tr > td {
  background: #fcfcfc;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody:last-child tr:last-child td {
  border-bottom: 1rem solid #d9d9d9;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody tr td {
  padding: 6rem 12rem;
  background: #fff;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody tr td > div > div {
  height: calc(45px - 25rem);
  max-width: 200rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody tr td:hover > div > div {
  max-width: none;
  white-space: normal;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody tr.main-row.active-asset td,
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table tbody tr.main-row:hover td {
  background: #e1eef4;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table .none td {
  background: #fff;
  text-align: center;
  font-size: 14rem;
  font-style: italic;
  padding: 10rem;
  color: #999;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller table .showAll {
  text-align: center;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller.no-columns {
  border-right: none;
}
fdx-asset-reorder-table .asset-reorder-table-wrapper .asset-reorder-table-scroller.no-columns .none td {
  border-top: #d3d3d3 1rem solid;
  border-right: #d3d3d3 1rem solid;
}
fdx-asset-reorder-table .asset-reorder-table .tooltip {
  max-width: 270rem;
  width: 270rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.tooltip-alias-list .tooltip-inner {
  white-space: pre-line;
}
fdx-mdb-asset-aliases .aliases-single-line {
  display: flex;
  justify-content: space-between;
}
fdx-mdb-asset-aliases .aliases-single-line .single-line-alias {
  display: inline-block;
  flex: 1 1 200rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-asset-aliases .aliases-single-line .single-line-alias:before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 2rem;
  color: #666;
  line-height: 0;
}
fdx-mdb-asset-aliases .aliases-single-line .alias-count-badge {
  display: inline-block;
  flex: 1 0 auto;
  color: #00a9ce;
}
fdx-mdb-asset-aliases .alias-edit .text-input {
  margin-bottom: 8rem;
}
fdx-mdb-asset-aliases .alias-edit .alias-input {
  display: inline-block;
  width: calc(100% - 160rem);
}
fdx-mdb-asset-aliases .alias-edit .alias-input.error {
  border-color: #aa1c1c;
}
fdx-mdb-asset-aliases .alias-edit span.icon-buttons-wrapper {
  float: right;
}
fdx-mdb-asset-aliases .alias-edit span.icon-buttons-wrapper .asset-btn {
  padding: 11rem 5rem;
  margin: 0;
  width: auto;
}
fdx-mdb-asset-aliases .alias-edit span.remove-button {
  line-height: 1.1;
  color: #00a9ce;
  cursor: pointer;
  float: right;
  margin: 15rem 15rem auto auto;
}
fdx-mdb-asset-aliases .alias-edit span.remove-button:after {
  display: block;
  content: '';
  height: 1rem;
  width: 0%;
  background-color: #00a9ce;
  -webkit-transition: width ease 0.5s;
  transition: width ease 0.5s;
}
fdx-mdb-asset-aliases .alias-edit span.remove-button:hover:after,
fdx-mdb-asset-aliases .alias-edit span.remove-button:focus:after {
  width: 100%;
}
fdx-mdb-asset-aliases .alias-edit-item .alias-input.ng-enter,
fdx-mdb-asset-aliases .alias-edit-item .alias-input.ng-leave,
fdx-mdb-asset-aliases .alias-edit-item .alias-input.ng-move {
  transition: none !important;
}
fdx-mdb-asset-aliases .alias-edit .fixed-alias {
  margin-top: 10rem;
  position: relative;
}
fdx-mdb-asset-aliases .alias-edit .is-fixed {
  top: 0;
}
fdx-mdb-asset-aliases .fdx-mdb-rule-visibility {
  margin-top: 10rem;
  display: inline-block;
  width: 100%;
}
fdx-mdb-asset-aliases .list .item {
  overflow: hidden;
}
fdx-mdb-asset-aliases .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
  margin-top: 3rem;
  margin-bottom: 7rem;
}
fdx-mdb-asset-aliases .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-alias-crf-plugin-details {
  margin-top: 5rem;
}
fdx-mdb-alias-crf-plugin-details .crf-properties-wrapper {
  margin-top: 5rem;
}
fdx-mdb-alias-crf-plugin-details .crf-properties-btn {
  color: #00a9ce;
  display: inline-block;
  cursor: pointer;
}
fdx-mdb-alias-crf-plugin-details .crf-properties-btn:hover,
fdx-mdb-alias-crf-plugin-details .crf-properties-btn:focus {
  color: #00677d;
  outline: none;
}
fdx-mdb-alias-crf-plugin-details .crf-properties-btn-label {
  margin-left: 4rem;
}
fdx-mdb-alias-crf-plugin-details .crf-properties-btn-remove {
  margin: 5rem 15rem;
}
fdx-mdb-alias-crf-plugin-details .crf-properties-btn-remove .crf-properties-btn-label {
  vertical-align: text-bottom;
}
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .CAT-label-col,
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .CAT-input-col,
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .before-element {
  display: none;
}
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .nested-cats-wrapper .CAT-label-col,
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .nested-cats-wrapper .CAT-input-col {
  display: block;
}
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .row .col-md-12 {
  padding-left: 0;
}
fdx-mdb-alias-crf-plugin-details fdx-mdb-cats-props .nested-cats {
  border-right: 1px solid #dddddd;
}
fdx-mdb-alias-crf-plugin-details .full-Width {
  position: relative;
  left: -73.3333%;
  width: 173.333%;
}

fdx-mdb-analysis-variable-edit ul.analysis-variable-list {
  list-style: none;
  padding: 0;
  margin: 5rem auto;
}
fdx-mdb-analysis-variable-edit ul.analysis-variable-list li .item {
  border: 1rem solid #ddd;
  display: flex;
  margin-bottom: 2rem;
}
fdx-mdb-analysis-variable-edit ul.analysis-variable-list li .item > * {
  padding: 0.5em;
}
fdx-mdb-analysis-variable-edit ul.analysis-variable-list li .item span.title {
  display: inline-block;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-analysis-variable-edit ul.analysis-variable-list li .item span.remove-button.btn {
  user-select: none;
  width: auto;
  border: none;
  text-decoration: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-file-upload .asset-file-upload {
  align-items: center;
  margin-bottom: 0;
  padding: 8rem;
  border: 1rem dashed #d9d9d9;
  border-radius: 10rem;
  justify-content: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
fdx-mdb-asset-file-upload .asset-file-upload,
fdx-mdb-asset-file-upload .asset-file-upload .asset-file-upload-text {
  display: flex;
}
fdx-mdb-asset-file-upload .asset-file-upload.dragged-over {
  background-color: #d3d3d3;
}
fdx-mdb-asset-file-upload .asset-file-upload:hover small,
fdx-mdb-asset-file-upload .asset-file-upload:hover p {
  color: #00a9ce;
}
fdx-mdb-asset-file-upload .asset-file-upload .asset-file-upload-text {
  flex-direction: column;
}
fdx-mdb-asset-file-upload .asset-file-upload img {
  margin-right: 15rem;
  width: 4em;
}
fdx-mdb-asset-file-upload .asset-file-upload input {
  display: none;
}
fdx-mdb-asset-file-upload .asset-file-exists label {
  font-weight: bold;
  padding-left: 15rem;
}
fdx-mdb-asset-file-upload .asset-file-exists .file-path-prop {
  padding-left: 10rem;
  margin-top: 8rem;
}
fdx-mdb-asset-file-upload .asset-file-exists .fdx-circle-remove {
  float: right;
  color: #999;
  margin-right: 3rem;
}
fdx-mdb-asset-file-upload .asset-file-exists .fdx-circle-remove:hover {
  cursor: pointer;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-class .class-dropdown-wrapper {
  width: 100%;
  float: right;
  transition: all ease 0.3s;
}
fdx-mdb-asset-class .class-dropdown-wrapper.with-subclass {
  width: calc(100% - 20rem);
}
fdx-mdb-asset-sub-class .subclass-wrapper {
  position: relative;
  padding-top: 10rem;
  display: flex;
  width: 100%;
}
fdx-mdb-asset-sub-class .subclass-wrapper.first .arrow {
  height: 44rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper.first .arrow.shorter {
  height: 39rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .arrow {
  color: #4c4c4c;
  border: 1px solid #4c4c4c;
  border-right: none;
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  position: absolute;
  left: -20px;
  width: 17px;
  top: -19rem;
  height: 48rem;
  transition: 0.1s ease-in-out;
  transition-property: height, top;
}
fdx-mdb-asset-sub-class .subclass-wrapper .arrow.shorter {
  height: 43rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .arrow.lower {
  top: -14rem;
  height: 43rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .arrow.lower.shorter {
  height: 38rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .arrow .arrow-head {
  font-size: 13rem;
  position: absolute;
  top: -8rem;
  left: 9px;
}
fdx-mdb-asset-sub-class .subclass-wrapper-input {
  width: calc(100% - 20rem);
}
fdx-mdb-asset-sub-class .subclass-wrapper.first {
  padding-top: 6rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .btn-inline.fdx-remove.fdxicon-regular {
  top: 22rem;
  right: 27rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .fdx-derived-from-arrow-e {
  font-size: 41rem;
  width: 20rem;
  color: #666;
}
fdx-mdb-asset-sub-class .subclass-wrapper .fdx-derived-from-arrow-e::before {
  position: absolute;
  top: -28rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper input {
  display: inline-block;
  width: calc(100% - 28rem);
}
fdx-mdb-asset-sub-class .subclass-wrapper .remove-btn {
  cursor: pointer;
  display: inline-block;
  vertical-align: text-bottom;
  color: #00a9ce;
  margin-left: 5rem;
}
fdx-mdb-asset-sub-class .subclass-wrapper .remove-btn:hover {
  color: #00677d;
}
fdx-mdb-asset-sub-class .subclass-wrapper .add-btn {
  padding-bottom: 10rem;
}
fdx-mdb-asset-sub-class .subclass-view::before {
  content: '>';
  padding: 0 5rem;
  color: #999;
}

fdx-mdb-asset-code .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
  margin-top: 3rem;
  margin-bottom: 7rem;
}
fdx-mdb-asset-code .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}
fdx-mdb-asset-code .label {
  font-weight: bold;
}

fdx-mdb-asset-documentation .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
  margin-top: 3rem;
  margin-bottom: 7rem;
}
fdx-mdb-asset-documentation .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}

fdx-mdb-document-list .document-list {
  width: 100%;
  padding-right: 96rem;
  margin-top: 10rem;
}
fdx-mdb-document-list .document-list .list-item {
  position: relative;
  margin-left: 1.5em;
}
fdx-mdb-document-list .document-list .list-item.child.sortable-chosen:before {
  content: none;
}
fdx-mdb-document-list .document-list .list-item.child:before {
  content: '';
  display: inline-block;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  position: absolute;
  left: -1em;
  bottom: calc(0em - 21em + 21.9em);
  height: 2.8em;
  width: 1em;
}
fdx-mdb-document-list .document-list .list-item .prop-line {
  margin-left: 2em;
}
fdx-mdb-document-list .document-list .list-item .list-item-btn {
  position: relative;
  padding-left: 0.7em;
  margin: 0.1em;
  border-radius: 5em;
  display: inline-block;
  border: 1rem solid transparent;
  transition: background-color 0.2s, border 0.2s;
}
fdx-mdb-document-list .document-list .list-item .list-item-btn .label {
  padding: 0.3em 0;
  display: inline-block;
}
fdx-mdb-document-list .document-list .list-item .list-item-btn:hover,
fdx-mdb-document-list .document-list .list-item .list-item-btn.active-prop {
  background-color: rgba(137, 232, 255, 0.271);
  border: 1rem solid #37abd2;
}
fdx-mdb-document-list .document-list .list-item .list-item-btn.asset-btn {
  padding: 0.2em 0.7em;
}
fdx-mdb-document-list .document-list .list-item .list-item-btn.disabled:hover,
fdx-mdb-document-list .document-list .list-item .list-item-btn.disabled.active-prop {
  background-color: transparent;
  border: 1rem solid transparent;
}
fdx-mdb-document-list .document-list .list-item .list-item-btn .doc-icon-menu {
  margin-right: -0.7em;
}
fdx-mdb-document-list .document-list .list-item.disabled {
  color: rgba(102, 102, 102, 0.4);
  cursor: default;
}
fdx-mdb-document-list .document-list .list-item.disabled .list-item-btn:hover {
  background-color: transparent;
  border: 1rem solid transparent;
}
fdx-mdb-document-list .document-list .list-item.disabled .list-item-btn.active-prop {
  background-color: transparent;
  border: 1rem solid transparent;
}
fdx-mdb-document-list .document-list .list-item.disabled .list-item-options {
  display: none;
}
fdx-mdb-document-list .document-list .list-item .documentList-icon-menu-wrapper {
  display: inline-block;
  height: 34rem;
  width: 35rem;
}
fdx-mdb-document-list .document-list .list-item .rule-prop-add-button {
  margin-top: 5rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-external-dictionary .dictionary-edit {
  margin-bottom: 5rem;
}
fdx-mdb-asset-external-dictionary .dictionary-edit .clear-external-dictionary {
  position: absolute;
  top: 0;
  right: 15rem;
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-asset-external-dictionary .dictionary-edit .clear-external-dictionary:after {
  display: block;
  content: "";
  height: 1rem;
  width: 0%;
  background-color: #00a9ce;
  -webkit-transition: width ease 0.5s;
  transition: width ease 0.5s;
}
fdx-mdb-asset-external-dictionary .dictionary-edit .clear-external-dictionary:hover:after,
fdx-mdb-asset-external-dictionary .dictionary-edit .clear-external-dictionary:focus:after {
  width: 100%;
}
fdx-mdb-asset-external-dictionary .dictionary-edit input {
  margin-bottom: 10rem;
}
fdx-mdb-asset-external-dictionary .dictionary-edit-label {
  position: absolute;
  left: -150rem;
  margin-top: 15rem;
}
fdx-mdb-asset-external-dictionary .dictionary-edit-input {
  margin-top: 5rem;
}

.fdx-mdb-asset-edit-view-prop-external-standard {
  display: inline-block;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-formal-expression .formal-expression-edit .text-input {
  margin-bottom: 8rem;
}
fdx-mdb-asset-formal-expression .formal-expression-edit .expression-input {
  display: inline-block;
  width: calc(100% - 160rem);
}
fdx-mdb-asset-formal-expression .formal-expression-edit .expression-input.error {
  border-color: #aa1c1c;
}
fdx-mdb-asset-formal-expression .formal-expression-edit span.link-span {
  line-height: 1.1;
  color: #378fb2;
  cursor: pointer;
  float: right;
  margin: 15rem 15rem auto auto;
}
fdx-mdb-asset-formal-expression .formal-expression-edit span.link-span:after {
  display: block;
  content: "";
  height: 1rem;
  width: 0%;
  background-color: #00a9ce;
  -webkit-transition: width ease 0.5s;
  transition: width ease 0.5s;
}
fdx-mdb-asset-formal-expression .formal-expression-edit span.link-span:hover:after,
fdx-mdb-asset-formal-expression .formal-expression-edit span.link-span:focus:after {
  width: 100%;
}
fdx-mdb-asset-formal-expression .fixed-expression {
  margin-top: 10rem;
  position: relative;
}
fdx-mdb-asset-formal-expression .is-fixed {
  top: 0;
}
fdx-mdb-asset-formal-expression .fdx-mdb-rule-visibility {
  margin-top: 10rem;
  display: inline-block;
  width: 100%;
}
fdx-mdb-asset-formal-expression .list .item {
  overflow: hidden;
}
fdx-mdb-asset-formal-expression .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
  margin-top: 3rem;
  margin-bottom: 7rem;
}
fdx-mdb-asset-formal-expression .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-locale-display .locale-edit .text-input {
  margin-bottom: 8rem;
}
fdx-mdb-asset-locale-display .locale-edit .locale-input {
  display: inline-block;
  width: calc(100% - 160rem);
}
fdx-mdb-asset-locale-display .locale-edit .locale-input.error {
  border-color: #aa1c1c;
}
fdx-mdb-asset-locale-display .locale-edit span.link {
  line-height: 1.1;
  color: #378fb2;
  cursor: pointer;
  float: right;
  margin: 15rem 15rem auto auto;
}
fdx-mdb-asset-locale-display .locale-edit span.link:after {
  display: block;
  content: "";
  height: 1rem;
  width: 0%;
  background-color: #00a9ce;
  -webkit-transition: width ease 0.5s;
  transition: width ease 0.5s;
}
fdx-mdb-asset-locale-display .locale-edit span.link:hover:after,
fdx-mdb-asset-locale-display .locale-edit span.link:focus:after {
  width: 100%;
}
fdx-mdb-asset-locale-display .locale-edit .fdx-mdb-rule-visibility {
  display: inline-block;
  width: 100%;
}
fdx-mdb-asset-locale-display .locale-edit .fixed-locale {
  margin-top: 10rem;
  position: relative;
}
fdx-mdb-asset-locale-display .locale-edit .is-fixed {
  top: 0;
}
fdx-mdb-asset-locale-display .locale-view {
  background-color: white;
  padding: 10rem 5rem;
}
fdx-mdb-asset-locale-display .brackets:before {
  content: '(';
}
fdx-mdb-asset-locale-display .brackets:after {
  content: ')';
}
fdx-mdb-asset-locale-display .locale {
  clear: both;
}
fdx-mdb-asset-locale-display .locale-text {
  word-break: break-word;
  color: #999;
}
fdx-mdb-asset-locale-display .locale-text.active {
  color: #333;
}
fdx-mdb-asset-locale-display .locale-badge {
  float: right;
  word-break: break-word;
  border: 1px solid #999;
  border-radius: 12rem;
  padding: 0rem 6rem;
}
fdx-mdb-asset-locale-display .locale-badge span {
  color: #999;
}
fdx-mdb-asset-locale-display .locale-badge.active {
  border: 1px solid #00a9ce;
}
fdx-mdb-asset-locale-display .locale-badge.active span {
  color: #00a9ce;
}
fdx-mdb-asset-locale-display .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
}
fdx-mdb-asset-locale-display .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-mapping .mapping-property {
  color: #00a9ce;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-mdb-asset-mapping .mapping-property .fdx-circle-alert {
  color: #aa1c1c;
}
fdx-mdb-asset-mapping .mapping-property .mapping-display {
  font-size: 13rem;
  font-weight: bold;
  vertical-align: text-bottom;
}
fdx-mdb-asset-mapping .mapping-property.invalid {
  cursor: default!important;
  color: #999;
}
fdx-mdb-asset-mapping .mapping-property.invalid:hover {
  color: #999;
}
fdx-mdb-asset-mapping .mapping-property-wrapper {
  cursor: default!important;
  max-width: 200rem;
}
fdx-mdb-asset-mapping .mapping-property-wrapper .loading-wrapper {
  display: flex;
  justify-content: center;
}
fdx-mdb-asset-mapping .mapping-property-wrapper .lds-spinner {
  width: 17rem;
  height: 17rem;
  padding: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #999;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
fdx-mdb-asset-mapping .mapping-property-wrapper .expand-mappings {
  display: flex;
  align-items: center;
  gap: 3rem;
  cursor: pointer;
  border-top: 1px solid #d9d9d9;
  padding: 3rem 0;
  color: #999;
  font: bold 10rem "PT Sans", "interstate", Helvetica, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
fdx-mdb-asset-mapping .mapping-property-wrapper .expand-mappings .fdxicon-regular {
  font-size: 11rem;
}
fdx-mdb-asset-mapping .mapping-property:hover {
  color: #00677d;
}
.mapping-tooltip {
  font-size: 12rem!important;
  line-height: 14rem!important;
}
.mapping-tooltip em {
  opacity: 0.8;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-origin label {
  line-height: 2.2;
}
fdx-mdb-asset-origin .documents-rules {
  vertical-align: top;
  margin-top: 6rem;
  display: inline-block;
}
fdx-mdb-asset-origin .rule-prop-add-button {
  margin-left: 0 !important;
}
fdx-mdb-asset-origin .list {
  border: 1px solid #d9d9d9;
}
fdx-mdb-asset-origin .list .list-line {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  padding: 8rem 5rem 4rem;
}
fdx-mdb-asset-origin .list .list-line .fdx-circle-remove {
  top: 9rem !important;
  right: 8rem !important;
  position: absolute;
  cursor: pointer;
  font-size: 13rem;
  color: #717171;
}
fdx-mdb-asset-origin .list-line {
  position: relative;
}
fdx-mdb-asset-origin .list-line .fdx-circle-remove {
  top: 4rem !important;
  right: 3rem !important;
  position: absolute;
  cursor: pointer;
  font-size: 13rem;
  color: #717171;
}
fdx-mdb-asset-origin .one-liner {
  display: inline-block;
  width: calc(100% - 35rem) !important;
  line-height: 1;
}
fdx-mdb-asset-origin .origin-btns.btn-wrapper {
  text-align: left;
  padding: 15rem 0;
}
fdx-mdb-asset-origin .origin-btns.btn-wrapper .btn-sm {
  text-align: center;
  width: 100%;
}
fdx-mdb-asset-origin .add-btn {
  display: inline-block;
  padding: 8rem 0;
  color: #00a9ce;
  cursor: pointer;
  margin-left: 5rem;
}
fdx-mdb-asset-origin .add-btn .fdx-add {
  font-size: 15rem !important;
}
fdx-mdb-asset-origin .add-btn.remove {
  display: block;
  text-align: center;
  margin-top: 17rem;
}
fdx-mdb-asset-origin .btn-sm {
  line-height: 1.3 !important;
  vertical-align: middle !important;
}
fdx-mdb-asset-origin .fdx-mdb-origins-edit .none {
  padding: 0 10rem;
}
fdx-mdb-asset-origin .fdx-mdb-origins-edit-origin {
  position: relative;
}
fdx-mdb-asset-origin .fdx-mdb-origins-edit .is-fixed {
  top: 0;
}
fdx-mdb-asset-origin .opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #f1f6fa;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-asset-origin .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
}
fdx-mdb-asset-origin .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}
fdx-mdb-asset-origin fdx-mdb-asset-error {
  position: absolute;
  left: -45rem;
}

fdx-mdb-asset-page-refs .fdx-mdb-pages-detailed-page {
  margin-bottom: 15rem;
}
fdx-mdb-asset-page-refs fdx-mdb-asset-error {
  position: absolute;
  left: -45rem;
}

fdx-mdb-asset-page-refs-edit .fdxicon-regular {
  margin-right: 0;
}
fdx-mdb-asset-page-refs-edit .add-page-btns {
  float: right;
  height: 23rem;
  margin-top: 7rem;
}
fdx-mdb-asset-page-refs-edit .add-page-btns .asset-btn.with-text:first-of-type {
  margin-right: 0;
}
fdx-mdb-asset-page-refs-edit .add-page-btns .btn-sm {
  padding: 0 5rem;
}
fdx-mdb-asset-page-refs-edit .input-box {
  margin-bottom: 5rem;
}
fdx-mdb-asset-page-refs-edit .input-box input {
  display: inline-block;
  width: calc(100% - 25rem);
}
fdx-mdb-asset-page-refs-edit .input-box .fdx-remove {
  color: #666;
  float: right;
  line-height: 40rem;
  cursor: pointer;
}
fdx-mdb-asset-page-refs-edit .page-range-box {
  display: flex;
  gap: 5rem;
  align-items: center;
}
fdx-mdb-asset-page-refs-edit .page-range-box input,
fdx-mdb-asset-page-refs-edit .page-range-box span {
  line-height: 1;
}
fdx-mdb-asset-page-refs-edit .page-range-box .fdx-remove {
  color: #666;
  cursor: pointer;
}
fdx-mdb-asset-page-refs-edit .line {
  position: relative;
  margin-bottom: 10rem;
}
fdx-mdb-asset-page-refs-edit fdx-mdb-asset-error {
  position: absolute;
  left: -45rem;
}

fdx-mdb-asset-repeating-edit .repeating-edit-prop {
  margin-bottom: 10rem;
  position: relative;
}
fdx-mdb-asset-repeating-edit .repeating-edit-prop.ng-enter,
fdx-mdb-asset-repeating-edit .repeating-edit-prop.ng-leave,
fdx-mdb-asset-repeating-edit .repeating-edit-prop.ng-move {
  transition: all ease 0s;
}
fdx-mdb-asset-repeating-edit .repeating-edit-prop .error-icon {
  left: -30rem;
  top: 0;
}
fdx-mdb-asset-repeating-edit .repeating-edit label {
  display: block;
  margin-bottom: 10rem;
}
fdx-mdb-asset-repeating-edit .repeating-edit .error-drpdwn .dropdown-wrapper .dropdown {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-question-mapping .question-mapping {
  min-height: 50rem;
}
fdx-mdb-question-mapping .question-mapping .expand-mappings {
  display: flex;
  align-items: center;
  gap: 3rem;
  cursor: pointer;
  border-top: 1px solid #d9d9d9;
  padding: 3rem 0;
  color: #999;
  font: bold 10rem "PT Sans", "interstate", Helvetica, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
fdx-mdb-question-mapping .question-mapping .expand-mappings .fdxicon-regular {
  font-size: 11rem;
}
fdx-mdb-question-mapping .mapping-loading {
  position: relative;
  height: 44rem;
}
fdx-mdb-question-mapping .mapping-loading.for-table {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
fdx-mdb-question-mapping .mapping-loading .lds-spinner {
  width: 17rem;
  height: 17rem;
  padding: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #999;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
fdx-mdb-question-mapping .mapping-tooltip {
  font-size: 12rem!important;
  line-height: 14rem!important;
}
fdx-mdb-question-mapping .mapping-tooltip em {
  opacity: 0.8;
}
fdx-mdb-question-mapping .mapping-line {
  overflow: visible;
  margin-bottom: 5rem;
  line-height: 32rem;
}
fdx-mdb-question-mapping .mapping-line.collapsed {
  overflow: hidden;
}
fdx-mdb-question-mapping .mapping-line.asset {
  display: flex;
  margin-bottom: 0;
}
fdx-mdb-question-mapping .mapping-line-dropdown {
  flex: 1;
}
fdx-mdb-question-mapping .mapping-line fdx-dropdown .dropdown-wrapper.with-clear {
  width: calc(100% - 48rem);
}
fdx-mdb-question-mapping .mapping-line .dropdown-clear-btn {
  font-size: 20rem;
  border: 1px solid #d9d9d9;
  padding: 9rem 8rem 9rem 8rem;
  width: 38rem!important;
  border-radius: 3rem;
  color: #00a9ce;
  margin: 0;
  margin-left: 5rem;
}
fdx-mdb-question-mapping .mapping-line-btn {
  cursor: pointer;
  align-self: flex-start;
  font-size: 20rem;
  border: 1px solid #00a9ce;
  padding: 9rem 8rem 9rem 8rem;
  width: 38rem!important;
  border-radius: 3rem;
  color: #00a9ce;
  margin-left: 7rem;
  margin-bottom: 9rem;
  margin-top: 0;
}
fdx-mdb-question-mapping .mapping-line-btn.collapsed,
fdx-mdb-question-mapping .mapping-line-btn.fdx-visualisation,
fdx-mdb-question-mapping .mapping-line-btn.fdx-remove {
  border-color: #d9d9d9;
}
fdx-mdb-question-mapping .mapping-line-btn:hover {
  color: #00a9ce;
}
fdx-mdb-question-mapping .mapping-line .error .dropdown {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}
fdx-mdb-question-mapping .mapping-line .error-text {
  font-style: italic;
  color: #d3d3d3;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping:before {
  content: "\BB";
  font-size: 16rem;
  padding-right: 2rem;
  color: #666;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .none {
  margin-top: 0;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .selected-mapping-label {
  flex: 1;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .fdxicon-regular {
  margin: 8rem 3rem 0 3rem;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .fdx-arrow-5-e {
  cursor: pointer;
  color: #00a9ce;
  margin: 8rem 2rem 0;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .fdx-arrow-5-e:hover {
  color: #00677d;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .fdx-circle-remove {
  cursor: pointer;
  font-size: 15rem;
  margin: 8rem 2rem 0;
  color: #666;
}
fdx-mdb-question-mapping .mapping-line.selected-mapping .fdx-circle-remove:hover {
  color: #454545;
}
fdx-mdb-question-mapping .mapping-line.view-mapping {
  font-size: 13rem;
  line-height: 20rem!important;
  font-weight: bold;
  vertical-align: text-bottom;
  color: #00a9ce;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-mdb-question-mapping .mapping-line.view-mapping:hover {
  color: #00677d;
}
fdx-mdb-question-mapping .noCATs {
  padding: 30rem;
  text-align: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-range-check .fdx-mdb-range-check .line {
  margin-top: 15rem;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check .add-btn {
  display: inline-block;
  margin-left: 5rem;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check .add-btn .fdx-icon-circled {
  font-size: 15rem !important;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check .remove {
  display: block;
  margin: 8rem 0;
  text-align: center;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.view:before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 2rem;
  color: #666;
  line-height: 0;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.detailed {
  margin: 10rem 0 20rem;
  width: 100%;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.detailed td {
  padding: 5rem;
  vertical-align: top;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.detailed td:first-of-type {
  width: 140rem;
  font-weight: bold;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit {
  position: relative;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit .formal-expression,
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit .error-message {
  position: relative;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit .col-md-1 .fdxicon-regular {
  color: #666;
  cursor: pointer;
  line-height: 40rem;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit fdx-mdb-asset-rule-detailed-prop {
  display: inline-block;
  width: 100%;
  margin: 10rem;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit fdx-mdb-asset-error {
  position: absolute;
  left: -40rem;
}
fdx-mdb-asset-range-check .fdx-mdb-range-check.edit .is-fixed {
  top: 0;
}
fdx-mdb-asset-range-check-edit .btn-wrapper {
  padding-top: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-repeating-edit .repeating-edit-prop {
  margin-bottom: 10rem;
  position: relative;
}
fdx-mdb-asset-repeating-edit .repeating-edit-prop.ng-enter,
fdx-mdb-asset-repeating-edit .repeating-edit-prop.ng-leave,
fdx-mdb-asset-repeating-edit .repeating-edit-prop.ng-move {
  transition: all ease 0s;
}
fdx-mdb-asset-repeating-edit .repeating-edit-prop .error-icon {
  left: -30rem;
  top: 0;
}
fdx-mdb-asset-repeating-edit .repeating-edit label {
  display: block;
  margin-bottom: 10rem;
}
fdx-mdb-asset-repeating-edit .repeating-edit .error-drpdwn .dropdown-wrapper .dropdown {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}
.loading-terms {
  display: flex;
  gap: 4rem;
}
.loading-terms span {
  color: #999;
  font-style: italic;
}
.loading-terms .lds-spinner {
  width: 17rem;
  height: 17rem;
  padding: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #999;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-url .url-edit {
  position: relative;
}
fdx-mdb-asset-url fdx-dropdown {
  display: inline-block;
  width: 100rem;
  vertical-align: top;
}
fdx-mdb-asset-url .form-control {
  display: inline-block;
  width: calc(100% - 112rem);
  vertical-align: text-bottom;
  height: 40rem;
  position: relative;
}
fdx-mdb-asset-url .btn-inline {
  position: absolute;
  right: 10rem;
  top: 12rem;
  color: #666;
}
fdx-mdb-asset-url fdx-dropdown.error-drpdwn .dropdown-wrapper .dropdown {
  border-color: #aa1c1c;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-where-criteria {
  display: block;
  margin: 10rem 0;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause {
  position: relative;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .add-btn {
  display: inline-block;
  margin-left: 5rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .add-btn .fdx-icon-circled {
  font-size: 15rem !important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .asset-btn {
  display: block;
  margin: 8rem 0;
  text-align: center;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .formal-expression,
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .error-message {
  position: relative;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .error-icon {
  left: -30rem;
  top: 20rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .col-md-1 .fdxicon-regular {
  color: #666;
  cursor: pointer;
  line-height: 40rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit fdx-mdb-asset-rule-detailed-prop {
  display: inline-block;
  width: 100%;
  margin: 10rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .fdx-mdb-rule-visibility {
  margin: 2rem 0 !important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .fdx-mdb-rule-visibility .rule-prop-add {
  margin-left: 180rem !important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .fdx-mdb-rule-visibility .rule-prop-add-button {
  margin-top: 4rem !important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .fdx-mdb-rule-visibility .rule-prop-add .rule-prop-add-button :nth-child(2) {
  display: none;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .fdx-mdb-rule-visibility.empty {
  width: 20rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause.edit .fdx-mdb-rule-visibility.empty .rule-prop-add {
  margin-left: 0 !important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .fdx-help {
  color: #999;
  font-size: 12rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .variable-selection .dropdown-wrapper {
  margin-top: 5rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .variable-selected {
  min-height: 19rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .separator {
  margin: 15rem 0 !important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause .is-fixed {
  top: 17rem!important;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause-button-wrapper {
  position: absolute;
  display: flex;
  float: right;
  width: 100%;
  justify-content: end;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause-button-wrapper .asset-btn {
  margin-left: 6rem;
}
fdx-mdb-asset-where-criteria .fdx-mdb-where-clause-form-0 .fdx-mdb-rule-visibility.empty {
  top: 0 !important;
}
fdx-mdb-asset-where-criteria .view-rule-prop {
  font-size: 13rem;
  margin-left: 3rem;
  color: #97510b;
}
fdx-mdb-asset-where-criteria .view-rule-prop::before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 13rem;
  margin-right: 3rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-asset-smart-table .asset-smart-table {
  position: relative;
  margin-left: 22rem;
}
fdx-asset-smart-table .asset-smart-table-controls-title {
  float: left;
  max-width: calc(100% - 260rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 10rem;
  line-height: 38rem;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility {
  padding: 0;
  float: right;
  height: 38rem;
  margin-left: 10rem;
  margin-right: 22rem;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility .dropdown-toggle {
  padding: 9rem 11rem;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility .fdx-table {
  margin-right: 0 !important;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility.mapping-filter {
  margin-right: 0rem;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility.mapping-filter label {
  display: flex;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility.mapping-filter li.checkbox {
  white-space: normal;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility.mapping-filter li.checkbox span {
  font-size: 13rem;
}
fdx-asset-smart-table .asset-smart-table-controls-visibility.mapping-filter li.checkbox input {
  align-self: flex-start;
}
fdx-asset-smart-table .asset-smart-table-controls-transcluded-left {
  float: left;
}
fdx-asset-smart-table .asset-smart-table-controls-transcluded-right {
  float: right;
}
fdx-asset-smart-table .asset-smart-table-wrapper {
  position: relative;
  --children-row-width: 800rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller {
  overflow: auto;
  margin-top: 10rem;
  width: calc(100% - 22rem);
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller.no-data table {
  border-right: none;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table {
  width: 100%;
  border-collapse: separate;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .table-row-dropdown-menu {
  top: auto;
  bottom: 0;
  left: auto;
  right: 100%;
  width: 160rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .table-row-dropdown-menu li {
  padding: 5rem 10rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .table-row-dropdown-menu li:hover {
  color: #00677d;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .disable-option {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .disable-option:hover {
  color: #d9d9d9 !important;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table th,
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table td {
  position: relative;
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  transition: background-color 0.3s;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table th:last-child,
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table td:last-child {
  border-right: none;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table th {
  border-top: 1px solid #d3d3d3;
  padding: 8rem 6rem 7rem 6rem;
  color: #333;
  white-space: nowrap;
  background: #fff;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody.sortable-ghost td {
  background: #e5e5e5;
  border-width: 0px;
  opacity: 0.4;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody.sortable-ghost .sticky {
  border: none;
  padding: 0;
  opacity: 1;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody.sortable-ghost .sticky-wrapper * {
  opacity: 0;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody:nth-child(odd) > tr > td {
  background: #fcfcfc;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody:last-child tr:last-child td {
  border-bottom: 1px solid #d9d9d9;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr {
  cursor: pointer;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td {
  padding: 6rem;
  background: #fff;
  vertical-align: top;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td .with-padding {
  padding: 12rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td .more-entries-badge {
  color: #999999;
  border: 1px solid #999999;
  border-radius: 10rem;
  padding: 0 5rem;
  font-size: 12rem;
  margin-left: 4rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr.main-row.active-asset td,
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr.main-row:hover td {
  background: #e1eef4;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr fdx-mdb-compliance-icon.row-compliance {
  position: absolute;
  padding-right: 2rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr fdx-mdb-compliance-icon.row-compliance + * {
  margin-left: 1.3em;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr .expand-row {
  margin-left: 5rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .none td {
  background: #fff;
  text-align: center;
  font-size: 14rem;
  font-style: italic;
  padding: 10rem;
  color: #999;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table .showAll {
  text-align: center;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller.no-columns .none td {
  border-top: #d3d3d3 1px solid;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky {
  right: 0;
  position: relative;
  /* fallback for ie */
  position: sticky;
  top: auto;
  padding: 0;
  border-left: #d3d3d3 1px solid;
  vertical-align: top;
  height: 0;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-content: center;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky-button {
  display: flex;
  flex-basis: 40rem;
  text-align: center;
  font-size: 20rem;
  padding: 0rem 8rem 7rem;
  padding-top: 0rem!important;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky-button.menu-open {
  background: white;
  z-index: 9999;
  -webkit-box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  border-right: 1px solid #d3d3d3;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .fdx-elipsis {
  line-height: 20rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .rules-warning {
  color: #ce6c0d;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .fdx-menu {
  color: #00a9ce;
  font-size: 19rem;
}
fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .individual-remove.disabled {
  color: #e5e5e5;
  cursor: not-allowed;
}
@-moz-document url-prefix() {
  fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .sticky-table-dropdown {
    top: 20rem;
  }
  fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .sticky-button.menu-open {
    top: 20rem;
  }
  fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .sticky-button.menu-close {
    top: 20rem;
  }
}
@supports url-prefix() {
  fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .sticky-table-dropdown {
    top: 0rem;
  }
}
fdx-asset-smart-table .asset-smart-table .child-asset-details {
  position: sticky;
  left: 0;
  width: 0rem;
  display: block;
}
fdx-asset-smart-table .asset-smart-table .child-asset-details-wrapper {
  overflow: auto;
  padding: 0rem !important;
  background-color: white !important;
  border-bottom: 1px solid #d3d3d3;
  box-shadow: 0 0 20rem #d3d3d3;
}
fdx-asset-smart-table .asset-smart-table .child-asset-details-wrapper .child-asset-details-view {
  width: var(--children-row-width);
  display: block;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller > table > tbody > tr > .sticky {
  width: 0;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller > table > tbody > tr > .sticky > .sticky-wrapper {
  width: 0;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller > table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 0;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 0;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller > table > tbody > tr > .sticky {
  width: 40rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller > table > tbody > tr > .sticky > .sticky-wrapper {
  width: 40rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller > table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 40rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 40rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller > table > tbody > tr > .sticky {
  width: 80rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller > table > tbody > tr > .sticky > .sticky-wrapper {
  width: 80rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller > table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 80rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 80rem;
}
fdx-asset-smart-table .asset-smart-table.sticky-visible th.last,
fdx-asset-smart-table .asset-smart-table.sticky-visible td.last {
  border-right: none;
}
fdx-asset-smart-table .asset-smart-table .warning-icon {
  font-size: 16rem;
  color: #00a9ce;
}
fdx-asset-smart-table .asset-smart-table .warning-icon-text {
  font-size: 14rem;
  color: #00a9ce;
}
fdx-asset-smart-table .asset-smart-table .tooltip {
  max-width: 270rem;
  width: 270rem;
}
fdx-asset-smart-table .asset-smart-table .cell-list-wrapper div.flex-line {
  min-height: 2em;
}
fdx-asset-smart-table .asset-smart-table .cell-list-wrapper fdx-icon-menu {
  font-size: 0.7em;
}
fdx-asset-smart-table .none,
fdx-asset-smart-table .no-property-value-replacement {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-asset-smart-table .asset-smart-table.is-in-modal .asset-smart-table-controls-visibility .dropdown-menu {
  top: 36rem;
  left: -165rem;
  width: 205rem;
  max-height: 220rem;
  overflow: auto;
}
.dropdown-menu.fdx-visible-columns-dropdown {
  width: 205rem;
  max-height: 220rem;
}
.dropdown-menu.fdx-visible-columns-dropdown .dropdown-header {
  border-bottom: 1px solid #d3d3d3;
}
.dropdown-menu.fdx-visible-columns-dropdown .visibleColumnList {
  padding: 0;
  margin: 0;
}
.sticky-menu {
  border: none!important;
  padding: 0!important;
}
.sticky-menu:not(.top-dropdown) {
  margin-top: -1px !important;
  border-top-right-radius: 0!important;
  -webkit-box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
}
.sticky-menu.top-dropdown {
  margin-bottom: -1px !important;
  border-bottom-right-radius: 0!important;
  -webkit-box-shadow: 0 -3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 -3rem 5rem rgba(0, 0, 0, 0.125) !important;
}
.sticky-menu li {
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  white-space: nowrap;
}
.sticky-menu li:first-child {
  border-top: 1px solid #d3d3d3;
}
.sticky-menu li.disabled {
  color: #d3d3d3 !important;
  font-weight: normal!important;
  font-style: italic;
  cursor: not-allowed;
}
.sticky-menu li.disabled:hover {
  color: #d3d3d3;
  background: white;
}
.sticky-menu li.disabled:hover.rule,
.sticky-menu li.disabled:hover.rule-entry {
  color: #d3d3d3;
}
.sticky-menu li .fdxicon-regular:not(.fdx-edit):not(.fdx-remove) {
  margin: 8rem 12rem;
  font-size: 16rem;
  height: 18rem;
}
.sticky-menu li .fdx-edit,
.sticky-menu li .fdx-remove {
  cursor: pointer;
  font-size: 11rem;
}
.sticky-menu li span:not(.fdxicon-regular) {
  flex: 1;
  font: bold 9rem "PT Sans", "interstate", Helvetica, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 10rem 10rem 10rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-menu li:hover:not(.rule-entry) {
  color: white;
  background: #3caace;
}
.sticky-menu li.rule,
.sticky-menu li.rule-entry {
  color: #ce6c0d;
}
.sticky-menu li .rule-entry-text {
  width: 90rem;
}
.sticky-menu li .rule-entry-add,
.sticky-menu li .rule-entry-remove {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem;
}
.sticky-menu li .rule-entry-add span,
.sticky-menu li .rule-entry-remove span {
  font-size: 14rem;
}
.sticky-menu li .rule-entry-add:hover,
.sticky-menu li .rule-entry-remove:hover {
  color: white;
  background: #3caace;
}
.sticky-menu li .rule-entry-add {
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.fdx-sticky {
  position: fixed;
  z-index: 1;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10rem;
  padding-top: 10rem;
}
.selectable:hover .fdx-sticky-header > div,
.active-prop .fdx-sticky-header > div,
.selectable:hover .fdx-sticky-header-nested > div,
.active-prop .fdx-sticky-header-nested > div {
  background-color: #f1f4f6 !important;
}
.fdx-sticky-header {
  height: 38rem;
}
.fdx-sticky-header > div {
  position: fixed;
  z-index: 1;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10rem;
  padding-top: 10rem;
  background-color: white;
}
.fdx-sticky-header-nested > div {
  position: fixed;
  z-index: 1;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10rem;
  padding-top: 10rem;
  background-color: #F3F3F3;
}
.fdx-sticky-header .asset-smart-table-controls-visibility,
.fdx-sticky-header-nested .asset-smart-table-controls-visibility {
  margin-right: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-asset-smart-table-vs .asset-smart-table-scroller {
  border-right: 1px solid #d3d3d3;
}
fdx-asset-smart-table-vs .asset-smart-table-scroller.parent-view {
  max-height: calc(80vh - 100rem);
}
fdx-asset-smart-table-vs .asset-smart-table-scroller.no-parent-view {
  max-height: calc(80vh - 220rem);
}
fdx-asset-smart-table-vs .asset-smart-table-scroller thead tr {
  height: 40px;
  position: sticky;
  top: 0;
}
fdx-asset-smart-table-vs .asset-smart-table-scroller md-virtual-repeat-container {
  height: 40vh;
}
fdx-asset-smart-table-vs .asset-smart-table-scroller.no-data md-virtual-repeat-container {
  height: 110px !important;
  border-right: none;
}
fdx-asset-smart-table-vs .asset-smart-table {
  position: relative;
  margin-left: 22rem;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-title {
  float: left;
  max-width: calc(100% - 260rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 10rem;
  line-height: 38rem;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility {
  padding: 0;
  float: right;
  height: 38rem;
  margin-left: 10rem;
  margin-right: 22rem;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility .dropdown-toggle {
  padding: 9rem 11rem;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility .fdx-table {
  margin-right: 0 !important;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility .dropdown-toggle {
  padding: 9rem 11rem;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility .dropdown-menu {
  top: 36rem;
  left: -165rem;
  width: 205rem;
  max-height: 220rem;
  overflow: auto;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility .dropdown-header {
  border-bottom: 1rem solid #d3d3d3;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-visibility .dropdown .visibleColumnList {
  padding: 0;
  margin: 0;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-transcluded-left {
  float: left;
}
fdx-asset-smart-table-vs .asset-smart-table-controls-transcluded-right {
  float: right;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper {
  position: relative;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller {
  overflow: auto;
  margin-top: 10rem;
  width: calc(100% - 22rem);
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table {
  width: 100%;
  border-collapse: separate;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .table-row-dropdown-menu {
  top: auto;
  bottom: 0;
  left: auto;
  right: 100%;
  width: 160rem;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .table-row-dropdown-menu li {
  padding: 5rem 10rem;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .table-row-dropdown-menu li:hover {
  color: #00677d;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .disable-option {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .disable-option:hover {
  color: #d9d9d9 !important;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table th,
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table td {
  border-right: 1rem solid #d3d3d3;
  border-bottom: 1rem solid #d3d3d3;
  transition: background-color 0.3s;
  white-space: nowrap;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table th:first-child,
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table td:first-child {
  border-left: 1rem solid #d3d3d3;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table th:last-child,
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table td:last-child {
  border-right: none;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table th .more-entries-badge,
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table td .more-entries-badge {
  color: #999999;
  border: 1px solid #999999;
  border-radius: 10rem;
  padding: 0 5rem;
  font-size: 12rem;
  margin-left: 4rem;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table th {
  border-top: 1px solid #d3d3d3;
  padding: 8rem 6rem 7rem 6rem;
  color: #333;
  white-space: nowrap;
  background: #fff;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody.sortable-ghost td {
  background: #e5e5e5;
  border-width: 0rem;
  opacity: 0.4;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody.sortable-ghost .sticky {
  border: none;
  padding: 0;
  opacity: 1;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody.sortable-ghost .sticky-wrapper * {
  opacity: 0;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody:nth-child(odd) > tr > td:not(.sticky) {
  background: #fcfcfc;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody:last-child tr:last-child td:not(.sticky) {
  border-bottom: 1rem solid #d9d9d9;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr {
  cursor: pointer;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td {
  padding: 6rem;
  background: #fff;
  position: relative;
  height: 45px;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td > div > div {
  height: calc(100% - 25rem);
  max-width: 200rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td:hover > div > div {
  max-width: none;
  white-space: normal;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr td .render-cell div {
  display: inline;
  margin-right: 5rem;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr.main-row.active-asset td:not(.sticky),
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr.main-row:hover td:not(.sticky) {
  background: #e1eef4;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr fdx-mdb-compliance-icon.row-compliance {
  position: absolute;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table tbody tr fdx-mdb-compliance-icon.row-compliance + * {
  margin-left: 1.3em;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .none td {
  background: #fff;
  text-align: center;
  font-size: 14rem;
  font-style: italic;
  padding: 10rem;
  color: #999;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller table .showAll {
  text-align: center;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller.no-columns .none td {
  border-top: #d3d3d3 1rem solid;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky {
  right: 0;
  position: relative;
  /* fallback for ie */
  position: sticky;
  top: auto;
  padding: 0;
  border-left: #d3d3d3 1px solid;
  vertical-align: top;
  height: 0;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-content: center;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky-button {
  flex-basis: 40rem;
  text-align: center;
  font-size: 20rem;
  padding: 8rem 0 7rem;
  height: auto!important;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky-button.menu-open {
  background: white;
  z-index: 9999;
  -webkit-box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  border-right: 1px solid #d3d3d3;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .fdx-elipsis {
  line-height: 20rem;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .rules-warning {
  color: #ce6c0d;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .fdx-menu {
  color: #00a9ce;
  font-size: 19rem;
}
fdx-asset-smart-table-vs .asset-smart-table-wrapper .asset-smart-table-scroller .sticky .individual-remove.disabled {
  color: #e5e5e5;
  cursor: not-allowed;
}
fdx-asset-smart-table-vs .asset-smart-table .child-asset-details {
  position: sticky;
  left: 0;
  width: 0rem;
  display: block;
}
fdx-asset-smart-table-vs .asset-smart-table .child-asset-details-wrapper {
  overflow: auto;
  padding: 0rem !important;
  background-color: white !important;
  border-top: 1rem solid #d3d3d3;
  border-bottom: 1rem solid #d3d3d3;
  box-shadow: 0 0 20rem #d3d3d3;
}
fdx-asset-smart-table-vs .asset-smart-table .child-asset-details-wrapper .child-asset-details-view {
  display: block;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller table > thead > tr > .sticky {
  width: 0;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller table > tbody > tr > .sticky {
  width: 0;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper {
  width: 0;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 0;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-0 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 0;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller table > thead > tr > .sticky {
  width: 40rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller table > tbody > tr > .sticky {
  width: 40rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper {
  width: 40rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 40rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-1 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 40rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller table > thead > tr > .sticky {
  width: 80rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller table > tbody > tr > .sticky {
  width: 80rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper {
  width: 80rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 80rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-2 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 80rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-3 > .asset-smart-table-scroller table > thead > tr > .sticky {
  width: 120rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-3 > .asset-smart-table-scroller table > tbody > tr > .sticky {
  width: 120rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-3 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper {
  width: 120rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-3 > .asset-smart-table-scroller table > tbody > tr > .sticky > .sticky-wrapper > .sticky-functions {
  right: 120rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible > .asset-smart-table-wrapper.sticky-buttons-count-3 > .asset-smart-table-scroller::-webkit-scrollbar-button:end {
  width: 120rem;
}
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible th.last,
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible td.last,
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible th.child-asset-details-wrapper,
fdx-asset-smart-table-vs .asset-smart-table.sticky-visible td.child-asset-details-wrapper {
  border-right: none;
}
fdx-asset-smart-table-vs .asset-smart-table .warning-icon {
  font-size: 16rem;
  color: #00a9ce;
  z-index: 1;
}
fdx-asset-smart-table-vs .asset-smart-table .warning-icon-text {
  font-size: 14rem;
  color: #00a9ce;
}
fdx-asset-smart-table-vs .asset-smart-table .tooltip {
  max-width: 270rem;
  width: 270rem;
}
fdx-asset-smart-table-vs .asset-smart-table .cell-list-wrapper div.flex-line {
  min-height: 2em;
}
fdx-asset-smart-table-vs .asset-smart-table .cell-list-wrapper fdx-icon-menu {
  font-size: 0.7em;
}
fdx-asset-smart-table-vs .none,
fdx-asset-smart-table-vs .no-property-value-replacement {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-asset-smart-table-vs .bold {
  font-weight: bold;
}
.dropdown-menu.fdx-visible-columns-dropdown {
  width: 205rem;
  max-height: 220rem;
}
.dropdown-menu.fdx-visible-columns-dropdown .dropdown-header {
  border-bottom: 1px solid #d3d3d3;
}
.dropdown-menu.fdx-visible-columns-dropdown .visibleColumnList {
  padding: 0;
  margin: 0;
}
.sticky-menu {
  border: none!important;
  padding: 0!important;
  z-index: 1000!important;
}
.sticky-menu:not(.top-dropdown) {
  margin-top: -1px !important;
  border-top-right-radius: 0!important;
  -webkit-box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.125) !important;
}
.sticky-menu.top-dropdown {
  margin-bottom: -1px !important;
  border-bottom-right-radius: 0!important;
  -webkit-box-shadow: 0 -3rem 5rem rgba(0, 0, 0, 0.125) !important;
  box-shadow: 0 -3rem 5rem rgba(0, 0, 0, 0.125) !important;
}
.sticky-menu li {
  display: flex;
  cursor: pointer;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.sticky-menu li:first-child {
  border-top: 1px solid #d3d3d3;
}
.sticky-menu li.disabled {
  color: #d3d3d3 !important;
  font-weight: normal!important;
  font-style: italic;
  cursor: not-allowed;
}
.sticky-menu li.disabled:hover {
  color: #d3d3d3;
  background: white;
}
.sticky-menu li.disabled:hover.rule,
.sticky-menu li.disabled:hover.rule-entry {
  color: #d3d3d3;
}
.sticky-menu li .fdxicon-regular:not(.fdx-edit):not(.fdx-remove) {
  margin: 8rem 12rem;
  font-size: 16rem;
  height: 18rem;
}
.sticky-menu li .fdx-edit,
.sticky-menu li .fdx-remove {
  cursor: pointer;
  font-size: 11rem;
}
.sticky-menu li span:not(.fdxicon-regular) {
  flex: 1;
  font: bold 9rem "PT Sans", "interstate", Helvetica, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 10rem 10rem 10rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-menu li:hover:not(.rule-entry) {
  color: white;
  background: #3caace;
}
.sticky-menu li.rule,
.sticky-menu li.rule-entry {
  color: #ce6c0d;
}
.sticky-menu li .rule-entry-text {
  width: 90rem;
}
.sticky-menu li .rule-entry-add,
.sticky-menu li .rule-entry-remove {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem;
}
.sticky-menu li .rule-entry-add span,
.sticky-menu li .rule-entry-remove span {
  font-size: 14rem;
}
.sticky-menu li .rule-entry-add:hover,
.sticky-menu li .rule-entry-remove:hover {
  color: white;
  background: #3caace;
}
.sticky-menu li .rule-entry-add {
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cell-list-container {
  min-width: 28em;
}
.cell-list-container .cell-list .cell-list-item {
  margin: -6rem;
  padding: 4rem;
  position: relative;
}
.cell-list-container .cell-list .cell-list-item.icon-menu-always-visible fdx-icon-menu,
.cell-list-container .cell-list .cell-list-item:hover fdx-icon-menu {
  opacity: 1;
}
.cell-list-container .cell-list .cell-list-item + li {
  margin-top: 0.5em;
}
.cell-list-container .cell-list .cell-list-item.border-highlight {
  border: 1px dashed transparent;
  transition: border ease-in-out 0.3s, background-color ease-in-out 0.3s;
}
.cell-list-container .cell-list .cell-list-item.border-highlight.active-prop,
.cell-list-container .cell-list .cell-list-item.border-highlight:hover {
  border-color: #00a9ce;
  background-color: #F0F7F9;
}
.cell-list-container .cell-list .cell-list-item.border-highlight.active-prop {
  text-shadow: 0 0 1px currentColor;
}
.cell-list-container .cell-list .cell-list-item .cell-list .cell-list-item {
  margin: 2rem 0 2rem 6rem;
  padding-right: 0;
}
.cell-list-container .cell-list .cell-list-item .cell-list-item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all ease-in-out 0.2s;
  min-height: 1.5em;
}
.cell-list-container .cell-list .cell-list-item .cell-list-item-content .cell-list-item-content-title {
  flex: 1;
}
.cell-list-container .cell-list .cell-list-item .btns-wrapper {
  position: relative;
  width: 35rem;
  height: 24rem;
}
.cell-list-container .cell-list .cell-list-item .btns-wrapper.none {
  width: 0;
}
.cell-list-container .cell-list .cell-list-item .btns-wrapper.one {
  width: 30rem;
  height: 24rem;
}
.cell-list-container .cell-list .cell-list-item .btns-wrapper.two {
  width: 60rem;
  height: 24rem;
}
.cell-list-container .cell-list .cell-list-item .expand-btn {
  color: #00a9ce;
}
.cell-list-container .cell-list .cell-list-item .expand-btn.disabled {
  color: #d3d3d3 !important;
  cursor: not-allowed;
}
.cell-list-container .cell-list .cell-list-item .fdx-underline-link.disabled,
.cell-list-container .cell-list .cell-list-item .fdx-underline-link.disabled:hover {
  color: #d3d3d3 !important;
  cursor: not-allowed;
}
.cell-list-container .cell-list .cell-list-item .fdx-underline-link.disabled:after,
.cell-list-container .cell-list .cell-list-item .fdx-underline-link.disabled:hover:after {
  width: 0;
}
.cell-list-container .cell-list .cell-list-item .rules-warning {
  color: #ce6c0d;
  vertical-align: text-bottom;
  margin-right: 3rem;
}
.cell-list-container .cell-list .cell-list-item .fdxicon-regular {
  vertical-align: text-bottom;
}
.cell-list-container .cell-list .cell-list-item fdx-icon-menu {
  border-radius: 5em;
  font-size: 0.7em;
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
}
.cell-list-container .cell-list .cell-list-item fdx-icon-menu.absolute {
  position: absolute;
  right: 5rem;
  top: 0;
}
.cell-list-container .cell-list .cell-list-item fdx-icon-menu.absolute.first {
  right: 33rem;
}
.cell-list-container .cell-list .cell-list-item fdx-icon-menu.absolute.third {
  right: 62rem;
}
.cell-list-container .cell-list .cell-list-item fdx-icon-menu.show {
  opacity: 1;
}
.cell-list-container .cell-list .cell-list-item.loading-wrapper {
  display: flex;
  gap: 4rem;
}
.cell-list-container .cell-list .cell-list-item.loading-wrapper span {
  color: #999;
  font-style: italic;
}
.cell-list-container .cell-list .cell-list-item.loading-wrapper .lds-spinner {
  width: 17rem;
  height: 17rem;
  padding: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #999;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
.icon-menu-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.icon-menu-wrapper fdx-icon-menu {
  position: absolute;
  right: 3rem;
}
.rules-warning {
  color: #ce6c0d;
  position: absolute;
  left: 0;
}
fdx-mdb-smart-table-cell-origin-documents .cell-list-container .fixed-origin-icon {
  color: #aa1c1c;
  margin-top: 3rem;
  display: none;
}
fdx-mdb-smart-table-cell-origin-documents .cell-list-container.fixed-origin .action-list.action-rules {
  display: none;
}
fdx-mdb-smart-table-cell-origin-documents .cell-list-container.fixed-origin .fixed-origin-icon {
  display: block;
}

.smart-table-cell-analysis-dataset-comment {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-analysis-result .documentation-code-wrapper {
  margin: 15rem;
}
fdx-mdb-analysis-result .documentation-code-wrapper-documentation {
  border-right: 1px solid #d9d9d9;
}
fdx-mdb-analysis-result .documentation-code-wrapper-documentation,
fdx-mdb-analysis-result .documentation-code-wrapper-code {
  padding: 10rem;
}
fdx-mdb-analysis-result .documentation-code-wrapper-documentation .panel-heading,
fdx-mdb-analysis-result .documentation-code-wrapper-code .panel-heading {
  transition: all 0.3s;
  color: #454545;
  line-height: 16rem;
}
fdx-mdb-analysis-result .documentation-code-wrapper-documentation .panel-heading .label,
fdx-mdb-analysis-result .documentation-code-wrapper-code .panel-heading .label {
  font-size: 17rem;
  line-height: 25rem;
  vertical-align: top;
  font-size: 18rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  max-width: 204rem;
}
fdx-mdb-analysis-result .documentation-code-wrapper-documentation .panel-heading .fdxicon-regular,
fdx-mdb-analysis-result .documentation-code-wrapper-code .panel-heading .fdxicon-regular {
  font-size: 18rem;
}
fdx-mdb-analysis-result .documentation-code-wrapper-documentation .panel-heading .description-wrapper,
fdx-mdb-analysis-result .documentation-code-wrapper-code .panel-heading .description-wrapper {
  max-width: calc(100% - 230rem);
  float: right;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading {
  transition: all 0.3s;
  color: #454545;
  font-size: 18rem;
  line-height: 16rem;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .fdx-analysis-result {
  font-size: 25rem;
  margin-right: 3rem;
  margin-top: 0;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .name {
  line-height: 26rem;
  vertical-align: top;
  display: inline-block;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .asset-icon {
  font-size: 21rem;
  margin-left: 5rem;
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .asset-icon.remove {
  color: #454545;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .asset-icon.remove.disabled {
  color: #d9d9d9;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .asset-btn {
  line-height: 25rem;
  z-index: 9;
  margin-right: 5rem;
}
fdx-mdb-analysis-result .asset-overview-child .panel-heading .fdxicon-regular {
  margin-top: 1rem;
}
fdx-mdb-analysis-result .asset-overview-datasets {
  padding: 15rem 0;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  margin-bottom: 15rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-dataset .asset-overview-terminology {
  width: 100%;
  margin-bottom: 15rem;
}
fdx-mdb-dataset .asset-overview-comment {
  margin-bottom: 15rem;
}
fdx-mdb-dataset .asset-overview-comment.comment-on-terminology {
  width: calc(100% - 32rem) !important;
}
fdx-mdb-dataset .asset-overview-origins {
  display: inline-block;
  min-height: 50rem;
  width: 49.5%;
  padding: 15rem;
  margin-bottom: 15rem;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
fdx-mdb-dataset .asset-overview-origins .origin-label {
  font-size: 20rem;
  margin-bottom: 10rem;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper {
  width: 100%;
  overflow: auto;
  position: relative;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper tbody:last-of-type td,
fdx-mdb-dataset .asset-overview-origins .origin-wrapper tbody:last-of-type th {
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table {
  width: 100%;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row.active-prop,
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row.selectable:hover {
  background: #e1eef4;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row.closed {
  padding: 0;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row.closed td,
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row.closed th,
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-row.closed .remove-btn {
  padding: 0 !important;
  border: none !important;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-cell {
  border: 1rem solid #d9d9d9;
  padding: 6rem;
  border-bottom: 0;
  position: relative;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-cell .link {
  cursor: pointer;
  transition: all 0.3s;
  color: #00a9ce;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-cell .link:hover {
  color: #00a9ce;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-cell.header {
  padding: 8rem 6rem 7rem 6rem;
  font-weight: bold;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper .origin-table-cell .origin-documents-wrapper {
  border-bottom: 0;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn {
  position: sticky;
  right: 0;
  overflow: hidden;
  padding: 6rem 12rem 6rem 0;
  background: #fff;
  border-bottom: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  background: #d9d9d9;
  width: 1rem;
  height: 9999rem;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn .fdx-circle-remove {
  margin-left: 12rem;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn:hover {
  color: #00a9ce;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn.disable-remove {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-mdb-dataset .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn.disable-remove:hover {
  color: #d9d9d9 !important;
}
fdx-mdb-dataset .asset-overview-values {
  display: inline-block;
  min-height: 50rem;
  width: 49.5%;
  padding: 15rem;
  margin-bottom: 15rem;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
fdx-mdb-dataset .asset-overview-values .title {
  font-size: 20rem;
  margin-bottom: 10rem;
}
fdx-mdb-dataset .asset-overview .mapping-parent {
  min-height: auto;
}
fdx-mdb-dataset .asset-overview-parent-property.related-dataset {
  display: flex;
  align-items: center;
}
fdx-mdb-dataset .asset-overview-parent-property.related-dataset span {
  color: #00a9ce;
  font-weight: bold;
  margin-right: 5rem;
}
fdx-mdb-dataset .warning-icon {
  font-size: 25rem;
  float: right;
  color: #00a9ce;
}
fdx-mdb-dataset .fdx-mdb-dataset-child .variable-props-panel {
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 15rem 0;
}
fdx-mdb-dataset .fdx-mdb-dataset-child .variable-props-panel > .variable-props-row,
fdx-mdb-dataset .fdx-mdb-dataset-child .variable-props-panel .variable-origins {
  flex: 1;
}
fdx-mdb-dataset .fdx-mdb-dataset-child .variable-origins-wrapper {
  display: flex;
  flex-wrap: wrap;
}
fdx-mdb-dataset .fdx-mdb-dataset-child .variable-origins-wrapper .variable-origin {
  flex-grow: 1;
  margin-bottom: 25rem;
}
fdx-mdb-dataset .collapsable-contents {
  width: 100%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-dataset-variable-children {
  height: 100%;
  display: block;
}
fdx-mdb-dataset-variable-children .variable-children {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  cursor: default;
  background-color: #E5E5E5;
  box-shadow: 0 0 5rem #d3d3d3 inset;
}
fdx-mdb-dataset-variable-children .variable-children .mdb-value-criteria-table-wrapper,
fdx-mdb-dataset-variable-children .variable-children .mdb-value-criteria-buttons-wrapper {
  flex: 1;
}
fdx-mdb-dataset-variable-children .mdb-value-criteria-table-wrapper {
  padding: 10rem;
  margin: 20rem;
  background-color: #F3F3F3;
  box-shadow: 0 0 10rem #d3d3d3;
  border-radius: 5rem;
}
fdx-mdb-dataset-variable-children .mdb-value-criteria-table-wrapper th.sticky,
fdx-mdb-dataset-variable-children .mdb-value-criteria-table-wrapper td.sticky {
  background-color: #F3F3F3 !important;
}
fdx-mdb-dataset-variable-children .asset-overview-terminology {
  border: 0rem !important;
  border-bottom: 1rem solid #d9d9d9 !important;
  box-shadow: none;
  margin-bottom: 0;
}
fdx-mdb-dataset-variable-children .terminology-comment {
  margin-top: 15rem !important;
}
fdx-mdb-dataset-variable-children .variable-children-wrapper {
  width: 100%;
  position: relative;
}
fdx-mdb-dataset-variable-children .variable-children-wrapper .asset-overview-origins,
fdx-mdb-dataset-variable-children .variable-children-wrapper .asset-overview-terminology,
fdx-mdb-dataset-variable-children .variable-children-wrapper .asset-overview-comment {
  float: left !important;
}
fdx-mdb-dataset-variable-children .variable-children-wrapper .asset-overview-terminology,
fdx-mdb-dataset-variable-children .variable-children-wrapper > .asset-overview-comment {
  cursor: pointer;
  width: calc(50% - 10rem) !important;
}
fdx-mdb-dataset-variable-children .variable-children-wrapper .asset-overview-terminology {
  min-height: 50rem;
  padding: 15rem;
  display: inline-block;
  background-color: #fff;
  border: 1rem solid #d9d9d9 !important;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2) !important;
  vertical-align: top;
  margin-right: 10rem;
}
.new-comment-container {
  padding: 15rem 30rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-form .asset-overview-child .panel-heading {
  transition: all 0.3s;
  color: #454545;
  font-size: 18rem;
  line-height: 16rem;
}
fdx-mdb-form .asset-overview-child .panel-heading .fdx-tags {
  font-size: 25rem;
  margin-right: 3rem;
  margin-top: 0;
}
fdx-mdb-form .asset-overview-child .panel-heading .label {
  font-size: 21rem;
  line-height: 25rem;
  vertical-align: top;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 41%;
  overflow: hidden;
}
fdx-mdb-form .asset-overview-child .panel-heading .fdx-download {
  cursor: pointer;
  float: right;
  font-size: 21rem;
  color: #00a9ce;
}
fdx-mdb-form .asset-overview-child .panel-heading .fdx-download:hover {
  color: #00a9ce;
}
fdx-mdb-form .asset-overview-child .panel-heading .name {
  font-size: 21rem;
  line-height: 25rem;
  vertical-align: middle;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 20%;
  overflow: hidden;
}
fdx-mdb-form .asset-overview-child .panel-heading .asset-icon {
  font-size: 21rem;
  margin-left: 5rem;
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-form .asset-overview-child .panel-heading .asset-icon.remove {
  color: #454545;
}
fdx-mdb-form .asset-overview-child .panel-heading .asset-icon.remove.disabled {
  color: #d9d9d9;
}
fdx-mdb-form .asset-overview-child .panel-heading .asset-btn {
  font-size: 19rem;
  line-height: 25rem;
  z-index: 9;
  margin-right: 5rem;
}
fdx-mdb-form .asset-overview-child.view-mode {
  padding-bottom: 20rem;
}
fdx-mdb-form .asset-overview-child .collapse,
fdx-mdb-form .asset-overview-child .collapsing {
  margin-top: 10rem;
}
fdx-mdb-form .form-section-condition-label {
  color: #00a9ce;
}
fdx-mdb-form .form-section-condition-label:hover .asset-icon:not(.disabled),
fdx-mdb-form .form-section-condition-label:hover .form-section-condition-label-value {
  color: #00677d;
}
fdx-mdb-form .form-section-condition-label-value {
  display: inline-block;
  max-width: 350rem;
  vertical-align: text-bottom;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-form .form-section-condition-menu {
  margin-left: 5rem;
}
fdx-mdb-form .form-section-condition-menu .icon-menu .action-button,
fdx-mdb-form .form-section-condition-menu .icon-menu .menu-icon {
  font-size: 0.7em;
  padding: 0.35em;
}
fdx-mdb-form .btn-wrapper {
  padding-bottom: 25rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-question .asset-overview .col {
  float: left;
}
fdx-mdb-question .asset-overview .col.wider {
  width: 60%;
}
fdx-mdb-question .asset-overview .col.thiner {
  width: 40%;
}
fdx-mdb-question .asset-overview .col.full {
  width: 100%;
}
fdx-mdb-question .asset-overview-question-children {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
fdx-mdb-question .asset-overview-units,
fdx-mdb-question .asset-overview-terminology {
  height: 100%;
  margin-bottom: 10rem;
  min-width: calc(50% - 4rem);
  flex: 1 1 auto;
  margin-left: 2rem;
  margin-right: 2rem;
}
fdx-mdb-question .asset-overview-units .btn-wrapper,
fdx-mdb-question .asset-overview-terminology .btn-wrapper {
  width: 467rem!important;
  margin: 0 auto!important;
}
fdx-mdb-question .btn-wrapper.comment {
  display: inline-block;
  padding: 7rem 0 0!important;
}
fdx-mdb-question .comment-label {
  font-size: 16rem!important;
}
fdx-mdb-question .terminology-comment {
  width: calc(100% - 30rem) !important;
  margin-top: 15rem!important;
}
fdx-mdb-question #asset-question-view-missing-section {
  clear: both;
}
fdx-mdb-question .warning-icon {
  font-size: 25rem;
  float: right;
  color: #00a9ce;
  margin-bottom: 15rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-result-display .documentation-code-wrapper {
  margin: 15rem;
}
fdx-mdb-result-display .documentation-code-wrapper-documentation {
  border-right: 1px solid #d9d9d9;
}
fdx-mdb-result-display .documentation-code-wrapper-documentation,
fdx-mdb-result-display .documentation-code-wrapper-code {
  padding: 10rem;
}
fdx-mdb-result-display .documentation-code-wrapper-documentation .panel-heading,
fdx-mdb-result-display .documentation-code-wrapper-code .panel-heading {
  transition: all 0.3s;
  color: #454545;
  line-height: 16rem;
}
fdx-mdb-result-display .documentation-code-wrapper-documentation .panel-heading .label,
fdx-mdb-result-display .documentation-code-wrapper-code .panel-heading .label {
  font-size: 17rem;
  line-height: 25rem;
  vertical-align: top;
  font-size: 18rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  max-width: 204rem;
}
fdx-mdb-result-display .documentation-code-wrapper-documentation .panel-heading .fdxicon-regular,
fdx-mdb-result-display .documentation-code-wrapper-code .panel-heading .fdxicon-regular {
  font-size: 18rem;
}
fdx-mdb-result-display .documentation-code-wrapper-documentation .panel-heading .description-wrapper,
fdx-mdb-result-display .documentation-code-wrapper-code .panel-heading .description-wrapper {
  max-width: calc(100% - 230rem);
  float: right;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-result-display .asset-overview-child .half-width {
  width: calc(50% - 2rem) !important;
  margin: 0 0 15rem 0;
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-result-display .asset-overview-child .half-width.right-column {
  border-left: 1rem solid #d9d9d9;
  padding-left: 15rem;
}
fdx-mdb-result-display .asset-overview-child .panel-heading {
  transition: all 0.3s;
  color: #454545;
  font-size: 18rem;
  line-height: 16rem;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .fdx-tags {
  font-size: 25rem;
  margin-right: 3rem;
  margin-top: 0;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .label {
  font-size: 18rem;
  line-height: 25rem;
  vertical-align: top;
  display: inline-block;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .name {
  line-height: 26rem;
  vertical-align: top;
  display: inline-block;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .asset-icon {
  font-size: 21rem;
  margin-left: 5rem;
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .asset-icon.remove {
  color: #454545;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .asset-icon.remove.disabled {
  color: #d9d9d9;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .asset-btn {
  font-size: 19rem;
  line-height: 25rem;
  z-index: 9;
  margin-right: 5rem;
}
fdx-mdb-result-display .asset-overview-child .panel-heading .fdxicon-circled {
  margin-top: 1rem;
}
fdx-mdb-result-display .asset-overview-child.view-mode {
  padding-bottom: 20rem;
}
fdx-mdb-result-display .asset-overview-child .collapse:not(.comment-documents),
fdx-mdb-result-display .asset-overview-child .collapsing:not(.comment-documents) {
  margin-top: 10rem;
}
fdx-mdb-result-display .no-sections {
  padding: 20rem;
  font-size: 17rem;
}
fdx-mdb-result-display .rule-entry {
  display: inline-block;
  line-height: 23rem;
}
fdx-mdb-result-display .rule-entry-text {
  color: #97510b;
  font-size: 13rem;
}
fdx-mdb-result-display .rule-entry-text:before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 16rem;
  margin-right: 3rem;
  vertical-align: top;
}
fdx-mdb-result-display .rule-entry .fdxicon-circled {
  cursor: pointer;
  font-size: 13rem;
  color: #ce6c0d;
  margin-top: 3rem;
}
fdx-mdb-result-display .rule-entry .fdxicon-circled:hover {
  color: #97510b;
}
fdx-mdb-result-display .fn-btn.rule {
  font-size: 12rem;
  color: #ce6c0d;
  padding: 5rem;
}
fdx-mdb-result-display .fn-btn.rule:hover {
  color: #97510b;
}
fdx-mdb-result-display .fn-btn.disabled {
  color: #d3d3d3;
  cursor: not-allowed;
}
fdx-mdb-result-display .fn-btn.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-result-display .ar-btn-wrapper {
  padding: 15rem;
}
fdx-mdb-result-display .analysis-result-child-asset-menu {
  position: absolute;
  right: 15rem;
  top: 17rem;
}
fdx-mdb-result-display .analysis-results-wrapper .fdx-mdb-rule-visibility.analysisResult {
  position: absolute;
  top: 42rem;
  right: 15rem;
}
fdx-mdb-result-display .fdx-mdb-result-display-analysis-result {
  position: relative;
}
fdx-mdb-result-display .fdx-mdb-result-display-analysis-result .row.analysis-result {
  padding: 0 15rem;
}
fdx-mdb-result-display .fdx-mdb-result-display-analysis-result .row.ar-comment {
  margin-right: 15rem;
  margin-left: 15rem;
}
fdx-mdb-result-display .rd-ar-comment-container {
  padding: 0 15rem;
}

fdx-mdb-section .asset-overview-child.view-mode {
  padding-bottom: 20rem;
}
fdx-mdb-section .asset-overview-child .table {
  border-collapse: separate;
}
fdx-mdb-section .invalid {
  font-style: italic;
  color: #999;
}
fdx-mdb-section fdx-mdb-asset-repeating {
  display: block;
  margin-left: 10rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-selection-criteria .asset-overview-comment {
  width: 100%;
  margin-bottom: 15rem;
}
fdx-mdb-selection-criteria .warning-icon {
  font-size: 25rem;
  float: right;
  color: #00a9ce;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-value .asset-overview-terminology {
  width: 100%;
  margin-bottom: 15rem;
}
fdx-mdb-value .asset-overview-comment {
  width: 49.5% !important;
  margin-right: 0.6%;
}
fdx-mdb-value .asset-overview-comment.comment-on-terminology {
  width: calc(100% - 32rem) !important;
}
fdx-mdb-value .asset-overview-origins {
  display: inline-block;
  min-height: 50rem;
  width: 49.5%;
  padding: 15rem;
  margin-bottom: 15rem;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
fdx-mdb-value .asset-overview-origins .origin-label {
  font-size: 20rem;
  margin-bottom: 10rem;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper {
  width: 100%;
  overflow: auto;
  position: relative;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type td,
fdx-mdb-value .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type th {
  border-bottom: 1px solid #d9d9d9;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type td.sticky,
fdx-mdb-value .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type th.sticky {
  border-bottom: none!important;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table {
  width: 100%;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row.active-prop,
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row.selectable:hover {
  background: #e1eef4;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row.closed {
  padding: 0;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row.closed td,
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row.closed th,
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-row.closed .remove-btn {
  padding: 0 !important;
  border: none !important;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-cell {
  border: 1rem solid #d9d9d9;
  border-right: none;
  padding: 6rem;
  border-bottom: 0;
  position: relative;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-cell.no-origins {
  border-bottom: 1px solid #d9d9d9;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-cell .link {
  cursor: pointer;
  transition: all 0.3s;
  color: #00a9ce;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-cell .link:hover {
  color: #00a9ce;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-cell.header {
  padding: 8rem 6rem 7rem 6rem;
  font-weight: bold;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper .origin-table-cell .origin-documents-wrapper {
  border-bottom: 0;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn {
  position: sticky;
  right: 0;
  overflow: hidden;
  padding: 6rem 12rem 6rem 0;
  background: #fff;
  border-bottom: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  background: #d9d9d9;
  width: 1rem;
  height: 9999rem;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn .fdx-circle-remove {
  margin-left: 12rem;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn:hover {
  color: #00a9ce;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn.disable-remove {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-mdb-value .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn.disable-remove:hover {
  color: #d9d9d9 !important;
}
fdx-mdb-value .warning-icon {
  font-size: 25rem;
  float: right;
  color: #00a9ce;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-variable .asset-overview .half-width {
  width: calc(50% - 2rem) !important;
  margin: 0 0 15rem 0;
}
fdx-mdb-variable .asset-overview-comment.comment-on-terminology {
  width: calc(100% - 32rem) !important;
}
fdx-mdb-variable .asset-overview-origins {
  display: inline-block;
  min-height: 50rem;
  width: 49.5%;
  padding: 15rem;
  margin-bottom: 15rem;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
fdx-mdb-variable .asset-overview-origins .origin-label {
  font-size: 20rem;
  margin-bottom: 10rem;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper {
  width: 100%;
  overflow: auto;
  position: relative;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type td,
fdx-mdb-variable .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type th {
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type td.sticky,
fdx-mdb-variable .asset-overview-origins .origin-wrapper tbody.sortable-origin:last-of-type th.sticky {
  border-bottom: none!important;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table {
  width: 100%;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table th {
  padding: 4rem 6rem;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table td {
  padding: 6rem;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-row {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-row.active-prop,
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-row.selectable:hover {
  background: #e1eef4;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-cell {
  border: 1rem solid #d9d9d9;
  border-bottom: 0;
  position: relative;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-cell .link {
  cursor: pointer;
  transition: all 0.3s;
  color: #00a9ce;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-cell .link:hover {
  color: #00a9ce;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-cell.no-origin {
  border-bottom: 1rem solid #d9d9d9 !important;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-cell.header {
  padding: 8rem 6rem 7rem 6rem;
  font-weight: bold;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper .origin-table-cell .origin-documents-wrapper {
  border-bottom: 0;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn {
  position: sticky;
  right: 0;
  overflow: hidden;
  padding: 6rem 12rem 6rem 0;
  background: #fff;
  border-bottom: none !important;
  color: #00677d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  background: #d9d9d9;
  width: 1rem;
  height: 9999rem;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn .fdx-circle-remove {
  margin-left: 12rem;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn:hover {
  color: #00a9ce;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn.disable-remove {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-mdb-variable .asset-overview-origins .origin-wrapper.edit .origin-table-row .remove-btn.disable-remove:hover {
  color: #d9d9d9 !important;
}
fdx-mdb-variable .asset-overview-values {
  display: inline-block;
  min-height: 50rem;
  width: 100%;
  padding: 15rem;
  margin-bottom: 15rem;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
fdx-mdb-variable .asset-overview-values .title {
  font-size: 20rem;
  margin-bottom: 10rem;
}
fdx-mdb-variable .warning-icon {
  font-size: 25rem;
  float: right;
  color: #00a9ce;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-visit-schedule .asset-overview-child {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 150rem;
  transition: all 0.3s;
}
fdx-mdb-visit-schedule .asset-overview-matrix {
  font-size: 0;
  width: 100%;
}
fdx-mdb-visit-schedule .asset-overview-matrix-table {
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
fdx-mdb-visit-schedule .asset-overview-matrix-table.no-edit {
  width: 100%;
}
fdx-mdb-visit-schedule .asset-overview-matrix-table-wrapper {
  border: 1rem solid #d9d9d9;
  display: inline-block;
  overflow: auto;
  max-height: 515rem;
  width: 100%;
  white-space: nowrap;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control {
  display: table;
  margin: 0 auto;
  height: 45px;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-container {
  padding: 0 0 0 10rem;
  transition: all 0.3s;
  display: flex;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control.not-edit {
  width: 0;
  padding: 0;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn {
  padding: 5rem 0 0 30rem;
  text-align: right;
  transition: all 0.15s;
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn i {
  vertical-align: bottom;
  padding-right: 5rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn span {
  color: #d9d9d9;
  font-size: 15rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn.enabled {
  color: #378fb2;
  font-style: normal;
  cursor: pointer;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn.enabled:hover {
  color: #03505C;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn.enabled span {
  color: #378fb2;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn.enabled span:hover {
  color: #03505C;
}
fdx-mdb-visit-schedule .asset-overview-matrix-control-btn .fdxicon-regular {
  font-size: 22rem !important;
}
fdx-mdb-visit-schedule .asset-overview-matrix-forms .matrix-column-header,
fdx-mdb-visit-schedule .asset-overview-matrix-forms .matrix-column-cell {
  border-left: none !important;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column {
  display: inline-block;
  height: 100%;
  min-width: 190rem;
  min-height: 100rem;
  vertical-align: top;
  font-size: 14rem;
  transition: width 0.3s;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column.no-visits {
  text-align: center;
  color: grey;
  font-style: italic;
  padding-top: 20rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column.form-list {
  position: sticky;
  left: 0;
  z-index: 999;
  border-right: 1rem solid #d9d9d9;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .icon-tooltip .tooltip-inner {
  width: 134rem;
  white-space: pre-wrap;
  font-size: 13rem;
  line-height: 1;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .icon-tooltip.tooltip.bottom {
  margin-top: 11rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header {
  border-top: none !important;
  position: sticky;
  background: #f7f7f7 !important;
  top: 0;
  width: 100%;
  z-index: 9;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-wrapper {
  display: block;
  color: #333;
  text-align: center;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-wrapper:active {
  cursor: move;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-label {
  display: inline-block;
  max-width: calc(100% - 90rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17rem;
  line-height: 21rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-icons {
  margin-left: 3rem;
  display: inline-block;
  line-height: 24rem;
  vertical-align: text-bottom;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-icons .visit-icon {
  color: #03505C;
  cursor: pointer;
  font-size: 18rem;
  margin-right: 5rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-icons .visit-icon.disabled {
  color: #cccccc;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header-icons .fdx-flag {
  font-size: 16rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.caption {
  padding: 0rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.caption span {
  text-transform: uppercase;
  color: #c0bdc1;
  position: absolute;
  font-size: 12rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.caption span:first-of-type {
  right: 4rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.caption span:last-of-type {
  bottom: 0;
  left: 4rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell:first-of-type {
  margin-top: 50rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell {
  border-left: 1rem solid #d9d9d9;
  border-top: 1rem solid #d9d9d9;
  height: 50rem;
  background: #fff;
  overflow: hidden;
  padding: 20rem;
  height: 95rem !important;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header:hover,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell:hover,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.active-prop,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell.active-prop {
  cursor: pointer !important;
  background-color: #e6f1f8 !important;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .dropdown,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .dropdown {
  position: absolute;
  top: 5rem;
  right: 5rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .dropdown .visit-options,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .dropdown .visit-options {
  color: #00a9ce;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .dropdown .visit-options:hover,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .dropdown .visit-options:hover {
  color: #00677d;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .rules-warning,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .rules-warning {
  color: #97510b !important;
  margin-left: 5rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .condition-select,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .condition-select {
  color: #00a9ce;
  margin-top: 5rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .condition-select .disabled,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .condition-select .disabled {
  color: #6666 !important;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .condition-select:hover,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .condition-select:hover {
  color: #00677d;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .condition-select .icon-menu,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .condition-select .icon-menu {
  font-size: 0.7em;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header .condition-select .form-visit-condition-label-value,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell .condition-select .form-visit-condition-label-value {
  line-height: 18rem;
  vertical-align: top;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.form-cell,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell.form-cell {
  padding: 5rem;
  background: #f7f7f7;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.form-cell div,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell.form-cell div {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17rem;
  line-height: 40rem;
  text-align: center;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-header.form-cell.none,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column-cell.form-cell.none {
  height: 68rem;
  font-style: italic;
  color: #83828c;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .no-hover:hover,
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .no-hover.active-prop {
  cursor: default !important;
  background-color: #f7f7f7 !important;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell {
  text-align: center;
  position: relative;
  overflow: visible;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell .fdxicon-regular {
  margin-right: 4rem;
  margin-left: 4rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell .fdx-tick {
  font-size: 20rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell .exits-in-visit {
  margin-right: 3rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell .exits-in-visit.disabled {
  transition: all ease-in-out 0.3ms;
  opacity: 0;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell .exits-in-visit .non-editable {
  pointer-events: none;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell:hover .exits-in-visit.disabled {
  opacity: 1;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell:hover .exits-in-visit.disabled .non-editable {
  opacity: 0;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .visitForm-cell .disabled {
  color: #cccccc;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .rule-entry {
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .rule-entry-text {
  color: #97510b;
  font-size: 13rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .rule-entry-text:before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 16rem;
  margin-right: 3rem;
  vertical-align: top;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .rule-entry .fdxicon-regular {
  cursor: pointer;
  font-size: 13rem;
  color: #ce6c0d;
  margin-top: 3rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .rule-entry .fdxicon-regular:hover {
  color: #97510b;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .fn-btn {
  color: #ce6c0d;
  font-size: 14rem;
  cursor: pointer;
  vertical-align: top;
  line-height: 19rem;
  margin-left: 2rem;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .fn-btn.disabled {
  color: #d3d3d3;
  cursor: not-allowed;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .fn-btn.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-visit-schedule .asset-overview-matrix .matrix-column .fn-btn:hover {
  color: #97510b;
}
.VS-matix-dropdown-menu .dropdown-header {
  padding: 1rem 1rem 5rem;
  border-bottom: 1px solid #6666;
  margin: 10rem 18rem 2rem;
}
.VS-matix-dropdown-menu .dropdown-header-rule {
  color: #97510b;
  font-weight: normal;
  font-size: 13rem;
}
.VS-matix-dropdown-menu li button {
  text-align: left;
}
.VS-matix-dropdown-menu li button .fdxicon-regular {
  margin-right: 5rem;
}
.matrix-dropdown-menu {
  color: #97510b;
  min-width: 180rem;
}
.matrix-dropdown-menu-button {
  display: inline-block;
  line-height: 20rem;
  text-overflow: ellipsis;
  padding: 8rem;
  width: 100%;
  padding: 8rem 16rem;
}
.matrix-dropdown-menu-button:hover {
  cursor: pointer;
  background-color: #d7e8ef;
}

fdx-mdb-asset-group-select .modal-body .asset-group-card {
  display: flex;
  align-items: center;
  margin: 0.5em 0;
  user-select: none;
  cursor: pointer;
  border: 1rem solid lightgray;
  transition: border-left 0.15s ease-in-out;
}
fdx-mdb-asset-group-select .modal-body .asset-group-card:hover {
  border-left: 0.5em solid #00677d;
}
fdx-mdb-asset-group-select .modal-body .asset-group-card .icon {
  flex: 0 0 auto;
  width: auto;
  font-size: 2em;
  margin: 0.5em;
  opacity: 0.5;
}
fdx-mdb-asset-group-select .modal-body .asset-group-card .info .label {
  font-size: 1.3em;
}
fdx-mdb-asset-group-select .modal-body .asset-group-card .info .type {
  opacity: 0.75;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.hide-rules .fdx-mdb-rule-visibility {
  display: none !important;
}
.app-content > .spinner {
  z-index: 5001 !important;
}
.multi-line-text {
  white-space: break-spaces;
}
.fdx-mdb-asset-wrapper .fdx-mdb-content-menu,
.fdx-mdb-asset-wrapper .fdx-mdb-asset-overview,
.fdx-mdb-asset-wrapper .fdx-mdb-asset-detailed {
  opacity: 1;
  transition: 0.3s ease opacity;
}
.fdx-mdb-asset-wrapper .fdx-mdb-content-menu.loading-asset,
.fdx-mdb-asset-wrapper .fdx-mdb-asset-overview.loading-asset,
.fdx-mdb-asset-wrapper .fdx-mdb-asset-detailed.loading-asset {
  opacity: 0;
  transition: 0.3s ease opacity;
}
.fdx-mdb-asset {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.fdx-mdb-asset .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
.fdx-mdb-asset-browsing,
.fdx-mdb-asset-overview,
.fdx-mdb-asset-detailed {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.fdx-mdb-asset-browsing.expand-on-hover:hover,
.fdx-mdb-asset-overview.expand-on-hover:hover,
.fdx-mdb-asset-detailed.expand-on-hover:hover {
  width: 1000rem;
}
.fdx-mdb-asset-browsing {
  left: -430rem;
  width: 430rem;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  z-index: 2;
}
.fdx-mdb-asset-overview {
  left: 0;
  right: 0;
  overflow: auto;
}
.fdx-mdb-asset-overview-menu {
  height: 56rem;
  padding: 5rem 15rem;
  background-color: #fff;
  border-bottom: 1rem solid #ddd;
  color: #00a9ce;
}
.fdx-mdb-asset-overview-menu-filter {
  top: 4rem;
  float: right;
  margin: 0 6rem 0 0;
  padding: 8rem 12rem !important;
  border: 1rem solid #d3d3d3;
  border-radius: 5rem !important;
}
.fdx-mdb-asset-overview-menu-filter:focus {
  outline: 0 !important;
  color: #fff !important;
}
.fdx-mdb-asset-overview-menu-filter:hover {
  background-color: #fff;
  border-color: #00a9ce;
}
.fdx-mdb-asset-overview-menu-locale {
  float: right;
  width: 150rem;
  height: 48rem;
}
.fdx-mdb-asset-overview-menu-switch {
  float: left;
  opacity: 0;
  transition: 0.3s ease all;
  cursor: default;
  border: 1rem solid #E1E1E1 !important;
  border-radius: 5rem;
  padding: 9rem 12rem;
}
.fdx-mdb-asset-overview-menu-switch.show {
  opacity: 1;
  cursor: pointer;
}
.fdx-mdb-asset-overview-menu-switch-panel {
  display: inline-block;
  line-height: 20rem;
  vertical-align: top;
  text-align: center;
  background-color: #fff;
  margin: -3px 6rem 0 0;
  padding: 2rem 15rem !important;
  border-radius: 5px;
}
.fdx-mdb-asset-overview-menu-switch-panel i {
  margin-right: 5rem;
  margin-top: -4px;
  vertical-align: middle;
}
.fdx-mdb-asset-overview-menu-switch-panel:hover {
  color: #00a9ce;
  border-color: #00a9ce;
}
.fdx-mdb-asset-overview-menu-switch:hover {
  background-color: #fff !important;
  border-color: #00a9ce !important;
}
.fdx-mdb-asset-overview-menu-switch .fdxicon-asset {
  vertical-align: text-bottom;
}
.fdx-mdb-asset-overview-menu-refresh {
  color: #00a9ce !important;
}
.fdx-mdb-asset-overview-menu-refresh .fdx-compare {
  margin-right: 0!important;
}
.fdx-mdb-asset-overview-menu-refresh .fdx-circle-alert {
  position: absolute;
  top: 2rem;
  color: #aa1c1c;
  background: white;
}
.fdx-mdb-asset-overview-menu-refresh.danger {
  background-color: #e0b1af;
}
.fdx-mdb-asset-overview-menu-edit-disabled {
  color: #00a9ce !important;
}
.fdx-mdb-asset-overview-menu-edit,
.fdx-mdb-asset-overview-menu-refresh {
  top: 4rem;
  float: right;
  margin: 3rem 6rem 0 0;
  padding: 9rem 12rem !important;
  border-radius: 5rem !important;
}
.fdx-mdb-asset-overview-menu-edit:focus,
.fdx-mdb-asset-overview-menu-refresh:focus {
  outline: 0 !important;
}
.fdx-mdb-asset-overview-menu-edit:hover,
.fdx-mdb-asset-overview-menu-refresh:hover {
  color: #00a9ce;
  background-color: #fff;
  border-color: #00a9ce !important;
}
.fdx-mdb-asset-overview-menu-edit .fdxicon-asset,
.fdx-mdb-asset-overview-menu-refresh .fdxicon-asset {
  vertical-align: text-bottom;
}
.fdx-mdb-asset-overview-menu-functionality-disabled-warning {
  float: right;
  margin: 11rem 6rem 0 0;
  opacity: 0;
}
.fdx-mdb-asset-overview-menu-functionality-disabled-warning.show {
  opacity: 1;
  transition: 0.3s ease opacity;
}
.fdx-mdb-asset-overview-menu-functionality-disabled-warning .fdx-warning {
  color: #00a9ce;
  font-size: 22rem;
}
.fdx-mdb-asset-detailed {
  right: -500rem;
  width: 500rem;
  border-left: 1rem solid #e5e5e5;
  background-color: #fff;
  box-shadow: -2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  z-index: 2;
}
.fdx-mdb-asset-hide-browsing {
  position: absolute;
  z-index: 3;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  bottom: 15rem;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  padding: 5rem 10rem !important;
  color: #999;
  transition: 0.3s ease all;
  overflow: hidden;
  background-color: #fff;
  border: 1rem solid #e1e1e1;
  white-space: nowrap;
  width: 35rem;
  line-height: 16rem;
}
.fdx-mdb-asset-hide-browsing .browse-message {
  padding-left: 5rem;
}
.fdx-mdb-asset-hide-browsing:focus {
  outline: none !important;
}
.fdx-mdb-asset.browsing .fdx-mdb-asset-browsing {
  left: 0;
}
.fdx-mdb-asset.browsing .fdx-mdb-asset-overview {
  left: 430rem;
}
.fdx-mdb-asset.browsing .fdx-mdb-asset-hide-browsing {
  left: calc(430rem - 1rem);
}
.fdx-mdb-asset.none .fdx-mdb-asset-hide-browsing {
  left: 0;
}
.fdx-mdb-asset.none .fdx-mdb-asset-hide-browsing .fdxicon-regular {
  transform: rotate(180deg);
}
.fdx-mdb-asset.none .fdx-mdb-asset-hide-browsing:hover {
  width: 139rem;
}
.fdx-mdb-asset.detailed .fdx-mdb-asset-browsing {
  left: calc(-430rem - 35rem);
}
.fdx-mdb-asset.detailed .fdx-mdb-asset-hide-browsing {
  left: -35rem;
}
.fdx-mdb-asset.detailed .fdx-mdb-asset-overview {
  left: 0;
  right: 500rem;
}
.fdx-mdb-asset.detailed .fdx-mdb-asset-detailed {
  right: 0;
  z-index: 1;
}
.fdx-mdb-asset .no-asset {
  text-align: center;
  height: 100%;
  display: table;
  width: 100%;
}
.fdx-mdb-asset .no-asset p {
  display: table-cell;
  vertical-align: middle;
  font-size: 18rem;
  font-style: italic;
  color: #999;
}
.asset-overview {
  position: absolute;
  top: 55rem;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  z-index: 1;
}
.asset-overview-wrapper {
  margin: 8rem;
  color: #454545;
}
.asset-overview p {
  margin: 0;
}
.asset-overview label {
  font-weight: bolder;
  color: #333;
  margin: 0;
}
.asset-overview-warning {
  border: 1rem solid #00a9ce;
  padding: 0;
  margin-top: 0;
  color: #00a9ce;
  background: #fff;
  font-style: italic;
  opacity: 0;
  height: 0;
  margin-right: 30rem;
  text-align: center;
  transition: all 0.3s 0.3s;
}
.asset-overview-warning.show-msg {
  opacity: 1;
  height: 38rem;
  padding: 8rem 10rem;
  margin: 10rem 0;
}
.asset-overview-parent {
  margin: 0 0 15rem !important;
  position: relative;
  padding: 15rem;
  min-height: 150rem;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.asset-overview-parent:hover,
.asset-overview-parent.active-prop {
  cursor: pointer !important;
  border: 1rem solid #9eb5be;
  background-color: #f1f4f6 !important;
}
.asset-overview-parent-header {
  width: 100%;
  margin-bottom: 10rem;
}
.asset-overview-parent-header .fdxicon-regular {
  font-size: 43rem;
  margin-right: 16rem;
  margin-top: 2rem;
}
.asset-overview-parent-header-text {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 63rem);
}
.asset-overview-parent-header-text .label-prop,
.asset-overview-parent-header-text .label-prop fdx-mdb-compliance-icon {
  font-size: 25rem;
  line-height: 25rem;
}
.asset-overview-parent-header-text .name-prop {
  font-size: 16rem;
  line-height: 19rem;
}
.asset-overview-parent-property {
  margin-bottom: 10rem;
}
.asset-overview-parent-property.indent {
  margin-left: 15rem;
}
.asset-overview-child {
  padding: 15rem 3rem;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  margin-bottom: 15rem;
}
.asset-overview-child .panel-heading {
  padding: 0 10rem;
}
.asset-overview-child.last {
  margin-bottom: 0;
}
.asset-overview-child.selectable:hover,
.asset-overview-child.active-prop {
  cursor: pointer !important;
  background-color: #f1f4f6 !important;
}
.asset-overview-child.selectable:hover fdx-asset-smart-table .asset-smart-table .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop fdx-asset-smart-table .asset-smart-table .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover fdx-asset-smart-table-vs .asset-smart-table .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop fdx-asset-smart-table-vs .asset-smart-table .asset-smart-table-scroller table .sticky {
  background-color: #f1f4f6 !important;
}
.asset-overview-child.selectable:hover fdx-asset-smart-table.section-question-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop fdx-asset-smart-table.section-question-table .asset-smart-table.child .asset-smart-table-scroller table .sticky {
  background-color: #fff !important;
}
.asset-overview-child.selectable:hover fdx-asset-smart-table.variable-value-table .asset-smart-table .asset-smart-table-scroller table fdx-asset-smart-table .asset-smart-table .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop fdx-asset-smart-table.variable-value-table .asset-smart-table .asset-smart-table-scroller table fdx-asset-smart-table .asset-smart-table .asset-smart-table-scroller table .sticky {
  background-color: #fff !important;
}
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky {
  background-color: #f1f4f6 !important;
}
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover .asset-overview-comment fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover .asset-overview-comment fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop .asset-overview-comment fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop .asset-overview-comment fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover .asset-overview-comment fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover .asset-overview-comment fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop .asset-overview-comment fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop .asset-overview-comment fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky {
  background-color: #fff !important;
}
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover .asset-overview-comment.selectable:hover fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover .asset-overview-comment.selectable:hover fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop .asset-overview-comment.selectable:hover fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop .asset-overview-comment.selectable:hover fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover .asset-overview-comment.active-prop fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover .asset-overview-comment.active-prop fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop .asset-overview-comment.active-prop fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop .asset-overview-comment.active-prop fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover .asset-overview-comment.selectable:hover fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover .asset-overview-comment.selectable:hover fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop .asset-overview-comment.selectable:hover fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop .asset-overview-comment.selectable:hover fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.selectable:hover .asset-overview-comment.active-prop fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.selectable:hover .asset-overview-comment.active-prop fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-terminology.active-prop .asset-overview-comment.active-prop fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-terminology.active-prop .asset-overview-comment.active-prop fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky {
  background-color: #f1f4f6 !important;
}
.asset-overview-child.selectable:hover .asset-overview-units fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-units fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.selectable:hover .asset-overview-units fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-child.active-prop .asset-overview-units fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky {
  background-color: #fff !important;
}
.asset-overview-comment {
  width: 100%;
}
.asset-overview-terminology {
  flex-grow: 1;
  min-width: 450rem;
}
.asset-overview-comment-property {
  border: 1rem solid #d9d9d9;
  padding: 8rem;
}
.asset-overview-terminology,
.asset-overview-comment {
  min-height: 50rem;
  padding: 15rem 0;
  display: inline-block;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
.asset-overview-terminology.error,
.asset-overview-comment.error {
  border-color: #dc9b98;
  background: #fbe7e6;
}
.asset-overview-terminology.selectable:hover,
.asset-overview-comment.selectable:hover,
.asset-overview-terminology.active-prop,
.asset-overview-comment.active-prop {
  cursor: pointer !important;
  background-color: #f1f4f6 !important;
}
.asset-overview-terminology.selectable:hover > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-comment.selectable:hover > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-terminology.active-prop > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-comment.active-prop > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-terminology.selectable:hover > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-comment.selectable:hover > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-terminology.active-prop > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky,
.asset-overview-comment.active-prop > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table .sticky {
  background-color: #f1f4f6 !important;
}
.asset-overview-terminology.selectable:hover > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-comment.selectable:hover > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-terminology.active-prop > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-comment.active-prop > * > fdx-asset-smart-table .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-terminology.selectable:hover > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-comment.selectable:hover > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-terminology.active-prop > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky,
.asset-overview-comment.active-prop > * > fdx-asset-smart-table-vs .asset-smart-table.child .asset-smart-table-scroller table.on-section .sticky {
  background-color: #f1f4f6 !important;
}
.asset-overview-terminology .terminology-controls,
.asset-overview-comment .terminology-controls,
.asset-overview-terminology .comment-controls,
.asset-overview-comment .comment-controls {
  position: relative;
  padding: 0 15rem;
}
.asset-overview-terminology .terminology-controls .flex-row,
.asset-overview-comment .terminology-controls .flex-row,
.asset-overview-terminology .comment-controls .flex-row,
.asset-overview-comment .comment-controls .flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.asset-overview-terminology .terminology-controls .flex-row.right-aligned,
.asset-overview-comment .terminology-controls .flex-row.right-aligned,
.asset-overview-terminology .comment-controls .flex-row.right-aligned,
.asset-overview-comment .comment-controls .flex-row.right-aligned {
  justify-content: flex-end;
}
.asset-overview-terminology .terminology-controls .flex-row > .fdxicon-regular,
.asset-overview-comment .terminology-controls .flex-row > .fdxicon-regular,
.asset-overview-terminology .comment-controls .flex-row > .fdxicon-regular,
.asset-overview-comment .comment-controls .flex-row > .fdxicon-regular,
.asset-overview-terminology .terminology-controls .flex-row > .compliance-icon,
.asset-overview-comment .terminology-controls .flex-row > .compliance-icon,
.asset-overview-terminology .comment-controls .flex-row > .compliance-icon,
.asset-overview-comment .comment-controls .flex-row > .compliance-icon {
  flex-basis: 1.5em;
}
.asset-overview-terminology .terminology-controls .flex-row > span.gap,
.asset-overview-comment .terminology-controls .flex-row > span.gap,
.asset-overview-terminology .comment-controls .flex-row > span.gap,
.asset-overview-comment .comment-controls .flex-row > span.gap {
  flex: 1;
}
.asset-overview-terminology .terminology-controls .btn-wrapper,
.asset-overview-comment .terminology-controls .btn-wrapper,
.asset-overview-terminology .comment-controls .btn-wrapper,
.asset-overview-comment .comment-controls .btn-wrapper {
  display: inline-block;
  padding: 0;
  width: 300rem;
  text-align: right;
  float: right;
}
.asset-overview-terminology .terminology-controls .fdxicon-regular,
.asset-overview-comment .terminology-controls .fdxicon-regular,
.asset-overview-terminology .comment-controls .fdxicon-regular,
.asset-overview-comment .comment-controls .fdxicon-regular {
  vertical-align: middle;
}
.asset-overview-terminology .terminology-label,
.asset-overview-comment .terminology-label,
.asset-overview-terminology .comment-label,
.asset-overview-comment .comment-label {
  display: inline-block;
  font-size: 18rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: top;
  margin-right: 8rem;
  max-width: calc(100% - 330rem);
}
.asset-overview-terminology .terminology-terms,
.asset-overview-comment .terminology-terms,
.asset-overview-terminology .comment-terms,
.asset-overview-comment .comment-terms,
.asset-overview-terminology .terminology-comment,
.asset-overview-comment .terminology-comment,
.asset-overview-terminology .comment-comment,
.asset-overview-comment .comment-comment {
  margin-top: 10rem;
}
.asset-overview-terminology .terminology-comment,
.asset-overview-comment .terminology-comment,
.asset-overview-terminology .comment-comment,
.asset-overview-comment .comment-comment {
  margin-left: 15rem;
  margin-right: 15rem;
}
.asset-overview-units {
  min-height: 50rem;
  padding: 15rem 0;
  flex-grow: 1;
  min-width: 450rem;
  display: inline-block;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.2);
  vertical-align: top;
}
.fdx-mdb-rule-visibility.reference {
  display: inline-block;
  max-width: calc(100% - 74rem);
}
.fdx-mdb-rule-visibility.reference .dropdown-menu {
  position: absolute!important;
  float: left!important;
  width: 100%;
}
.fdx-mdb-rule-visibility.reference .rule-entry {
  vertical-align: top;
}
.fdx-mdb-rule-visibility.reference .rule-prop-overview {
  width: 100%;
}
.fdx-mdb-rule-visibility.reference-list {
  float: right;
  width: 150rem;
  margin-right: 15rem;
}
.fdx-mdb-rule-visibility.reference-list .rule-prop-overview {
  width: 100%;
  font-size: 13rem;
  text-align: right;
}
.fdx-mdb-rule-visibility.reference-list .dropdown-menu {
  position: absolute!important;
  float: left!important;
  width: 100%;
}
.fdx-mdb-rule-visibility.overview .rule-prop-add {
  display: inline-block;
}
.fdx-mdb-rule-visibility.overview .dropdown-menu {
  right: 0;
}
.fdx-mdb-rule-visibility.overview .rule-entry {
  vertical-align: top;
}
.fdx-mdb-rule-visibility.file-upload-rules {
  display: block;
  width: 100%;
  float: left;
  margin-left: 10rem;
}
.fdx-mdb-rule-visibility.default {
  display: inline-block;
  width: 100%;
}
.fdx-mdb-rule-visibility.default .dropdown-menu {
  position: absolute!important;
  float: left!important;
  width: 100%;
}
.last-prop .fdx-mdb-rule-visibility .rule-prop-add {
  display: inline-block;
}
.last-prop .fdx-mdb-rule-visibility .rule-entry {
  vertical-align: top;
}
fdx-mdb-asset .rules-wrapper {
  border: 1rem solid #d9d9d9;
  margin-top: 10rem;
  padding: 8rem;
  background: #fcfcfc;
}
fdx-mdb-asset .selectable {
  transition: 0.3s ease all;
}
fdx-mdb-asset .square-brackets:before {
  content: '[';
}
fdx-mdb-asset .square-brackets:after {
  content: ']';
}
fdx-mdb-asset .list {
  max-height: 100rem;
  overflow: auto;
}
fdx-mdb-asset .list-line {
  padding-bottom: 2rem;
}
fdx-mdb-asset .list-line:before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 2rem;
  color: #666;
  line-height: 0;
}
fdx-mdb-asset .none {
  color: #6666;
  font-style: italic;
  padding: 0;
  text-shadow: none;
}
fdx-mdb-asset .separator {
  height: 1rem;
  background-color: #d6d6d6;
  margin: 15rem 30rem 5rem;
}
fdx-mdb-asset .asset-icon,
fdx-mdb-asset .asset-btn {
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset .asset-icon:hover,
fdx-mdb-asset .asset-btn:hover {
  color: #00677d;
}
fdx-mdb-asset .asset-icon.disabled,
fdx-mdb-asset .asset-btn.disabled {
  color: #d9d9d9;
}
fdx-mdb-asset .asset-icon.disabled:hover,
fdx-mdb-asset .asset-btn.disabled:hover {
  color: #d9d9d9 !important;
}
fdx-mdb-asset .asset-icon.with-text,
fdx-mdb-asset .asset-btn.with-text {
  display: inline-block;
  transition: all 0.15s;
  margin-right: 15rem;
  vertical-align: top;
}
fdx-mdb-asset .asset-icon.with-text span,
fdx-mdb-asset .asset-btn.with-text span {
  vertical-align: text-top;
}
fdx-mdb-asset .asset-icon.with-text:last-of-type,
fdx-mdb-asset .asset-btn.with-text:last-of-type {
  margin-right: 0;
}
fdx-mdb-asset .asset-icon.btn-sm.with-text span,
fdx-mdb-asset .asset-btn.btn-sm.with-text span {
  vertical-align: baseline;
}
fdx-mdb-asset .asset-btn.disabled {
  cursor: not-allowed;
}
fdx-mdb-asset .btn-wrapper {
  text-align: center;
  padding: 15rem 0 0;
}
fdx-mdb-asset .btn-wrapper-table {
  padding: 10rem 0 0;
}
fdx-mdb-asset .btn-wrapper-table .dropdown-menu {
  position: absolute !important;
  left: 0;
  right: 0;
}
fdx-mdb-asset .one-liner {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-asset .bigger-text {
  font-size: 18rem;
  margin-bottom: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
fdx-mdb-asset .asset-overview-comment-asset {
  padding: 5rem 0;
}
fdx-mdb-asset .asset-overview-comment-asset label {
  cursor: pointer;
}
fdx-mdb-asset .asset-overview-comment-asset.active-prop,
fdx-mdb-asset .asset-overview-comment-asset.selectable:hover {
  background: #e1eef4;
}
fdx-mdb-asset .asset-overview-comment-property-value {
  white-space: pre-wrap;
}
fdx-mdb-asset .asset-overview-comment-documents-count {
  color: #00a9ce;
  float: right;
}
fdx-mdb-asset .comment-documents {
  padding: 0rem 8rem 0 8rem;
}
@media screen and (max-width: 1000px) {
  .fdx-mdb-asset-overview-menu-edit span:last-of-type {
    display: none;
  }
  .fdx-mdb-asset-overview-menu-locale {
    width: 75rem;
  }
  fdx-mdb-asset-locale .mdb-asset-locale .mdb-asset-locale-dropdown .dropdown-wrapper {
    width: 75rem !important;
  }
  fdx-mdb-asset-locale .mdb-asset-locale .mdb-asset-locale-dropdown .dropdown-wrapper .dropdown .select-label {
    padding: 0 24rem 0 10rem;
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mdb-browse {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15rem;
  border-right: 1rem solid #e5e5e5;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.mdb-browse-select-dropdown {
  margin-bottom: 10rem;
}
.mdb-browse-select-dropdown-selected {
  border: 1rem solid #d9d9d9;
  padding: 8rem 10rem;
  color: #666;
}
.mdb-browse-select-dropdown .col-md-9 {
  padding-left: 0;
}
.mdb-browse-select-dropdown .col-md-3 {
  padding-right: 0;
}
.mdb-browse-select-dropdown .col-md-3 button {
  width: 100%;
}
.mdb-browse-action-btn {
  margin-bottom: 10rem;
}
.mdb-browse-action-btn .btn span.fdxicon-regular {
  font-size: 18rem;
  vertical-align: top;
  margin-right: 5rem;
}
.mdb-browse .top-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 6rem 0;
}
.mdb-browse .top-row .btn-compact-active {
  border: 1px solid #00a9ce;
}
.mdb-browse .top-row .btn-compact .fdxicon-regular {
  color: #00a9ce;
}
.mdb-browse .top-row .btn-compact:hover {
  border: 1px solid #00a9ce;
}
.mdb-browse .top-row > * {
  margin-right: 5rem;
}
.mdb-browse .top-row > *:last-child {
  margin-right: 0;
}
.mdb-browse .top-row > fdx-dropdown {
  flex: 1;
}
.mdb-browse .top-row > fdx-dropdown .dropdown-wrapper .dropdown-menu {
  z-index: 5001;
}
.mdb-browse .top-row > fdx-dropdown .dropdown-wrapper .open .dropdown-menu {
  transition: all ease-in-out 0.4s;
  max-height: 545rem;
}
.mdb-browse .top-row > fdx-dropdown .dropdown-wrapper .open .dropdown-menu .dropdown-options {
  max-height: 545rem;
}
.mdb-browse-filter,
.mdb-browse-refresh {
  vertical-align: top !important;
  height: 40rem;
  padding: 10rem 12rem !important;
  border-radius: 0 !important;
  color: #666666 !important;
}
.mdb-browse-refresh {
  margin-right: 8rem;
}
.mdb-browse-filter .active-filters {
  color: #00a9ce;
}
.mdb-browse-filter .dropdown-menu {
  max-height: 400rem;
  width: 260rem;
  z-index: 5001;
  border-radius: 0;
  top: 31rem;
  overflow: hidden;
}
.mdb-browse-filter .dropdown-menu .fdx-input-checkbox {
  margin-right: 0 !important;
}
.mdb-browse-filter .dropdown-menu .text {
  vertical-align: text-bottom;
}
.mdb-browse-create {
  height: 38rem;
  margin-bottom: 15rem;
  line-height: 36rem;
  text-align: center;
  background-color: #00a9ce;
  color: #fff;
  cursor: pointer;
  border: 1rem solid #d3d3d3;
}
.mdb-browse-create .fdx-add {
  font-size: 24rem;
  line-height: 36rem;
}
.mdb-browse-create-string {
  vertical-align: top;
  line-height: 36rem;
  display: inline-block;
  margin: 0;
  padding-left: 5rem;
}
.mdb-browse-create:hover {
  background-color: #fff;
  color: #00a9ce;
}
.mdb-browse-seperator {
  height: 1rem;
  background-color: #e5e5e5;
  margin: 0 15rem 15rem 15rem;
}
.mdb-browse-search {
  position: relative;
  margin-bottom: 15rem;
}
.mdb-browse-search .fdxicon-regular {
  position: absolute;
  padding: 10rem;
  pointer-events: none;
  right: 15rem;
}
.mdb-browse-assets {
  flex: 1 1 0px;
  min-height: 0;
  position: relative;
  border: 1rem solid #d3d3d3;
  width: 100%;
}
.mdb-browse-assets.can-create {
  height: calc(100vh - 315rem);
}
.mdb-browse-assets-none {
  display: table;
  width: 100%;
  height: 100%;
  padding: 15rem;
  text-align: center;
  font-size: 14rem;
  color: gray;
  font-style: italic;
}
.mdb-browse-assets-none span {
  vertical-align: middle;
  display: table-cell;
}
div.assetBrowseListItem {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 71rem;
}
div.assetBrowseListItem > span.fdxicon-regular {
  font-size: 26rem;
}
div.assetBrowseListItem span.itemTitle {
  flex-grow: 1;
  line-height: 21rem;
  margin: 0 0 0 10rem;
  width: 63%;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.assetBrowseListItem span.itemTitle .secondary,
div.assetBrowseListItem span.itemTitle .tertiary {
  font-size: 12rem;
  line-height: 17rem;
  color: #333;
}
div.assetBrowseListItem span.itemFlags {
  color: #333;
}
div.assetBrowseListItem span.itemFlags .fdxicon-regular {
  font-size: 20rem;
  margin-left: 4rem;
  vertical-align: top;
}
div.assetBrowseListItem span.itemFlags .flag-icon-tooltip {
  font-size: 13rem;
  line-height: 13rem;
  text-align: justify;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-compare .contains-modified-terms {
  font-size: small;
  width: 160rem;
  font-weight: bold;
}
fdx-mdb-asset-compare .modal-header h3 {
  width: auto;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-compare .modal-body {
  position: relative;
  overflow-y: hidden !important;
  height: 72vh;
  width: 100%;
  padding: 0;
  margin: 0;
}
fdx-mdb-asset-compare .modal-body .loading-msg {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: #666;
  font-size: 18rem;
  font-style: italic;
}
fdx-mdb-asset-compare .modal-body .fdx-mdb-rule-visibility {
  display: none;
}
fdx-mdb-asset-compare .closed .table-of-contents {
  left: -20vw;
}
fdx-mdb-asset-compare .closed .comparison {
  margin-left: 0;
}
fdx-mdb-asset-compare .closed .comparison-hide-contents:hover {
  width: 150rem;
}
fdx-mdb-asset-compare .table-of-contents {
  position: absolute;
  overflow: hidden;
  width: 20vw;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
}
fdx-mdb-asset-compare .table-of-contents-wrapper {
  overflow: auto;
  padding: 15rem;
  width: 100%;
  height: 100%;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .indent {
  display: inline-block;
  padding-right: 15rem;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .arrow::before {
  content: "\BB";
  padding-right: 2rem;
  color: #666;
  font-size: 18rem;
  line-height: 0;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .content-line {
  padding: 7rem 5rem;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .content-line-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40rem);
}
fdx-mdb-asset-compare .table-of-contents-wrapper .link {
  cursor: pointer;
  display: inline-block;
  flex: 1 1 auto;
  margin-left: 5rem;
  vertical-align: text-bottom;
  font-size: 14rem;
  line-height: 16rem;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .link:hover {
  color: #00a9ce;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .link:hover .no-property-value-replacement {
  color: #00a9ce;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .link.origin-link {
  width: calc(100% - 67rem);
}
fdx-mdb-asset-compare .table-of-contents-wrapper .icon-blue {
  color: #00a9ce;
  font-size: 19rem;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .icon-expand {
  margin-left: 5rem;
  cursor: pointer;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .changes-wrapper {
  margin-top: 5rem;
  border-top: 1px solid #d9d9d9;
  padding: 5rem;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .changes-item {
  display: block;
}
fdx-mdb-asset-compare .table-of-contents-wrapper .changes-item-change {
  padding: 1rem 5rem;
}
fdx-mdb-asset-compare .comparison {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-left: 20vw;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-compare .comparison-hide-contents {
  position: absolute;
  overflow: hidden;
  width: 35rem;
  z-index: 3;
  bottom: 15rem;
  padding: 5rem 10rem !important;
  outline: none;
  color: #999;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  white-space: nowrap;
  line-height: 16rem;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
}
fdx-mdb-asset-compare .comparison-hide-contents .browse-message {
  padding-left: 5rem;
}
fdx-mdb-asset-compare .compare-header {
  position: sticky;
  width: 100%;
  height: 60rem;
  margin: 0;
  padding: 0 15rem !important;
  top: 0;
  z-index: 1;
  background: #fff;
  border-bottom: 4rem solid #d9d9d9;
  font-size: 0;
  display: flex;
}
fdx-mdb-asset-compare .compare-header .label-col,
fdx-mdb-asset-compare .compare-header .comparison-col,
fdx-mdb-asset-compare .compare-header .current-col {
  display: inline-block;
  height: 56rem;
  padding: 0 0 0 10rem !important;
  vertical-align: top;
  font-size: 14rem;
}
fdx-mdb-asset-compare .compare-header .label-col {
  width: 16%;
  line-height: 56rem;
  font-size: 16rem;
}
fdx-mdb-asset-compare .compare-header .current-col,
fdx-mdb-asset-compare .compare-header .comparison-col {
  width: 42%;
  display: flex;
}
fdx-mdb-asset-compare .compare-header .fdxicon-regular {
  margin-right: 5rem;
  line-height: 56rem;
  font-size: 32rem;
  vertical-align: baseline;
}
fdx-mdb-asset-compare .compare-header .asset-info {
  flex: 1;
}
fdx-mdb-asset-compare .compare-header .asset-info .asset-label {
  margin: 10rem 0 2rem 0;
  padding-left: 5rem;
  max-width: 290rem;
  font: bold 17rem/17rem "PT Sans", "interstate", Helvetica, sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-compare .compare-header .asset-info .current-asset-label {
  text-overflow: ellipsis;
  max-width: 450rem;
}
fdx-mdb-asset-compare .compare-header .asset-info .current-asset-version {
  text-overflow: ellipsis;
  max-width: 450rem;
}
fdx-mdb-asset-compare .compare-header .asset-info .asset-version {
  margin-left: 5rem;
  color: #999;
  font-size: 13rem;
  max-width: 290rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-compare .compare-header-btns {
  display: inline-block;
  height: 56rem;
  padding: 0;
  vertical-align: top;
  position: absolute;
  right: 0;
  padding-right: 10rem;
}
fdx-mdb-asset-compare .compare-header-btns .fdxicon-regular {
  font-size: 25rem;
  margin: 0rem 5rem;
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-asset-compare .compare-header-btns .fdxicon-regular:hover {
  color: #00677d;
}
fdx-mdb-asset-compare .compare-header-btns .fdxicon-regular.disabled {
  color: #d9d9d9;
}
fdx-mdb-asset-compare .compare-header-btns .fdxicon-regular.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-asset-compare .compare-header-btns fdx-dropdown .label {
  font-size: 14rem !important;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu {
  width: 169rem;
  right: 0;
  left: auto;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li {
  padding: 0.5em;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li .list-item-arrow {
  font-size: 12rem;
  margin: 0 5rem 0 0;
  color: #666;
  line-height: 0;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li:hover,
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li.active {
  background-color: #f2f6f9;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li:hover .list-item-arrow,
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li.active .list-item-arrow {
  color: #00a9ce;
  margin-left: 3rem;
  margin-right: 2rem;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li:hover {
  background-color: #e5f4f8;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li.compare-term {
  border-top: 1px solid #ddd;
  padding: 1rem 6rem;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li.compare-term span::before {
  content: none;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li.compare-term label {
  display: flex;
  align-items: center;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu li.compare-term .fdxicon-regular {
  line-height: 40rem;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown .dropdown-menu.last {
  bottom: -2em;
  right: 2em;
  top: auto;
  left: -13em;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown:hover > .dropdown-menu {
  display: block;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown.disabled:hover > .dropdown-menu,
fdx-mdb-asset-compare .compare-header-btns .dropdown.disabled.open > .dropdown-menu {
  display: none !important;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown.disabled > .fdxicon-regular {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-mdb-asset-compare .compare-header-btns .dropdown.disabled > .fdxicon-regular:hover {
  color: #d3d3d3;
}
fdx-mdb-asset-compare .compare-body {
  position: relative;
  overflow: auto;
  height: calc(100% - 60rem);
  padding: 15rem 30rem;
}
fdx-mdb-asset-compare .all-no-changes {
  position: absolute;
  top: 79rem;
  bottom: 15rem;
  right: 15rem;
  left: 15rem;
  border: 1px solid #d9d9d9;
  text-align: center;
  font-size: 16rem;
  font-style: italic;
  color: #666;
  padding-top: 300rem;
}
fdx-mdb-asset-compare .none,
fdx-mdb-asset-compare .no-property-value-replacement {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-mdb-asset-compare .line.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #f2f7ff;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-asset-compare .comparison-col .none.M,
fdx-mdb-asset-compare .comparison-col .ref-row.M,
fdx-mdb-asset-compare .comparison-col .terms-row.M,
fdx-mdb-asset-compare .comparison-col .none.R,
fdx-mdb-asset-compare .comparison-col .ref-row.R,
fdx-mdb-asset-compare .comparison-col .terms-row.R,
fdx-mdb-asset-compare .comparison-col .none.A,
fdx-mdb-asset-compare .comparison-col .ref-row.A,
fdx-mdb-asset-compare .comparison-col .terms-row.A {
  background: transparent;
}
fdx-mdb-asset-compare .M .current-col,
fdx-mdb-asset-compare .M.ref-row,
fdx-mdb-asset-compare .M.terms-row,
fdx-mdb-asset-compare .M.none,
fdx-mdb-asset-compare .M.changes-item-change {
  background: #e0e8f2;
}
fdx-mdb-asset-compare .A .current-col,
fdx-mdb-asset-compare .A.ref-row,
fdx-mdb-asset-compare .A.terms-row,
fdx-mdb-asset-compare .A.none,
fdx-mdb-asset-compare .A.changes-item-change {
  background: #dee8c8;
}
fdx-mdb-asset-compare .R .current-col,
fdx-mdb-asset-compare .R.ref-row,
fdx-mdb-asset-compare .R.terms-row,
fdx-mdb-asset-compare .R.none,
fdx-mdb-asset-compare .R.changes-item-change {
  background: #f1dcdc;
}
fdx-mdb-asset-compare .N.changes-item-change {
  color: #6666;
  font-style: italic;
}

fdx-mdb-asset-compare-chooser .modal-body {
  overflow: visible !important;
}
fdx-mdb-asset-compare-chooser .modal-row {
  height: 44rem;
  position: relative;
}
fdx-mdb-asset-compare-chooser .modal-header h1 {
  display: inline-block;
  width: 75%;
}
fdx-mdb-asset-compare-chooser .label {
  font-weight: bold;
  text-align: right;
  line-height: 40rem;
}
fdx-mdb-asset-compare-chooser .loader {
  width: 100%;
  height: 100%;
}
fdx-mdb-asset-compare-chooser .nav-tabs {
  padding: 0;
  margin-bottom: 10rem;
  border: none;
}
fdx-mdb-asset-compare-chooser .nav-tabs li {
  width: 50%;
  text-align: center;
}
fdx-mdb-asset-compare-chooser .nav-tabs li:first-child a {
  border-left: 1rem solid #fff !important;
}
fdx-mdb-asset-compare-chooser .nav-tabs li a {
  padding: 15rem 10rem;
  border-radius: 0;
  border-top: none;
  margin: 0 !important;
}
fdx-mdb-asset-compare-chooser .nav-tabs li a .fdxicon-regular {
  margin-right: 5rem;
}
fdx-mdb-asset-compare-chooser .nav-tabs li a span {
  font-size: 13rem;
}
fdx-mdb-asset-compare-chooser .nav-tabs li.active a .fdxicon-regular {
  color: #00a9ce;
}
fdx-mdb-asset-compare-chooser .nav-tabs li.disabled a {
  background-color: #f8f8f8;
  color: #666;
}
fdx-mdb-asset-compare-chooser .nav-tabs li.disabled a:hover {
  color: #666;
  cursor: not-allowed;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs {
  border: 1rem solid #d3d3d3;
  height: 400rem;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs.selected {
  color: #00677d;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .icon {
  width: 6%;
  float: left;
  font-size: 32rem;
  line-height: 40rem;
  margin-top: 10rem;
  margin: 5rem;
  padding-left: 2rem;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .info {
  width: 66%;
  float: left;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .info h1 {
  font-size: 18rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 7rem;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .info h1 .identifier:before {
  content: '(';
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .info h1 .identifier:after {
  content: ')';
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .info h1 .container-info {
  display: block;
}
fdx-mdb-asset-compare-chooser .asset-compare-chooser-vs .info h1 .container-info .container-name {
  font-size: 15rem;
  display: inline-block;
  line-height: 22rem;
  vertical-align: top;
  font-weight: lighter !important;
  margin-top: 2rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-compare-prop .justify-content-space-between {
  justify-content: space-between;
}
fdx-mdb-asset-compare-prop .compare-table {
  font-size: 0;
  width: 100%;
}
fdx-mdb-asset-compare-prop .compare-table-row {
  display: table-row;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-compare-prop .compare-table-row-wrapper {
  display: table;
  position: relative;
  width: 100%;
}
fdx-mdb-asset-compare-prop .compare-table-row:first-child .current-col,
fdx-mdb-asset-compare-prop .compare-table-row:first-child .comparison-col {
  border-top: 1px solid #d9d9d9;
}
fdx-mdb-asset-compare-prop .compare-table-row .label-col {
  display: table-cell;
  padding: 10rem 20rem 10rem 10rem;
  font-size: 14rem;
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  width: 16%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-compare-prop .compare-table-row .label-col > label {
  display: flex;
  justify-content: flex-end;
}
fdx-mdb-asset-compare-prop .compare-table-row .label-col > label > fdx-checkbox {
  margin-right: -12rem;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col {
  display: table-cell;
  padding: 10rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-size: 14rem;
  vertical-align: top;
  width: 42%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col.ref,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col.ref {
  padding: 0 !important;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container {
  position: relative;
  display: flex;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container .copy-direction,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container .copy-direction {
  position: absolute;
  background-color: #036B82;
  color: #fff;
  right: -22rem;
  overflow: hidden;
  border-radius: 57rem;
  width: 22rem;
  height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container .copy-direction > i,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container .copy-direction > i {
  font-size: 27rem;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container.old-value > fdx-mdb-asset-compare-prop-type:first-child,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container.old-value > fdx-mdb-asset-compare-prop-type:first-child {
  color: #999;
  font-style: italic;
  margin-right: 15rem;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container.old-value > fdx-mdb-asset-compare-prop-type:first-child span,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container.old-value > fdx-mdb-asset-compare-prop-type:first-child span,
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container.old-value > fdx-mdb-asset-compare-prop-type:first-child div.none,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container.old-value > fdx-mdb-asset-compare-prop-type:first-child div.none {
  text-decoration: line-through;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col-container .rule,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col-container .rule {
  margin-left: 10rem;
  color: #ce6c0d;
  font-size: 20rem;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col.copying,
fdx-mdb-asset-compare-prop .compare-table-row .comparison-col.copying {
  padding-left: 20rem;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col {
  border-left: 1px solid #d9d9d9;
}
fdx-mdb-asset-compare-prop .compare-table-row .current-col.cats {
  border-right: 1px solid transparent;
}
fdx-mdb-asset-compare-prop .compare-table .child-group {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-compare-prop .compare-table .child-header {
  padding: 20rem 20rem 0 20rem;
  margin-left: calc(16% + 1px);
  text-align: center;
  font: bold 17rem/22rem "PT Sans", "interstate", Helvetica, sans-serif;
}
fdx-mdb-asset-compare-prop .compare-table .child-header.first {
  font-size: 22rem !important;
}
fdx-mdb-asset-compare-prop .compare-table .child-name {
  padding: 6rem 12rem;
  margin-top: 25rem;
  margin-left: calc(16% + 1px);
  border: 1px solid #d9d9d9;
  background: #eeeeee;
  font: bold 18rem/18rem "PT Sans", "interstate", Helvetica, sans-serif;
  display: flex;
  align-items: center;
}
fdx-mdb-asset-compare-prop .compare-table .child-name fdx-dropdown {
  float: right;
  font-size: 16rem;
  margin-top: -11rem;
  margin-right: 10rem;
}
fdx-mdb-asset-compare-prop .compare-table .child-name fdx-dropdown .dropdown-wrapper.simplified .dropdown:hover {
  background: transparent !important;
}
fdx-mdb-asset-compare-prop .compare-table .child-name-wrapper {
  width: calc(100% - 290rem);
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-asset-compare-prop .compare-table .child-name-drpdwn {
  width: 260rem;
  display: inline-block;
  height: 13rem;
}
fdx-mdb-asset-compare-prop .compare-table .child-name-drpdwn fdx-dropdown {
  width: 100%;
}
fdx-mdb-asset-compare-prop .compare-table .child-name-drpdwn fdx-dropdown .dropdown-wrapper.simplified {
  width: 100% !important;
}
fdx-mdb-asset-compare-prop .compare-table .child-name-compareBtn {
  color: #00a9ce;
  cursor: pointer;
  float: right;
}
fdx-mdb-asset-compare-prop .compare-table .child-name-compareBtn:hover {
  color: #00677d;
}
fdx-mdb-asset-compare-prop .compare-table .child-name .asset-path {
  font-weight: normal;
  font-size: 14rem;
  color: #888888;
  font-family: "interstate", Helvetica, sans-serif;
}
fdx-mdb-asset-compare-prop .compare-table .child-wrapper .first-child:after {
  content: '';
  display: block;
  height: 1rem;
  width: calc(100% - 200rem);
  background: #d9d9d9;
  margin: 25rem 0 25rem 200rem;
}
fdx-mdb-asset-compare-prop .compare-table .compare-table-row-new-child {
  display: block;
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  padding: 15rem;
  opacity: 0;
  background: #fcfcfc;
  font: italic 16rem/30rem "interstate", Helvetica, sans-serif;
  text-align: center;
  color: #999;
}
fdx-mdb-asset-compare-prop .compare-table .compare-table-row-new-child.removed {
  opacity: 1;
  right: 42%;
  left: calc(16% + 2rem);
  border-right: 1px solid #d9d9d9;
}
fdx-mdb-asset-compare-prop .compare-table .compare-table-row-new-child.added {
  opacity: 1;
  right: 1rem;
  left: 58%;
  border-left: 1px solid #d9d9d9;
}
fdx-mdb-asset-compare-prop .compare-table .hide-row {
  height: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0 !important;
  border: none !important;
}
fdx-mdb-asset-compare-prop .compare-table .hide-row * {
  height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  font-size: 0 !important;
  margin: 0 !important;
  border-width: 0rem !important;
}
fdx-mdb-asset-compare-prop .compare-table .no-childs,
fdx-mdb-asset-compare-prop .compare-table .no-changes {
  margin: 15rem auto auto calc(16% + 1rem);
  padding: 15rem;
  border: 1px solid #d9d9d9;
  text-align: center;
  font: italic 16rem/16rem "PT Sans", "interstate", Helvetica, sans-serif;
  color: #999;
}
fdx-mdb-asset-compare-prop .compare-table .no-changes {
  margin-top: 0;
}
fdx-mdb-asset-compare-prop .compare-table .separator {
  background: #d9d9d9;
  display: block;
  height: 1rem;
  width: calc(100% - 200rem);
  margin: 25rem 100rem 0rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-compare-prop-terms .terms-row {
  height: 82rem;
  padding: 10rem;
  border-bottom: 1px solid #d9d9d9;
}
fdx-mdb-asset-compare-prop-terms .terms-row.last {
  border-bottom: none;
}
fdx-mdb-asset-compare-prop-terms .line {
  display: block;
}
fdx-mdb-asset-compare-prop-terms .term-value {
  display: inline-block;
  white-space: nowrap;
  width: 390rem;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: top;
}

fdx-mdb-asset-compare-prop-type {
  width: 100%;
}
fdx-mdb-asset-compare-prop-type fdx-mdb-identifier-input .text-view {
  width: auto;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-compare-copy-difference {
  display: block;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container {
  display: flex;
  justify-content: flex-end;
  height: 41rem;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container .actions {
  display: flex;
  justify-content: flex-end;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container .actions fdx-dropdown {
  margin-top: 0;
  margin-right: 6rem;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container .actions fdx-dropdown span {
  font-weight: lighter;
  font-size: 12rem;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container button {
  color: #00a9ce;
  margin-right: 6rem;
  font-size: 12rem;
  font-weight: bold;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container button:hover {
  border-color: #00a9ce;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container button:focus {
  outline: none;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container button.btn-primary {
  color: #fff;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container button.btn-primary:disabled {
  color: #b8b8b8;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container button.btn-primary:hover {
  color: #00a9ce;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container .fdx-copy {
  font-size: 18rem;
  font-weight: bold;
  margin-right: 10rem;
  background-color: transparent;
}
fdx-mdb-asset-compare-copy-difference .copy-action-container .toggle-off {
  color: #999;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-concurrency-check .modal-body {
  height: 60vh;
}
fdx-mdb-asset-concurrency-check .modal-footer {
  margin-left: 15%;
}
fdx-mdb-asset-concurrency-check .alert {
  padding: 5rem;
  text-align: center;
}
fdx-mdb-asset-concurrency-check .alert-icon {
  font-size: 18rem!important;
  float: none!important;
  display: inline-block;
}
fdx-mdb-asset-concurrency-check .alert-text {
  display: inline-block;
}
fdx-mdb-asset-concurrency-check .header-row {
  position: relative;
  margin-bottom: 5rem;
}
fdx-mdb-asset-concurrency-check .header-row .empty-space {
  width: 16%;
  display: inline-block;
}
fdx-mdb-asset-concurrency-check .header-row h2 {
  display: inline-block;
  text-align: center;
  width: 41%;
}
fdx-mdb-asset-concurrency-check .header-row .fdx-flag {
  position: absolute;
  top: 18rem;
  right: 15rem;
  font-size: 26rem;
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-asset-concurrency-check .header-row .fdx-flag:hover {
  color: #00677d;
}
fdx-mdb-asset-concurrency-check .header-row .fdx-flag.disabled {
  color: #d9d9d9;
}
fdx-mdb-asset-concurrency-check .header-row .fdx-flag.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-asset-concurrency-check .concurrency-body {
  position: relative;
  overflow: auto;
  height: calc(100% - 60rem);
  padding: 15rem 30rem;
}
fdx-mdb-asset-concurrency-check .all-no-changes {
  position: absolute;
  top: 79rem;
  bottom: 15rem;
  right: 15rem;
  left: 15rem;
  border: 1px solid #d9d9d9;
  text-align: center;
  font-size: 16rem;
  font-style: italic;
  color: #666;
  padding-top: 300rem;
}
fdx-mdb-asset-concurrency-check .none,
fdx-mdb-asset-concurrency-check .no-property-value-replacement {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-mdb-asset-concurrency-check .line.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #f2f7ff;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-asset-concurrency-check .M .current-col,
fdx-mdb-asset-concurrency-check .M .comparison-col,
fdx-mdb-asset-concurrency-check .M.ref-row,
fdx-mdb-asset-concurrency-check .M.none,
fdx-mdb-asset-concurrency-check .M.changes-item-change {
  background: #e0e8f2;
}
fdx-mdb-asset-concurrency-check .A .current-col,
fdx-mdb-asset-concurrency-check .A .comparison-col,
fdx-mdb-asset-concurrency-check .A.ref-row,
fdx-mdb-asset-concurrency-check .A.none,
fdx-mdb-asset-concurrency-check .A.changes-item-change {
  background: #dee8c8;
}
fdx-mdb-asset-concurrency-check .R .current-col,
fdx-mdb-asset-concurrency-check .R .comparison-col,
fdx-mdb-asset-concurrency-check .R.ref-row,
fdx-mdb-asset-concurrency-check .R.none,
fdx-mdb-asset-concurrency-check .R.changes-item-change {
  background: #f1dcdc;
}
fdx-mdb-asset-concurrency-check .N.changes-item-change {
  color: #6666;
  font-style: italic;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-concurrency-check-prop .compare-table {
  font-size: 0;
  width: 100%;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row {
  display: table-row;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row-wrapper {
  display: table;
  position: relative;
  width: 100%;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row:first-child .current-col,
fdx-mdb-asset-concurrency-check-prop .compare-table-row:first-child .comparison-col {
  border-top: 1px solid #d9d9d9;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row .label-col {
  display: table-cell;
  padding: 10rem 20rem 10rem 10rem;
  font-size: 14rem;
  font-weight: bold;
  text-align: right;
  vertical-align: top;
  width: 16%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row .current-col,
fdx-mdb-asset-concurrency-check-prop .compare-table-row .comparison-col {
  display: table-cell;
  overflow: auto;
  padding: 10rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-size: 14rem;
  vertical-align: top;
  width: 42%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row .current-col.ref,
fdx-mdb-asset-concurrency-check-prop .compare-table-row .comparison-col.ref {
  padding: 0 !important;
}
fdx-mdb-asset-concurrency-check-prop .compare-table-row .current-col {
  border-left: 1px solid #d9d9d9;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-group {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-header {
  padding: 20rem 20rem 0 20rem;
  margin-left: calc(16% + 1px);
  text-align: center;
  font: bold 17rem/22rem "PT Sans", "interstate", Helvetica, sans-serif;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-header.first {
  font-size: 22rem !important;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-name {
  padding: 12rem;
  margin-top: 25rem;
  margin-left: calc(16% + 1px);
  border: 1px solid #d9d9d9;
  background: #eeeeee;
  font: bold 18rem/18rem "PT Sans", "interstate", Helvetica, sans-serif;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-name fdx-dropdown {
  float: right;
  font-size: 16rem;
  margin-top: -11rem;
  margin-right: 10rem;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-name fdx-dropdown .dropdown-wrapper.simplified .dropdown:hover {
  background: transparent !important;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-name-wrapper {
  width: calc(100% - 270rem);
  display: inline-block;
  vertical-align: top;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-name .asset-path {
  font-weight: normal;
  font-size: 14rem;
  color: #888888;
  font-family: "interstate", Helvetica, sans-serif;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .child-wrapper .first-child:after {
  content: '';
  display: block;
  height: 1rem;
  width: calc(100% - 200rem);
  background: #d9d9d9;
  margin: 25rem 0 25rem 200rem;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .compare-table-row-new-child {
  display: block;
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  padding: 15rem;
  opacity: 0;
  background: #fcfcfc;
  font: italic 16rem/30rem "interstate", Helvetica, sans-serif;
  text-align: center;
  color: #999;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .compare-table-row-new-child.removed {
  opacity: 1;
  right: 42%;
  left: calc(16% + 2rem);
  border-right: 1px solid #d9d9d9;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .compare-table-row-new-child.added {
  opacity: 1;
  right: 1rem;
  left: 58%;
  border-left: 1px solid #d9d9d9;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .hide-row {
  height: 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0 !important;
  border: none !important;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .hide-row * {
  height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  font-size: 0 !important;
  margin: 0 !important;
  border-width: 0rem !important;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .no-childs,
fdx-mdb-asset-concurrency-check-prop .compare-table .no-changes {
  margin: 15rem auto auto calc(16% + 1rem);
  padding: 15rem;
  border: 1px solid #d9d9d9;
  text-align: center;
  font: italic 16rem/16rem "PT Sans", "interstate", Helvetica, sans-serif;
  color: #999;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .no-changes {
  margin-top: 0;
}
fdx-mdb-asset-concurrency-check-prop .compare-table .separator {
  background: #d9d9d9;
  display: block;
  height: 1rem;
  width: calc(100% - 200rem);
  margin: 25rem 100rem 0rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-edit .mdb-edit {
  height: calc(100vh - 111rem);
  background-color: #f8f8f8;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs {
  padding: 0;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li:first-child a {
  border-left: 1rem solid #fff !important;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li a {
  padding: 17rem 10rem;
  border-radius: 0;
  border-top: 1rem solid #fff !important;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li a .fdxicon-regular {
  margin-right: 5rem;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li a:hover {
  border-top: 1rem solid #fff;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li a span {
  font-size: 13rem;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li.active a .fdxicon-regular {
  color: #00a9ce;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li.disabled a {
  background-color: #f8f8f8;
  color: #666;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs li.disabled a:hover {
  color: #666;
  cursor: not-allowed;
}
fdx-mdb-asset-edit .mdb-edit .nav-tabs p {
  position: relative;
  top: 14rem;
  left: 10rem;
  font-style: italic;
  font-size: 13rem;
  color: #999;
  width: 530rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-edit .mdb-edit-close {
  position: absolute;
  right: 14rem;
  top: 14rem;
  color: #00a9ce;
  font-size: 28rem;
}
fdx-mdb-asset-edit .mdb-edit-close:hover {
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-edit .mdb-edit-content {
  height: calc(100vh - 110rem);
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  position: relative;
}
fdx-mdb-asset-edit .mdb-edit-content-properties .prop-row {
  padding: 3rem 20rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties .prop-row:nth-child(even) {
  background-color: rgba(246, 246, 246, 0.5);
}
fdx-mdb-asset-edit .mdb-edit-content-properties .mandatory {
  color: #00a9ce;
}
fdx-mdb-asset-edit .mdb-edit-content-properties .mandatory-file-warning {
  font-style: italic;
  color: #808080;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-sub-header {
  padding: 0 25rem 10rem;
  border-bottom: 1rem solid #d3d3d3;
  border-top: 1rem solid #d3d3d3;
  margin-bottom: 10rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties h4 {
  margin: 0;
  border-bottom: 1rem solid #ddd;
  border-top: 1rem solid #ddd;
}
fdx-mdb-asset-edit .mdb-edit-content-properties h4 a {
  color: #4c4c4c;
  text-decoration: none;
  font-weight: bold;
  padding: 20rem;
  display: block;
}
fdx-mdb-asset-edit .mdb-edit-content-properties .first h4 {
  border-top: 0px solid transparent;
}
fdx-mdb-asset-edit .mdb-edit-content-properties .not-last.props-closed h4 {
  border-bottom: 0px solid transparent;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-section-body {
  padding-bottom: 15rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload {
  border: 1rem solid #ccc;
  border-radius: 10rem;
  display: inline-block;
  padding: 6rem 12rem;
  cursor: pointer;
  width: 99%;
  height: 10em;
  text-align: center;
  transition: background-color 0.3s ease;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload-text {
  display: inline-block;
  vertical-align: top;
  margin-left: 20rem;
  margin-top: 20rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload-text h1 {
  margin-top: 10rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload p {
  transition: 0.3s ease;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload img {
  margin-top: 20rem;
  width: 5em;
  display: inline-block;
  vertical-align: inherit;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload .fdxicon-regular {
  font-size: 10em;
  z-index: -1;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload:hover p {
  color: #00a9ce;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload__dragover {
  background-color: #d3d3d3;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-upload input {
  display: none;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-exists {
  margin-bottom: 20rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-exists label {
  font-weight: bold;
  padding-left: 15rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-exists .file-path-prop {
  margin-top: 10rem;
  padding-left: 10rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-exists .remove-file {
  float: right;
  color: #878787;
  margin-right: 3rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-file-exists .remove-file:hover {
  cursor: pointer;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60rem;
  border-top: 1rem solid #d3d3d3;
  padding: 5rem 10rem;
  text-align: right;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .ng-hide.ng-hide-animate {
  display: none;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .btn {
  margin: 5rem;
  transition-delay: 0.1s;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .fdxicon-regular {
  font-size: 10rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .left-aligned-button {
  float: left;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list {
  line-height: 50rem;
  padding: 0;
  cursor: pointer;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-msg {
  font-style: italic;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-msg .fdxixon-circled {
  font-size: 18rem;
  vertical-align: text-bottom;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-msg .error-msg {
  margin-right: 5rem;
  color: #aa1c1c;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-msg .warning-msg {
  color: #ce6c0d;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-box {
  position: absolute;
  width: 350rem;
  bottom: 53rem;
  left: 10rem;
  background-color: #fff;
  border: 1rem solid #d3d3d3;
  box-shadow: 0 0 15rem -3rem #7b7b7b;
  display: none;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list #scrollableErrorList {
  max-height: 350rem;
  overflow: auto;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item {
  display: flex;
  align-items: center;
  text-align: left;
  border-bottom: 1rem solid #d3d3d3;
  line-height: 1;
  vertical-align: text-bottom;
  padding: 15rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item:hover {
  transition: background-color 0.3s;
  background-color: #e1eef4;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item .error-text-container {
  overflow: hidden;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item .error-msg {
  font-size: 1.1em;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item .error-path {
  font-size: 0.9em;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item .fdx-circle-alert {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #ce6c0d;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item .fdx-circle-remove {
  float: left;
  margin-right: 5rem;
  margin-top: 2rem;
  color: #aa1c1c;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item.ng-enter,
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item.ng-leave,
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list-item.ng-move {
  transition: none !important;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list:hover .error-list-box {
  display: block;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list .assetIssueFilter {
  width: 100%;
  padding: 5rem 10rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list .assetIssueFilter input {
  display: none;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list .assetIssueFilter .btn {
  border-radius: 5rem;
  width: 100%;
  margin: 0;
  transition: background-color, color 0.3s;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list .assetIssueFilter .btn:hover {
  border-color: #00a9ce;
  background-image: none;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list .assetIssueFilter input:checked + .btn {
  background-color: #00a9ce;
  color: #fff;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons .error-list .noErrors {
  color: #6666;
  font-style: italic;
  text-align: center;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea {
  display: inline-block;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea .tooltip .tooltip-inner {
  width: 160rem;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea .tooltip .tooltip-arrow {
  right: 32rem!important;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea #saveWarning {
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: default;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea #saveWarning .fdxicon-regular {
  font-size: 16rem;
  vertical-align: text-bottom;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea #saveWarning .moreInfo {
  margin-top: 5rem;
  cursor: pointer;
}
fdx-mdb-asset-edit .mdb-edit-content-properties-buttons #updateButtonMouseHoverArea .save-warning-icon {
  font-size: 16rem;
  vertical-align: text-bottom;
}
fdx-mdb-asset-edit .mdb-edit-content-properties,
fdx-mdb-asset-edit .mdb-edit-content-relationships,
fdx-mdb-asset-edit .mdb-edit-content-change-requests {
  height: calc(100vh - 169rem);
  overflow-y: auto;
  overflow-x: hidden;
}
fdx-mdb-asset-edit .mdb-edit-expand-section {
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-asset-edit .mdb-edit-expand-section:hover {
  color: #00a9ce;
}
fdx-mdb-asset-edit .mdb-edit .indented-body {
  display: none;
}
fdx-mdb-asset-edit .input-with-counter label {
  font-size: 14rem;
}
fdx-mdb-asset-edit .input-with-counter .prop-string-input {
  width: calc(100% - 30rem);
  display: inline-block;
}
fdx-mdb-asset-edit .input-with-counter button.fdx-remove {
  right: 37rem!important;
}
fdx-mdb-asset-edit .input-with-counter .text-input-counter-edit {
  display: inline-block;
  font-size: 14rem;
  width: 25rem;
  line-height: 38rem;
  text-align: center;
  color: #999;
  padding-left: 10rem;
}
fdx-mdb-asset-edit .view-with-counter {
  font-size: 0 !important;
}
fdx-mdb-asset-edit .view-with-counter * {
  font-size: 14rem;
}
fdx-mdb-asset-edit .view-with-counter .text-view {
  word-break: break-word;
  display: inline-block;
  width: calc(100% - 29rem);
}
fdx-mdb-asset-edit .view-with-counter .text-input-counter-view {
  display: inline-block;
  width: 25rem;
  text-align: center;
  color: #999;
  padding-left: 10rem;
  vertical-align: top;
}
.fdx-mdb-asset-detailed .minimise-nested {
  cursor: pointer;
  margin: 5rem;
}
.fdx-mdb-asset-detailed .always-display {
  display: block !important;
}
.fdx-mdb-asset-detailed .display-while-expanded {
  display: none;
}
.fdx-mdb-asset-detailed .display-while-retracted {
  display: block;
}
.fdx-mdb-asset-detailed.expanded {
  width: 1000rem;
}
.fdx-mdb-asset-detailed.expanded .display-while-expanded {
  display: block;
}
.fdx-mdb-asset-detailed.expanded .display-while-retracted {
  display: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-edit-prop label:not(.asset-file-upload) {
  font-weight: bold;
  margin-right: 5rem;
  margin-top: 7rem;
}
fdx-mdb-asset-edit-prop .mandatory {
  float: right;
  color: #00a9ce;
  margin-top: 9rem;
}
fdx-mdb-asset-edit-prop .help {
  position: absolute;
  left: 100rem;
  top: -11rem;
}
fdx-mdb-asset-edit-prop .line {
  transition: all 0.3s;
}
fdx-mdb-asset-edit-prop .line.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #f1f6fa;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-asset-edit-prop .is-fixed {
  position: absolute;
  right: 0;
  top: 10rem;
  color: #999;
}
fdx-mdb-asset-edit-prop .fixed-line {
  padding: 8rem 0;
}
fdx-mdb-asset-edit-prop .none {
  margin-top: 10rem;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop {
  position: relative;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .btn-inline.fdx-remove.fdxicon-regular {
  position: absolute;
  right: 12rem;
  top: 11rem;
  color: #999;
  cursor: pointer;
  font-size: 13rem;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .popover.bottom .popover-content .fdxicon-regular {
  vertical-align: middle;
  margin-right: 5rem;
  color: #00a9ce;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .fdx-input-checkbox {
  padding-top: 4rem;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .fdx-input-checkbox span {
  display: none;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .ref-btns {
  margin-bottom: 5rem;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn {
  color: #00a9ce;
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn .fdx-add,
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn .fdx-associate,
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn .fdx-circle-remove {
  font-size: 14rem;
  vertical-align: text-top;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn .add-value-text {
  vertical-align: middle;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn-text {
  display: inline-block;
  margin: 0;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn:hover,
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn:focus {
  color: #00677d;
  outline: none;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn.disabled,
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .add-btn.disabled:hover {
  cursor: not-allowed;
  color: #d9d9d9;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .fixed {
  display: inline-block;
  padding: 8rem 0;
  width: 100%;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop .fdx-file-warning {
  color: #ce6c0d;
  float: right;
  font-size: 20rem;
  margin-top: 5rem;
}
fdx-mdb-asset-edit-prop .fdx-mdb-asset-edit-prop.text-input-role .dropdown-menu {
  width: 100%;
}
fdx-mdb-asset-edit-prop:not(:last-child) .fdx-mdb-asset-edit-prop.row {
  margin-bottom: 20rem;
}
fdx-mdb-asset-edit-prop .url .urlProtocol {
  display: inline-block;
  vertical-align: top;
  width: 31%;
}
fdx-mdb-asset-edit-prop .url .urlBody {
  display: inline-block;
  vertical-align: top;
  width: 67%;
}
fdx-mdb-asset-edit-prop .url .urlBody .form-control {
  height: 40rem;
}
fdx-mdb-asset-edit-prop .file-upload-rules .mdb-detail-rule-detailed-prop {
  margin-left: 10rem;
  width: 33.33333333%;
}
fdx-mdb-asset-edit-prop .file-upload-rules .rule-prop {
  margin-right: 10rem!important;
}
fdx-mdb-asset-edit-prop ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #999a9c !important;
  font-style: italic;
  opacity: 1;
  /* Firefox */
}
fdx-mdb-asset-edit-prop :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999a9c !important;
  font-style: italic;
}
fdx-mdb-asset-edit-prop ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999a9c !important;
  font-style: italic;
}
fdx-mdb-asset-edit-prop .custom-element .indented-body {
  margin-left: 25rem;
}
fdx-mdb-asset-edit-prop .custom-element .expand-detailed-section-messsage {
  float: right;
  margin-top: 10rem;
  color: #00a9ce;
}
fdx-mdb-asset-edit-prop .custom-element .expand-detailed-section-messsage:hover {
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-edit-prop .error {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}
fdx-mdb-asset-edit-prop .error.dropdown {
  border: none !important;
}
fdx-mdb-asset-edit-prop .error.dropdown .dropdown-wrapper .dropdown {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}
fdx-mdb-asset-edit-prop .error .exists-in-parent {
  cursor: pointer;
}
fdx-mdb-asset-edit-prop .error .exists-in-parent .fdx-input-checkbox {
  pointer-events: none;
}
fdx-mdb-asset-edit-prop .ref-loading {
  height: 100rem;
  background-color: transparent;
}
fdx-mdb-asset-edit-prop #editPropsImportAnalysisVariable span {
  display: inline;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-edit-view label {
  font-weight: bold;
  margin-top: 8rem;
}
fdx-mdb-asset-edit-view .help {
  position: absolute;
  left: 100rem;
  top: -11rem;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop {
  padding: 8rem 0;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop label {
  display: inline-block;
  min-width: 130rem;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop.textarea .locale span {
  white-space: pre-wrap;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop.multi-select div {
  padding-bottom: 6rem;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop.multi-select .label-arrow {
  width: 17rem;
  height: 14rem;
  float: left;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop.multi-select .label-arrow::before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 2rem;
  color: #666666;
  line-height: 0;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view-prop.alias .aliases-view div {
  display: inline-block;
  width: 50%;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view .file-label-view {
  display: block;
  margin-top: 15rem;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view .file-path-view {
  margin-top: 10rem;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view fdx-mdb-asset-aliases .list {
  max-height: unset;
  overflow: visible;
}
fdx-mdb-asset-edit-view .fdx-mdb-asset-edit-view fdx-mdb-asset-aliases .list .item {
  overflow: visible;
}
fdx-mdb-asset-edit-view .custom-element .indented-body {
  margin-left: 25rem;
}
fdx-mdb-asset-edit-view .custom-element .expand-detailed-section-messsage {
  float: right;
  color: #00a9ce;
}
fdx-mdb-asset-edit-view .custom-element .expand-detailed-section-messsage:hover {
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-edit-view .external-standard ul {
  list-style-type: none;
  padding-left: 0;
}
fdx-mdb-asset-edit-view .external-standard ul li:not(.no-property-value-replacement)::before {
  content: '\BB';
  margin-right: 5rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-affected-assets-modal .warning-panel {
  background: rgba(206, 108, 13, 0.33);
  border: 1px solid #ce6c0d;
  border-radius: 4px;
  text-align: center;
  padding: 10rem;
}
fdx-mdb-affected-assets-modal .warning-icon {
  font-size: 22rem;
  color: #ce6c0d;
  vertical-align: bottom;
}
fdx-mdb-affected-assets-modal .warning-text {
  vertical-align: bottom;
}
fdx-mdb-affected-assets-modal .table-container {
  max-height: 460rem;
  margin-top: 24rem;
  overflow: auto;
  border: 1px solid #ddd;
}
fdx-mdb-affected-assets-modal table {
  width: 100%;
  border-collapse: separate;
}
fdx-mdb-affected-assets-modal table thead {
  background-color: #f3f3f3;
  position: sticky;
  top: 0;
  z-index: 1;
}
fdx-mdb-affected-assets-modal table tbody tr:nth-child(even) td {
  background-color: #F8F8F8;
}
fdx-mdb-affected-assets-modal table tr td,
fdx-mdb-affected-assets-modal table tr th {
  border-bottom: 1px solid #ddd;
  padding: 10rem;
  height: 62rem;
}
fdx-mdb-affected-assets-modal table tr td .warning-icon,
fdx-mdb-affected-assets-modal table tr th .warning-icon {
  font-size: 16rem;
}
fdx-mdb-affected-assets-modal table tr td .typeIcon,
fdx-mdb-affected-assets-modal table tr th .typeIcon {
  vertical-align: text-bottom;
}
fdx-mdb-affected-assets-modal table tr td .asset-group-type,
fdx-mdb-affected-assets-modal table tr th .asset-group-type {
  color: #999;
}
fdx-mdb-affected-assets-modal table tr td .more-asset-groups,
fdx-mdb-affected-assets-modal table tr th .more-asset-groups {
  color: #999;
  font-size: 12rem;
}

fdx-mdb-asset-locale .mdb-asset-locale {
  padding: 3rem 0rem;
  position: relative;
  height: 45rem;
}
fdx-mdb-asset-locale .mdb-asset-locale-dropdown .dropdown-wrapper {
  width: 150rem !important;
}
fdx-mdb-asset-locale .mdb-asset-locale-dropdown .dropdown-wrapper .dropdown {
  line-height: 38rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.font-weight-bold {
  font-weight: bold;
}
.asset-overview-parent.asset-overview-parent-simple-view {
  min-height: initial;
  padding: 8rem 15rem;
}
.asset-overview-parent-simple-view ul {
  align-items: center;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
}
.asset-overview-parent-simple-view ul > li {
  flex: 0 1 auto;
  list-style-type: none;
  min-width: 15%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
.asset-overview-parent-simple-view ul > li:not(:last-of-type) {
  margin-right: 16rem;
}
.asset-overview-parent-simple-view ul > li.type-icon {
  min-width: 30px;
}
.asset-overview-parent-simple-view ul > li.type-icon .fdxicon-regular {
  font-size: 30rem;
}
.asset-overview-parent-simple-view ul > li.label-value {
  font-size: 22rem;
}
.asset-overview-parent-simple-view ul > li.name-value {
  font-size: 16rem;
}
.asset-overview-parent-simple-view ul.question-term-type-visible > li:last-of-type {
  min-width: 40%;
}
@media screen and (max-width: 1200px) {
  .asset-overview-parent-simple-view ul {
    flex-wrap: wrap;
  }
  .asset-overview-parent-simple-view ul li ul {
    flex-wrap: nowrap;
  }
}

fdx-mdb-asset-group-associate .modal-body {
  overflow: visible;
}
fdx-mdb-asset-group-associate .modal-body .spinner {
  height: 38rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab h4 {
  padding: 20rem;
  margin: 0;
  border-bottom: 1rem solid #ddd;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab h4 a {
  color: #4c4c4c;
  text-decoration: none;
  font-weight: bold;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content {
  border-bottom: 1rem solid #ddd;
  padding: 1rem 25rem 15rem;
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .ag {
  margin: 13rem 0rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .ag-type {
  color: #878787;
  font-size: 13rem;
  font-style: italic;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .ag .fdx-circle-remove {
  float: right;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 0 1rem 0 #fff;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .ag .fdx-circle-remove:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .ag .fdx-circle-remove.disabled {
  color: #d9d9d9;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .ag .fdx-circle-remove.disabled:hover {
  color: #d9d9d9 !important;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .add-ag {
  text-align: center;
  transition: all 0.15s;
  color: #00a9ce;
  font-style: normal;
  cursor: pointer;
  margin-top: 10rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .add-ag span {
  vertical-align: text-bottom;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .add-ag .add-button {
  display: inline-block;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups .add-ag .add-button:hover span {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-asset-groups-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherited-by-assets {
  margin-left: -22rem;
  margin-top: 25rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherited-by-assets::before {
  content: '';
  display: inline-block;
  width: 6rem;
  height: 6rem;
  -moz-border-radius: 7.5rem;
  -webkit-border-radius: 7.5rem;
  border-radius: 7.5px;
  background-color: #d9d9d9;
  position: absolute;
  left: 21rem;
  top: 9rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherits-from-assets::before {
  content: '';
  display: inline-block;
  width: 6rem;
  height: 6rem;
  -moz-border-radius: 7.5rem;
  -webkit-border-radius: 7.5rem;
  border-radius: 7.5px;
  background-color: #d9d9d9;
  position: absolute;
  left: 50%;
  top: 9rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherits-from-assets {
  margin-top: 40rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherits-from-assets.empty-assets {
  margin-top: 20rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherits-from-assets::after {
  content: '';
  width: 0;
  height: calc(100% - 50rem);
  position: absolute;
  border: 1px solid #d9d9d9;
  top: 23rem;
  left: calc(50% + 2rem);
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherits-from-assets.empty-assets::after,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab-content-inherits-from-assets.empty-assets::before {
  display: none;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tab .loading-accordian {
  height: 75rem;
  position: relative;
  margin-top: 14rem;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-toggle {
  position: relative;
  font-size: 18rem;
  padding: 4rem;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-toggle:hover {
  color: #006a82;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-toggle:hover .mapping-dropdown-menu {
  display: flex;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-menu {
  -webkit-box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 3rem;
  border: 1rem solid #ccc;
  box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  font-family: "interstate", Helvetica, sans-serif;
  font-size: 14rem;
  justify-content: center;
  left: -210rem;
  list-style-type: none;
  padding-left: 0;
  position: absolute;
  text-align: center;
  z-index: 3000;
  width: 270rem;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-menu li {
  color: #333;
  font-weight: 400;
  padding: 10rem;
  padding: 14rem;
  text-align: center;
  transition: background-color ease-in-out 0.3s;
}
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-menu li:hover,
fdx-mdb-asset-relationships .mapping-relationships .mapping-relationships-actions .mapping-dropdown-menu li.is-active {
  background-color: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-maps-from .no-mapping-data,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-maps-to .no-mapping-data {
  margin-top: 10rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis {
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons {
  position: absolute;
  top: -55rem;
  right: 5%;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button {
  display: inline-block;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button.fdxicon-regular,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .fdxicon-regular {
  font-size: 22rem;
  color: #00a9ce;
  margin-left: 5rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button.fdxicon-regular:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .dropdown-menu {
  display: block;
  height: 0rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .dropdown-menu li {
  text-align: center;
  padding: 7rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .dropdown-menu li:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .dropdown-menu li.active {
  background: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button .dropdown-menu.download {
  width: 194rem;
  left: -157rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button.open .dropdown-menu {
  opacity: 1;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .buttons .button.open .download {
  height: 70rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset {
  border: 1rem solid #d9d9d9;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.1);
  margin: 10rem 0;
  padding: 10rem;
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset p.asset {
  margin: 0 0 5rem 0;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset p.asset-primary {
  font-weight: bold;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset p.asset-secondary {
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-container-icon {
  display: inline-block;
  margin-right: 8rem;
  vertical-align: top;
  font-size: 22rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset .container-details {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 2rem;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset .container-details p {
  margin: 0;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset .container-details p.container-details-version {
  font-size: 12rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset .container-details-name {
  font-weight: bold;
  margin-right: 0rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions {
  float: right;
  right: 6rem;
  top: 10rem;
  position: absolute;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions .fdxicon-regular {
  font-size: 18rem;
  margin: 2rem;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions .fdx-menu {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions-differ-icon {
  margin: 2rem;
  font-size: 18rem;
  color: #ce6c0d !important;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions .fdx-flag {
  font-size: 18rem;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .impacted-asset-inner-actions .tooltip-inner {
  white-space: nowrap;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-impact-analysis .btn-compact {
  position: absolute;
  right: 0;
  top: 0;
}
.impact-analysis-dropdown {
  width: 172rem;
}
.impact-analysis-dropdown-label {
  text-transform: uppercase;
  font-size: 11rem;
}
.impact-analysis-dropdown li {
  padding: 10rem;
  cursor: pointer;
}
.impact-analysis-dropdown li span.fdxicon-regular {
  margin-right: 9rem;
  vertical-align: middle;
}
.impact-analysis-dropdown li:hover {
  background-color: #00a9ce;
  color: white;
}
.impact-analysis-tooltip {
  min-width: fit-content !important;
  white-space: nowrap;
}
.tooltip {
  white-space: nowrap;
  text-overflow: visible;
}
.tooltip .tooltip-inner {
  width: 200rem;
  white-space: nowrap !important;
  word-wrap: break-word !important;
  white-space: pre-wrap !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by {
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons {
  position: absolute;
  top: -70rem;
  right: 5%;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button {
  display: inline-block;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button.fdxicon-regular,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .fdxicon-regular {
  font-size: 22rem;
  color: #00a9ce;
  margin-left: 5rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button.fdxicon-regular:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu {
  opacity: 0;
  transition: all ease-in-out 0.3s;
  left: auto;
  overflow-y: visible;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu .dropdown-menu:active {
  background: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu .dropdown-submenu:hover .dropdown-menu {
  position: absolute;
  display: block;
  top: 15rem;
  right: 100%;
  margin-top: -1px;
  left: auto;
  overflow-y: visible;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu li {
  text-align: center;
  padding: 7rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu li:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu li.active {
  background: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu li .dropdown-submenu {
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu li .dropdown-submenu .dropdown-submenu:hover > ul.dropdown-menu {
  display: block;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu.visual {
  width: 181rem;
  left: -144rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu.download {
  width: 180rem;
  left: -140rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button .dropdown-menu.download-submenu {
  width: 200rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by .buttons .button.open .dropdown-menu {
  opacity: 1;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list {
  margin: 0 0 0 1em;
  padding: 0;
  list-style: none;
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list.first-nest {
  margin-top: 10rem;
  margin-left: 20rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -11rem;
  bottom: 0;
  left: 0;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset {
  border: 1rem solid #d9d9d9;
  margin: 10rem 0;
  padding: 2rem;
  position: relative;
  border-radius: 4px;
  height: 50rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset .visible-children {
  line-height: 48rem;
  vertical-align: top;
  margin: -2px 0 -4px 0;
  border-right: 1rem solid #d6d6d6;
  padding: 0 17rem 0 15rem;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details {
  display: inline-flex;
  margin: 8rem 0 1rem 10rem;
  width: 77%;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details span {
  margin-right: 8rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .asset {
  margin: 0 0 5rem 0;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .asset-primary {
  font-weight: bold;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .asset-secondary {
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-container-icon {
  display: inline-block;
  vertical-align: top;
  font-size: 22rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-assetgroup-icon {
  font-size: 17rem;
  vertical-align: top;
  margin-top: 3px;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .container-details {
  margin-bottom: 0;
  margin-top: 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .container-details p {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .container-details p.container-details-version {
  font-size: 12rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details .container-details-name {
  font-weight: bold;
  margin-right: 0rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-actions {
  float: right;
  right: 7rem;
  top: 15rem;
  position: absolute;
  display: inline-flex;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-actions-assetgroup-icon.fdxicon-regular {
  color: #333 !important;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-actions-differ-icon {
  vertical-align: top;
  font-size: 20rem;
  color: #ce6c0d !important;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-actions .fdxicon-regular {
  font-size: 18rem;
  display: block;
  margin: 0 5rem;
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset-inner-details-actions .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset:hover {
  border: 1rem solid #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list .related-asset:hover .visible-children {
  border-right: 1rem solid #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list li {
  margin: 0;
  padding-left: 1.5em;
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list li:before {
  content: "";
  display: block;
  width: 21rem;
  height: 0;
  border-top: 1rem solid;
  border-color: #d9d9d9;
  margin-top: -1rem;
  position: absolute;
  top: 2em;
  left: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by ul.tree-unordered-list li:last-child:before {
  background: white;
  height: auto;
  top: 2em;
  bottom: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by input {
  display: none;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherited-by input ~ label {
  cursor: pointer;
}
.inherited-by-dropdown {
  width: 172rem;
}
.inherited-by-dropdown-label {
  text-transform: uppercase;
  font-size: 11rem;
}
.inherited-by-dropdown li {
  padding: 10rem;
  cursor: pointer;
}
.inherited-by-dropdown li span.fdxicon-regular {
  margin-right: 9rem;
  vertical-align: middle;
}
.inherited-by-dropdown li:hover {
  background-color: #00a9ce;
  color: white;
}
.tooltip {
  white-space: nowrap;
}
.tooltip .tooltip-inner {
  white-space: nowrap !important;
  word-wrap: break-word !important;
  white-space: pre-wrap !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-relationships-inherits-from-tree {
  position: relative;
}
fdx-mdb-asset-relationships-inherits-from-tree .arrow {
  color: #4c4c4c;
  border: 1px solid #4c4c4c;
  border-left: none;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  position: absolute;
  right: 0;
  width: 17px;
  top: 25rem;
  height: 60rem;
}
fdx-mdb-asset-relationships-inherits-from-tree .arrow.shorter {
  height: 55rem;
}
fdx-mdb-asset-relationships-inherits-from-tree .arrow.lower {
  top: 30rem;
  height: 55rem;
}
fdx-mdb-asset-relationships-inherits-from-tree .arrow.lower.shorter {
  height: 50rem;
}
fdx-mdb-asset-relationships-inherits-from-tree .arrow .arrow-head {
  font-size: 13rem;
  position: absolute;
  top: -7rem;
  left: -4rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from {
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from-arrow {
  border: solid #d9d9d9;
  border-width: 0 2rem 2rem 0;
  display: inline-block;
  padding: 2rem;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  position: absolute;
  left: 50%;
  top: -20rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons {
  position: absolute;
  top: 0;
  right: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button {
  display: inline-block;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button.fdxicon-regular,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .fdxicon-regular {
  font-size: 30rem;
  color: #00a9ce;
  margin-left: 5rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button.fdxicon-regular:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .dropdown-menu {
  display: block;
  height: 0rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .dropdown-menu li {
  text-align: center;
  padding: 7rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .dropdown-menu li:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .dropdown-menu li.active {
  background: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button .dropdown-menu.download {
  width: 194rem;
  left: -157rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button.open .dropdown-menu {
  opacity: 1;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons .button.open .download {
  height: 70rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons.download-btn {
  position: absolute;
  top: -85rem;
  right: 5%;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .buttons.download-btn .button .fdx-download {
  font-size: 22rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset {
  border: 1rem solid #d9d9d9;
  width: 100%;
  margin: 10rem 0;
  padding: 12rem 12rem 5rem 12rem;
  position: relative;
  border-radius: 4px;
  background: white;
  z-index: 1;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset p.asset {
  margin: 0 0 5rem 0;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset p.asset-primary {
  font-weight: bold;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset p.asset-secondary {
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-container-icon {
  display: inline-block;
  vertical-align: top;
  font-size: 22rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-assetgroup-icon {
  font-size: 17rem;
  vertical-align: top;
  margin: 3px 5px 0px 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset .container-details {
  display: inline-block;
  padding: 3px;
  width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset .container-details-name {
  font-weight: bold;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-inner-actions {
  float: right;
  right: 10rem;
  top: 15rem;
  position: absolute;
  display: inline-flex;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-inner-actions-assetgroup-icon.fdxicon-regular {
  color: #333 !important;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-inner-actions-differ-icon {
  vertical-align: top;
  margin-top: 2px;
  font-size: 20rem;
  margin-right: 5px;
  color: #ce6c0d !important;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-inner-actions .fdxicon-regular {
  font-size: 17rem;
  display: block;
  margin: 0 5rem;
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-inner-actions .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset-inner-actions .tooltip-inner {
  white-space: nowrap;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .source-asset:hover {
  border: 1rem solid #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .btn-compact {
  position: absolute;
  right: 0;
  top: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .fdx-arrow-n {
  text-align: center;
  width: 300rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-inherits-from .inherits-from-arrow {
  position: absolute;
  right: -37rem;
  margin-top: -26px;
  font-size: 47rem;
}
.inherits-from-dropdown {
  width: 172rem;
}
.inherits-from-dropdown-label {
  text-transform: uppercase;
  font-size: 11rem;
}
.inherits-from-dropdown li {
  padding: 10rem;
  cursor: pointer;
}
.inherits-from-dropdown li span.fdxicon-regular {
  margin-right: 9rem;
  vertical-align: middle;
}
.inherits-from-dropdown li:hover {
  background-color: #00a9ce;
  color: white;
}
.tooltip {
  white-space: nowrap;
}
.tooltip .tooltip-inner {
  white-space: nowrap !important;
  word-wrap: break-word !important;
  white-space: pre-wrap !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.expanded fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details {
  width: fit-content;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree {
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons {
  position: absolute;
  top: -55rem;
  right: 30rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button {
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button.fdxicon-regular,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .fdxicon-regular {
  font-size: 24rem;
  color: #00a9ce;
  margin-left: 10rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button.fdxicon-regular:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu {
  opacity: 0;
  transition: all ease-in-out 0.3s;
  left: auto;
  overflow-y: visible;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu .dropdown-menu:active {
  background: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu .dropdown-submenu:hover .dropdown-menu {
  top: 15rem;
  position: absolute;
  display: block;
  right: 100%;
  margin-top: -1px;
  left: auto;
  overflow-y: visible;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu li {
  text-align: center;
  padding: 7rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu li:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu li.active {
  background: #d7e8ef;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu li .dropdown-submenu {
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu li .dropdown-submenu .dropdown-submenu:hover > ul.dropdown-menu {
  display: block;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu.visual {
  width: 181rem;
  left: -144rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu.download {
  width: 180rem;
  left: -140rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button .dropdown-menu.download-submenu {
  width: 200rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree .buttons .button.open .dropdown-menu {
  opacity: 1;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list {
  margin: 0 0 0 1em;
  padding: 0;
  list-style: none;
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list.first-nest {
  margin-top: 12rem;
  margin-left: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -14rem;
  bottom: 0;
  left: 0;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset {
  margin-bottom: 14rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner {
  position: relative;
  display: flex;
  align-items: center;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
  box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.1);
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner:hover,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner:hover .visible-children {
  border-color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner .visible-children {
  margin-bottom: 0;
  vertical-align: top;
  border-right: 1rem solid #d6d6d6;
  padding: 1em;
  cursor: pointer;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details {
  display: flex;
  align-items: center;
  margin: 1rem 0 1rem 15rem;
  overflow: hidden;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details > span {
  margin-right: 10rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details > span:first-child {
  font-size: 18rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details .asset-primary {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  overflow: hidden;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details .asset-secondary {
  color: #666666;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details .asset-secondary > span:before {
  content: '(';
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details .asset-secondary > span:after {
  content: ')';
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details .asset-primary .empty,
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details .asset-secondary .empty {
  color: #C7C7C7;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-details p {
  margin: 0 0 5rem 0;
  line-height: 18rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-actions {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  padding-right: 10rem;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-actions .fdx-asset-group {
  margin-right: 10rem;
  color: #333;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-actions .fdx-asset-group:hover {
  color: #333;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-actions span {
  font-size: 20rem;
  display: block;
  margin: 2rem;
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-actions span:hover {
  color: #00a9ce;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list .related-asset-inner-actions span.fdx-compare {
  display: none;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list li {
  margin: 0;
  padding: 0 0 0 1em;
  line-height: 3em;
  position: relative;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list li:before {
  content: "";
  display: block;
  width: 15rem;
  height: 0;
  border-top: 1rem solid;
  border-color: #d9d9d9;
  margin-top: -20rem;
  position: absolute;
  top: 3em;
  left: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree ul.tree-unordered-list li:last-child:before {
  background: white;
  height: auto;
  top: 3em;
  bottom: 0;
}
fdx-mdb-asset-relationships .fdx-mdb-asset-relationships-tree-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
.tooltip.tooltip-long-text {
  max-width: fit-content;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-versions .version {
  margin: 13rem 0;
}
fdx-mdb-asset-versions .version .link {
  line-height: 26rem !important;
}
fdx-mdb-asset-versions .version .disabled a,
fdx-mdb-asset-versions .version .label {
  color: #878787;
}
fdx-mdb-asset-versions .version .label {
  font-size: 12rem;
  font-style: italic;
  vertical-align: middle;
}
fdx-mdb-asset-versions .version:last-child {
  margin-bottom: 0;
}
fdx-mdb-asset-versions .version .disabled {
  pointer-events: none;
}
fdx-mdb-asset-versions .version .disabled .fdxicon-regular.current-arrow {
  color: #999;
  font-size: 12rem;
}
fdx-mdb-asset-versions .compare {
  float: right;
}
fdx-mdb-asset-versions .compare.btn {
  padding: 2rem 7rem;
  margin-left: 10rem;
}
fdx-mdb-asset-versions .compare.indicator {
  font-size: 18rem;
  padding-top: 3rem;
  color: #00a9ce;
}
fdx-mdb-asset-versions .none {
  color: #999;
  font-style: italic;
  text-align: center;
}
fdx-mdb-asset-versions .none-relationship-tab {
  color: #878787;
  font-style: italic;
  text-align: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.asset-relationships-mappings .no-mapping-data {
  margin-top: 10rem;
}
.asset-relationships-mappings .primary-color {
  color: #00a9ce;
}
.asset-relationships-mappings .mapping-type-icon {
  font-size: 16rem;
}
.asset-relationships-mappings .this {
  text-transform: uppercase;
  border-radius: 30rem;
  background-color: #e5e5e5;
  color: #454545;
  padding: 3rem 10rem;
  font-weight: bold;
}
.asset-relationships-mappings .angle-bracket::before {
  color: #454545;
  height: 10rem;
  width: 10rem;
  content: '>';
  font-size: 24rem;
  vertical-align: sub;
  margin: 0 5rem;
}
.asset-relationships-mappings .mapping-tree {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin: 10rem 0 0 10rem;
}
.asset-relationships-mappings .mapping-tree::before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -11rem;
  bottom: 0;
  left: 0;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
.asset-relationships-mappings .mapping-tree li {
  position: relative;
  padding-left: 1.5em;
  margin-top: 10rem;
}
.asset-relationships-mappings .mapping-tree li::before {
  content: "";
  display: block;
  width: 21rem;
  height: 0;
  border-top: 1rem solid;
  border-color: #d9d9d9;
  margin-top: -1rem;
  position: absolute;
  top: 1.5em;
  left: 0;
}
.asset-relationships-mappings .mapping-tree li:last-child::before {
  background: white;
  height: auto;
  top: 1.5em;
  bottom: 0;
}
.asset-relationships-mappings .mapping-tree-li.invalid .mapping-tree-item {
  border-color: #aa1c1c;
}
.asset-relationships-mappings .mapping-tree-li.invalid .mapping-tree-item a,
.asset-relationships-mappings .mapping-tree-li.invalid .mapping-tree-item .primary-color {
  cursor: default!important;
  color: #999;
}
.asset-relationships-mappings .mapping-tree-li.invalid .mapping-tree-item a:hover,
.asset-relationships-mappings .mapping-tree-li.invalid .mapping-tree-item .primary-color:hover {
  color: #999;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item {
  align-items: center;
  border: 1rem solid #ddd;
  border-radius: 4px;
  height: 45rem;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-arrow,
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-details {
  padding: 5rem;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-details {
  align-items: center;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-details .fdx-visualisation {
  color: #00a9ce;
  font-size: 20rem;
  cursor: pointer;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-details .fdx-circle-alert {
  color: #aa1c1c;
  font-size: 24rem;
  margin-right: 10rem;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-details .mapping-tree-item-details-inner {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-arrow {
  padding: 12rem 10rem;
  border-right: 1rem solid #ddd;
  flex: 0 1 25rem;
}
.asset-relationships-mappings .mapping-tree-li .mapping-tree-item-arrow label {
  margin-bottom: 0;
  cursor: pointer;
}
.asset-relationships-mappings .mapping-tree-li .brackets {
  color: #999;
}
.asset-relationships-mappings .mapping-tree-li .brackets:before {
  content: '(';
}
.asset-relationships-mappings .mapping-tree-li .brackets:after {
  content: ')';
}
.asset-relationships-mappings input {
  display: none;
}
.asset-relationships-mappings input:checked ~ fdx-mdb-asset-relationships-mapping-tree ul {
  display: none;
}
.asset-relationships-mappings input:checked ~ .mapping-tree-item .mapping-tree-item-arrow .fdx-arrow-s::before {
  content: "\e96c";
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-search .app-content.closed .fdx-mdb-asset-search {
  margin-left: 0;
}
fdx-mdb-asset-search .app-content.closed .fdx-mdb-asset-search-filters {
  left: -500rem;
}
fdx-mdb-asset-search .app-content.closed .fdx-mdb-asset-search-hide-filters:hover {
  width: 118rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-wrapper .no-assets {
  text-align: center;
  height: 100%;
  padding-top: 33%;
  font-size: 20rem;
  color: #999;
  font-style: italic;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-order-by {
  position: fixed;
  top: 9rem;
  right: 100rem;
  cursor: pointer;
  z-index: 1;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item {
  border-bottom: 1rem solid #e5e5e5;
  min-height: 85rem;
  position: relative;
  transition: 0.3s ease;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item:hover {
  background-color: #fff;
  box-shadow: 0 0 50rem -8rem #999;
  transition: 0.3s ease;
  cursor: pointer;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item:hover h1 {
  color: #00a9ce;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item:nth-child(odd) {
  background-color: rgba(220, 220, 220, 0.2);
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.2);
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .icon {
  width: 8.33333333%;
  float: left;
  font-size: xx-large;
  line-height: 65rem;
  text-align: center;
  margin-top: 10rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .info {
  width: 66.66666667%;
  float: left;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .info h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .info h1 .assetgroup-name {
  font-size: 17rem;
  display: inline-block;
  margin-left: 5rem;
  color: #666;
  line-height: 22rem;
  vertical-align: top;
  font-weight: lighter !important;
  margin-top: 2rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .type {
  width: 25%;
  float: left;
  padding-left: 20rem;
  padding-top: 16rem;
  text-transform: capitalize;
  color: #666;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .containerInfo {
  white-space: nowrap;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item .containerInfo span {
  margin-right: 10rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item-dropmenu {
  position: absolute;
  right: 32rem;
  top: 32rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item-dropmenu .dropdown-icon {
  color: #00a9ce;
  font-size: 24rem !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item-dropmenu .dropdown-menu {
  left: -12.5em;
  top: -0.2em;
  width: 170rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item-dropmenu .dropdown-menu li {
  text-align: center;
  padding: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item-dropmenu .dropdown-menu li:hover {
  background: #f1f9fb;
}
fdx-mdb-asset-search .app-content .fdx-mdb-result-list-results.list .fdx-mdb-result-list-item-dropmenu:hover .icon {
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table {
  display: block;
  align-content: center;
  margin: 0 10rem 10rem 0;
  border-collapse: collapse;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .fdx-smart-table-controls-columns {
  margin-top: 5rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .no-assets {
  text-align: center;
  height: 100%;
  padding-top: 33%;
  font-size: 20rem;
  color: #999;
  font-style: italic;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .fdx-smart-table-wrapper {
  overflow: visible;
  border: 1px solid #E1E1E1;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .tabular-dropdown .fdx-menu {
  margin-right: 5rem;
  margin-left: 5rem;
  color: #00a9ce;
  font-size: 24rem !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .tabular-dropdown .dropup .dropdown-menu {
  bottom: 0 !important;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .tabular-dropdown .tabular-dropdown-menu {
  position: absolute;
  top: -10rem;
  left: -131px;
  z-index: 3000;
  float: left;
  min-width: 100rem;
  padding: 0 1rem;
  margin: 0;
  list-style: none;
  font-size: 14rem;
  background-color: #fff;
  border: 1rem solid #ccc;
  border-radius: 3rem;
  -webkit-box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  text-align: left;
  max-height: 300rem;
  overflow-y: auto;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .tabular-dropdown .tabular-dropdown-menu li {
  text-align: center;
  padding: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .tabular-dropdown .tabular-dropdown-menu li:hover {
  background: #f1f9fb;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table thead :hover {
  box-shadow: none !important;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table th {
  background-color: #f3f3f3;
  font-weight: bold;
  border-top: hidden;
  border-left: hidden;
  border-right: hidden;
  border-bottom: 1px solid #E1E1E1 !important;
  border-collapse: collapse;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .orderIcon {
  display: none !important;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table th:last-child .fdxicon-filled {
  display: none;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table td {
  padding: 20rem 10rem !important;
  border-collapse: collapse;
  border-right: hidden;
  cursor: pointer;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table tr {
  border-collapse: collapse;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table tr:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  -webkit-box-shadow: 2rem 2rem 35rem #d3d3d3;
  -moz-box-shadow: 2rem 2rem 35rem #d3d3d3;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table tr:nth-child(odd) {
  background-color: rgba(216, 216, 216, 0.07);
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.6);
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .assetTypeColumn {
  font-size: 18px;
  max-width: 125rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .updatedColumn {
  min-width: 105rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .assetStatusColumn {
  max-width: 75rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .containerStatusColumn {
  max-width: 90rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .aliasesColumn {
  max-width: 120rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .descriptionColumn {
  max-width: 120rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .versionNumColumn {
  max-width: 100rem;
  padding-left: 10rem!important;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .nameColumn {
  max-width: 225rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .labelColumn {
  max-width: 225rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .containerColumn {
  max-width: 225rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .dropdownMenu {
  border-top: 1px solid #e1e1e1 !important;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .asset-version-dropdown {
  display: inline;
  margin: 8rem 10rem 0 0;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .asset-version-dropdown strong {
  float: left;
  background-color: #E1E1E1;
  color: white;
  border-radius: 5rem 0 0 5rem;
  padding: 7rem;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .asset-version-dropdown fdx-dropdown {
  float: left;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .asset-version-dropdown fdx-dropdown .dropdown {
  height: 34rem !important;
  border: 1px solid #E1E1E1 !important;
  min-height: 38rem !important;
}
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .asset-version-dropdown fdx-dropdown .dropdown,
fdx-mdb-asset-search .app-content .fdx-mdb-asset-list-smart-table .asset-version-dropdown fdx-dropdown .dropdown .select-label .fdx-triangle-s {
  line-height: 34rem !important;
}
.fdx-mdb-asset-search {
  position: relative;
  height: 100%;
  margin-left: 500rem;
  transition: 0.3s ease all;
  overflow: hidden;
}
.fdx-mdb-asset-search .load-more {
  padding: 10rem;
  position: relative;
  height: 50rem;
}
.fdx-mdb-asset-search-filters {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease all;
  overflow: hidden;
  width: 500rem;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  background-color: #fff;
  z-index: 2;
}
.fdx-mdb-asset-search-hide-filters {
  position: absolute;
  bottom: 15rem;
  padding: 5rem 10rem !important;
  transition: 0.3s ease all;
  overflow: hidden;
  color: #999;
  background-color: #fff;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  border: 1rem solid #E1E1E1;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  white-space: nowrap;
  width: 35rem;
  line-height: 16rem;
  z-index: 3;
}
.fdx-mdb-asset-search-hide-filters .browse-message {
  padding-left: 5rem;
}
.fdx-mdb-asset-search-hide-filters:focus {
  outline: none !important;
}
.fdx-mdb-asset-search-result-list {
  height: 100%;
}
.asset-download-button {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  padding: 8rem;
}
.asset-download-button:hover {
  background: #20677d !important;
  opacity: 1;
}
.asset-download-button .fdxicon-regular {
  color: #fff;
  font-size: 20rem;
  margin: 0rem 10rem 0rem 54rem;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  display: block;
  align-content: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.fdx-mdb-asset-type-list-controls-container {
  position: relative;
}
.fdx-mdb-asset-type-list-controls {
  position: absolute;
  right: 60rem;
  top: 20rem;
  z-index: 2;
}
.fdx-mdb-asset-type-list-controls span {
  cursor: pointer;
  color: #00a9ce;
}
.fdx-mdb-asset-type-list-controls .fdx-filter {
  margin-right: 10rem;
  color: #00a9ce;
}
.fdx-mdb-asset-type-list-controls .fdx-filter.filter-current-assets {
  color: #00a9ce;
}
.fdx-mdb-asset-type-list {
  background-color: #fff;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
}
.fdx-mdb-asset-type-list,
.fdx-mdb-asset-type-list li,
.fdx-mdb-asset-type-list .fdx-mdb-asset-type-list-item-actions,
.fdx-mdb-asset-type-list .asset-type-list-item-compliance {
  display: flex;
}
.fdx-mdb-asset-type-list li {
  flex: 1 auto;
  justify-content: flex-start;
  padding: 12rem 16rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.fdx-mdb-asset-type-list li:not(:last-child) {
  border-bottom: 1rem solid #d8d8d8;
}
.fdx-mdb-asset-type-list li:hover {
  -webkit-box-shadow: 0rem 0rem 15rem -3rem #999;
  box-shadow: 0rem 0rem 15rem -3rem #999;
  cursor: pointer;
}
.fdx-mdb-asset-type-list li .fdxicon-regular {
  font-size: 20rem;
  margin-right: 5rem;
}
.fdx-mdb-asset-type-list li .asset-count {
  color: #ababab;
  font-size: 13rem;
}
.fdx-mdb-asset-type-list li .compliance-percentage {
  margin-right: 10rem;
}
.fdx-mdb-asset-type-list li .fdx-circle-add {
  color: #00a9ce;
  cursor: pointer;
  font-size: 22rem;
  margin-left: 10rem;
}
.fdx-mdb-asset-type-list li .fdx-circle-add:not(.disabled-view):hover {
  color: #00a9ce;
}
.fdx-mdb-asset-type-list li span {
  padding-right: 5rem;
  vertical-align: middle;
}
.fdx-mdb-asset-type-list li span.compliance-icon.fdxicon-regular {
  font-size: 22rem;
}
.fdx-mdb-asset-type-list li .fdx-mdb-asset-type-list-item-actions,
.fdx-mdb-asset-type-list li .asset-type-list-item-compliance {
  align-items: center;
}
.fdx-mdb-asset-type-list li .fdx-mdb-asset-type-list-item-actions {
  margin-left: auto;
}
.fdx-mdb-asset-type-list .no-results {
  color: #6666;
}
.fdx-mdb-asset-type-list:not(.grid-view) li:last-child:not(.no-results) {
  margin-bottom: -5rem;
}
.fdx-mdb-asset-type-list.grid-view {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10rem;
}
.fdx-mdb-asset-type-list.grid-view li {
  background: #fff;
  border: 1rem solid #e5e5e5;
  flex-direction: column;
  flex: 1 0 auto;
  width: 30%;
  justify-content: space-between;
  margin: 5rem;
  padding: 15rem;
  -webkit-box-shadow: 0rem 0rem 10rem -4rem #999;
  box-shadow: 0rem 0rem 10rem -4rem #999;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.fdx-mdb-asset-type-list.grid-view li.no-results {
  border: none;
  box-shadow: none;
  cursor: initial;
}
.fdx-mdb-asset-type-list.grid-view li .fdx-mdb-asset-type-list-item-details {
  margin-bottom: 10rem;
}
.fdx-mdb-asset-type-list.grid-view li .fdx-mdb-asset-type-list-item-actions {
  justify-content: space-between;
  margin-left: revert;
}
.fdx-mdb-asset-type-list.grid-view li .fdx-mdb-asset-type-list-item-actions .asset-type-list-item-compliance {
  flex-direction: row-reverse;
}

.childAssetListWrapper .asset-btn {
  display: inline-block;
  margin-right: 15rem;
  vertical-align: top;
}
.childAssetListWrapper .asset-btn:last-of-type {
  margin-right: 0 !important;
}
.childAssetListWrapper .asset-btn span {
  vertical-align: baseline;
}
.childAssetListWrapper.hideText .asset-btn {
  margin-right: 5rem;
}
.childAssetListWrapper.hideText fdx-mdb-asset-rule-detailed-prop .rule-prop-add-button {
  margin-left: 5rem !important;
}
.childAssetListWrapper.hideText fdx-mdb-asset-rule-detailed-prop .rule-entry {
  margin-left: 5rem !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-child-asset-menu {
  float: right;
  margin-top: 2rem;
  margin-left: 5rem;
}
fdx-mdb-child-asset-menu #childAssetMenuWrapper {
  font-size: 0rem;
}
fdx-mdb-child-asset-menu .asset-icon {
  margin-left: 5rem;
  font-size: 18rem;
  margin-bottom: 5rem;
}
fdx-mdb-child-asset-menu .error-icon {
  margin-left: 5rem;
  font-size: 18rem;
  margin-bottom: 5rem;
  color: #aa1c1c;
}
fdx-mdb-child-asset-menu .btn-associate {
  padding-right: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-group-asset .modal-body {
  height: 70vh;
  color: #4c4c4c;
  background-color: #fcfcfc;
  margin-bottom: 0;
}
.fdx-mdb-group-asset .modal-body.page-conflict {
  border: 1rem solid #d9d9d9;
  padding: 0;
  margin: 15rem;
  box-shadow: 0rem 6rem 12rem -12rem rgba(0, 0, 0, 0.63);
}
.fdx-mdb-group-asset .modal-body.page-conflict div.no-conflicts {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: gray;
  font-style: italic;
  margin: 2em 0 1em 0;
  text-align: center;
}
.fdx-mdb-group-asset .modal-body.page-conflict div.no-conflicts h1 {
  font-size: 1.6em;
  margin-bottom: 1em;
}
.fdx-mdb-group-asset .modal-body.page-conflict div.no-conflicts span {
  max-width: 40%;
}
.fdx-mdb-group-asset .modal-body.page-conflict .right-menu {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 20em;
  padding: 0 0.5em;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
  z-index: 1;
}
.fdx-mdb-group-asset .modal-body.page-conflict .right-menu .flex-row {
  display: flex;
  align-items: center;
  line-height: 2;
}
.fdx-mdb-group-asset .modal-body.page-conflict .right-menu .flex-row .title {
  font-weight: bold;
}
.fdx-mdb-group-asset .modal-body.page-conflict .right-menu .flex-row .value {
  font-size: 1.2em;
  font-weight: bold;
  color: #0080ab;
}
.fdx-mdb-group-asset .modal-body.page-conflict .right-menu .flex-row .gutter,
.fdx-mdb-group-asset .modal-body.page-conflict .right-menu .flex-row .btn {
  flex: 1;
}
.fdx-mdb-group-asset .right-aligned {
  float: right;
}
.fdx-mdb-group-asset .right-aligned > * {
  margin: 0 3rem;
}
.fdx-mdb-group-asset-add-label {
  height: 60rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10rem 20rem;
  display: flex;
}
.fdx-mdb-group-asset-add-label-dropdown {
  margin: 0 10rem 0 0;
  white-space: nowrap;
  flex: 0 1 33%;
  max-width: 33%;
}
.fdx-mdb-group-asset-add-label-dropdown:last-child {
  margin-right: 0rem;
}
.fdx-mdb-group-asset-add-label-dropdown .dropdown {
  display: inline-block;
  width: 206rem;
  min-height: 43rem;
}
.fdx-mdb-group-asset-add-tools {
  padding: 6rem;
  display: flex;
  position: absolute;
  width: 90%;
  z-index: 4;
}
.fdx-mdb-group-asset-add-tools-select-all {
  display: flex;
  align-items: center;
}
.fdx-mdb-group-asset-add-tools-select-all label {
  font-weight: lighter;
  padding-left: 5rem;
}
.fdx-mdb-group-asset-add-tools-select-all label.selected {
  color: #4391B2;
  font-weight: bold;
}
.fdx-mdb-group-asset-add-asset-list {
  overflow: auto;
  margin-top: 10rem;
}
.fdx-mdb-group-asset-add-asset-list-tree {
  position: relative;
}
.fdx-mdb-group-asset-add-asset-list-tree .btn-primary {
  position: absolute;
  right: 0;
  top: 5rem;
}
.fdx-mdb-group-asset-add-asset-list-tree-wrapper {
  margin-top: 13rem !important;
  margin-left: 0 !important;
}
.fdx-mdb-group-asset-add-asset-list-tree-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
.fdx-mdb-group-asset-add-asset-list-no-tree {
  color: #ababab;
  font-style: italic;
  text-align: center;
  margin-top: 60rem;
  font-size: 18rem;
}
.fdx-mdb-group-asset-target {
  position: absolute;
  top: 0;
  right: 20rem;
  bottom: 20rem;
  width: 500rem;
}
.fdx-mdb-group-asset-target-title {
  line-height: 65rem !important;
  font-weight: bold;
}
.fdx-mdb-group-asset-target-content {
  position: absolute;
  top: 60rem;
  right: 0;
  bottom: 260rem;
  width: 100%;
  padding: 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.fdx-mdb-group-asset-target-content-section {
  white-space: nowrap;
  margin-bottom: 10rem;
}
.fdx-mdb-group-asset-target-content-section p {
  margin: 0;
}
.fdx-mdb-group-asset-target-content-section .group-icon {
  padding: 5rem 10rem;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 100rem;
}
.fdx-mdb-group-asset-target-content-section .group-icon .fdxicon-regular {
  font-size: 32rem;
}
.fdx-mdb-group-asset-target-content-section .group-details {
  display: inline-block;
  margin-left: 5rem;
  width: calc(100% - 115rem);
}
.fdx-mdb-group-asset-target-content-section .group-details-name {
  margin: 6rem 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fdx-mdb-group-asset-target-content-section .group-details .container-options {
  margin-top: 10rem;
  width: auto;
  width: 350rem;
}
.fdx-mdb-group-asset-target-content-section .group-details .container-options.text {
  line-height: 36rem;
  margin: 0;
  display: inline-block;
}
.fdx-mdb-group-asset-target-content-section:first-child {
  border-bottom: 1rem solid #d9d9d9;
  padding-bottom: 10rem;
}
.fdx-mdb-group-asset-target-conflict {
  position: absolute;
  top: 250rem;
  right: 0;
  bottom: 50rem;
  width: 100%;
  padding: 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.fdx-mdb-group-asset-target-conflict label {
  line-height: 25rem;
}
.fdx-mdb-group-asset-target-conflict-checkbox {
  display: block;
  margin-bottom: 2rem;
}
.fdx-mdb-group-asset-target-conflict-checkbox label {
  line-height: initial;
  margin-bottom: 0;
}
.fdx-mdb-group-asset-target-conflict-checkbox-all-conts {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
}
.fdx-mdb-group-asset-target .cancel-button {
  position: absolute;
  right: 255rem;
  bottom: 0rem;
  width: 49%;
}
.fdx-mdb-group-asset-target .import-button {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  width: 49%;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-controls-visibility {
  margin-top: 8rem;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table {
  margin-left: 0rem;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table .checkbox-column {
  position: sticky!important;
  z-index: 1;
  left: 0;
  outline: 1rem solid #d3d3d3;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller {
  margin-top: 20rem;
  margin-left: 5rem;
  max-height: 400rem;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table th {
  background-color: #f3f3f3;
  padding: 15rem 6rem;
  position: sticky;
  top: 0;
  z-index: 1;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table th:first-child,
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table td:first-child {
  padding: 0rem 15rem;
  text-align: center;
  border-right: 1px solid #d3d3d3;
  position: sticky !important;
  z-index: 2;
  width: 35rem;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table thead th:first-child {
  position: sticky !important;
  z-index: 3;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table td,
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table th {
  vertical-align: middle;
  border-right: none;
}
.fdx-mdb-group-asset fdx-asset-smart-table .asset-smart-table-wrapper .asset-smart-table-scroller table tbody:nth-child(odd) tr td {
  background-color: #F8F8F8;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.tooltip.tooltip-above-modal {
  z-index: 1051;
}
.dropdown-menu.import-asset-selection-options-menu .category {
  padding: 7rem;
  border-bottom: 1rem solid #d9d9d9;
  font-family: "interstate", Helvetica, sans-serif;
  font-size: 11rem;
  font-weight: bold;
  background: #f2f2f2;
  color: #00677d;
  text-decoration: none;
  text-transform: uppercase;
}
ul.asset-group-add-asset-tree-display {
  padding: 0;
  list-style: none;
  position: relative;
}
ul.asset-group-add-asset-tree-display:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -0.5em;
  bottom: 0;
  left: 1.5em;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
ul.asset-group-add-asset-tree-display li {
  position: relative;
  margin: 0;
  padding: 0 0 0 3em;
  font-weight: bold;
}
ul.asset-group-add-asset-tree-display li:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.5em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
ul.asset-group-add-asset-tree-display li:last-child:before {
  background: #fcfcfc;
  height: auto;
}
ul.asset-group-add-asset-tree-display li input.collapse-checkbox {
  display: none;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner {
  position: relative;
  vertical-align: middle;
  display: inline-flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0.5em 0;
  background: #f4f4f4;
  border: 1rem solid #d9d9d9;
  border-radius: 3rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner label.collapse-label {
  width: auto;
  margin: 0;
  padding: 0 0.5em;
  cursor: pointer;
  align-self: center;
  border-left: none;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details {
  display: inline-block;
  flex: 1 1;
  min-width: 25em;
  white-space: nowrap;
  font-weight: normal;
  font-size: 0.8em;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1em;
  justify-content: space-between;
  background-color: white;
  border-radius: 3rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .gutter {
  flex: 1;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.wrapped {
  flex-wrap: wrap;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.depth-top {
  box-shadow: inset 0rem 4rem 6rem -6rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.depth-top.depth-bottom {
  box-shadow: inset 0rem 4rem 6rem -6rem, inset 0rem -4rem 6rem -6rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.depth-bottom {
  box-shadow: inset 0rem -4rem 6rem -6rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.darker {
  background: #f4f4f4;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.warning {
  background: #ce6c0d;
  color: #f9f0e3;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.info {
  background: #00a9ce;
  color: #e6f5f8;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row.right-side {
  justify-content: flex-end;
  text-align: end;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row label.fdx-input-checkbox i {
  top: 4rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .asset-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 1.3em;
  margin: 0.7em;
  line-height: 14rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .asset-type-box {
  display: flex;
  align-items: center;
  border: 1rem solid #999999;
  border-radius: 5rem;
  padding: 0em 1em;
  margin: 0.5em 0;
  font-size: 0.9em;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .asset-type-box .asset-type-icon {
  line-height: 1.1;
  margin-right: 0.2em;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row > label.btn {
  margin: 0.5em 0;
  padding: 0;
  flex: 1;
  line-height: 2em;
  background: #00a9ce;
  color: white;
  border-color: #0080ab;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .btn-group {
  display: flex;
  flex: 0 1 auto;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .btn-group .btn {
  line-height: 1;
  margin: 0.5em 0;
  background-color: transparent;
  color: #333;
  padding: 0.5em 1em;
  flex: 1;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .btn-group .btn.active {
  background-color: #00a9ce;
  color: white;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .btn-group .btn:hover {
  background-color: #0087ab;
  color: white;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row .choice-disabled-warn {
  text-align: center;
  flex: 1;
  margin: 0.5em 0;
  padding: 0em 1em;
  border-radius: 4rem;
  border: 1rem solid #0080ab;
  background: #00a9ce;
  color: white;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details .flex-row fdx-dropdown {
  flex: 1;
  margin-bottom: -9rem;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details span.row-label {
  width: 100%;
  font-weight: bold;
  margin-bottom: -1em;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details span.boxed-label {
  border: 1rem solid #d9d9d9;
  flex: 1;
  line-height: 38rem;
  padding: 0 1em;
  margin: 0.5em 0;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details span.boxed-btn {
  padding: 0 0.5em;
  margin: 0.5em 0;
  width: auto;
  font-size: 1.6em;
  line-height: 38rem;
  border: 1rem solid #d9d9d9;
  border-left: none;
  cursor: pointer;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details span.boxed-btn:hover:not(.disabled) {
  background: #d9d9d9;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner div.asset-details span.boxed-btn.disabled {
  cursor: default;
  color: #d9d9d9;
  border-color: transparent;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner.has-children {
  padding-left: 0;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner.selected {
  border: 1rem solid #00a9ce;
  box-shadow: 0rem 2rem 6rem 0 rgba(0, 160, 206, 0.1);
}
ul.asset-group-add-asset-tree-display li .related-asset-inner.selected .asset-details {
  box-shadow: none;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner.not-suggested ~ span.rule {
  opacity: 0.5;
}
ul.asset-group-add-asset-tree-display li .related-asset-inner.not-suggested:not(.selected) {
  background: #d9d9d9;
  opacity: 0.5;
}
ul.asset-group-add-asset-tree-display li span.icon {
  font-size: 2em;
  margin-left: 0.4em;
}
ul.asset-group-add-asset-tree-display li span.rule {
  margin: 0.5em;
  font-weight: normal;
  vertical-align: middle;
  color: #97510b;
  font-size: 13rem;
  border: 1rem solid #97510b;
  padding: 5rem;
  border-radius: 5rem;
}
ul.asset-group-add-asset-tree-display li .asset-select-options-dropdown-wrapper {
  display: inline-block;
}
ul.asset-group-add-asset-tree-display .btn.btn-select-options {
  width: auto;
  padding: 0.4em;
  margin: 0 -0.2em 0 0.4em;
  border-radius: 0.5em;
  color: #00a9ce;
}
ul.asset-group-add-asset-tree-display .btn.btn-select-options:before {
  display: inline-block;
  transform: rotate(90deg);
}
ul.asset-group-add-asset-tree-display .tooltip {
  max-width: initial;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-group-compare-chooser .modal-body {
  overflow: visible !important;
  min-height: 115rem;
}
fdx-mdb-asset-group-compare-chooser .compare-asset-group-chooser-footer {
  display: flex;
  gap: 15rem;
  padding: 0 15rem 15rem 15rem;
}
fdx-mdb-asset-group-compare-chooser .modal-row {
  height: 44rem;
  position: relative;
}
fdx-mdb-asset-group-compare-chooser .label {
  font-weight: bold;
  text-align: right;
  line-height: 40rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-group-create .form-group {
  margin-bottom: 0 !important;
}
fdx-mdb-asset-group-create .form-group .control-label {
  text-align: right;
  margin: 0;
}
fdx-mdb-asset-group-create .form-group .asset-group-type-title {
  margin-top: 9rem;
  font-weight: bold;
}
fdx-mdb-asset-group-create .form-group .asset-group-desc {
  padding: 10rem 5rem;
  color: #666;
}
fdx-mdb-asset-group-create .form-group input.form-control,
fdx-mdb-asset-group-create .form-group textarea.form-control {
  margin-bottom: 15rem;
}
fdx-mdb-asset-group-create .form-group input.error {
  border-color: #aa1c1c;
}
fdx-mdb-asset-group-create .form-group input.warning {
  border-color: #ce6c0d;
}
fdx-mdb-asset-group-create .form-group .plugins-loading {
  height: 150rem;
  position: relative;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .no-plugins {
  display: block;
  color: #6666;
  font-style: italic;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins {
  border: 1px solid #d9d9d9;
  max-height: 450rem;
  overflow-y: visible;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins.dataset-group {
  max-height: 586rem!important;
  overflow: visible!important;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin {
  border-bottom: 1px solid #d9d9d9;
  padding: 10rem 8rem 5rem 8rem;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin:last-child {
  border-bottom: none;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin:nth-child(odd) {
  background-color: #f6f6f6;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper fdx-dropdown,
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper .plugin-version {
  width: 250rem;
  align-self: center;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper .plugin-version {
  font-style: italic;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper .panel-text {
  flex: 1;
  line-height: 39rem;
  align-self: center;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper .edit-cats {
  align-self: center;
  font-size: 1.5em;
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-asset-group-create .form-group .plugins-scrollable-wrapper .plugins .plugin-wrapper .edit-cats:hover {
  color: #00677d;
}
fdx-mdb-asset-group-create .form-group #assetGroupPluginsCopyAllCatsBtn {
  color: #00a9ce;
}
fdx-mdb-asset-group-create .form-group .col-sm-1 {
  text-align: right;
}
fdx-mdb-asset-group-create .form-group .col-sm-1 .error-icon {
  font-size: 22rem;
  padding: 6rem;
}
fdx-mdb-asset-group-create .form-group .col-sm-1 .error-icon.fdx-circle-alert {
  color: #ce6c0d;
}
fdx-mdb-asset-group-create .form-group .col-sm-1 .error-icon.fdx-circle-remove {
  color: #aa1c1c;
}
fdx-mdb-asset-group-create .form-group.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #d2e6f7;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-asset-group-create .form-group.identifier input {
  width: 80%;
  display: inline-block;
}
fdx-mdb-asset-group-create .form-group.identifier button {
  width: calc(20% - 8rem);
}
fdx-mdb-asset-group-create .form-group .btn-wrapper {
  text-align: center;
}
fdx-mdb-asset-group-create .form-group .asset-btn {
  cursor: pointer;
  color: #00a9ce;
  display: inline-block;
  transition: all 0.15s;
  margin: 10rem 10rem 10rem 0;
}
fdx-mdb-asset-group-create .form-group .asset-btn:hover {
  color: #00677d;
}
fdx-mdb-asset-group-create .form-group .asset-btn span {
  vertical-align: text-bottom;
}
fdx-mdb-asset-group-create .form-group .asset-btn .fdxicon-regular {
  font-size: 16rem;
  vertical-align: top;
}
fdx-mdb-asset-group-create .form-group .asset-btn.disabled {
  color: #d9d9d9;
  cursor: not-allowed;
}
fdx-mdb-asset-group-create .form-group .asset-btn.disabled:hover {
  color: #d9d9d9 !important;
}
fdx-mdb-asset-group-create .form-group .error .dropdown-wrapper .dropdown {
  border: 1rem solid #aa1c1c !important;
  border-color: #aa1c1c !important;
}
fdx-mdb-asset-group-create .form-group .fdx-help {
  color: #999;
  top: 0 !important;
}
fdx-mdb-asset-group-create .form-group.standardName .control-label,
fdx-mdb-asset-group-create .form-group.standardVersion .control-label,
fdx-mdb-asset-group-create .form-group.files .control-label,
fdx-mdb-asset-group-create .form-group.for-submission .control-label {
  line-height: 20rem;
}
fdx-mdb-asset-group-create .form-group.external-standard .control-label {
  line-height: 20rem;
  margin-bottom: 15px;
}
fdx-mdb-asset-group-create .form-group.external-standard ul {
  list-style-type: none;
  margin: 0 0 15rem 0;
  padding-left: 0;
}
fdx-mdb-asset-group-create .form-group.external-standard ul li:not(.no-property-value-replacement)::before {
  content: '\BB';
}
fdx-mdb-asset-group-create .form-group.external-standard .external-standard-list-item {
  border-bottom: 1rem solid #ddd;
  padding: 5rem;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable {
  border: 1rem solid #d9d9d9;
  max-height: 145rem;
  overflow: auto;
  position: relative;
  max-width: 600rem;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable.hide-list {
  opacity: 0;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .ng-enter,
fdx-mdb-asset-group-create .form-group .files-list-sortable .ng-leave,
fdx-mdb-asset-group-create .form-group .files-list-sortable .ng-move {
  -webkit-transition: 0s;
  transition: 0s;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item {
  position: relative;
  width: 100%;
  cursor: grab;
  color: #333;
  padding: 8rem 10rem;
  line-height: 14rem;
  border-bottom: 1rem solid #d9d9d9;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item:nth-child(odd) {
  background-color: #F6F6F6;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item:last-child {
  border-bottom: none;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item span.text {
  width: calc(100% - 20rem);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item span.text:before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 4rem;
  color: #666;
  line-height: 0;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item span.text.invalid-file {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item span.fdx-remove {
  position: absolute;
  right: 5rem;
  top: 9rem;
  color: #666;
  cursor: pointer;
  font-size: 14rem;
}
fdx-mdb-asset-group-create .form-group .files-list-sortable .file-sortable-item:hover {
  box-shadow: 0rem 0rem 50rem -8rem #999;
  z-index: 300;
}
fdx-mdb-asset-group-create .form-group .no-property-value-replacement {
  color: #d9d9d9;
  font-style: italic;
}
fdx-mdb-asset-group-create .form-group .view-line {
  line-height: 38rem;
}
fdx-mdb-asset-group-create .form-group .document-list-view {
  margin-bottom: 10rem;
}
fdx-mdb-asset-group-create .form-group .list {
  max-height: 100rem;
  overflow: auto;
}
fdx-mdb-asset-group-create .form-group .list-line {
  padding-bottom: 2rem;
}
fdx-mdb-asset-group-create .form-group .list-line:before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 2rem;
  color: #666;
  line-height: 0;
}
fdx-mdb-asset-group-create .data-package {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  padding: 20rem 0 0 2rem;
}
fdx-mdb-asset-group-create .data-package label {
  flex: 1;
  align-self: center;
  text-align: left!important;
}
fdx-mdb-asset-group-create .data-package .form-control-static {
  width: 370rem;
  align-self: center;
}
fdx-mdb-asset-group-create .data-package .form-control {
  margin-bottom: 0!important;
}
fdx-mdb-asset-group-create .data-package .error-icon {
  font-size: 22rem;
  padding: 6rem;
}
fdx-mdb-asset-group-create .data-package .error-icon.fdx-circle-alert {
  color: #ce6c0d;
}
fdx-mdb-asset-group-create .data-package .error-icon.fdx-circle-remove {
  color: #aa1c1c;
}
fdx-mdb-asset-group-create .error-list {
  line-height: 38rem;
  padding: 0 5rem;
  cursor: pointer;
  text-align: left;
}
fdx-mdb-asset-group-create .error-list-msg {
  font-style: italic;
}
fdx-mdb-asset-group-create .error-list-msg .fdxixon-circled {
  font-size: 18rem;
  vertical-align: text-bottom;
}
fdx-mdb-asset-group-create .error-list-msg .error-msg {
  margin-right: 5rem;
  color: #aa1c1c;
}
fdx-mdb-asset-group-create .error-list-msg .warning-msg {
  color: #ce6c0d;
}
fdx-mdb-asset-group-create .error-list-box {
  position: absolute;
  overflow: auto;
  width: 350rem;
  max-height: 0;
  bottom: 39rem;
  left: 10rem;
  opacity: 0;
  background: #fff;
  border: 1rem solid #d9d9d9;
  box-shadow: 0 0 15rem -3rem #7b7b7b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
fdx-mdb-asset-group-create .error-list-item {
  padding: 0;
  opacity: 0;
  height: 0;
  text-align: left;
  border-bottom: 1rem solid #d9d9d9;
  line-height: 1;
  vertical-align: text-bottom;
  position: relative;
  -webkit-transition: all 0.3s 0.05s;
  transition: all 0.3s 0.05s;
}
fdx-mdb-asset-group-create .error-list-item .dupe {
  display: block;
  margin-left: 21rem;
}
fdx-mdb-asset-group-create .error-list-item .message {
  width: calc(100% - 21rem);
  display: inline-block;
}
fdx-mdb-asset-group-create .error-list-item .fdx-circle-alert {
  float: left;
  margin-right: 5rem;
  margin-top: -2rem;
  color: #ce6c0d;
}
fdx-mdb-asset-group-create .error-list-item .fdx-circle-remove {
  float: left;
  margin-right: 5rem;
  margin-top: -2rem;
  color: #aa1c1c;
}
fdx-mdb-asset-group-create .error-list-item:hover {
  background: #e1eef4;
}
fdx-mdb-asset-group-create .error-list:hover .error-list-box {
  opacity: 1;
  max-height: 400rem;
}
fdx-mdb-asset-group-create .error-list:hover .error-list-item {
  opacity: 1;
  height: auto;
  padding: 15rem;
}
fdx-mdb-asset-group-create .tooltip .tooltip-inner {
  width: 180rem;
  text-align: left;
}
fdx-mdb-asset-group-create .modal-footer button {
  width: auto !important;
  outline: none !important;
}
fdx-mdb-asset-group-create .prop-row .CAT-label-col,
fdx-mdb-asset-group-create .nested-row .CAT-label-col,
fdx-mdb-asset-group-create .prop-row .CAT-error-col,
fdx-mdb-asset-group-create .nested-row .CAT-error-col,
fdx-mdb-asset-group-create .prop-row .col-md-8,
fdx-mdb-asset-group-create .nested-row .col-md-8 {
  width: 100%;
}
fdx-mdb-asset-group-create .prop-row .CAT-label-col,
fdx-mdb-asset-group-create .nested-row .CAT-label-col {
  margin-bottom: 10rem;
  margin-top: 10rem;
}
fdx-mdb-asset-group-create .prop-row .col-md-8,
fdx-mdb-asset-group-create .nested-row .col-md-8 {
  min-height: 20rem;
}
fdx-mdb-asset-group-create .prop-row .CAT-error-col,
fdx-mdb-asset-group-create .nested-row .CAT-error-col {
  position: absolute;
  width: auto!important;
  right: 0rem;
  top: -5rem;
}
fdx-mdb-asset-group-create .edit-panel {
  position: relative;
  text-align: right;
  padding: 6rem 14rem 14rem 0;
  margin: 10rem 0 16rem !important;
}
fdx-mdb-asset-group-create .edit-panel-bg {
  position: absolute;
  height: 98%;
  width: 92%;
  border-radius: 6rem;
  background-color: #f6f6f6;
  right: 0;
}
fdx-mdb-asset-group-create .edit-panel-label {
  margin-top: 15rem;
}
fdx-mdb-asset-group-create .edit-panel .file-upload {
  text-align: left;
}
fdx-mdb-asset-group-create .edit-panel .file-upload-btns {
  margin-top: 10rem;
}
fdx-mdb-asset-group-create .create-dropdown-menu {
  top: inherit;
  bottom: 100%;
  right: 0;
  left: inherit;
  box-shadow: none;
  background-color: #00a9ce;
  border-radius: 5rem;
}
fdx-mdb-asset-group-create .create-dropdown-menu li {
  color: #fff;
  border-radius: 0;
  border-right: 0;
  border-left: 0;
  margin-left: 0 !important;
}
fdx-mdb-asset-group-create .create-dropdown .dropdown-btn {
  padding: 8rem 15rem;
}
fdx-mdb-asset-group-create .create-dropdown.open .dropdown-btn {
  background-color: #00a9ce !important;
  color: #fff !important;
  box-shadow: none;
  border-color: #0087AB !important;
}
ngb-modal-window.fdx-asset-group-create.modal {
  z-index: 1030 !important;
}
ngb-modal-backdrop.fdx-asset-group-create.modal-backdrop {
  z-index: 1030  !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-group-create-cats .modal-body {
  min-height: 400rem;
  padding: 15rem 40rem;
}
fdx-mdb-asset-group-create-cats .modal-body .CAT-tooltip {
  width: 450rem !important;
  max-width: 450rem !important;
}
fdx-mdb-asset-group-create-cats .modal-body fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper.open .dropdown-menu,
fdx-mdb-asset-group-create-cats .modal-body fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper:hover .dropdown-menu {
  width: 250rem !important;
}
fdx-mdb-asset-group-create-cats .modal-body fdx-mdb-cats-props .row .col-md-3 fdx-mdb-asset-error .error-wrapper .errors-list-item {
  width: 250rem !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-group-copy-cats .modal-body {
  padding-top: 0;
}
fdx-mdb-asset-group-copy-cats h1 {
  margin: 15rem 0;
}
fdx-mdb-asset-group-copy-cats .container-search-bar {
  height: 40rem;
  margin-bottom: 10rem;
}
fdx-mdb-asset-group-copy-cats .container-search-bar .filter {
  height: 40rem;
}
fdx-mdb-asset-group-copy-cats .container-list,
fdx-mdb-asset-group-copy-cats .asset-group-list {
  border: 1rem solid #d9d9d9;
  background: #fff;
  position: relative;
}
fdx-mdb-asset-group-copy-cats .container-list .vs-wrapper,
fdx-mdb-asset-group-copy-cats .asset-group-list .vs-wrapper {
  height: 100%;
}
fdx-mdb-asset-group-copy-cats .container-list .spinner,
fdx-mdb-asset-group-copy-cats .asset-group-list .spinner {
  z-index: 2999;
}
fdx-mdb-asset-group-copy-cats .container-list {
  height: 360rem;
}
fdx-mdb-asset-group-copy-cats .asset-group-list {
  height: 410rem;
}
fdx-mdb-asset-group-copy-cats .list-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 60rem;
}
fdx-mdb-asset-group-copy-cats .list-item-icon {
  font-size: 25rem;
}
fdx-mdb-asset-group-copy-cats .list-item-details {
  width: 100%;
  display: block;
  padding-left: 10rem;
}
fdx-mdb-asset-group-copy-cats .list-item-details-title {
  font-size: 17rem;
  display: block;
  line-height: 18rem;
}
fdx-mdb-asset-group-copy-cats .list-item-details-subtitle {
  font-size: 13rem;
  display: block;
}
fdx-mdb-asset-group-copy-cats fdx-virtual-scroll .renderer {
  transition-property: box-shadow !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.fdx-mdb-asset-group-list {
  padding: 0 0rem 5rem;
  background-color: #fff;
  margin: 0;
}
.fdx-mdb-asset-group-list .ng-enter,
.fdx-mdb-asset-group-list .ng-leave,
.fdx-mdb-asset-group-list .ng-move {
  transition: 0s;
}
.fdx-mdb-asset-group-list .loader {
  padding: 24rem;
  width: 100%;
}
.fdx-mdb-asset-group-list li {
  display: block;
  padding: 12rem 16rem;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.fdx-mdb-asset-group-list li:not(:last-child) {
  border-bottom: 1rem solid #d8d8d8;
}
.fdx-mdb-asset-group-list li .fdx-apps {
  margin-right: 5rem;
  font-size: 20rem;
}
.fdx-mdb-asset-group-list li .fdx-locked {
  font-size: 18rem;
  color: #ce6c0d;
}
.fdx-mdb-asset-group-list li .asset-group-text {
  line-height: 21rem;
  vertical-align: text-bottom;
  padding: 0 4rem;
}
.fdx-mdb-asset-group-list li .asset-group-text-type {
  font-size: 13rem;
  color: #777;
}
.fdx-mdb-asset-group-list li .asset-group-text-type:before {
  content: '(';
}
.fdx-mdb-asset-group-list li .asset-group-text-type:after {
  content: ')';
}
.fdx-mdb-asset-group-list li fdx-mdb-compliance-icon {
  vertical-align: text-bottom;
}
.fdx-mdb-asset-group-list li .fdx-edit,
.fdx-mdb-asset-group-list li .fdx-delete {
  float: right;
  font-size: 20rem;
  color: #00a9ce;
  cursor: pointer;
}
.fdx-mdb-asset-group-list li .fdx-delete {
  margin-left: 10rem;
}
.fdx-mdb-asset-group-list li.fdx-mdb-asset-group-list-create-wrapper {
  padding: 5rem 0 0 0;
}
.fdx-mdb-asset-group-list li:not(.fdx-mdb-asset-group-list-create-wrapper):hover {
  -webkit-box-shadow: 0rem 0rem 15rem -3rem #999;
  box-shadow: 0rem 0rem 15rem -3rem #999;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #fff;
  cursor: pointer;
}
.fdx-mdb-asset-group-list-create {
  width: 160rem;
  padding: 8rem 0;
  margin: 0 auto;
  text-align: center;
  color: #00a9ce;
  vertical-align: text-top;
  cursor: pointer;
}
.fdx-mdb-asset-group-list-create:hover {
  color: #00a9ce;
}
.fdx-mdb-asset-group-list-create .fdx-add {
  font-size: 24rem;
}
.fdx-mdb-asset-group-list-create-text {
  vertical-align: text-bottom;
  display: inline-block;
  margin: 0;
}
.fdx-mdb-asset-group-list-none {
  color: #999;
  font-style: italic;
  text-align: center;
}

fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalBody {
  overflow: hidden;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalBody-loading {
  height: 100rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMainMessage {
  padding: 20rem 20rem 10rem 20rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMainMessage #deleteAssetGroupModalQuestionIcon {
  display: block;
  margin-left: calc(50% - 9rem);
  font-size: 25rem;
  margin-bottom: 5rem;
  color: #0085a2;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMainMessage #deleteAssetGroupModalMessage {
  text-align: center;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalCascadeMessageWrapper {
  float: right;
  margin-right: 100rem;
  align-items: center;
  display: flex;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper {
  display: flex;
  flex-direction: column;
  background-color: #f5e2cf;
  border: 1px solid #ce6c0d;
  border-radius: 5rem;
  padding: 12rem 30rem;
  color: black;
  font-size: 14rem;
  font-weight: 500;
  margin-top: 10rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .warning-content {
  display: flex;
  margin: 0 0 0 15rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .warning-content #deleteAssetGroupModalMetaDataWarningIcon {
  color: #ce6c0d;
  font-size: 16rem;
  margin-right: 15rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .warning-content .warning-text-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 82%;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .warning-content .warning-text-wrapper #deleteAssetGroupModalMetaDataWarning {
  flex: 1;
  display: block;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .warning-content .warning-text-wrapper #deleteAssetGroupModalMetaDataWarningMappingsNotFixed {
  flex: 1;
  font-weight: bold;
  padding-bottom: 10rem;
  display: block;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .acknowledgement-wrapper {
  display: flex;
  align-items: center;
  margin-left: 45rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .acknowledgement-wrapper fdx-checkbox {
  order: -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 18rem;
  background-color: white;
  border-radius: 5rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .acknowledgement-wrapper fdx-checkbox label.fdx-input-checkbox i {
  width: 100%;
  height: 100%;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .acknowledgement-wrapper fdx-checkbox label.fdx-input-checkbox i:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-right: -4rem;
  margin-bottom: 5rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalMetaDataWarningWrapper .acknowledgement-wrapper #deleteAssetGroupModalMetaDataDeleteAcknowledgement {
  padding: 5rem 7rem;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalProcessingFooter #processing {
  outline: none;
  cursor: not-allowed;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalProcessingFooter #loadingSpinner {
  display: block;
  margin-left: 40rem;
  margin-top: -1rem;
  position: fixed;
  height: 24px;
  width: 24px;
}
@keyframes dots {
  0% {
    content: '.';
  }
  33% {
    content: '..';
  }
  66% {
    content: '...';
  }
  100% {
    content: '';
  }
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalProcessingFooter .loading::after {
  content: '';
  display: inline-block;
  animation: dots 1.5s steps(4, end) infinite;
  position: absolute;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalProcessingFooter .loading-dots {
  display: inline-block;
  font-size: 24px;
}
fdx-mdb-delete-asset-group-modal #deleteAssetGroupModalProcessingFooter .loading-dot {
  display: inline-block;
  margin-right: -4px;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

fdx-mdb-asset-group-menu-conversion .modal-body {
  padding: 25rem;
  margin-bottom: 0;
  min-height: 130rem;
}
fdx-mdb-asset-group-menu-conversion .validation-wrapper {
  display: flex;
  margin: 5rem 0;
  align-items: baseline;
}
fdx-mdb-asset-group-menu-conversion .validation-wrapper .validation-checkbox-label {
  color: #2a2a2a;
}
fdx-mdb-asset-group-menu-conversion .validation-wrapper .validation-checkbox-label.disabled {
  color: #727272;
}
fdx-mdb-asset-group-menu-conversion .validation-wrapper .validation-checkbox-sub-label {
  color: #727272;
}
fdx-mdb-asset-group-menu-conversion .validation-wrapper .validation-checkbox-warning {
  display: flex;
  align-items: center;
  color: #934e13;
}
fdx-mdb-asset-group-menu-conversion .validation-wrapper .validation-checkbox-warning .fdxicon-regular {
  color: #fdbb30;
  margin-right: 5rem;
  -webkit-transform: scale(1, 0.9);
  -ms-transform: scale(1, 0.9);
  transform: scale(1, 0.9);
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-asset-group-props {
  padding: 15rem 25rem 10rem;
  min-height: 150rem;
}
.fdx-mdb-asset-group-props .row {
  margin-bottom: 10rem;
}
.fdx-mdb-asset-group-props .row .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
.fdx-mdb-asset-group-props .row .desc {
  white-space: pre;
}
.fdx-mdb-asset-group-props label {
  font-weight: bold;
}
.fdx-mdb-asset-group-props .lists {
  margin-top: 10rem;
}
.fdx-mdb-asset-group-props .lists .list-group-item {
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fdx-mdb-asset-group-props .lists #remove-control .mdb-detail-header-menu-button.disabled {
  color: #d2d1d1;
  cursor: default;
}
.fdx-mdb-asset-group-props .lists #remove-control .mdb-detail-header-menu-button.disabled:hover {
  color: #d2d1d1;
}
.fdx-mdb-asset-group-props .lists #remove-control .tooltip {
  font-size: 14rem;
  line-height: 15rem;
}
.fdx-mdb-asset-group-props .doc-line:before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 4rem;
  color: #666;
  line-height: 0;
}
.fdx-mdb-asset-group-props .external-standard ul {
  list-style-type: none;
  padding-left: 0;
}
.fdx-mdb-asset-group-props .external-standard ul li:not(.no-property-value-replacement)::before {
  content: '\BB';
  margin-right: 5rem;
}
.fdx-mdb-asset-group-props .external-standard ul li:last-of-type .external-standard-comment label {
  margin-bottom: 0;
}
.fdx-mdb-asset-group-props .external-standard ul li .external-standard-comment {
  display: block;
  margin: 5rem 0 0 16rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-group-properties-validation .property {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
fdx-mdb-asset-group-properties-validation .property.expand {
  max-height: 200rem;
}
fdx-mdb-asset-group-properties-validation .validation.failed {
  margin-bottom: 10rem;
}
fdx-mdb-asset-group-properties-validation .validation.failed .validation-label {
  display: flex;
  gap: 3rem;
}
fdx-mdb-asset-group-properties-validation .validation-label {
  font-size: 16rem;
}
fdx-mdb-asset-group-properties-validation .validation-label.failed {
  color: #aa1c1c;
}
fdx-mdb-asset-group-properties-validation .validation-date {
  font-size: 12rem;
  color: #666;
}
fdx-mdb-asset-group-properties-validation .validation a {
  font-size: 12rem;
}
fdx-mdb-asset-group-properties-validation .validation a .fdxicon-regular {
  font-size: 11rem;
}
fdx-mdb-asset-group-properties-validation .validation .fdx-help {
  font-size: 13rem;
  color: #999;
  cursor: pointer;
  margin-left: 3rem;
  margin-top: 4rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-asset-group-upload-assets .modal-body {
  padding: 0;
  min-height: 100rem;
}
fdx-mdb-asset-group-upload-assets .modal-body-tab {
  padding: 0 15rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .tab-option {
  border-top: 0;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-group .control-label {
  text-align: right;
  font-weight: bold;
  line-height: 38rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .none {
  text-align: center;
  color: #666;
  font-style: italic;
  width: 100%;
  margin-top: 30rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .scrollable-none {
  margin-top: 5em;
  text-align: center;
  font-style: italic;
  color: #999;
}
fdx-mdb-asset-group-upload-assets .modal-body .search-controls .fdxicon-regular.fdx-search {
  padding: 12rem;
  position: absolute;
  right: 8rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .search-controls .form-control {
  height: 40rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .search-controls h3 {
  margin-bottom: 16rem!important;
}
fdx-mdb-asset-group-upload-assets .modal-body .search-controls .row {
  margin-bottom: 16rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel {
  border: 1rem solid #d9d9d9;
  margin: 0;
  padding: 15rem;
  margin-top: 15rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel fdx-radio-buttons label {
  line-height: 30rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel.libraries {
  position: relative;
  height: 300rem;
  overflow-y: auto;
  padding: 0;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel.libraries fdx-loader .spinner {
  z-index: unset;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel .control-label {
  line-height: unset;
  text-align: right;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel .col-20 {
  margin-top: 7rem;
  width: 20%;
  float: left;
  position: relative;
  padding-left: 8rem;
  padding-right: 8rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .form-panel .col-80 {
  width: 80%;
  float: left;
  position: relative;
  padding-left: 8rem;
  padding-right: 8rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel {
  position: relative;
  background-color: #fff;
  color: #333;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel:hover {
  box-shadow: 0 0 30rem -8rem #999;
  z-index: 600;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel-text {
  width: 87%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel-text-version {
  color: #666;
  max-width: 85%;
  vertical-align: middle;
  font-size: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .pull-right {
  margin: 1.1em 0.8em;
  position: absolute;
  top: 2rem;
  right: 0;
  font-size: 1em;
  color: #00677d;
  cursor: pointer;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .pull-right.select-btn {
  margin: 0;
  height: 3em;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .pull-right.select-btn fdx-radio-buttons label {
  line-height: 3em;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .panel-heading .panel-title {
  margin: 0;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .panel-heading .panel-title a {
  text-decoration: none;
  color: #333;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .panel-heading .panel-title a .panel-title-content {
  position: relative;
  margin: 0;
  padding: 0.7em;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .panel-heading .panel-title a .panel-title-content .container-type-icon {
  float: left;
  font-size: 1.6em;
  margin-right: 0.5em;
  margin-top: 2rem;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel:nth-child(odd) {
  background: #f6f6f6;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .panel-body .version {
  position: relative;
  padding: 0.4em 0.4em 0.4em 3em;
  border-bottom: 1rem solid #d9d9d9;
  background: #fff;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel .panel-body .version .panel-text {
  font-size: 0.9em;
}
fdx-mdb-asset-group-upload-assets .modal-body .panel-open .panel-title-content {
  background: #f6f6f6;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper {
  border: 1rem solid #e5e5e5;
  padding: 25rem 30rem;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper .form-control-inline {
  display: flex;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper .form-control-inline .no-file {
  font-style: italic;
  font-size: 13rem;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper .form-control-inline .file {
  padding-left: 15rem;
  padding-top: 5rem;
  color: #666;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper .form-control-inline .status-icon.fdxicon-regular {
  font-size: 18rem;
  margin-top: 6rem;
  margin-left: 10rem;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper .form-control-inline .status-icon.fdxicon-regular.fdx-circle-tick {
  color: #6aa445;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper .extensions {
  color: #666;
  padding-top: 8rem;
  font-size: 13rem;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper.upload-types {
  margin-top: 20rem;
  padding-left: 20rem;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper.upload-types .col-sm-3 {
  padding-right: 5rem;
  width: 20%;
  line-height: 20rem;
  padding-top: 10rem;
}
fdx-mdb-asset-group-upload-assets .upload-assets-wrapper.upload-types .col-sm-9 {
  padding-left: 0;
  width: 80%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-asset-group-validation .modal-body {
  padding-bottom: 15rem;
  min-height: 100rem;
}
.fdx-mdb-asset-group-validation .modal-body .no-active-plugins {
  text-align: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-reorder-assets .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 20rem;
  border-bottom: none;
  box-shadow: none;
}
.fdx-mdb-reorder-assets .modal-body {
  padding: 0;
  margin-bottom: 0;
}
.fdx-mdb-reorder-assets-header {
  display: flex;
  align-items: center;
}
.fdx-mdb-reorder-assets-header h3 {
  margin-right: 10rem;
}
.fdx-mdb-reorder-assets-header .assetTypeSelect {
  display: inline-block;
  width: 352rem;
}
.fdx-mdb-reorder-assets-header .control-label,
.fdx-mdb-reorder-assets-header .assetTypeSelect {
  margin: 5rem;
  vertical-align: middle;
}
.fdx-mdb-reorder-assets-header .control-label::after {
  content: ':';
}
.fdx-mdb-reorder-assets-list {
  background-color: #fff;
}
.fdx-mdb-reorder-assets-list .empty {
  color: #ababab;
  font-style: italic;
  text-align: center;
  margin-bottom: 28rem;
  font-size: 18rem;
}
.fdx-mdb-reorder-assets-list .empty.message {
  border-top: 1px solid #e3e3e3;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fdx-mdb-reorder-assets-list .loader {
  padding: 24rem;
  width: 100%;
}
.fdx-mdb-reorder-assets-list .reorderableAssetsItem {
  cursor: pointer;
  padding: 10rem;
  position: relative;
  border-bottom: 1px solid #d3d3d3;
}
.fdx-mdb-reorder-assets-list .reorderableAssetsItem .reorder-prompt-icon {
  position: absolute;
  right: 10rem;
  top: calc(50% - 8rem);
  opacity: 0;
  transition: 0.3s ease opacity;
}
.fdx-mdb-reorder-assets-list .reorderableAssetsItem:hover .reorder-prompt-icon {
  opacity: 1;
  transition: 0.3s ease opacity;
}
.fdx-mdb-reorder-assets-list .reorderableAssetsItem:active .reorder-prompt-icon {
  display: none;
}
.fdx-mdb-reorder-assets-list .reorderableAssetsItem:last-child {
  border-bottom: none;
}
.fdx-mdb-reorder-assets-list .list-item-title {
  font-size: 16rem;
}
.fdx-mdb-reorder-assets-list .loading-more-assets {
  position: relative;
  height: 42rem;
}
.fdx-mdb-reorder-assets .saving-overlay {
  background-color: #fcfcfc;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.fdx-mdb-reorder-assets #reorderableAssets.dragging .reorder-prompt-icon {
  display: none;
}
.fdx-mdb-reorder-assets div.assetBrowseListItem {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 71rem;
}
.fdx-mdb-reorder-assets div.assetBrowseListItem > span.fdxicon-regular {
  font-size: 20rem;
}
.fdx-mdb-reorder-assets div.assetBrowseListItem span.itemTitle {
  flex-grow: 1;
  line-height: 21rem;
  margin: 0 0 0 10rem;
  width: 63%;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fdx-mdb-reorder-assets div.assetBrowseListItem span.itemTitle .secondary,
.fdx-mdb-reorder-assets div.assetBrowseListItem span.itemTitle .tertiary {
  font-size: 12rem;
  line-height: 17rem;
  color: #333;
}
.fdx-mdb-reorder-assets div.assetBrowseListItem .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dashboard-grid-layout {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.header-fixed {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 9rem;
  left: 86rem;
  bottom: calc(100vh - 14%);
}
fdx-dashboard {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
fdx-dashboard .dashboard-grid-layout {
  grid-auto-rows: 1fr;
  height: fit-content;
}
fdx-dashboard .fdx-dashboard-box.header {
  padding-bottom: 4rem;
}
fdx-dashboard .fdx-dashboard-box.other {
  padding: 4rem;
}
fdx-dashboard .fdx-dashboard-box .widget-container {
  display: block;
  border: 1px solid #e9ebf2;
  border-radius: 4rem;
  background: #fff;
  overflow: hidden;
  position: relative;
  height: 100%;
}
fdx-dashboard .fdx-dashboard-box .widget-container-header {
  display: flex;
  align-items: baseline;
  padding-left: 15rem;
  padding-top: 10rem;
}
fdx-dashboard .fdx-dashboard-box .widget-container-header .fdxicon-regular {
  color: #4c4c4c;
  font-size: 20rem;
  margin-right: 5rem;
}
fdx-dashboard .fdx-dashboard-box .widget-container-header .header-text {
  text-transform: uppercase;
  vertical-align: top;
  line-height: 39rem;
  color: #4c4c4c;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
}
fdx-dashboard .fdx-dashboard-box .widget-container-body {
  border-top: 1px solid rgba(153, 153, 153, 0.2);
  padding: 0 20rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-header-widget .app-header {
  height: 100% !important;
}
fdx-header-widget .app-header .app-header-title {
  height: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
fdx-header-widget .app-header fdx-help-angular .fdx-help-container a {
  color: #fff;
  opacity: 0.6;
  animation: all ease-in-out 0.25s;
}
fdx-header-widget .app-header fdx-help-angular .fdx-help-container a:hover {
  color: #fff;
  opacity: 1;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-video-tour-widget .fdx-video-section {
  padding-top: 10rem;
}
fdx-video-tour-widget .fdx-video-section iframe {
  display: block;
  width: 300rem;
}
fdx-video-tour-widget .fdx-video-section .fdx-video-summary {
  margin-top: 10rem;
  margin-left: 17rem;
  line-height: 15rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-whats-new-widget .whats-new {
  height: fit-content;
  margin: 20rem 0;
}
fdx-whats-new-widget .whats-new .fdx-dashboard-new-entry:not(:last-child) {
  padding: 8rem 5rem 8rem 5rem;
  border-bottom: 1px solid #e9ebf2;
  margin: 0;
}
fdx-whats-new-widget .whats-new .fdx-dashboard-new-entry:last-child {
  padding: 8rem 5rem 0 5rem;
  margin: 0;
}
fdx-whats-new-widget .whats-new .clickable {
  color: #00a9ce;
  cursor: pointer;
}
fdx-whats-new-widget .whats-new .clickable:hover {
  background-color: rgba(0, 169, 206, 0.2);
  border-radius: 2px;
}
fdx-whats-new-widget .whats-new .clickable .fdx-arrow-5-e {
  font-size: 18rem;
  float: right;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-recent-widget {
  position: relative;
}
fdx-recent-widget .actions {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
}
fdx-recent-widget .actions .fdx-clear-history-button {
  float: right;
  color: #00a9ce;
  cursor: pointer;
  padding: 5rem 8rem;
  text-align: center;
  vertical-align: text-top;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-recent-widget .actions .fdx-clear-history-button .fdxicon-regular {
  font-size: 12rem;
  margin-right: 0;
  color: #00a9ce;
}
fdx-recent-widget .actions .fdx-clear-history-button .button-label {
  line-height: 12rem;
  display: inline-block;
  margin: 0;
}
fdx-recent-widget .actions .fdx-clear-history-button:hover {
  color: #00677d;
}
fdx-recent-widget .actions .dash-dropdown {
  height: 30rem;
  width: fit-content;
  border: none;
}
fdx-recent-widget .actions .dash-dropdown .dropdown-wrapper .dropdown {
  height: 30rem;
  line-height: 30rem;
  min-height: 30rem;
  border: 1px solid rgba(153, 153, 153, 0.2);
}
fdx-recent-widget .actions .dash-dropdown .dropdown-wrapper .dropdown .fdx-triangle-s {
  line-height: 30rem;
  font-size: 11rem;
}
fdx-recent-widget .actions .dash-dropdown .dropdown-wrapper .dropdown .dropdown-options {
  transition: none;
}
fdx-recent-widget .actions .dash-dropdown .dropdown-wrapper .dropdown.open ul {
  border: solid 1rem #d9d9d9;
}
fdx-recent-widget .actions .dash-dropdown .dropdown-wrapper .dropdown ul {
  transition: none;
  min-width: 170rem;
}
fdx-recent-widget .actions .dash-dropdown ul {
  min-width: 170rem;
}
fdx-recent-widget .actions .dash-dropdown.form-control.dropdown-select.one-select > div {
  padding: 6rem 0 8rem 6rem!important;
}
fdx-recent-widget .history {
  flex: 1;
}
fdx-recent-widget .history .history-header {
  display: flex;
  justify-content: space-between;
}
fdx-recent-widget .history .history-header .history-header-left {
  flex: 1 0 30%;
}
fdx-recent-widget .history .history-header .actions {
  flex: 1 0 70%;
}
fdx-recent-widget .history .history-header .actions {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
fdx-recent-widget .history .history-header .actions > div {
  display: inline-block;
}
fdx-recent-widget .history .history-header .dropdown {
  border: 1rem solid #ddd;
  padding: 5rem;
  height: 30rem;
}
fdx-recent-widget .history .history-header .dropdown.history-dropdown {
  cursor: pointer;
  margin-right: 10rem;
}
fdx-recent-widget .history .history-header .dropdown .fdx-triangle-s {
  font-size: 11rem;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu {
  right: 0;
  left: initial;
  min-width: 220rem;
  cursor: initial;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu h6 {
  padding: 0 5rem;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu hr {
  margin: 10rem 0 10rem 0;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu hr:first-of-type {
  margin-top: 0;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu .all {
  display: block;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu .all,
fdx-recent-widget .history .history-header .dropdown .dropdown-menu li {
  padding: 5rem;
  cursor: pointer;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu .all:hover,
fdx-recent-widget .history .history-header .dropdown .dropdown-menu li:hover {
  background-color: #d7e8ef;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu ul {
  list-style-type: none;
  padding-left: 0;
}
fdx-recent-widget .history .history-header .dropdown .dropdown-menu .filter-history-input-container {
  padding: 5rem;
}
fdx-recent-widget .history-content {
  height: calc(100vh - 200rem);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
fdx-recent-widget .history-content.none {
  justify-content: center;
}
fdx-recent-widget .history-content-none {
  color: #d3d3d3;
  font-style: italic;
}
fdx-recent-widget .history-content-card {
  border-bottom: 1px solid #e9ebf2;
  width: 100%;
  cursor: pointer;
}
fdx-recent-widget .history-content-card-line {
  display: flex;
  align-items: flex-end;
}
fdx-recent-widget .history-content-card-icon {
  font-size: 22rem;
  margin: 20rem 10rem 20rem;
  color: #666;
}
fdx-recent-widget .history-content-card-title {
  font-size: 16rem;
  margin: 20rem 5rem 20rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-recent-widget .history-content-card-container {
  flex-grow: 1;
  font-size: 13rem;
  color: #666;
  padding: 0 5rem 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-recent-widget .history-content-card-version {
  flex-grow: 1;
  font-size: 13rem;
  color: #666;
  padding: 0 10rem 20rem;
  text-align: right;
  min-width: 100rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-recent-widget .history-content-card-version .fdxicon-regular {
  color: #999;
  font-size: 15rem;
  vertical-align: top;
  margin-right: 3rem;
}
fdx-recent-widget .history-content-card-version .cont-version {
  font-weight: bold;
}
fdx-recent-widget .history-content-card-date {
  flex-grow: 1;
  font-size: 13rem;
  color: #666;
  padding: 0 5rem 20rem;
  min-width: 152rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-recent-widget .history-content-card-date .fdxicon-regular {
  color: #999;
  font-size: 15rem;
  vertical-align: top;
  margin-right: 3rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-all-favorites-widget {
  position: relative;
}
fdx-all-favorites-widget .widget-container {
  overflow: visible;
}
fdx-all-favorites-widget .header-types {
  position: absolute;
  width: fit-content;
  right: 0;
  top: 16rem;
}
fdx-all-favorites-widget .header-types span {
  cursor: pointer;
  color: #00a9ce;
  margin: 0 5rem;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12rem;
}
fdx-all-favorites-widget .header-types span.active {
  font-weight: bold;
  text-decoration: 5px underline #00a9ce;
  text-underline-position: under;
  text-underline-offset: 10rem;
}
fdx-all-favorites-widget .fav-header {
  vertical-align: top;
  min-height: 30rem;
  padding-top: 10rem;
}
fdx-all-favorites-widget .fav-header .text {
  text-transform: uppercase;
  line-height: 39rem;
  color: #4c4c4c;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
}
fdx-all-favorites-widget .fav-header .filter-by {
  text-transform: uppercase;
  float: right;
  color: #999;
  font-size: 11rem;
  margin-top: 9rem;
  margin-right: 5rem;
}
fdx-all-favorites-widget .favourites-content {
  overflow-x: auto;
  margin-bottom: 20rem;
  clear: both;
}
fdx-all-favorites-widget .favourites-content.none {
  justify-content: center;
}
fdx-all-favorites-widget .favourites-content-none {
  color: #d3d3d3;
  font-style: italic;
  padding: 20rem 0 5rem;
}
fdx-all-favorites-widget .favourites-content-card {
  flex-basis: calc(33.33% - 8rem);
  width: calc(33.33% - 8rem);
  flex-grow: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border-radius: 4rem;
  border: 1px solid #e9ebf2;
  padding: 0 10rem;
  margin-top: 10rem;
  margin-right: 10rem;
  min-height: 125rem;
}
fdx-all-favorites-widget .favourites-content-card-wrapper {
  display: flex;
  flex-direction: row;
}
fdx-all-favorites-widget .favourites-content-card-line {
  display: flex;
  align-items: flex-end;
}
fdx-all-favorites-widget .favourites-content-card-line.bottom-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
}
fdx-all-favorites-widget .favourites-content-card-icon {
  font-size: 22rem;
  margin: 30rem 10rem;
  color: #666;
}
fdx-all-favorites-widget .favourites-content-card-title {
  font-size: 16rem;
  margin: 30rem 5rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-all-favorites-widget .favourites-content-card-type,
fdx-all-favorites-widget .favourites-content-card-container {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 5rem 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-all-favorites-widget .favourites-content-card-type .fdxicon-regular,
fdx-all-favorites-widget .favourites-content-card-container .fdxicon-regular {
  font-size: 11rem;
  margin-right: 3rem;
}
fdx-all-favorites-widget .favourites-content-card-type.sub-title,
fdx-all-favorites-widget .favourites-content-card-container.sub-title {
  position: absolute;
  padding: 0;
  top: 48rem;
  left: 58rem;
  max-width: calc(100% - 66rem);
}
fdx-all-favorites-widget .favourites-content-card-version {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 10rem 20rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-all-favorites-widget .favourites-content-card-version .fdxicon-regular {
  color: #999;
  font-size: 11rem;
  margin-right: 3rem;
}
fdx-all-favorites-widget .favourites-content-card-version .cont-version {
  margin-left: 3rem;
  font-weight: bold;
}
fdx-all-favorites-widget .favourites-content-card .fdx-remove {
  position: absolute;
  top: 0;
  font-size: 13rem;
  top: 10rem;
  right: 10rem;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-all-favorites-widget .favourites-content-card .fdx-remove:hover {
  opacity: 1;
}
fdx-all-favorites-widget .dash-dropdown {
  float: right;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown {
  height: 30rem;
  line-height: 30rem;
  min-height: 30rem;
  border: none;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown .fdx-triangle-s {
  line-height: 30rem;
  font-size: 11rem;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown .select-label {
  padding-right: 31rem;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown .dropdown-options {
  transition: none;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown.open ul {
  border: solid 1rem #d9d9d9;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown ul,
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown .dropdown-menu.show {
  transition: none;
  min-width: 170rem;
  left: auto;
  right: 0;
  border: 1rem solid #ccc;
}
fdx-all-favorites-widget .dash-dropdown .dropdown-wrapper .dropdown .empty {
  width: unset;
  font-style: normal;
  font-weight: bold;
  font-size: 11rem;
  text-transform: uppercase;
  color: #999;
}
fdx-all-favorites-widget .dash-dropdown .clearButton {
  display: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.to-dos-header {
  display: flex;
}
.to-dos-header .header-text {
  width: 70%;
}
.to-dos-header .add-todos-button {
  color: #00a9ce;
  cursor: pointer;
  text-align: center;
  vertical-align: text-top;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.to-dos-header .add-todos-button .fdxicon-regular {
  font-size: 14rem !important;
  color: #00a9ce !important;
}
.todo {
  overflow: auto;
  max-height: 212px;
}
.todo-container {
  padding: 15px 0;
}
.todo-container-list {
  padding: 8rem 5rem 8rem 5rem;
  border-bottom: 1px solid #e9ebf2;
  margin: 0;
}
.todo-container-list .form-group {
  margin-bottom: 0;
  height: auto;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.todo-container-list .form-group .fdxicon-regular.fdx-delete {
  color: #00a9ce;
}
.todo-container-list .form-group textarea {
  resize: none;
  border: none;
  min-height: 35px;
  height: 35px;
  field-sizing: content;
  padding: 5px;
  box-sizing: border-box;
  white-space: pre-wrap;
  overflow: hidden;
}
.todo-container-list .form-group textarea:focus {
  outline: none;
}
.todo-container-list input[type=text] {
  border: none;
  width: 100%;
  height: 35px;
}
.todo-container-list input:focus {
  outline: none;
}
.todo-container-list-delete {
  padding-top: 8px;
  cursor: pointer;
}
.todo-container-list-text {
  overflow-wrap: break-word;
  padding: 0 5px;
  white-space: pre-wrap;
}
.todo-container-list.current-todo {
  background-color: rgba(0, 169, 206, 0.1);
  border-radius: 2px;
}
.todo-container-list.current-todo textarea {
  background-color: rgba(0, 169, 206, 0);
}
.todo-container-none {
  min-height: 187rem;
  color: #d3d3d3;
  font-style: italic;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-asset-groups-favorites-widget {
  position: relative;
}
fdx-asset-groups-favorites-widget .header-text .h-title,
fdx-asset-groups-favorites-widget .header-text .h-subtitle {
  line-height: 15rem;
  display: block;
}
fdx-asset-groups-favorites-widget .header-text .h-subtitle {
  font-size: x-small;
  font-weight: 100;
}
fdx-asset-groups-favorites-widget .header-types {
  position: absolute;
  width: fit-content;
  right: 0;
  top: 16rem;
}
fdx-asset-groups-favorites-widget .header-types span {
  cursor: pointer;
  color: #00a9ce;
  margin: 0 5rem;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12rem;
}
fdx-asset-groups-favorites-widget .header-types span.active {
  font-weight: bold;
  text-decoration: 5px underline #00a9ce;
  text-underline-position: under;
  text-underline-offset: 10rem;
}
fdx-asset-groups-favorites-widget .header-filter {
  vertical-align: top;
  min-height: 30rem;
  position: absolute;
  width: fit-content;
  right: 0;
  top: 13rem;
  padding: 0rem 24rem 20rem 6rem;
}
fdx-asset-groups-favorites-widget .header-filter .text {
  text-transform: uppercase;
  line-height: 39rem;
  color: #4c4c4c;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown {
  float: right;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper {
  min-height: 30rem;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown {
  height: 30rem;
  line-height: 30rem;
  min-height: 30rem;
  border: none;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .fdx-triangle-s {
  line-height: 30rem;
  font-size: 11rem;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .select-label {
  padding-right: 31rem;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .dropdown-options {
  transition: none;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown.open ul {
  border: solid 1rem #d9d9d9;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown ul,
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .dropdown-menu.show {
  transition: none;
  min-width: 170rem;
  left: auto;
  right: 0;
  border: 1rem solid #ccc;
}
fdx-asset-groups-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .empty {
  width: unset;
  font-style: normal;
  font-weight: bold;
  font-size: 11rem;
  text-transform: uppercase;
  color: #999;
}
fdx-asset-groups-favorites-widget .header-filter .filter-by {
  text-transform: uppercase;
  float: right;
  color: #999;
  font-size: 11rem;
  margin-top: 9rem;
  margin-right: 5rem;
}
fdx-asset-groups-favorites-widget .favourites-content {
  overflow-x: auto;
  margin-bottom: 20rem;
}
fdx-asset-groups-favorites-widget .favourites-content.none {
  justify-content: center;
}
fdx-asset-groups-favorites-widget .favourites-content-none {
  color: #d3d3d3;
  font-style: italic;
  padding: 20rem 0 5rem;
}
fdx-asset-groups-favorites-widget .favourites-content-card {
  flex-basis: calc(33.33% - 8rem);
  width: calc(33.33% - 8rem);
  flex-grow: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border-radius: 4rem;
  border: 1px solid #e9ebf2;
  padding: 0 10rem;
  margin-top: 10rem;
  margin-right: 10rem;
  min-height: 125rem;
}
fdx-asset-groups-favorites-widget .favourites-content-card-wrapper {
  display: flex;
  flex-direction: row;
}
fdx-asset-groups-favorites-widget .favourites-content-card-line {
  display: flex;
  align-items: flex-end;
}
fdx-asset-groups-favorites-widget .favourites-content-card-line.bottom-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
}
fdx-asset-groups-favorites-widget .favourites-content-card-icon {
  font-size: 22rem;
  margin: 30rem 10rem;
  color: #666;
}
fdx-asset-groups-favorites-widget .favourites-content-card-title {
  font-size: 16rem;
  margin: 30rem 5rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-asset-groups-favorites-widget .favourites-content-card-type,
fdx-asset-groups-favorites-widget .favourites-content-card-container {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 5rem 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-asset-groups-favorites-widget .favourites-content-card-type .fdxicon-regular,
fdx-asset-groups-favorites-widget .favourites-content-card-container .fdxicon-regular {
  font-size: 11rem;
}
fdx-asset-groups-favorites-widget .favourites-content-card-type.sub-title,
fdx-asset-groups-favorites-widget .favourites-content-card-container.sub-title {
  position: absolute;
  padding: 0;
  top: 48rem;
  left: 58rem;
  max-width: calc(100% - 66rem);
}
fdx-asset-groups-favorites-widget .favourites-content-card-version {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 10rem 20rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-asset-groups-favorites-widget .favourites-content-card-version .fdxicon-regular {
  color: #999;
  font-size: 11rem;
}
fdx-asset-groups-favorites-widget .favourites-content-card-version .cont-version {
  font-weight: bold;
}
fdx-asset-groups-favorites-widget .favourites-content-card .fdx-remove {
  position: absolute;
  top: 0;
  font-size: 13rem;
  top: 10rem;
  right: 10rem;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-asset-groups-favorites-widget .favourites-content-card .fdx-remove:hover {
  opacity: 1;
}
fdx-asset-groups-favorites-widget fdx-dropdown .clearButton {
  display: none;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content {
  overflow-y: auto;
  height: calc(100vh - 200rem);
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card {
  flex-basis: 50%;
  width: 50%;
  margin-right: 0;
  padding: 0 5rem;
  border: none;
  min-height: auto;
  padding: 0;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card:nth-child(odd) {
  padding-right: 5rem;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card:nth-child(even) {
  padding-left: 5rem;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card-inner {
  border: 1px solid #e9ebf2;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line {
  position: static;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line .favourites-content-card-container,
.portrait fdx-asset-groups-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line .favourites-content-card-version {
  padding-bottom: 5rem;
}
.portrait fdx-asset-groups-favorites-widget .favourites-content-card-wrapper {
  flex-wrap: wrap;
}
.portrait fdx-asset-groups-favorites-widget .dropdown-toggle {
  width: 100rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-asset-favorites-widget {
  position: relative;
}
fdx-asset-favorites-widget .header-text .h-title,
fdx-asset-favorites-widget .header-text .h-subtitle {
  line-height: 15rem;
  display: block;
}
fdx-asset-favorites-widget .header-text .h-subtitle {
  font-size: x-small;
  font-weight: 100;
}
fdx-asset-favorites-widget .header-types {
  position: absolute;
  width: fit-content;
  right: 0;
  top: 16rem;
}
fdx-asset-favorites-widget .header-types span {
  cursor: pointer;
  color: #00a9ce;
  margin: 0 5rem;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12rem;
}
fdx-asset-favorites-widget .header-types span.active {
  font-weight: bold;
  text-decoration: 5px underline #00a9ce;
  text-underline-position: under;
  text-underline-offset: 10rem;
}
fdx-asset-favorites-widget .header-filter {
  vertical-align: top;
  min-height: 30rem;
  padding-left: 100rem;
  position: absolute;
  width: fit-content;
  right: 0;
  top: 13rem;
  padding: 0rem 24rem 20rem 6rem;
}
fdx-asset-favorites-widget .header-filter .text {
  text-transform: uppercase;
  line-height: 39rem;
  color: #4c4c4c;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown {
  float: right;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper {
  min-height: 30rem;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown {
  height: 30rem;
  line-height: 30rem;
  min-height: 30rem;
  border: none;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .fdx-triangle-s {
  line-height: 30rem;
  font-size: 11rem;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .select-label {
  padding-right: 31rem;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .dropdown-options {
  transition: none;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown.open ul {
  border: solid 1rem #d9d9d9;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown ul,
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .dropdown-menu.show {
  transition: none;
  min-width: 170rem;
  left: auto;
  right: 0;
  border: 1rem solid #ccc;
}
fdx-asset-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .empty {
  width: unset;
  font-style: normal;
  font-weight: bold;
  font-size: 11rem;
  text-transform: uppercase;
  color: #999;
}
fdx-asset-favorites-widget .header-filter .filter-by {
  text-transform: uppercase;
  float: right;
  color: #999;
  font-size: 11rem;
  margin-top: 9rem;
  margin-right: 5rem;
}
fdx-asset-favorites-widget .favourites-content {
  overflow-x: auto;
  margin-bottom: 20rem;
}
fdx-asset-favorites-widget .favourites-content.none {
  justify-content: center;
}
fdx-asset-favorites-widget .favourites-content-none {
  color: #d3d3d3;
  font-style: italic;
  padding: 20rem 0 5rem;
}
fdx-asset-favorites-widget .favourites-content-card {
  flex-basis: calc(33.33% - 8rem);
  width: calc(33.33% - 8rem);
  flex-grow: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border-radius: 4rem;
  border: 1px solid #e9ebf2;
  padding: 0 10rem;
  margin-top: 10rem;
  margin-right: 10rem;
  min-height: 125rem;
}
fdx-asset-favorites-widget .favourites-content-card-wrapper {
  display: flex;
  flex-direction: row;
}
fdx-asset-favorites-widget .favourites-content-card-line {
  display: flex;
  align-items: flex-end;
}
fdx-asset-favorites-widget .favourites-content-card-line.bottom-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
}
fdx-asset-favorites-widget .favourites-content-card-icon {
  font-size: 22rem;
  margin: 30rem 10rem;
  color: #666;
}
fdx-asset-favorites-widget .favourites-content-card-title {
  font-size: 16rem;
  margin: 30rem 5rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-asset-favorites-widget .favourites-content-card-type,
fdx-asset-favorites-widget .favourites-content-card-container {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 5rem 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-asset-favorites-widget .favourites-content-card-type .fdxicon-regular,
fdx-asset-favorites-widget .favourites-content-card-container .fdxicon-regular {
  font-size: 11rem;
}
fdx-asset-favorites-widget .favourites-content-card-type.sub-title,
fdx-asset-favorites-widget .favourites-content-card-container.sub-title {
  position: absolute;
  padding: 0;
  top: 48rem;
  left: 58rem;
  max-width: calc(100% - 66rem);
}
fdx-asset-favorites-widget .favourites-content-card-version {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 10rem 20rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-asset-favorites-widget .favourites-content-card-version .fdxicon-regular {
  color: #999;
  font-size: 11rem;
}
fdx-asset-favorites-widget .favourites-content-card-version .cont-version {
  font-weight: bold;
}
fdx-asset-favorites-widget .favourites-content-card .fdx-remove {
  position: absolute;
  top: 0;
  font-size: 13rem;
  top: 10rem;
  right: 10rem;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-asset-favorites-widget .favourites-content-card .fdx-remove:hover {
  opacity: 1;
}
fdx-asset-favorites-widget fdx-dropdown .dropdown-wrapper .open .dropdown-menu .dropdown-options {
  max-height: 148rem;
}
fdx-asset-favorites-widget fdx-dropdown .clearButton {
  display: none;
}
.portrait fdx-asset-favorites-widget .favourites-content {
  overflow-y: auto;
  height: calc(100vh - 200rem);
}
.portrait fdx-asset-favorites-widget .favourites-content-card {
  flex-basis: 50%;
  width: 50%;
  margin-right: 0;
  padding: 0 5rem;
  border: none;
  min-height: auto;
  padding: 0;
}
.portrait fdx-asset-favorites-widget .favourites-content-card:nth-child(odd) {
  padding-right: 5rem;
}
.portrait fdx-asset-favorites-widget .favourites-content-card:nth-child(even) {
  padding-left: 5rem;
}
.portrait fdx-asset-favorites-widget .favourites-content-card-inner {
  border: 1px solid #e9ebf2;
}
.portrait fdx-asset-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line {
  position: static;
}
.portrait fdx-asset-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line .favourites-content-card-container,
.portrait fdx-asset-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line .favourites-content-card-version {
  padding-bottom: 5rem;
}
.portrait fdx-asset-favorites-widget .favourites-content-card-wrapper {
  flex-wrap: wrap;
}
.portrait fdx-asset-favorites-widget .dropdown-toggle {
  width: 100rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-container-favorites-widget {
  position: relative;
}
fdx-container-favorites-widget .header-text .h-title,
fdx-container-favorites-widget .header-text .h-subtitle {
  line-height: 15rem;
  display: block;
}
fdx-container-favorites-widget .header-text .h-subtitle {
  font-size: x-small;
  font-weight: 100;
}
fdx-container-favorites-widget .header-types {
  position: absolute;
  width: fit-content;
  right: 0;
  top: 16rem;
}
fdx-container-favorites-widget .header-types span {
  cursor: pointer;
  color: #00a9ce;
  margin: 0 5rem;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12rem;
}
fdx-container-favorites-widget .header-types span.active {
  font-weight: bold;
  text-decoration: 5px underline #00a9ce;
  text-underline-position: under;
  text-underline-offset: 10rem;
}
fdx-container-favorites-widget .header-filter {
  vertical-align: top;
  min-height: 30rem;
  position: absolute;
  width: fit-content;
  right: 0;
  top: 13rem;
  padding: 0rem 24rem 20rem 6rem;
}
fdx-container-favorites-widget .header-filter .text {
  text-transform: uppercase;
  line-height: 39rem;
  color: #4c4c4c;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
}
fdx-container-favorites-widget .header-filter .dash-dropdown {
  float: right;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper {
  min-height: 30rem;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown {
  height: 30rem;
  line-height: 30rem;
  min-height: 30rem;
  border: none;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .fdx-triangle-s {
  line-height: 30rem;
  font-size: 11rem;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .select-label {
  padding-right: 31rem;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .dropdown-options {
  transition: none;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown.open ul {
  border: solid 1rem #d9d9d9;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown ul,
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .dropdown-menu.show {
  transition: none;
  min-width: 170rem;
  left: auto;
  right: 0;
  border: 1rem solid #ccc;
}
fdx-container-favorites-widget .header-filter .dash-dropdown .dropdown-wrapper .dropdown .empty {
  width: unset;
  font-style: normal;
  font-weight: bold;
  font-size: 11rem;
  text-transform: uppercase;
  color: #999;
}
fdx-container-favorites-widget .header-filter .filter-by {
  text-transform: uppercase;
  float: right;
  color: #999;
  font-size: 11rem;
  margin-top: 9rem;
  margin-right: 5rem;
}
fdx-container-favorites-widget .favourites-content {
  overflow-x: auto;
  margin-bottom: 20rem;
}
fdx-container-favorites-widget .favourites-content.none {
  justify-content: center;
}
fdx-container-favorites-widget .favourites-content-none {
  color: #d3d3d3;
  font-style: italic;
  padding: 20rem 0 5rem;
}
fdx-container-favorites-widget .favourites-content-card {
  flex-basis: calc(33.33% - 8rem);
  width: calc(33.33% - 8rem);
  flex-grow: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  border-radius: 4rem;
  border: 1px solid #e9ebf2;
  padding: 0 10rem;
  margin-top: 10rem;
  margin-right: 10rem;
  min-height: 125rem;
}
fdx-container-favorites-widget .favourites-content-card-wrapper {
  display: flex;
  flex-direction: row;
}
fdx-container-favorites-widget .favourites-content-card-line {
  display: flex;
  align-items: flex-end;
}
fdx-container-favorites-widget .favourites-content-card-line.bottom-line {
  position: absolute;
  bottom: 0;
  right: 10rem;
  left: 10rem;
}
fdx-container-favorites-widget .favourites-content-card-icon {
  font-size: 22rem;
  margin: 30rem 10rem;
  color: #666;
}
fdx-container-favorites-widget .favourites-content-card-title {
  font-size: 16rem;
  margin: 30rem 5rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-container-favorites-widget .favourites-content-card-type,
fdx-container-favorites-widget .favourites-content-card-container {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 5rem 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-container-favorites-widget .favourites-content-card-type .fdxicon-regular,
fdx-container-favorites-widget .favourites-content-card-container .fdxicon-regular {
  font-size: 11rem;
}
fdx-container-favorites-widget .favourites-content-card-type.sub-title,
fdx-container-favorites-widget .favourites-content-card-container.sub-title {
  position: absolute;
  padding: 0;
  top: 48rem;
  left: 58rem;
  max-width: calc(100% - 66rem);
}
fdx-container-favorites-widget .favourites-content-card-version {
  flex-grow: 1;
  font-size: 12rem;
  color: #666;
  padding: 0 10rem 20rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-container-favorites-widget .favourites-content-card-version .fdxicon-regular {
  color: #999;
  font-size: 11rem;
}
fdx-container-favorites-widget .favourites-content-card-version .cont-version {
  font-weight: bold;
}
fdx-container-favorites-widget .favourites-content-card .fdx-remove {
  position: absolute;
  top: 0;
  font-size: 13rem;
  top: 10rem;
  right: 10rem;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-container-favorites-widget .favourites-content-card .fdx-remove:hover {
  opacity: 1;
}
fdx-container-favorites-widget fdx-dropdown .clearButton {
  display: none;
}
.portrait fdx-container-favorites-widget .favourites-content {
  overflow-y: auto;
  height: calc(100vh - 200rem);
}
.portrait fdx-container-favorites-widget .favourites-content-card {
  flex-basis: 50%;
  width: 50%;
  margin-right: 0;
  padding: 0 5rem;
  border: none;
  min-height: auto;
  padding: 0;
}
.portrait fdx-container-favorites-widget .favourites-content-card:nth-child(odd) {
  padding-right: 5rem;
}
.portrait fdx-container-favorites-widget .favourites-content-card:nth-child(even) {
  padding-left: 5rem;
}
.portrait fdx-container-favorites-widget .favourites-content-card-inner {
  border: 1px solid #e9ebf2;
}
.portrait fdx-container-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line {
  position: static;
}
.portrait fdx-container-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line .favourites-content-card-container,
.portrait fdx-container-favorites-widget .favourites-content-card-inner .favourites-content-card-line.bottom-line .favourites-content-card-version {
  padding-bottom: 5rem;
}
.portrait fdx-container-favorites-widget .favourites-content-card-wrapper {
  flex-wrap: wrap;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-change-request-widget .dropdown.dropup .dropdown-menu {
  top: 100% !important;
  bottom: auto;
}
fdx-change-request-widget .widget-container-header {
  position: relative;
}
fdx-change-request-widget .widget-container-header .filter-input {
  width: 20%;
  position: absolute;
  right: 10rem;
  top: 10rem;
}
fdx-change-request-widget .widget-container-header .filter-input fdx-dropdown-angular .dropdown-wrapper .dropdown {
  min-height: 30rem;
  line-height: 30rem;
}
fdx-change-request-widget .widget-container-header .filter-input fdx-dropdown-angular .dropdown-wrapper .dropdown .dropdown-toggle .fdxicon-filled {
  line-height: 30rem;
}
fdx-change-request-widget .widget-container-body .cr-list-header .fdxicon-regular {
  font-size: 27rem;
  color: #00a9ce;
}
fdx-change-request-widget .widget-container-body .cr-list-header .fdxicon-regular:hover {
  color: #00a9ce;
}
fdx-change-request-widget .widget-container-body .cr-list-view {
  margin-right: 5rem;
}
fdx-change-request-widget .widget-container-body .cr-list-table-head {
  display: table;
  width: 100%;
  table-layout: fixed;
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th {
  cursor: default;
  transform: background 0.25s;
  position: relative;
  padding: 8rem 12rem;
  vertical-align: middle;
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th:first-child {
  width: 10%;
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th .orderIcon {
  display: inline-block;
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th .orderIcon span {
  font-size: 1em;
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th.st-sort-ascent .orderIcon span:before {
  content: "\e609";
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th.st-sort-descent .orderIcon span:before {
  content: "\e60a";
}
fdx-change-request-widget .widget-container-body .cr-list-table-head tr th:hover {
  background: rgba(0, 0, 0, 0.1);
}
fdx-change-request-widget .widget-container-body .cr-list-table-body {
  overflow-y: auto;
  display: block;
  max-height: calc(100vh - 810rem);
}
fdx-change-request-widget .widget-container-body .cr-list-table-body tr:last-child td {
  border-bottom: 0rem;
}
fdx-change-request-widget .widget-container-body .cr-list-table-body tr {
  cursor: pointer;
  display: table;
  width: 100%;
  table-layout: fixed;
  height: 40rem;
}
fdx-change-request-widget .widget-container-body .cr-list-table-body tr .cr-none {
  color: #999;
  font-style: italic;
  text-align: center;
}
fdx-change-request-widget .widget-container-body .cr-list-table-body tr#crLoadMoreWrapper {
  cursor: default;
  text-align: center;
}
fdx-change-request-widget .widget-container-body .cr-list-table-body tr td:first-child {
  width: 10%;
}
fdx-change-request-widget .widget-container-body .cr-list-table-body tr td div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
fdx-change-request-widget .widget-container-body .cr-list-table-footer {
  border-top: 1rem solid #d9d9d9;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cr-summary-list .integrated-modal-body,
.asset-cr-summary-list .integrated-modal-body {
  padding: 0 !important;
}
.cr-summary-list-header .filter-input,
.asset-cr-summary-list-header .filter-input {
  min-width: 300rem;
  padding: 7rem;
}
.cr-summary-list-header .filter-input .fdx-remove,
.asset-cr-summary-list-header .filter-input .fdx-remove {
  right: 9rem;
  top: 13rem;
}
.cr-summary-list-header .dropdown,
.asset-cr-summary-list-header .dropdown {
  margin-right: 52rem;
}
.cr-summary-list-header .button.open .dropdown-menu,
.asset-cr-summary-list-header .button.open .dropdown-menu {
  height: 80rem;
}
.cr-summary-list-header .dropdown.button:hover > .dropdown-menu,
.asset-cr-summary-list-header .dropdown.button:hover > .dropdown-menu {
  display: block;
}
.cr-summary-list-header .fdx-smart-table-controls-columns,
.asset-cr-summary-list-header .fdx-smart-table-controls-columns {
  margin-right: 20rem;
}
.asset-cr-summary-list-header .filter-input {
  min-width: 260rem;
  position: relative;
}
.asset-cr-summary-list-header .filter-input .fdx-circle-remove {
  right: 9rem;
  top: 13rem;
}
.asset-cr-summary-list-header .button.open .dropdown-menu {
  height: 79rem;
}
.asset-cr-summary-list-header .fdx-smart-table-controls-columns {
  margin-left: 0rem;
  margin-right: 15rem;
}
.cr-summary-list-view,
.asset-cr-summary-list-view {
  margin-right: 5rem;
}
.cr-summary-list-header,
.asset-cr-summary-list-header {
  border-bottom: 1rem solid #d3d3d3;
  margin: 0 0 -49rem 0 !important;
  display: flex;
  align-items: center;
}
.cr-summary-list-header .filter-input,
.asset-cr-summary-list-header .filter-input {
  width: 50%;
  z-index: 1;
}
.cr-summary-list-header button,
.asset-cr-summary-list-header button {
  margin: 7rem 0;
  z-index: 1;
}
.cr-summary-list-header button.active,
.asset-cr-summary-list-header button.active {
  background: #00a9ce;
  border: 1rem solid #00a9ce;
  color: #fff;
}
.cr-summary-list-header .add-cr-btn,
.asset-cr-summary-list-header .add-cr-btn {
  flex-grow: 1;
  text-align: right;
}
.cr-summary-list-header .add-cr-btn .fdx-circle-add,
.asset-cr-summary-list-header .add-cr-btn .fdx-circle-add {
  padding-right: 1rem;
  z-index: 1;
}
.cr-summary-list-header .fdx-menu,
.asset-cr-summary-list-header .fdx-menu {
  width: 50rem !important;
  text-align: center;
  height: 100%;
  padding: 13rem 10rem 12rem;
  margin-top: 0;
  background-color: transparent;
  z-index: 2;
}
.cr-summary-list-header .fdxicon-regular,
.asset-cr-summary-list-header .fdxicon-regular {
  font-size: 27rem;
  color: #00a9ce;
}
.cr-summary-list-header .fdxicon-regular:hover,
.asset-cr-summary-list-header .fdxicon-regular:hover {
  color: #00a9ce;
}
.cr-summary-list-header .fdxicon-regular.fdx-columns,
.asset-cr-summary-list-header .fdxicon-regular.fdx-columns {
  font-size: 18rem;
}
.cr-summary-list-header .button,
.asset-cr-summary-list-header .button {
  cursor: pointer;
}
.cr-summary-list-header .button .dropdown-menu,
.asset-cr-summary-list-header .button .dropdown-menu {
  width: 160rem;
  top: 52rem;
  left: -110rem;
  display: block;
  height: 0rem;
  opacity: 0;
  overflow: hidden;
  border: none;
  z-index: 1;
  border-top-right-radius: 0;
  padding: 0 !important;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
  -webkit-box-shadow: 0 2px 9rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 9rem rgba(0, 0, 0, 0.2);
}
.cr-summary-list-header .button .dropdown-menu li:hover,
.asset-cr-summary-list-header .button .dropdown-menu li:hover {
  background: #38aace;
  color: white;
}
.cr-summary-list-header .button .dropdown-menu li:hover:not(:last-child):after,
.asset-cr-summary-list-header .button .dropdown-menu li:hover:not(:last-child):after {
  opacity: 0;
}
.cr-summary-list-header .button .dropdown-menu li span,
.asset-cr-summary-list-header .button .dropdown-menu li span {
  font: bold 9rem "PT Sans", "interstate", Helvetica, sans-serif;
  padding: 7rem;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cr-summary-list-header .button .dropdown-menu li:not(:last-child):after,
.asset-cr-summary-list-header .button .dropdown-menu li:not(:last-child):after {
  content: '';
  display: block;
  margin: 0 auto;
  height: 1px;
  width: 90%;
  opacity: 1;
  background-color: #eeeeee;
}
.cr-summary-list-header .button.open,
.asset-cr-summary-list-header .button.open {
  -webkit-box-shadow: 0 2px 9rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 9rem rgba(0, 0, 0, 0.2);
}
.cr-summary-list-header .button.open .fdx-ellipsis-v,
.asset-cr-summary-list-header .button.open .fdx-ellipsis-v {
  color: #333;
}
.cr-summary-list-header .button.open .dropdown-menu,
.asset-cr-summary-list-header .button.open .dropdown-menu {
  opacity: 1;
  height: 80rem;
}
.cr-summary-list-header .button.open .no-cr,
.asset-cr-summary-list-header .button.open .no-cr {
  height: 52rem !important;
}
.cr-summary-list-body,
.asset-cr-summary-list-body {
  min-height: 300rem;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-controls-columns,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-controls-columns {
  margin-right: 4rem !important;
  margin-top: 2rem;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper {
  overflow: auto;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table thead,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table thead {
  display: table-header-group;
  width: auto;
  table-layout: fixed;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table thead th,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table thead th {
  background-color: inherit;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody {
  max-height: 300rem;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody tr,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody tr {
  width: 100%;
  table-layout: fixed;
  white-space: nowrap;
  height: 50rem;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody tr td,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody tr td {
  background-color: inherit !important;
  max-width: 100%;
  white-space: nowrap;
}
.cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody tr td:first-child,
.asset-cr-summary-list-body .cr-container-smart-table .fdx-smart-table-wrapper table tbody tr td:first-child {
  white-space: nowrap;
}
.cr-summary-list-body .load-more-wrapper,
.asset-cr-summary-list-body .load-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50rem;
}
.cr-summary-list-body .load-more-wrapper .cr-none,
.asset-cr-summary-list-body .load-more-wrapper .cr-none {
  color: #999;
  font-style: italic;
  text-align: center;
}
.cr-summary-list-body .load-more-wrapper#crLoadMoreWrapper,
.asset-cr-summary-list-body .load-more-wrapper#crLoadMoreWrapper {
  cursor: default;
  text-align: center;
}

.download-modal .label {
  font-weight: bold;
  margin-top: 12rem;
}
.download-modal .row {
  margin-bottom: 15rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
.download-modal .column-group .checkbox {
  display: inline-block;
  margin: 2rem 10rem;
  width: 45%;
}
.download-modal .column-group .checkbox.all {
  font-style: italic;
  margin-top: 6rem;
}
.download-modal .select-pages {
  width: 100%;
  position: relative;
}
.download-modal .select-pages div {
  display: inline-block;
  margin: 5rem;
  max-width: 60rem;
}
.download-modal .select-pages.disabled {
  color: #e1e1e1;
  font-style: italic;
}
.download-modal.modal-body {
  overflow: visible!important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.create-cr .modal-header {
  display: flex;
  justify-content: space-between;
}
.create-cr .modal-header-actions {
  display: flex;
}
.create-cr .modal-header-actions .close {
  display: flex;
}
.create-cr-template {
  overflow: visible;
}
.create-cr-template-new {
  text-align: center;
  color: #A81E19;
  margin: 10rem 0;
}
.create-cr-system {
  overflow: visible;
}
.create-cr-system input[type="checkbox"] {
  width: 20rem;
  height: 20rem;
  margin: 10rem;
}
.create-cr-system .text-list {
  margin: 9rem 0 0 0;
}
.create-cr-system .text-list .fdx-circle-remove {
  float: right;
}
.create-cr-system .asset-input {
  width: 300rem;
  display: inline-block;
}
.create-cr-system .unknown-asset {
  color: #999;
  font-style: italic;
}
.create-cr-system .add-text {
  color: #00a9ce;
  text-decoration: underline;
  cursor: pointer;
  position: absolute;
  right: 15rem;
  text-align: center;
}
.create-cr-system label {
  line-height: 19rem !important;
  padding-top: 10rem;
}
.create-cr-system .loading-asset-message .col-md-9 {
  position: relative;
  height: 35rem;
}
.create-cr-system .loading-asset-message .col-md-9 .icon {
  position: absolute;
  left: 25rem;
  top: 10rem;
}
.create-cr-system .loading-asset-message .col-md-9 .text {
  position: absolute;
  left: 50rem;
}
.create-cr-system .none-selected {
  color: #999;
  display: inline-block;
  font-style: italic;
  margin-top: 5rem;
}
.create-cr-custom-none {
  color: #999;
  font-size: 18rem;
  text-align: center;
}
.create-cr div[uib-datepicker-popup-wrap] {
  position: absolute;
  z-index: 1;
}
.create-cr div[uib-datepicker-popup-wrap] ul {
  top: 0 !important;
  left: -6rem !important;
  padding-bottom: 0;
}
.create-cr .form-control-error {
  padding: 0 !important;
}
.create-cr .create-cr-template {
  min-height: 55rem;
}
.create-cr .create-cr-template,
.create-cr .modal-overflow {
  overflow-y: visible !important;
}
.create-cr .file-list-wrapper {
  max-height: 130rem !important;
  margin-top: 5rem !important;
}
.create-cr .input-with-icon-container {
  position: relative;
}
.create-cr .input-with-icon-container .url-alert-icon {
  color: #aa1c1c;
  left: 0;
  padding: 10rem;
  position: absolute;
  top: 0;
}
.create-cr .input-with-icon-container .url-alert-control {
  border-color: #aa1c1c;
  padding-left: 35rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#fdxMdbCRSearch .app-header-controls .cr-button {
  display: inline-flex;
  margin-top: 13rem;
  margin-left: 20rem;
  cursor: pointer;
  align-items: center;
}
#fdxMdbCRSearch .app-header-controls .cr-button .fdxicon-regular {
  opacity: 0.5;
  color: #fff;
  font-size: 16rem;
  margin: 6rem 6rem 6rem 6rem;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
#fdxMdbCRSearch .app-header-controls .cr-button .text {
  color: #fff;
  font-size: 14rem;
  vertical-align: text-bottom;
}
#fdxMdbCRSearch .app-header-controls .cr-button:hover .fdxicon-regular {
  opacity: 1;
}
#fdxMdbCRSearch .app-content {
  width: 100%;
  transition: 0.3s ease all;
  display: flex;
  overflow: hidden;
}
#fdxMdbCRSearch .app-content #cr-filter-list {
  background-color: #fff;
  width: 500rem;
  flex: 0 0 500rem;
  border-right: 1rem solid #e5e5e5;
  overflow-y: auto;
  overflow-x: hidden;
}
#fdxMdbCRSearch .app-content #cr-filter-list .cr-inline-search {
  padding-bottom: 15rem;
  position: relative;
}
#fdxMdbCRSearch .app-content #cr-filter-list .cr-inline-search input {
  padding-left: 35rem;
}
#fdxMdbCRSearch .app-content #cr-filter-list .cr-inline-search .cr-search-icon {
  position: absolute;
  left: 10rem;
  top: 10rem;
  margin: 0;
}
#fdxMdbCRSearch .app-content #cr-search-results {
  height: 100%;
  flex: 1 0;
  overflow: auto;
}
#fdxMdbCRSearch .app-content #cr-search-results .remove-filter {
  position: absolute;
  margin-left: -5rem;
  margin-top: 3rem;
  color: #b7b2b2;
  cursor: pointer;
  background-color: #F6F6F6;
}
#fdxMdbCRSearch .app-content #cr-search-results .cr-cs-content-list-menu {
  margin-right: 25rem;
}
#fdxMdbCRSearch .app-content #cr-search-results .cr-cs-content-list-menu .fdx-menu {
  color: #00a9ce;
  font-size: 20rem;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
#fdxMdbCRSearch .app-content #cr-search-results .cr-cs-content-list-menu .fdx-menu:hover {
  opacity: 1;
}
#fdxMdbCRSearch .app-content #cr-search-results #actions-column {
  color: transparent;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results {
  padding: 10rem 15rem 0;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results fdx-smart-table .fdx-smart-table-wrapper {
  background-color: red;
  overflow: visible;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results fdx-smart-table .fdx-smart-table-wrapper table td.id {
  white-space: nowrap;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results #crCreate,
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results #crDownload {
  z-index: 1;
  position: absolute;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results #crCreate {
  left: 15rem;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results #crDownload {
  right: 80rem;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results .fdx-circle-remove {
  color: #ce6c0d;
  margin-left: 10rem;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results .fdx-alert {
  color: #aa1c1c;
  margin-left: 10rem;
}
#fdxMdbCRSearch .app-content #cr-search-results #cr-sr-results #cr-sr-load-more-wrapper {
  margin: 1.5em 0;
  text-align: center;
}
#fdxMdbCRSearch .app-content.browserClosed {
  width: calc(100% + 500rem);
  transform: translate3d(-500rem, 0, 0);
}
#fdxMdbCRSearch .none {
  color: #6666;
  font-style: italic;
}
.fdx-mdb-cr-hide-filters {
  position: absolute;
  bottom: 15rem;
  padding: 5rem 10rem !important;
  transition: 0.3s ease all;
  overflow: hidden;
  color: #999;
  background-color: #fff;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  border: 1rem solid #E1E1E1;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  white-space: nowrap;
  width: 35rem;
  line-height: 16rem;
  z-index: 3;
}
.fdx-mdb-cr-hide-filters .browse-message {
  padding-left: 5rem;
}
.fdx-mdb-cr-hide-filters:focus {
  outline: none !important;
}
.fdx-mdb-cr-hide-filters.closed:hover {
  width: 118rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cr-view .fdx-logs,
.cr-view .fdx-edit,
.cr-view .fdx-delete {
  cursor: pointer;
  color: #00a9ce;
  font-size: 18rem;
}
.cr-view .fdx-edit {
  margin-right: 2rem;
}
.cr-view .text-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cr-view .cr-view-body-container {
  max-height: 695rem;
  overflow-y: auto;
}
.cr-view .cr-view-body-container .cr-view-body {
  display: flex;
  align-items: stretch;
}
.cr-view .cr-view-body-container .cr-view-body label {
  font-weight: bold;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-column-section-summary-text-desc {
  white-space: pre-wrap;
}
.cr-view .cr-view-body-container .cr-view-body .section-body {
  padding: 15rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary {
  padding: 10rem 30rem 0 30rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-title {
  font-size: 22rem;
  font-weight: bold;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-title,
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-title-none {
  margin-bottom: 20rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-desc {
  white-space: break-spaces;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-title-none,
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-desc-none {
  color: #999;
  font-style: italic;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-summary-text-title-none {
  font-size: 18rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab {
  padding-top: 20rem;
  margin: 0 -9rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab .tab-content {
  padding: 30rem 20rem 20rem 40rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab ul {
  padding-left: 40rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab ul uib-tab-heading {
  display: flex;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab ul uib-tab-heading > span:first-child {
  padding-top: 3rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab ul .tab-counter {
  margin-left: 5rem;
  background-color: #00a9ce;
  color: #fff;
  padding: 5rem;
  border-radius: 50%;
  width: 20rem;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab ul li {
  background-color: #F8F8F8;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-tab ul li a {
  height: 52rem;
  border-radius: 0;
  padding: 15rem 25rem;
  font-weight: bold;
  font-size: 12rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side {
  border-left: 2px solid #E5E5E5;
  background-color: #F8F8F8;
  padding: 0 30rem 30rem 30rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties,
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-related-assets {
  padding-top: 20rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties-header,
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-related-assets-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #E5E5E5;
  padding-bottom: 10rem;
  align-items: center;
  margin-bottom: 15rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties-title,
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-related-assets-title {
  text-transform: uppercase;
  color: #B2B2B2;
  font-weight: bold;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties .property > div:first-child {
  text-align: right;
  padding-right: 20rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties .property .property-icon {
  vertical-align: middle;
  margin-right: 5rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties p {
  margin: 0 0 5rem;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties p .unknown-asset {
  color: #999;
  font-style: italic;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties p.note-type {
  white-space: pre;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties p.none {
  color: #999;
  font-style: italic;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties .cr-view-column-section-properties-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cr-view .cr-view-body-container .cr-view-body .cr-view-section-side .cr-view-column-section-properties .cr-view-column-section-properties-actions div:first-child {
  margin-right: 8rem;
}
.icon-btn {
  display: flex !important;
  align-items: center;
  justify-content: space-around;
}
.icon-btn > span:first-child {
  margin-right: 5rem;
}
.fdx-cr-due-date-upcoming-warning {
  margin-left: 5rem;
  color: #ce6c0d;
}
.fdx-cr-due-date-upcoming-alert {
  margin-left: 5rem;
  color: #aa1c1c;
}
@media only screen and (max-width: 768px) {
  .cr-view .cr-view-body-container .cr-view-body {
    display: block;
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cr-view-column-section-comments {
  margin-bottom: 20rem;
}
.cr-view-column-section-comments-show {
  color: #00a9ce;
}
.cr-view-column-section-comments-add {
  height: 140rem;
  margin-bottom: 10rem;
}
.cr-view-column-section-comments-add button {
  margin: 5rem;
  float: right;
}
.cr-view-column-section-comments-comment {
  margin-bottom: 10rem;
}
.cr-view-column-section-comments-comment-details {
  display: flex;
}
.cr-view-column-section-comments-comment-details .avatar {
  display: inline-block;
}
.cr-view-column-section-comments-comment-details .content {
  border: 2px solid #E8E8E8;
  border-radius: 3rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem 10rem;
  margin: 0 10rem;
}
.cr-view-column-section-comments-comment-details .content > div {
  display: flex;
  justify-content: space-between;
}
.cr-view-column-section-comments-comment-details .cr-user {
  display: inline-block;
  line-height: 30rem;
  vertical-align: top;
  font-size: 16rem;
  font-weight: bold;
}
.cr-view-column-section-comments-comment-details .cr-created {
  display: inline-block;
  line-height: 33rem;
  font-size: 12rem;
  color: #4c4c4c;
  vertical-align: top;
  margin-left: 5rem;
}
.cr-view-column-section-comments-comment-details .fdx-delete {
  display: flex;
  align-items: center;
}
.cr-view-column-section-comments-comment-body {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.cr-view-column-section-comments-none {
  color: #999;
  font-style: italic;
  margin: 0;
}
button {
  margin-bottom: 20rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.update-cr-system input[type="checkbox"] {
  width: 20rem;
  height: 20rem;
  margin: 10rem;
}
.update-cr-system .text-list {
  margin: 9rem 0 0 0;
}
.update-cr-system .text-list .fdx-circle-remove {
  float: right;
}
.update-cr-system .asset-input {
  width: 300rem;
  display: inline-block;
}
.update-cr-system .unknown-asset {
  color: #999;
  font-style: italic;
}
.update-cr-system .add-text {
  color: #00a9ce;
  text-decoration: underline;
  cursor: pointer;
  position: absolute;
  right: 15rem;
}
.update-cr-system .loading-asset-message .col-md-9 {
  position: relative;
  height: 35rem;
}
.update-cr-system .loading-asset-message .col-md-9 .icon {
  position: absolute;
  left: 25rem;
  top: 10rem;
}
.update-cr-system .loading-asset-message .col-md-9 .text {
  position: absolute;
  left: 50rem;
}
.update-cr-system .none-selected {
  color: #999;
  display: inline-block;
  font-style: italic;
  margin-top: 5rem;
}
.update-cr div[uib-datepicker-popup-wrap] {
  position: absolute;
  z-index: 1;
}
.update-cr div[uib-datepicker-popup-wrap] ul {
  top: 0 !important;
  left: -6rem !important;
  padding-bottom: 0;
}
.update-cr .form-control-error {
  padding: 0 !important;
}
.update-cr .input-with-icon-container {
  position: relative;
}
.update-cr .input-with-icon-container .url-alert-icon {
  color: #aa1c1c;
  left: 0;
  padding: 10rem;
  position: absolute;
  top: 0;
}
.update-cr .input-with-icon-container .url-alert-control {
  border-color: #aa1c1c;
  padding-left: 35rem;
}
.modal-overflow {
  overflow: visible!important;
}
.file-list-wrapper {
  max-height: 130rem!important;
  margin-top: 5rem !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cr-view-column-section-related-assets section {
  max-height: 300rem;
  overflow: overlay;
}
.cr-view-column-section-related-assets article {
  border: 1px solid #ccc;
  border-radius: 2rem;
  padding: 8rem;
  margin-bottom: 8rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cr-view-column-section-related-assets article > div:first-child .property-icon,
.cr-view-column-section-related-assets article > div:first-child > a {
  margin-right: 5rem;
}
.cr-view-column-section-related-assets article > div:first-child a {
  text-decoration: none;
  color: #626161;
}
.cr-view-column-section-related-assets article > div:first-child a:hover {
  color: #333333;
}
.cr-view-column-section-related-assets article > div:first-child .unknown-asset,
.cr-view-column-section-related-assets article > div:first-child .known-asset {
  margin-right: 3rem;
}
.cr-view-column-section-related-assets article .fdx-menu {
  color: #00a9ce;
}
.cr-view-column-section-related-assets article .remove-selection,
.cr-view-column-section-related-assets article .fdx-menu {
  cursor: pointer;
}
.cr-view-column-section-related-assets .icon-btn {
  text-transform: capitalize;
}
.cr-view-column-section-related-assets .none {
  color: #999;
  font-style: italic;
}
.asset-cr-dropdown-menu {
  width: 230rem;
}
.asset-cr-dropdown-menu-label {
  text-transform: uppercase;
  font-size: 11rem;
}
.asset-cr-dropdown-menu li {
  padding: 10rem;
  cursor: pointer;
}
.asset-cr-dropdown-menu li span.fdxicon-regular {
  margin-right: 9rem;
  vertical-align: middle;
  color: #000 !important;
}
.asset-cr-dropdown-menu li fdx-mdb-view-change-request-completed .cr-view-completed-version-button .fdxicon-regular {
  margin-left: -6rem;
}
.asset-cr-dropdown-menu li fdx-mdb-view-change-request-completed .cr-view-completed-version-button-label {
  color: #333;
  text-transform: uppercase;
  font-size: 11rem;
}
.asset-cr-dropdown-menu li:hover {
  background-color: #00a9ce;
  color: white !important;
}
.asset-cr-dropdown-menu li:hover span.fdxicon-regular,
.asset-cr-dropdown-menu li:hover span.dropdown-icon {
  color: white !important;
}
.asset-cr-dropdown-menu li:hover fdx-mdb-view-change-request-completed .cr-view-completed-version-button-label {
  color: white;
}
.asset-cr-dropdown-menu li:hover fdx-mdb-view-change-request-completed .cr-view-completed-version-label {
  color: white;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.update-cr .modal-header h3 {
  text-transform: capitalize;
}
.update-cr-system input[type="checkbox"] {
  width: 20rem;
  height: 20rem;
  margin: 10rem;
}
.update-cr-system .text-list {
  margin: 9rem 0 0 0;
}
.update-cr-system .text-list .fdx-circle-remove {
  float: right;
}
.update-cr-system .asset-input {
  width: 300rem;
  display: inline-block;
}
.update-cr-system .unknown-asset {
  color: #999;
  font-style: italic;
  margin-right: 3rem;
}
.update-cr-system .add-text {
  color: #00a9ce;
  text-decoration: underline;
  cursor: pointer;
  position: absolute;
  right: 15rem;
}
.update-cr-system .loading-asset-message .col-md-9 {
  position: relative;
  height: 35rem;
}
.update-cr-system .loading-asset-message .col-md-9 .icon {
  position: absolute;
  left: 25rem;
  top: 10rem;
}
.update-cr-system .loading-asset-message .col-md-9 .text {
  position: absolute;
  left: 50rem;
}
.update-cr-system .none-selected {
  color: #999;
  display: inline-block;
  font-style: italic;
  margin-top: 5rem;
}
.update-cr div[uib-datepicker-popup-wrap] {
  position: absolute;
  z-index: 1;
}
.update-cr div[uib-datepicker-popup-wrap] ul {
  top: 0 !important;
  left: -6rem !important;
  padding-bottom: 0;
}
.update-cr .form-control-error {
  padding: 0 !important;
}
fdx-mdb-view-change-request-edit-assets .modal-overflow {
  height: 340rem;
  overflow: auto!important;
}
fdx-mdb-view-change-request-edit-assets fdx-dropdown .selected-list {
  display: none;
}
fdx-mdb-view-change-request-edit-assets fdx-mdb-view-change-request-completed {
  display: flex;
  align-items: center;
}
fdx-mdb-view-change-request-edit-assets .file-list-wrapper {
  max-height: 130rem!important;
  margin-top: 5rem !important;
}
fdx-mdb-view-change-request-edit-assets .file-list-wrapper .file-list .file-item {
  border-radius: 20rem;
  border: 1px solid #d9d9d9;
  padding: 6rem 12rem;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
fdx-mdb-view-change-request-edit-assets .file-list-wrapper .file-list .file-item .fdx-circle-remove {
  color: #00a9ce;
  font-size: 20rem;
}
fdx-mdb-view-change-request-edit-assets .file-list-wrapper .file-list .file-item-info,
fdx-mdb-view-change-request-edit-assets .file-list-wrapper .file-list .file-item-info .list-item-text {
  display: flex;
  align-items: baseline;
}
fdx-mdb-view-change-request-edit-assets .remove-selection {
  cursor: pointer;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cr-view-completed-version-button {
  color: #00a9ce !important;
  margin-left: 5rem;
  position: static !important;
}
.cr-view-completed-version-button:hover {
  cursor: pointer;
  color: #00a9ce;
}
.cr-view-completed-version-label {
  color: #999;
  margin-left: 5rem;
  font-size: 13rem;
}

fdx-mdb-view-change-request-completed-modal .modal-body {
  overflow: visible;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cr-view-column-section-files-add {
  color: #00a9ce;
}
.cr-view-column-section-files-none {
  color: #999;
  font-style: italic;
  margin: 0;
}
.change-request-view-files {
  max-height: 150rem;
  overflow-y: auto;
}
.change-request-view-files .file-row {
  display: flex;
  margin-bottom: 5rem;
}
.change-request-view-files .card {
  display: flex;
  align-items: center;
}
.change-request-view-files .card .card-body {
  padding: 5rem;
  border-radius: 15rem;
}
.change-request-view-files a,
.change-request-view-files a:link,
.change-request-view-files a:link.btn-link {
  color: #333;
  text-decoration: none;
}
.change-request-view-files .text-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.change-request-view-files .fdx-download,
.change-request-view-files .fdx-file {
  margin: 0 5rem;
}
.change-request-view-files .fdx-circle-remove {
  margin-left: 10rem;
  cursor: pointer;
  color: #00a9ce;
}
.change-request-view-files .change-request-view-file-download {
  display: flex;
  align-items: center;
}
.change-request-view-files .change-request-view-file-download:hover .fdx-download {
  color: #00a9ce;
}
.mb {
  margin-bottom: 20rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cr-view-column-section-users {
  min-height: 51rem;
}
.cr-view-column-section-users .user-container,
.cr-view-column-section-users .user-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cr-view-column-section-users .view-change-request-users {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 5rem;
}
.cr-view-column-section-users .user-container {
  margin-bottom: 15rem;
}
.cr-view-column-section-users .user-container label {
  text-align: right;
  padding-right: 20rem;
  margin-bottom: 0;
}
.cr-view-column-section-users .user-container .user-wrapper {
  cursor: pointer;
  justify-content: space-between;
}
.cr-view-column-section-users .user-container .user-wrapper > div {
  display: flex;
  align-items: center;
}
.cr-view-column-section-users .user-container .user-wrapper > div .avatar {
  margin-right: 10rem;
}
.cr-view-column-section-users .user-container .user-wrapper:hover .fdx-edit {
  color: #00a9ce;
}
.cr-view-column-section-users .user-container .user-wrapper .fdx-edit {
  font-size: 18rem;
}
.cr-view-column-section-users .user-container-unassigned {
  color: #999;
  font-style: italic;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cr-view-column-section-watchers-add {
  color: #00a9ce;
}
.cr-view-column-section-watchers-none {
  color: #999;
  font-style: italic;
}
.view-change-request-watchers {
  overflow-y: auto;
  padding-right: 15rem;
  display: flex;
  flex-wrap: wrap;
}
.view-change-request-watchers > div {
  margin-right: 10rem;
}
.view-change-request-watchers .view-change-request-watcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.view-change-request-watchers .view-change-request-watcher > div {
  margin-right: 5rem;
}
.view-change-request-watchers .cr-view-column-section-watchers-watcher-name {
  line-height: 2.2;
}
.view-change-request-watchers .fdx-file {
  color: #00a9ce;
}
.view-change-request-watchers .fdx-circle-remove {
  cursor: pointer;
  color: #00a9ce;
}
.view-change-request-watchers .avatar {
  display: inline-block;
  vertical-align: middle;
}
.mb {
  margin-bottom: 20rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cr-view-column-section-workflow {
  margin-bottom: 10rem;
}
.cr-view-column-section-workflow label {
  text-align: right;
  padding-right: 15rem;
  margin-bottom: 0;
}
.cr-view-column-section-workflow-transitions {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}
.cr-view-column-section-workflow-transitions-dropdown {
  height: 40rem;
}
.cr-view-column-section-workflow-transitions-dropdown .dropdown-wrapper {
  height: 40rem;
}
.cr-view-column-section-workflow-transitions .btn-primary {
  margin-left: 5rem;
  float: right;
}
.cr-view-column-section-workflow-approvals {
  white-space: nowrap;
  display: flex;
  padding: 0.3rem 10rem 5rem 3rem;
  transition: background 0.15s;
}
.cr-view-column-section-workflow-approvals-container label {
  padding-top: 5rem;
}
.cr-view-column-section-workflow-approvals .fdx-ellipsis {
  padding-left: 5rem;
}
.cr-view-column-section-workflow-approvals-name {
  line-height: 30rem;
  vertical-align: top;
  padding-left: 10rem;
}
.cr-view-column-section-workflow-approvals-label {
  flex: 1;
  display: inline-block;
  line-height: 30rem;
  vertical-align: top;
  color: #666;
  font-style: italic;
}
.cr-view-column-section-workflow-approvals-label.assigned:before {
  content: '(';
}
.cr-view-column-section-workflow-approvals-label.assigned:after {
  content: ')';
}
.cr-view-column-section-workflow-approvals .avatar-wrapper {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.cr-view-column-section-workflow-approvals .avatar-wrapper .overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}
.cr-view-column-section-workflow-approvals .avatar-wrapper .overlay-wrapper > span {
  vertical-align: middle;
  position: absolute;
  font-size: 1.2em;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
}
.cr-view-column-section-workflow-approvals > span.add-user-button {
  cursor: pointer;
  color: #00a9ce;
  display: flex;
  align-items: center;
}
.cr-view-column-section-workflow-approvals:hover .avatar-wrapper .overlay-wrapper {
  opacity: 1;
}
.cr-view-column-section-workflow-approvals .avatar {
  display: inline-block;
  vertical-align: middle;
}
.cr-view-column-section-workflow-approvals .avatar.unassigned .icon-circled {
  color: #eaeaea;
}
.cr-view-column-section-workflow-approvals .avatar.unassigned .icon-circled .fdx-user {
  color: #c7c7c7;
}
.cr-view-column-section-workflow-approvals .user-action {
  width: auto !important;
  cursor: pointer;
  transition: color 0.15s;
  font-size: 1.5em;
  display: flex;
  align-items: center;
}
.cr-view-column-section-workflow-approvals .user-action:hover {
  color: #00a9ce;
}
.cr-view-column-section-workflow .section-body,
.cr-view-column-section-workflow .fdx-minimize-section-body {
  overflow: visible;
}
.cr-view-column-section-workflow .section-body.minimized,
.cr-view-column-section-workflow .fdx-minimize-section-body.minimized {
  overflow: hidden;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-container-create .modal-body {
  min-height: 337rem;
  max-height: 632rem!important;
}
fdx-mdb-container-create .identifier .form-control {
  display: inline-block;
  width: calc(100% - 74rem);
}
fdx-mdb-container-create .container-input {
  margin-bottom: 3rem;
}
fdx-mdb-container-create .container-input label {
  text-align: right;
  display: inline-block;
  width: calc(100% - 36rem);
}
fdx-mdb-container-create .container-input label .add-btn {
  color: #00a9ce;
  background-color: transparent;
}
fdx-mdb-container-create .container-input label .add-btn:hover {
  color: #00677d;
  outline: none;
}
fdx-mdb-container-create .container-input label.description-label {
  line-height: 20rem;
}
fdx-mdb-container-create .container-input .description-content .description-item {
  margin-bottom: 5rem;
}
fdx-mdb-container-create .container-input .description-content .description-item .separator {
  height: 1rem;
  background-color: #d6d6d6;
  margin: 15rem 30rem 5rem;
}
fdx-mdb-container-create .container-input .description-content .description-item .locale {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
fdx-mdb-container-create .container-input .description-content .description-item .locale input {
  width: 165rem;
}
fdx-mdb-container-create .container-input .description-content .description-item .locale .link {
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-container-create .container-input .description-content .description-item .locale .link:after {
  display: block;
  content: "";
  height: 1rem;
  width: 0%;
  background-color: #00a9ce;
  -webkit-transition: width ease 0.5s;
  transition: width ease 0.5s;
}
fdx-mdb-container-create .container-input .description-content .description-item .locale .link:hover:after,
fdx-mdb-container-create .container-input .description-content .description-item .locale .link:focus:after {
  width: 100%;
}
fdx-mdb-container-create .container-input .description-content .none {
  color: #6666;
  font-style: italic;
  padding: 10rem;
}
fdx-mdb-container-create .container-input.opened {
  animation-name: boxanim;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
}
@keyframes boxanim {
  0% {
    background: #d2e6f7;
  }
  100% {
    background: rgba(241, 246, 250, 0);
  }
}
fdx-mdb-container-create .error-icon {
  font-size: 19rem;
  float: right;
  padding-top: 8rem;
}
fdx-mdb-container-create .error-icon.fdx-circle-alert {
  color: #ce6c0d;
}
fdx-mdb-container-create .error-icon.fdx-circle-remove {
  color: #aa1c1c;
}
fdx-mdb-container-create .error-list {
  line-height: 38rem;
  padding: 0 5rem;
  cursor: pointer;
  text-align: left;
}
fdx-mdb-container-create .error-list-msg {
  font-style: italic;
}
fdx-mdb-container-create .error-list-msg .fdxixon-circled {
  font-size: 18rem;
  vertical-align: text-bottom;
}
fdx-mdb-container-create .error-list-msg .error-msg {
  margin-right: 5rem;
  color: #aa1c1c;
}
fdx-mdb-container-create .error-list-msg .warning-msg {
  color: #ce6c0d;
}
fdx-mdb-container-create .error-list-box {
  position: absolute;
  width: 350rem;
  bottom: 39rem;
  left: 10rem;
  background: #fff;
  border: 1rem solid #d3d3d3;
  box-shadow: 0 0 15rem -3rem #7b7b7b;
  transition: all 0.3s;
  overflow: auto;
  opacity: 0;
  max-height: 0;
}
fdx-mdb-container-create .error-list-item {
  text-align: left;
  border-bottom: 1rem solid #d3d3d3;
  line-height: 1;
  vertical-align: text-bottom;
  transition: all 0.3s 0.05s;
  padding: 0;
  opacity: 0;
  height: 0;
}
fdx-mdb-container-create .error-list-item .message {
  width: calc(100% - 21rem);
  display: inline-block;
}
fdx-mdb-container-create .error-list-item .fdx-circle-alert {
  float: left;
  margin-right: 5rem;
  margin-top: -2rem;
  color: #ce6c0d;
}
fdx-mdb-container-create .error-list-item .fdx-circle-remove {
  float: left;
  margin-right: 5rem;
  margin-top: -2rem;
  color: #aa1c1c;
}
fdx-mdb-container-create .error-list-item:hover {
  background: #e1eef4;
}
fdx-mdb-container-create .error-list:hover .error-list-box {
  opacity: 1;
  max-height: 400rem;
}
fdx-mdb-container-create .error-list:hover .error-list-item {
  opacity: 1;
  height: auto;
  padding: 15rem;
}
fdx-mdb-container-create .modal-footer button {
  width: auto !important;
  outline: none !important;
}

fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalBody {
  overflow: hidden;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalBody-loading {
  height: 100rem;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalMainMessage {
  padding: 20rem 20rem 10rem 20rem;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalMainMessage #fdxMdbContainerDeleteModalQuestionIcon {
  display: block;
  margin-left: calc(50% - 9rem);
  font-size: 25rem;
  margin-bottom: 5rem;
  color: #0085a2;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalMainMessage #fdxMdbContainerDeleteModalMessage {
  text-align: center;
  display: block;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalMainMessage p {
  text-align: center;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalCascadeMessageWrapper {
  float: right;
  margin-right: 100rem;
  align-items: center;
  display: flex;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalProcessingFooter #processing {
  outline: none;
  cursor: not-allowed;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalProcessingFooter #loadingSpinner {
  display: block;
  margin-left: 40rem;
  margin-top: -1rem;
  position: fixed;
  height: 24px;
  width: 24px;
}
@keyframes dots {
  0% {
    content: '.';
  }
  33% {
    content: '..';
  }
  66% {
    content: '...';
  }
  100% {
    content: '';
  }
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalProcessingFooter .loading::after {
  content: '';
  display: inline-block;
  animation: dots 1.5s steps(4, end) infinite;
  position: absolute;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalProcessingFooter .loading-dots {
  display: inline-block;
  font-size: 24px;
}
fdx-mdb-container-delete-modal #fdxMdbContainerDeleteModalProcessingFooter .loading-dot {
  display: inline-block;
  margin-right: -4px;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.fdx-mdb-header {
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
  right: 0;
  height: 50rem;
  background-color: #3ba9cf;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fdx-mdb-header > .breadcrumbs-wrapper {
  flex: 0 1 auto;
  height: 50rem;
  background-color: #fff;
  background-image: url(/images/header-background.png);
  background-repeat: no-repeat;
  background-position: right;
  padding-right: 80rem;
  background-size: 80rem;
}
.fdx-mdb-header > .controls-wrapper {
  flex: 0 1 auto;
}
.fdx-mdb-header-title {
  position: absolute;
  left: 20rem;
  right: 20rem;
  top: 0;
  height: 50rem;
  border-bottom: 1rem solid #d3d3d3;
}
.fdx-mdb-header-title-icon {
  font-size: 26rem !important;
  margin: 0 10rem;
  line-height: 50rem !important;
  vertical-align: top;
  top: 0 !important;
}
.fdx-mdb-header-title h1,
.fdx-mdb-header-title-comment {
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 50rem;
  vertical-align: top;
}
.fdx-mdb-header-title-comment {
  font-size: 14rem;
  opacity: 0.7;
  margin-left: 10rem;
  vertical-align: text-top;
}
.fdx-mdb-header-title-lock {
  line-height: 45rem;
  margin-left: 5rem;
}
.fdx-mdb-header-title-lock .fdx-locked {
  line-height: 45rem;
  vertical-align: top;
}
.fdx-mdb-header-title .tooltip.locked-icon .tooltip-inner {
  font-size: 14rem !important;
  padding: 10rem;
  background-color: #ce6c0d;
}
.fdx-mdb-header-title .tooltip.right .tooltip-arrow {
  border-right-color: #ce6c0d !important;
}
.fdx-mdb-header-controls {
  top: 50rem;
  left: 0;
  padding-left: 20rem;
  right: 0;
  padding-right: 20rem;
  padding: 0;
  background-color: #fff;
  position: absolute;
}
.fdx-mdb-header fdx-help > div {
  z-index: 3;
}
.fdx-mdb-header fdx-help .fdx-help-container a {
  color: #fff;
  opacity: 0.6;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.fdx-mdb-header fdx-help .fdx-help-container a:hover {
  color: #fff;
  opacity: 1;
}
.fdx-mdb-content {
  position: absolute;
  top: 50rem;
  left: 0;
  right: 0;
  bottom: 0;
  transition: top 0.3s;
  overflow: auto;
  border-top: 1rem solid #d3d3d3;
}
.fdx-mdb-content-menu {
  position: fixed;
  top: 0rem;
  right: 0;
  padding-right: 40rem;
  z-index: 2;
  color: #fff;
}
.fdx-mdb-content-menu .mdb-detail-header-menu {
  display: flex;
}
.fdx-mdb-content-menu .mdb-detail-header-menu-button {
  display: inline-block;
  text-align: center;
  padding: 5rem 10rem 0rem 12rem;
  cursor: pointer;
  user-select: none;
}
.fdx-mdb-content-menu .mdb-detail-header-menu-button-label {
  display: block;
  font-size: 11rem;
  margin: -1.5rem;
  text-transform: lowercase;
}
.fdx-mdb-content-menu .mdb-detail-header-menu-button-label::first-letter {
  text-transform: uppercase;
}
.fdx-mdb-content-menu .mdb-detail-header-menu-button:hover {
  background-color: #20677d;
}
.fdx-mdb-content-menu .fdxicon-regular {
  cursor: pointer;
  font-size: 26rem;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  color: #fff;
  display: inline;
}
.fdx-mdb-content-menu .fdxicon-regular:hover {
  color: #fff;
}
.fdx-mdb-content .tooltip.nav-icon .tooltip-inner {
  font-size: 14rem !important;
  padding: 10rem;
  background-color: #00677d;
  white-space: normal;
}
.fdx-mdb-content .tooltip.left .tooltip-arrow {
  border-left-color: #00677d !important;
}
.fdx-mdb-content .view-properties {
  padding: 20rem 10rem;
}
.fdx-mdb-content .mdbViewContainer {
  height: 100%;
}
.content-menu-dropdown {
  background: #20677d !important;
  border: #20677d !important;
  border-radius: 0 !important;
  overflow: visible;
  max-height: unset!important;
  right: 0;
  left: auto !important;
  white-space: nowrap;
}
.content-menu-dropdown-wrapper {
  display: inline-block;
}
.content-menu-dropdown .tooltip {
  display: none;
}
.content-menu-dropdown li {
  cursor: pointer;
  border-bottom: 1rem solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8rem 14rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14rem;
  user-select: none;
}
.content-menu-dropdown li span:last-child {
  text-transform: lowercase;
}
.content-menu-dropdown li span:last-child::first-letter {
  text-transform: uppercase;
}
.content-menu-dropdown li:hover span.fdxicon-regular {
  color: white;
}
.content-menu-dropdown li:last-child {
  border: none;
}
.content-menu-dropdown li span.fdxicon-regular {
  font-size: 22rem;
  margin-right: 8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: none;
}
.content-menu-dropdown li.disabled {
  opacity: 0.4;
  cursor: default;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.integrations-modal .modal-dialog.modal-md {
  max-width: 710rem;
}
fdx-mdb-container-integrations .modal-body {
  overflow: visible !important;
  overflow-y: visible !important;
  min-height: 85rem;
  max-height: 700rem!important;
}
fdx-mdb-container-integrations .no-integrations {
  width: 100%;
  height: 100%;
  line-height: 100rem;
  text-align: center;
  font-style: italic;
  color: #999;
}
fdx-mdb-container-integrations .integration-menu {
  display: inline-block !important;
  padding-right: 3rem;
}
fdx-mdb-container-integrations .integration-menu .fdx-menu {
  cursor: pointer;
  color: #00a9ce;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-mdb-container-integrations .integration-menu .fdx-menu:hover {
  color: #00677d;
}
fdx-mdb-container-integrations .integration-menu .dropdown-menu {
  padding: 0;
}
fdx-mdb-container-integrations .integration-menu .dropdown-menu li {
  border-bottom: 1px solid #d9d9d9;
}
fdx-mdb-container-integrations .integration-menu .dropdown-menu li button {
  display: flex;
  text-align: left;
  align-items: center;
}
fdx-mdb-container-integrations .integration-menu .dropdown-menu li button .menu-option {
  flex: 1;
  font: bold 10rem "PT Sans", "interstate", Helvetica, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5rem;
}
fdx-mdb-container-integrations .select-integration {
  border: 1px solid #d9d9d9;
  margin: 6rem;
  padding: 5rem 10rem 0;
  border-radius: 5rem;
  background: #f8f8f8;
  display: flex;
}
fdx-mdb-container-integrations .select-integration .label,
fdx-mdb-container-integrations .select-integration .select-wrapper {
  padding: 0 4rem;
}
fdx-mdb-container-integrations .select-integration .label {
  font-weight: bold;
  line-height: 41rem;
}
fdx-mdb-container-integrations .select-integration .select-wrapper {
  flex: 1;
  margin-bottom: 5rem;
}
fdx-mdb-container-integrations .select-integration .select-wrapper .dropdown-wrapper {
  background: transparent;
}
fdx-mdb-container-integrations .select-integration .select-wrapper .dropdown-wrapper .dropdown {
  background: #fff;
}
fdx-mdb-container-integrations .select-integration .icons {
  padding: 0 0 0 6rem;
  line-height: 41rem;
}
fdx-mdb-container-integrations .select-integration .icons .fdx-circle-info {
  color: #999;
}
fdx-mdb-container-integrations .select-integration .icons .tooltip {
  max-width: 270rem !important;
  width: 200rem;
  font-size: 11rem;
  line-height: 12rem;
}
fdx-mdb-container-integrations .select-integration .icons .tooltip .tooltip-inner {
  width: 270rem;
}
fdx-mdb-container-integrations .select-integration .selected-integration {
  flex: 1;
  line-height: 34rem;
}
fdx-mdb-container-integrations .select-integration .selected-integration .integration-name {
  font-weight: bold;
  font-size: 17rem;
  margin: 0 5rem;
}
fdx-mdb-container-integrations .select-integration .selected-integration .integration-type {
  font-size: 13rem;
  margin-right: 5rem;
}
fdx-mdb-container-integrations .select-integration .selected-integration .integration-type:before {
  content: '(';
}
fdx-mdb-container-integrations .select-integration .selected-integration .integration-type:after {
  content: ')';
}
fdx-mdb-container-integrations .select-integration .selected-integration a {
  font-size: 13rem;
  font-weight: bold;
}
fdx-mdb-container-integrations .select-integration .fdx-split {
  font-size: 15rem;
  line-height: 36rem;
}
fdx-mdb-container-integrations .definition {
  border: 1px solid #d9d9d9;
  margin: 6rem;
}
fdx-mdb-container-integrations .definition-header {
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  padding: 10rem;
}
fdx-mdb-container-integrations .definition-header-label {
  flex: 1;
  font: bold 15rem "PT Sans", "interstate", Helvetica, sans-serif;
  margin-left: 5rem;
}
fdx-mdb-container-integrations .definition-header .fdx-settings {
  font-size: 18rem;
}
fdx-mdb-container-integrations .definition-body {
  overflow: auto;
  max-height: 485rem;
  padding-top: 24rem;
}
fdx-mdb-container-integrations .definition-body-wrapper {
  display: flex;
  flex-wrap: wrap;
}
fdx-mdb-container-integrations .definition-body-props {
  flex: 0 0 82%;
}
fdx-mdb-container-integrations .definition-body-icon {
  flex: 0 0 18%;
  align-self: center;
}
fdx-mdb-container-integrations .definition-body-icon .fdx-circle-tick {
  color: #6aa445;
}
fdx-mdb-container-integrations .definition-body-icon .fdx-circle-remove {
  color: #aa1c1c;
}
fdx-mdb-container-integrations .definition-body-icon .fdx-lock {
  color: #00677d;
  border: 1px solid #00677d;
  border-radius: 10rem;
  font-size: 11rem;
  padding: 2rem;
  width: 18rem;
  margin-top: 0;
  height: 18rem;
}
fdx-mdb-container-integrations .definition-body-icon .no-status {
  border: 2px solid #d3d3d3;
  border-radius: 10rem;
  font-size: 12rem;
  margin-top: 0;
}
fdx-mdb-container-integrations .definition-body-icon .no-status span {
  display: inline-block;
  width: 15rem;
  height: 14rem;
}
fdx-mdb-container-integrations .definition-body-icon .lds-spinner {
  width: 17rem;
  padding: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #999;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
fdx-mdb-container-integrations .definition-body-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15rem;
}
fdx-mdb-container-integrations .definition-body-label {
  display: inline-block;
  flex: 0 0 43%;
  text-align: right;
  padding: 3rem 10rem;
  font-weight: bold;
  line-height: 31rem;
}
fdx-mdb-container-integrations .definition-body-label .select-link {
  color: #00a9ce;
  display: inline-block;
  width: 100%;
  padding: 10rem 0;
  cursor: pointer;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-mdb-container-integrations .definition-body-label .select-link:hover {
  color: #00a9ce;
}
fdx-mdb-container-integrations .definition-body-label .select-link.disabled {
  color: #d3d3d3;
  cursor: default;
}
fdx-mdb-container-integrations .definition-body-label .select-link.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-container-integrations .definition-body-input {
  flex: 0 0 53%;
}
fdx-mdb-container-integrations .definition-body-input fdx-checkbox {
  vertical-align: middle;
}
fdx-mdb-container-integrations .definition-body-input .fdx-help {
  color: #999;
  font-size: 13rem;
}
fdx-mdb-container-integrations .definition-body-input-hidden {
  display: inline-block;
  border: 1px solid #ebebeb;
  background: #f9f9f9;
  color: #d9d9d9;
  font-style: italic;
  width: 100%;
  padding: 9rem 10rem;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets {
  max-height: 150rem;
  margin: 10rem 0;
  overflow-y: auto;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets-item {
  border: 1px solid #d9d9d9;
  border-radius: 16rem;
  padding: 3rem 4rem 3rem 8rem;
  margin: 0 4rem 4rem 0;
  display: inline-flex;
  align-items: center;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets-item.invalid {
  border-color: #aa1c1c;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets-item-text {
  font-size: 12rem;
  padding-right: 5rem;
  max-width: 100rem;
  vertical-align: bottom;
  line-height: 17rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets .fdx-circle-remove {
  cursor: pointer;
  color: #00a9ce;
  font-size: 14rem;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets .fdx-circle-remove:hover {
  color: #00a9ce;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets .fdx-circle-remove.disabled {
  color: #d3d3d3;
  cursor: default;
}
fdx-mdb-container-integrations .definition-body-input .selected-datasets .fdx-circle-remove.disabled:hover {
  color: #d3d3d3;
}
fdx-mdb-container-integrations .definition-body-input.invalid fdx-dropdown-angular .dropdown-wrapper .dropdown {
  border-color: #aa1c1c;
}
fdx-mdb-container-integrations .definition-body-input .input-invalid {
  color: #aa1c1c;
  font-size: 11rem;
  padding: 5rem 0;
}
fdx-mdb-container-integrations .definition-body-error {
  font-size: 12rem;
  color: #aa1c1c;
  border: 1px solid #aa1c1c;
  background: #f4e6e6;
  border-radius: 4rem;
  padding: 6rem;
  margin: 0 86rem 15rem;
  display: flex;
  align-items: center;
}
fdx-mdb-container-integrations .definition-body-error .fdxicon-regular {
  font-size: 17rem;
  margin-right: 5rem;
}
fdx-mdb-container-integrations .definition-btns {
  display: flex;
  padding: 15rem 6rem;
  gap: 10rem;
}
fdx-mdb-container-integrations .definition-btns button {
  flex: 1;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-container-libraries .row {
  height: 100%;
}
fdx-mdb-container-libraries .row .col-md-6 {
  height: 100%;
}
fdx-mdb-container-libraries .libraries-content {
  height: 72vh;
  overflow: visible !important;
}
fdx-mdb-container-libraries .libraries-content h1,
fdx-mdb-container-libraries .libraries-content h3 {
  margin-top: 0.2em;
}
fdx-mdb-container-libraries .libraries-content .filter-bar {
  position: relative;
  margin-bottom: 1em;
}
fdx-mdb-container-libraries .libraries-content .filter-bar .fdx-circle-remove {
  position: absolute;
  outline: none;
  right: 0.5em;
  top: 3.5em;
  color: #666;
}
fdx-mdb-container-libraries .libraries-content-column {
  position: relative;
  height: calc(100% - 2.8em);
  overflow: auto;
  margin-top: 1em;
  border: 1rem solid #d9d9d9;
  background: #fff;
}
fdx-mdb-container-libraries .libraries-content-column.available {
  height: calc(100% - 12.1em);
}
fdx-mdb-container-libraries .libraries-content .scrollable-none {
  margin-top: 5em;
  text-align: center;
  font-style: italic;
  color: #999;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel {
  position: relative;
  background-color: #fff;
  color: #333;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel:hover {
  box-shadow: 0 0 30rem -8rem #999;
  z-index: 600;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel-text {
  width: 87%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel-text-version {
  color: #666;
  max-width: 85%;
  vertical-align: middle;
  font-size: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .pull-right {
  margin: 1.1em 0.8em;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .pull-right.fdxicon-regular {
  position: absolute;
  top: 2rem;
  right: 0;
  font-size: 1em;
  color: #00677d;
  cursor: pointer;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .panel-heading .panel-title {
  margin: 0;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .panel-heading .panel-title a {
  text-decoration: none;
  color: #333;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .panel-heading .panel-title a .panel-title-content {
  position: relative;
  margin: 0;
  padding: 0.7em;
  border-bottom: 1rem solid #d9d9d9;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .panel-heading .panel-title a .panel-title-content .container-type-icon {
  float: left;
  font-size: 1.6em;
  margin-right: 0.5em;
  margin-top: 2rem;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel:nth-child(odd) {
  background: #f6f6f6;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .panel-body .version {
  position: relative;
  padding: 0.4em 0.4em 0.4em 3em;
  border-bottom: 1rem solid #d9d9d9;
  background: #fff;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel .panel-body .version .panel-text {
  font-size: 0.9em;
}
fdx-mdb-container-libraries .libraries-content .scrollable .panel-group .panel-open .panel-title-content {
  background: #f6f6f6;
}

.container-lifecycle .lifecycle-dropdown {
  margin-top: 20rem;
}
.container-lifecycle .line {
  margin-bottom: 10rem;
}
.container-lifecycle .transition {
  margin: 10rem 10rem 23rem 10rem;
}
.container-lifecycle .transition fdx-dropdown .option-label .sub {
  line-height: 12rem;
  margin-top: 0;
}
.container-lifecycle .modal-body {
  overflow: visible!important;
}
fdx-mdb-container-lifecycle .modal-body {
  overflow: visible;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-mdb-container-list .app-header-controls .create-button {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 8rem;
}
fdx-mdb-container-list .app-header-controls .create-button:hover {
  background: #20677d !important;
}
fdx-mdb-container-list .app-header-controls .create-button .fdxicon-regular {
  color: #fff;
  font-size: 20rem;
  text-align: center;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  display: block;
}
fdx-mdb-container-list .app-header-controls .create-button .text {
  color: #fff;
  font-size: 14rem;
  vertical-align: middle;
  text-align: center;
}
fdx-mdb-container-list .container-download-button {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  padding: 8rem;
}
fdx-mdb-container-list .container-download-button:hover {
  background: #20677d !important;
  opacity: 1;
}
fdx-mdb-container-list .container-download-button .fdxicon-regular {
  color: #fff;
  font-size: 20rem;
  text-align: center;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  display: block;
  align-content: center;
}
fdx-mdb-container-list div.app-content {
  top: 50rem;
}
fdx-mdb-container-list div.app-content.closed .fdx-mdb-container-list {
  margin-left: 0;
}
fdx-mdb-container-list div.app-content.closed .fdx-mdb-container-list-filters {
  left: -500rem;
}
fdx-mdb-container-list div.app-content.closed .fdx-mdb-container-list-hide-filters:hover {
  width: 118rem;
}
fdx-mdb-container-list .fdx-mdb-container-list {
  position: relative;
  height: 100%;
  margin-left: 500rem;
  transition: 0.3s ease all;
  overflow: hidden;
}
fdx-mdb-container-list .fdx-mdb-container-list-filters {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease all;
  overflow: hidden;
  width: 500rem;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  background-color: #fff;
  z-index: 2;
}
fdx-mdb-container-list .fdx-mdb-container-list-hide-filters {
  position: absolute;
  bottom: 15rem;
  padding: 5rem 10rem !important;
  transition: 0.3s ease all;
  overflow: hidden;
  color: #999;
  background-color: #fff;
  box-shadow: 2rem 0rem 10rem 1rem rgba(170, 170, 170, 0.3);
  border: 1rem solid #E1E1E1;
  border-left: none !important;
  border-radius: 0 5rem 5rem 0 !important;
  white-space: nowrap;
  width: 35rem;
  line-height: 16rem;
  z-index: 3;
}
fdx-mdb-container-list .fdx-mdb-container-list-hide-filters .browse-message {
  padding-left: 5rem;
}
fdx-mdb-container-list .fdx-mdb-container-list-hide-filters:focus {
  outline: none !important;
}
fdx-mdb-container-list .fdx-mdb-container-list-result-list {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
fdx-mdb-container-list .fdx-mdb-container-list-result-list div.spinner {
  z-index: 1;
}
fdx-mdb-container-list .fdx-mdb-container-list .no-collection {
  text-align: center;
  padding: 100rem 30rem 0;
  color: #999;
  font-style: italic;
  font-size: 22rem;
}
fdx-mdb-container-list .fdx-mdb-container-list .load-more {
  padding: 10rem;
  position: relative;
  height: 50rem;
}
fdx-mdb-container-list .fdx-mdb-filters-list .group-body .group-filters-property .type-singleselect-dropdown {
  width: 325rem!important;
}
fdx-mdb-container-list .dropdown .icon.dropdown-toggle {
  margin-right: 5rem;
  margin-left: 5rem;
  color: #00a9ce;
  font-size: 24rem !important;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
fdx-mdb-container-list .dropdown:hover .icon.dropdown-toggle {
  cursor: pointer;
  color: #00a9ce;
}
fdx-mdb-container-list .dropdown .dropdown-menu.tabular-dropdown {
  right: 30rem!important;
  top: 1rem;
  width: 170rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  text-align: center;
  transition: all ease-in-out 0.15s;
}
fdx-mdb-container-list .dropdown .dropdown-menu.tabular-dropdown li {
  text-align: center;
  padding: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
fdx-mdb-container-list .dropdown .dropdown-menu.tabular-dropdown li:hover {
  background: #f1f9fb;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table {
  display: block;
  align-content: center;
  margin: 10rem 10rem 10rem 10rem;
  cursor: pointer;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .fdx-smart-table-wrapper {
  overflow: visible;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .fdx-smart-table-wrapper table {
  border-collapse: separate;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .dropup .dropdown-menu {
  bottom: 0!important;
  transition: all ease-in-out 0.15s;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table thead th {
  border-bottom: 1px solid #E1E1E1;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #f3f3f3;
  font-weight: bold;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table thead th:last-child .fdxicon-regular {
  display: none;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .orderIcon {
  display: none!important;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table tbody tr:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  box-shadow: 2rem 2rem 35rem #d3d3d3;
  -webkit-box-shadow: 2rem 2rem 35rem #d3d3d3;
  -moz-box-shadow: 2rem 2rem 35rem #d3d3d3;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table tbody tr:nth-child(odd) {
  background-color: rgba(216, 216, 216, 0.07);
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.6);
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table td {
  padding: 20rem 10rem!important;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .containerLabelColumn {
  font-size: 18px;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .updatedColumn {
  min-width: 110rem;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .workflowStateColumn {
  min-width: 100rem;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .versionColumn {
  min-width: 100rem;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item {
  position: relative;
  margin: 0 60rem 0 40rem;
  padding: 15rem 0;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance {
  min-width: 100rem;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance .tooltip-class {
  pointer-events: none;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance-wrapper {
  display: inline-block;
  margin-top: 6rem;
  margin-left: 5rem;
  height: 20rem;
  border-radius: 10rem;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance-wrapper .compliant {
  color: #6aa445;
  font-weight: bold;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance-wrapper .deviation {
  color: #ce6c0d;
  font-weight: bold;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance-wrapper .nonstandard {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-mdb-container-list .fdx-mdb-container-list-smart-table .table-item-compliance-wrapper .published {
  color: #6666;
  font-style: italic;
  padding: 0;
}
fdx-mdb-container-list .container-table-version-number {
  padding-left: 8rem;
}
fdx-mdb-container-list .container-version-dropdown {
  display: inline;
  margin: 8rem 10rem 0 0;
}
fdx-mdb-container-list .container-version-dropdown strong {
  float: left;
  background-color: #E1E1E1;
  color: white;
  border-radius: 5rem 0 0 5rem;
  padding: 7rem;
}
fdx-mdb-container-list .container-version-dropdown fdx-dropdown {
  float: left;
  transition: all ease-in-out 0.15s;
}
fdx-mdb-container-list .container-version-dropdown fdx-dropdown .dropdown {
  height: 34rem;
  border: 1px solid #E1E1E1;
  min-height: 38rem;
  transition: all ease-in-out 0.15s;
}
fdx-mdb-container-list .container-version-dropdown fdx-dropdown .dropdown,
fdx-mdb-container-list .container-version-dropdown fdx-dropdown .dropdown .select-label .fdx-triangle-s {
  line-height: 34rem;
}

fdx-mdb-container-permissions-report .mdb-load-permissions span {
  text-align: center;
  font-style: italic;
  color: #999;
  position: absolute;
  top: 180rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5001;
}
fdx-mdb-container-permissions-report .permissions-body {
  max-height: 800px !important;
  overflow-y: hidden !important;
}
fdx-mdb-container-permissions-report .fdx-smart-table-wrapper {
  border-top: 1rem solid #DDDDDD;
  overflow-y: auto;
  height: 800px;
}
fdx-mdb-container-permissions-report .fdx-smart-table-wrapper thead tr {
  position: sticky;
  top: 0;
  z-index: 10;
}
fdx-mdb-container-permissions-report .dropdown-menu {
  width: 185rem;
}
fdx-mdb-container-permissions-report .dropdown-menu-orderby {
  user-select: none;
}
fdx-mdb-container-permissions-report .dropdown-menu-orderby li > a {
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}
fdx-mdb-container-permissions-report .dropdown-menu-orderby li.active > a,
fdx-mdb-container-permissions-report .dropdown-menu-orderby li.active:hover > a {
  border-top: 1rem solid #00a9ce;
  border-bottom: 1rem solid #00a9ce;
  background-color: #e5f4f8;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.permissions-content-wrapper {
  min-height: 100rem;
}
.permissions-content h1 {
  margin-top: 0;
}
.permissions-content-vs {
  border: 1rem solid #d3d3d3;
  width: 100%;
  height: 400rem;
  overflow: auto;
}
.permissions-content-vs-roles {
  height: 400rem;
}
.permissions-content-vs h3 {
  padding-left: 13rem;
  display: inline-block;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 11rem;
  line-height: 1.2;
}
.permissions-content-vs .dropdown {
  right: 12rem;
  top: 12rem;
}
.permissions-content-vs .dropdown .fdxicon-regular {
  font-size: 20rem;
}
.permissions-content-vs .renderer {
  border-bottom: 1rem solid #d3d3d3;
}
.permissions-content-roles-dropdown {
  height: 50rem;
  width: 100%;
}
.permissions-content-roles-dropdown h3 {
  margin-top: 10rem;
  font-style: italic;
  color: #999;
}
.permissions-content .filterBy {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
}
.permissions-content .row {
  margin-bottom: 5rem;
}
.permissions-content .uib-accordion:nth-child(even) {
  border-top: 1rem solid #d3d3d3;
}
.permissions-content .uib-accordion .panel-title {
  margin: 0;
}
.permissions-content .uib-accordion .panel-title:hover {
  transition-property: box-shadow !important;
  -webkit-box-shadow: 2rem 2rem 35rem #d3d3d3;
  -moz-box-shadow: 2rem 2rem 35rem #d3d3d3;
  transition: all ease-out 0.15s;
}
.permissions-content .uib-accordion .dark-grey-background {
  background-color: #F6F6F6;
}
.permissions-content .uib-accordion .light-grey-background {
  background-color: #FFFFFF;
}
.permissions-content .uib-accordion .userGroupheading {
  height: 64rem;
  top: 0rem;
  display: inline-block;
  width: 100%;
  z-index: 100;
  border-bottom: 1rem solid #d3d3d3;
}
.permissions-content .uib-accordion .userGroupheading .selected::before {
  content: "";
  background-color: #00677d;
  height: 64px;
  width: 6rem;
  overflow: hidden;
  display: inline-block;
  position: sticky;
  float: left;
  padding-left: 4rem;
}
.permissions-content .uib-accordion .userGroupheading .userGroupHeadingText {
  font-size: 16px;
  color: #666666 !important;
  padding-top: 8rem;
  padding-left: 12rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 11rem;
  line-height: 1.2;
  position: relative;
  right: 33rem;
  bottom: 5rem;
}
.permissions-content .uib-accordion .userGroupheading .userGroupHeadingUsersBadge {
  position: relative;
  font-size: 12px;
  top: 35rem;
  left: 20rem;
  color: #666666 !important;
}
.permissions-content .uib-accordion .userGroupheading .userGroupHeadingRolesBadge {
  padding-top: 25rem;
  padding-right: 35rem;
  display: inline;
  padding: 5rem 9rem;
  font-size: 12px;
  line-height: 14rem;
  color: #999999;
  opacity: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid #999999;
  border-radius: 12px;
  position: relative;
  right: 45rem;
  bottom: 32rem;
}
.permissions-content .uib-accordion .userGroupheading .blue-arrow {
  position: relative;
  right: 20rem;
  top: 26rem;
  width: 16px;
  height: 11px;
}
.permissions-content .userSelectDropdown {
  display: inline;
}
.permissions-content .userSelectDropdown .select-label {
  font-weight: normal;
}
.permissions-content .userSelectDropdown .dropdown-options .option-label {
  font-weight: 500;
}
.permissions-content .userSelectDropdown .dropdown-options .option-label .sub {
  text-transform: lowercase;
  display: inline;
  font-weight: normal;
}
.permissions-content .userSelectDropdown .dropdown-options .option-label .sub:before {
  content: '(';
}
.permissions-content .userSelectDropdown .dropdown-options .option-label .sub:after {
  content: ')';
}
.permissions-content .btn-primary {
  width: 100%;
}
.permissions-content .fdx-smart-table {
  display: block;
  align-content: center;
  margin: 10rem 10rem 10rem 10rem;
  cursor: pointer;
  border-collapse: collapse;
  min-height: 70rem;
}
.permissions-content .fdx-smart-table-wrapper {
  overflow: visible;
  border: 1px solid #E1E1E1;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-container-properties-content {
  padding: 15rem 25rem 0;
}
.fdx-mdb-container-properties-content .main-details .icon {
  float: left;
}
.fdx-mdb-container-properties-content .main-details .icon .fdxicon-regular {
  font-size: 35rem;
  margin: 5rem 10rem;
}
.fdx-mdb-container-properties-content .main-details .title {
  display: inline-block;
}
.fdx-mdb-container-properties-content .main-details .title h2 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 10rem;
}
.fdx-mdb-container-properties-content .main-details .title .version {
  margin-top: -3rem;
}
.fdx-mdb-container-properties-content .main-details .title .version .single-version {
  margin: 3rem 11rem;
}
.fdx-mdb-container-properties-content .main-details .title .version .searchable-dropdown .dropdown-container.open {
  background-color: transparent;
}
.fdx-mdb-container-properties-content .owner-details {
  text-align: right;
  padding-right: 15rem;
}
.fdx-mdb-container-properties-content .owner-details.can-change {
  cursor: pointer;
}
.fdx-mdb-container-properties-content .owner-details.can-change .owner-details-dropdown {
  display: inline-block;
}
.fdx-mdb-container-properties-content .owner-details-name {
  line-height: 45rem;
  letter-spacing: 0.5rem;
  margin-right: 10rem;
  font-weight: bold;
  vertical-align: text-bottom;
}
.fdx-mdb-container-properties-content .owner-details-dropdown {
  line-height: 45rem;
  vertical-align: text-bottom;
  margin-left: 5rem;
  display: none;
}
.fdx-mdb-container-properties-content .owner-details-avatar-container {
  background-color: #d9d9d9;
  display: inline-block;
  width: 44rem;
  height: 44rem;
  padding: 2rem;
  border-radius: 50%;
}
.fdx-mdb-container-properties-content .owner-details-avatar-container .avatar,
.fdx-mdb-container-properties-content .owner-details-avatar-container .circle-teal {
  width: 40rem;
  height: 40rem;
}
.fdx-mdb-container-properties-content .owner-details-avatar-container .avatar .fdx-user,
.fdx-mdb-container-properties-content .owner-details-avatar-container .circle-teal .fdx-user {
  font-size: 20rem;
  margin-left: -10rem;
  margin-top: -10rem;
}
.fdx-mdb-container-properties-content .owner-details-avatar-container img {
  vertical-align: baseline;
}
.fdx-mdb-container-properties-content .property-list {
  padding: 5rem 20rem;
}
.fdx-mdb-container-properties-content .property-list .prop {
  padding: 10rem;
}
.fdx-mdb-container-properties-content .property-list .prop label {
  font-weight: bold;
  width: 140rem;
  margin-bottom: 0;
}
.fdx-mdb-container-properties-content .property-list .ta-label {
  width: 100% !important;
  padding: 10rem 10rem 0;
  font-weight: bold;
  margin-bottom: 0;
}
.fdx-mdb-container-properties-content .property-list .tas-wrapper {
  margin-bottom: 10rem;
  overflow-y: auto;
}
.fdx-mdb-container-properties-content .property-list .tas-wrapper .ta {
  padding: 2rem 5rem;
  margin-top: 5rem;
}
.fdx-mdb-container-properties-content .property-list .tas-wrapper .ta.none::before {
  content: '';
}
.fdx-mdb-container-properties-content .property-list .tas-wrapper .ta::before {
  content: "\BB";
  font-size: 18rem;
  padding-right: 2rem;
  color: #666666;
  line-height: 0;
}
.fdx-mdb-container-properties-content .property-list .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
.fdx-mdb-container-properties-content .property-list .descriptions {
  padding-top: 10rem;
  padding-left: 10rem;
  font-size: 13rem;
}
.fdx-mdb-container-properties-content .property-list .descriptions .locale {
  color: #000;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-rule-detailed-modal .modal-body {
  overflow: visible !important;
}
fdx-mdb-asset-rule-detailed-modal .mdb-rule-create .integration-msg {
  padding-top: 0;
}
fdx-mdb-asset-rule-detailed-modal .mdb-rule-create .integration-msg .alert-text {
  line-height: 26rem;
}
fdx-mdb-asset-rule-detailed-modal .mdb-rule-create .type-info {
  color: #666;
  display: inline-block;
  margin: 10rem 10rem 15rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-rule-detailed-prop .rule-prop {
  font-size: 13rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-add-button {
  color: #ce6c0d;
  line-height: 22rem;
  display: inline-block;
  margin-top: 5rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-add-button:hover {
  color: #97510b;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-add-button .fdx-add {
  font-size: 12rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-add .dropdown-menu li {
  cursor: pointer;
  padding: 7rem;
  text-align: center;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-add .dropdown-menu li:hover {
  background: #d7e8ef;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-list .entry {
  margin: 2rem 0;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-list .entry-text {
  display: inline-block;
  width: calc(100% - 40rem);
  font-size: 13rem;
  margin-right: 3rem;
  color: #ce6c0d;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-list .entry-text:before {
  content: '\2023';
  color: #ce6c0d;
  font-size: 16rem;
  margin-right: 3rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-list .entry-actions {
  float: right;
  vertical-align: top;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-list .entry-actions .fdxicon-regular {
  cursor: pointer;
  font-size: 16rem;
  color: #ce6c0d;
  margin-top: 3rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-list .entry-actions .fdxicon-regular:hover {
  color: #97510b;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview {
  display: inline-block;
  vertical-align: bottom;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-prop-add-button {
  margin-left: 15rem;
  margin-top: 0;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry {
  display: inline-block;
  margin-left: 15rem;
  line-height: 22rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry.editable .rule-entry-text {
  display: inline-block;
  font-size: 13rem;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry.editable .fdxicon-regular {
  margin-top: 6rem;
  vertical-align: top;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry-text {
  color: #ce6c0d;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry-text:before {
  color: #ce6c0d;
  content: '\2023';
  font-size: 16rem;
  margin-right: 3rem;
  vertical-align: top;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry .fdxicon-regular {
  cursor: pointer;
  font-size: 13rem;
  color: #ce6c0d;
  margin-top: 4rem;
  vertical-align: top;
}
fdx-mdb-asset-rule-detailed-prop .rule-prop-overview .rule-entry .fdxicon-regular:hover {
  color: #97510b;
}
fdx-mdb-asset-rule-detailed-prop .dropdown .dropdown-menu {
  display: block;
  overflow: hidden;
  transition: all 0.3s;
  height: auto;
  box-shadow: none;
  border-width: 0rem;
  max-height: 0;
  border-radius: 0;
}
fdx-mdb-asset-rule-detailed-prop .dropdown.open .dropdown-menu,
fdx-mdb-asset-rule-detailed-prop .dropdown:hover .dropdown-menu {
  max-height: 100rem;
  border-width: 1px;
  -webkit-box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-asset-descriptor-config {
  width: 100%;
}
fdx-mdb-asset-descriptor-config ul.asset-types-list .edited {
  background-color: #e1eef4;
}
fdx-mdb-asset-descriptor-config ul.asset-types-list .fdx-edit {
  position: absolute;
  right: 0;
  top: 13rem;
}
fdx-mdb-asset-descriptor-config ul.configure-nav {
  display: flex;
  justify-content: center;
  width: min-content;
  align-self: center;
  border-bottom: 1rem solid #ddd;
}
fdx-mdb-asset-descriptor-config ul.configure-nav li {
  cursor: pointer;
  padding: 10rem;
  font-weight: bold;
  color: #00a9ce;
}
fdx-mdb-asset-descriptor-config ul.configure-nav li.active {
  border-bottom: 5rem solid #00a9ce;
}
fdx-mdb-asset-descriptor-config ul.configure-nav li:not(last-of-type) {
  margin-right: 5rem;
}
fdx-mdb-asset-descriptor-config .configure-container {
  overflow-y: auto;
  height: 460rem;
  width: 580rem;
  display: flex;
  align-self: center;
  flex-direction: column;
}
fdx-mdb-asset-descriptor-config .configure-container > div:first-child {
  width: 100%;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item {
  display: flex;
  background-color: white;
  border: 1px solid #C5C5C5;
  box-shadow: 0px 0px 10px #00000033;
  margin: 15rem;
  padding: 15px;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col {
  flex: 1;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-one,
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-three {
  display: flex;
  margin: 0 15rem 0 15rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-one {
  flex-basis: 10%;
  justify-content: flex-end;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-one.configure {
  justify-content: center;
  align-items: center;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-one.configure .fdxicon-regular {
  font-size: 35rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-two {
  flex-basis: 70%;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .asset-browse-list-item-col.col-three {
  flex-basis: 20%;
  justify-content: flex-start;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .version-flags {
  margin-right: 5rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .helper {
  position: absolute;
  right: -25rem;
  top: 10rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .dropdown-wrapper {
  position: relative;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .dropdown-wrapper:not(:last-child) {
  margin-bottom: 10rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .dropdown {
  border: 1px solid #D9D9D9;
  line-height: 38rem;
  min-height: 38rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .dropdown .dropdown-toggle {
  padding: 0 34rem 0 10rem;
}
fdx-mdb-asset-descriptor-config .asset-browse-list-item .dropdown .fdx-triangle-s {
  position: absolute;
  right: 10rem;
  top: 0;
  line-height: 38rem;
  font-size: 14rem;
  color: #666;
}
fdx-mdb-asset-descriptor-config .reset-default-configuration {
  display: flex;
  justify-content: center;
  min-height: 40rem;
}
fdx-mdb-asset-descriptor-config .reset-default-configuration .fdxicon-regular {
  vertical-align: text-bottom;
}
fdx-mdb-asset-descriptor-config .background-inset {
  background-color: #f6f6f6;
  box-shadow: inset 0px 0px 10px #0000001A;
}
fdx-mdb-asset-descriptor-config .blue-text {
  color: #00a9ce;
}
fdx-mdb-asset-descriptor-config .font-weight-bold {
  font-weight: bold;
}
fdx-mdb-asset-descriptor-config .getter-uses-default-indicator > small {
  color: #9d9d9d;
}
fdx-mdb-asset-descriptor-config .modal-sidebar {
  flex-basis: 29.5% !important;
}
fdx-mdb-asset-descriptor-config .modal-content-right {
  flex-shrink: 1 !important;
}
fdx-mdb-asset-descriptor-config .modal-content-right .asset-browse-list-item-container {
  padding-top: 15rem;
  padding-bottom: 5rem;
  height: auto;
}
fdx-mdb-asset-descriptor-config .preview-section {
  margin: 20rem 30rem;
}
fdx-mdb-asset-descriptor-config .preview-section-header {
  font-weight: bold;
  color: #666;
  border-bottom: 1px solid;
  padding-bottom: 12rem;
}
fdx-mdb-asset-descriptor-config .preview-section-card {
  margin-top: 24rem;
  background-color: white;
  border: 1px solid #C5C5C5;
  box-shadow: 0px 0px 10px #00000033;
  margin: 15rem;
  padding: 15px;
}
.asset-browse-properties-configure-menu .isSelected a,
.asset-browse-properties-configure-menu .isSelected a:hover {
  color: #d3d3d3;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.selectedOption {
  width: 280rem;
  display: inline-block;
}
.vs-scroll-shadow {
  position: absolute;
  z-index: 200;
  opacity: 0;
  transition: all linear 150ms;
}
.vs-scroll-shadow:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity ease-out 0.5s;
  transition: opacity ease-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  pointer-events: none;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bfd2d2d2', endColorstr='#00d2d2d2', GradientType=0);
}
.vs-scroll-container {
  width: 99.9%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  background-color: white;
  z-index: 94;
  position: relative;
}
.vs-scroll-container .canvas {
  background-color: white;
  position: relative;
}
.vs-scroll-container div.renderer {
  width: 100%;
  cursor: pointer;
  height: 30rem;
  position: absolute;
  color: #333;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  border-bottom: 1rem solid #d3d3d3;
}
.vs-scroll-container div.renderer.odd {
  background-color: #F6F6F6;
}
.vs-scroll-container div.renderer.selected div,
.vs-scroll-container div.renderer .selected div {
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  padding-left: 7rem;
}
.vs-scroll-container div.renderer.selected::before,
.vs-scroll-container div.renderer .selected::before {
  content: "";
  background-color: #00677d;
  position: absolute;
  height: 100%;
  width: 6rem;
}
.vs-scroll-container div.renderer:hover {
  box-shadow: 0rem 0rem 50rem -8rem #999;
  z-index: 300;
}
.vs-scroll-container div.no-items {
  text-align: center;
  padding: 100rem 30rem 0;
  color: #989898;
  font-style: italic;
}
#fdxMdbSearchResultsList .vs-scroll-container div.renderer:hover {
  box-shadow: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-container-data-clean .modal-body {
  min-height: 300rem;
}
fdx-mdb-container-data-clean .description {
  border: 1px solid #3191b2;
  padding: 10rem;
  margin-bottom: 15rem;
  background: #f6fbfc;
}
fdx-mdb-container-data-clean .description .fdxicon-regular {
  float: left;
  color: #00a9ce;
  font-size: 20rem;
}
fdx-mdb-container-data-clean .description-text {
  margin-bottom: 5rem;
  margin-left: 30rem;
}
fdx-mdb-container-data-clean .description ul {
  margin: 0;
}
fdx-mdb-container-data-clean .values {
  margin-bottom: 10rem;
}
fdx-mdb-container-data-clean .values label {
  font-weight: bold;
}
fdx-mdb-container-data-clean .alert-danger {
  padding: 0 10rem;
  margin-bottom: 0;
}
fdx-mdb-container-data-clean .alert-danger .alert-text {
  line-height: 28rem;
}
fdx-mdb-container-data-clean .form-control.uppercase {
  text-transform: uppercase;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-data-conversion-log .modal-body {
  height: 600rem !important;
  overflow: hidden;
}
fdx-mdb-data-conversion-log .no-conversions {
  text-align: center;
  line-height: 500rem;
  font-style: italic;
  color: grey;
  font-size: 16rem;
}
fdx-mdb-data-conversion-log .conversion-tasks {
  max-height: 580rem;
  overflow: auto;
}
fdx-mdb-data-conversion-log .conversion-tasks .fdx-warning {
  color: #ce6c0d;
}
fdx-mdb-data-conversion-log .conversion-tasks .cr-task-successful {
  color: #6aa445;
}
fdx-mdb-data-conversion-log .conversion-tasks .cr-task-failed,
fdx-mdb-data-conversion-log .conversion-tasks .cr-task-cancelled,
fdx-mdb-data-conversion-log .conversion-tasks .fdx-circle-alert {
  color: #aa1c1c;
}
fdx-mdb-data-conversion-log .conversion-tasks .fdx-tick-bold {
  margin-left: 20rem;
}
fdx-mdb-data-conversion-log .conversion-tasks .cancel-conversion,
fdx-mdb-data-conversion-log .conversion-tasks .toggle-datasets {
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-data-conversion-log .conversion-tasks .cr-view-issue {
  text-align: center;
  color: #00a9ce;
  cursor: pointer;
}
fdx-mdb-data-conversion-log .conversion-tasks .more-datasets-badge {
  color: #999999;
  border: 1px solid #999999;
  border-radius: 10rem;
  padding: 0 5rem;
  font-size: 12rem;
  margin-left: 2rem;
}
fdx-mdb-data-conversion-log .conversion-tasks .task-inprogress {
  position: relative;
  padding: 16rem;
}
fdx-mdb-data-conversion-log .issue-log {
  max-height: 580rem;
  overflow: auto;
}
fdx-mdb-data-conversion-log .issue-log .link {
  cursor: pointer;
  color: #0090b2;
}
fdx-mdb-data-conversion-log .issue-log .link:hover {
  color: #005266;
}
fdx-mdb-data-conversion-log .issue-log-controls {
  position: absolute;
  margin-left: 10rem;
  width: calc(100% - 290rem);
  z-index: 1;
}
fdx-mdb-data-conversion-log .issue-log-controls .link {
  margin-top: 10rem;
  display: inline-block;
}
fdx-mdb-data-conversion-log .issue-log-controls .btn-default {
  float: right;
}
fdx-mdb-data-conversion-log .issue-log-pagination {
  text-align: center;
}
fdx-mdb-data-conversion-log .issue-log .download-message {
  float: right;
  margin-top: 6rem;
  margin-right: 10rem;
}
fdx-mdb-data-conversion-log .issue-log .download-message fdx-loading {
  display: inline-block;
  line-height: 20rem;
}
fdx-mdb-data-conversion-log .issue-log .download-message span.download-msg {
  line-height: 28rem;
  display: inline-block;
  vertical-align: text-bottom;
  font-style: italic;
  color: grey;
  margin-left: 5rem;
}
fdx-mdb-data-conversion-log .issue-log .load-more {
  position: relative;
  height: 20rem;
  margin: 20rem 0 20rem;
}

fdx-mdb-dataset-data-download .modal-body {
  overflow-y: visible !important;
  overflow-x: visible;
  min-height: 60rem;
}
fdx-mdb-dataset-data-download .modal-body .row {
  margin-bottom: 10rem;
}
fdx-mdb-dataset-data-download .modal-body .row fdx-dropdown .selected-list {
  max-height: 150rem;
  overflow: auto;
}
fdx-mdb-dataset-data-download .modal-body .row .label {
  font-weight: bold;
  display: inline-block;
  margin-top: 10rem;
  padding-left: 34rem;
}
fdx-mdb-dataset-data-download .modal-body .row .label .select-all {
  font-weight: normal;
  right: 15rem;
  z-index: 1;
  top: 11rem;
  text-decoration: underline;
  color: #3191b2;
  cursor: pointer;
}
fdx-mdb-dataset-data-download .modal-body .row .label .select-all:hover {
  color: #134759;
}
fdx-mdb-dataset-data-download .modal-body .row .label .select-all.disabled {
  cursor: not-allowed;
  color: grey;
  font-style: italic;
  text-decoration: none;
}
fdx-mdb-dataset-data-download .modal-body .row input.checkbox {
  margin-top: 10rem;
  height: 20rem;
}
fdx-mdb-dataset-data-download .modal-body .row.loader {
  position: relative;
  min-height: 50rem;
}
fdx-mdb-dataset-data-download .modal-body .row .column-group.assets .searchable-dropdown .dropdown-container {
  width: calc(100% - 81rem);
}
fdx-mdb-dataset-data-download .modal-body .no-download {
  text-align: center;
  padding: 50rem 15rem;
  font-style: italic;
  font-size: 16rem;
  color: #999;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.dataset-data-upload .m-body {
  position: relative;
  min-height: 450rem;
  padding: 15rem;
  padding-bottom: 0;
  overflow: hidden;
}
.dataset-data-upload .m-body .upload-form {
  float: left;
  margin-right: 15rem;
  width: calc(50% - 30rem);
  transition: all 0.5s ease;
  overflow: hidden;
}
.dataset-data-upload .m-body .upload-form.open {
  width: 100%;
}
.dataset-data-upload .m-body .upload-form input[type="file"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.dataset-data-upload .m-body .upload-form .dataset-data-upload-form {
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  height: 420rem;
  width: 100%;
  transition: background-color 0.3s ease;
}
.dataset-data-upload .m-body .upload-form .dataset-data-upload-form p {
  transition: 0.3s ease;
}
.dataset-data-upload .m-body .upload-form .dataset-data-upload-form img {
  width: 5em;
}
.dataset-data-upload .m-body .upload-form .dataset-data-upload-form .fdxicon-regular {
  font-size: 10em;
  z-index: -1;
}
.dataset-data-upload .m-body .upload-form .dataset-data-upload-form:hover p {
  color: #00a9ce;
}
.dataset-data-upload .m-body .upload-form .dataset-data-upload-form__dragover {
  background-color: #d3d3d3;
}
.dataset-data-upload .m-body .files-list {
  float: left;
  height: 420rem;
  width: 50%;
  overflow: hidden;
  position: absolute;
  right: 15rem;
  transition: all 0.5s ease;
}
.dataset-data-upload .m-body .files-list.open {
  right: -50%;
}
.dataset-data-upload .m-body .files-list-items {
  width: 100%;
  border: 1px solid #ccc;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100% - 49rem);
  margin-bottom: 10rem;
  transition: all 0.3s;
}
.dataset-data-upload .m-body .files-list-items-item {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 10rem 10rem 3rem;
  background: #fcfcfc;
}
.dataset-data-upload .m-body .files-list-items-item:nth-child(odd) {
  background: #0000000a;
}
.dataset-data-upload .m-body .files-list-items-item-label {
  position: relative;
  width: calc(100% - 20rem);
}
.dataset-data-upload .m-body .files-list-items-item-label.uploading {
  width: 100%;
}
.dataset-data-upload .m-body .files-list-items-item-label .file-name {
  display: inline-block;
  font-size: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 345rem;
}
.dataset-data-upload .m-body .files-list-items-item-label .fdxicon-regular {
  float: left;
  margin-right: 5rem;
}
.dataset-data-upload .m-body .files-list-items-item .remove-btn {
  position: absolute;
  right: 12rem;
  top: 12rem;
  cursor: pointer;
}
.dataset-data-upload .m-body .files-list-items-item .remove-btn:hover {
  color: #00a9ce;
}
.dataset-data-upload .m-body .files-list-items-item.file-loading {
  color: #999;
  font-style: italic;
}
.dataset-data-upload .m-body .files-list-items-item.file-error {
  font-style: italic;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader {
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: 3rem;
  top: -1px;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner {
  color: #000;
  display: inline-block;
  position: relative;
  width: 24rem;
  height: 24rem;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div {
  transform-origin: 12rem 12rem;
  animation: lds-spinner 1.2s linear infinite;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 1px;
  left: 12rem;
  width: 2rem;
  height: 5rem;
  border-radius: 20%;
  background: #000;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.dataset-data-upload .m-body .files-list-items-item .file-loader .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.dataset-data-upload .m-body .files-list-items-item .status.fdxicon-regular {
  position: absolute;
  top: 2rem;
  right: 5rem;
  font-size: 16rem;
}
.dataset-data-upload .m-body .files-list-items-item .status.fdxicon-regular.fdx-warning {
  color: #aa1c1c;
}
.dataset-data-upload .m-body .files-list-items-item .status.fdxicon-regular.fdx-tick {
  color: #6aa445;
}
.dataset-data-upload .m-body .files-list-items-item .success-message {
  color: #6aa445;
  font-size: 12rem;
  display: block;
  margin-right: 30rem;
  font-style: italic;
}
.dataset-data-upload .m-body .files-list-items-item .error-message {
  color: #aa1c1c;
  font-size: 12rem;
  display: block;
  margin-right: 30rem;
}
.dataset-data-upload .m-body .files-list .save-buttons {
  margin: 10rem 0;
  text-align: right;
  display: flex;
  justify-content: space-around;
}
.dataset-data-upload .m-body .files-list .save-buttons .btn {
  width: 100%;
}
.dataset-data-upload .m-body .files-list .save-buttons .btn + .btn {
  margin-left: 5rem;
  margin-bottom: 0;
}
.dataset-data-upload .m-body .files-list .upload-warning {
  text-align: center;
  padding: 8rem;
  max-height: 39rem;
  border: 1px solid #aa1c1c;
}
.dataset-data-upload.small-modal .m-body {
  min-height: 10rem;
}
.dataset-data-upload.small-modal .m-body .form-label {
  font-weight: bold;
  padding-top: 8rem;
  text-align: center;
}
.dataset-data-upload.small-modal .m-body .container-form-footer {
  margin: 10rem 0;
  text-align: right;
  display: flex;
  justify-content: space-around;
}
.dataset-data-upload.small-modal .m-body .container-form-footer .btn {
  width: 100%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.modal.modal-qaReport .modal-dialog {
  width: 900rem;
}
fdx-mdb-dataset-discrepancy-report .variable-select {
  height: 86rem;
  overflow-y: visible !important;
}
fdx-mdb-dataset-discrepancy-report .variable-select .dropdown-wrapper {
  position: relative;
  display: inline-block;
  width: 257rem;
  height: 40rem;
}
fdx-mdb-dataset-discrepancy-report .variable-select .fdx-arrows-ew {
  font-size: 20rem;
  margin: 10rem 10rem 0;
  vertical-align: top;
  display: inline-block;
}
fdx-mdb-dataset-discrepancy-report .comparison {
  height: 459rem;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls {
  position: absolute;
  top: 13rem;
  left: 15rem;
  right: 15rem;
  height: 38rem;
  z-index: 1;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item {
  display: inline-block;
  margin-right: 20rem;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item.table-title {
  float: left;
  font-size: 16rem;
  line-height: 38rem;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item.number {
  float: right;
  color: #333;
  padding: 8rem 0rem;
  line-height: 20rem;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item.number span:last-child {
  color: #00677d;
  font-weight: bold;
  font-size: 15rem;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item.hide-columns,
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item.download {
  float: right;
  margin-right: 0 !important;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-controls .item.hide-columns {
  margin-right: 15rem !important;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-table {
  position: relative;
  margin-top: 50rem;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-table .fdx-smart-table-wrapper .fdx-smart-table-body span {
  white-space: nowrap;
}
fdx-mdb-dataset-discrepancy-report .comparison .comparison-table .fdx-smart-table-wrapper .active {
  background: rgba(49, 145, 178, 0.09);
}
fdx-mdb-dataset-discrepancy-report .comparison .loading-msg {
  position: absolute;
  top: 255rem;
  width: calc(100% - 30rem);
  text-align: center;
  font-style: italic;
  color: #999;
}
fdx-mdb-dataset-discrepancy-report .comparison-footer {
  position: absolute;
  width: calc(100% - 220rem);
  text-align: right;
  padding-right: 50rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.modal.modal-dataset-view-data .modal-dialog .modal-body {
  transition: all 0.4s ease 0s;
}
fdx-mdb-dataset-view-data .modal-body {
  max-height: none;
  overflow: hidden;
}
fdx-mdb-dataset-view-data .modal-body .fdx-smart-table-body span {
  white-space: nowrap;
}
fdx-mdb-dataset-view-data .modal-body .loading-msg {
  position: absolute;
  top: calc(50% + 30rem);
  width: calc(100% - 30rem);
  text-align: center;
  font-style: italic;
  color: #999;
}
fdx-mdb-dataset-view-data .modal-body .fdx-loader {
  min-width: 500rem;
}
fdx-mdb-dataset-view-data .modal-body .has-no-data {
  display: inline-block;
  width: 550rem;
  font-style: italic;
  text-align: center;
  padding: 100rem 0;
}
fdx-mdb-dataset-view-data .modal-footer {
  text-align: center;
}
fdx-mdb-dataset-view-data .dataset-view-data-container {
  min-height: 80vh;
}
fdx-mdb-dataset-view-data .dataset-view-data-results {
  padding: 15rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
fdx-mdb-dataset-view-data .dataset-view-data-results .row-counts {
  padding: 5rem;
  text-align: right;
}
fdx-mdb-dataset-view-data .dataset-view-data-results .load-more {
  padding: 10rem;
  position: relative;
  height: 50rem;
}
fdx-mdb-dataset-view-data .fdx-smart-table-wrapper {
  height: 67vh !important;
  position: unset !important;
  margin-top: 20rem !important;
  overflow: auto !important;
}
fdx-mdb-dataset-view-data .fdx-smart-table-wrapper table {
  border-collapse: separate;
  border-top: 0;
}
fdx-mdb-dataset-view-data .fdx-smart-table-wrapper table thead tr th {
  background-color: #F3F3F3;
  border-top: 1px solid #DDDDDD;
  position: sticky;
  top: 0;
  z-index: 10;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-container-copy-asset .modal-body {
  height: 635rem!important;
  max-height: 635rem!important;
  color: #4c4c4c;
  background-color: #fcfcfc;
  max-height: initial;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict {
  display: flex;
  border: 1rem solid #d9d9d9;
  padding: 0;
  margin: 15rem;
  box-shadow: 0rem 6rem 12rem -12rem rgba(0, 0, 0, 0.63);
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict div.no-conflicts {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: gray;
  font-style: italic;
  margin: 2em 0 1em 0;
  text-align: center;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict div.no-conflicts h1 {
  font-size: 1.6em;
  margin-bottom: 1em;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict div.no-conflicts span {
  max-width: 40%;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .left-side {
  flex: 1 0 auto;
  --fdx-asset-tree-display-container-width: 1194rem;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu {
  width: 20em;
  margin: 1em;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
  padding: 1em;
  background: #fcfcfc;
  user-select: none;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
  box-shadow: 0 0 10px -6px;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card .message {
  flex: 1 1 auto;
  display: flex;
  gap: 1em;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card .message .card-icon {
  font-size: 1.5em;
  color: #00a9ce;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card .message .card-text {
  flex: 1 1 auto;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card .actions {
  display: flex;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card .actions .btn.btn-action {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .menu-card .actions .btn.btn-action.rigid {
  flex: 0;
  padding: 0.5em;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .bulk-warning {
  padding: 0 0.5em;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .bulk-resolve .asset-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .bulk-resolve label {
  line-height: 1.5;
  font-weight: normal;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .bulk-resolve label input + i + span {
  color: #686868;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .bulk-resolve label input:checked + i + span {
  color: #3191b2;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .flex-row {
  display: flex;
  align-items: center;
  line-height: 2;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .flex-row .title {
  font-weight: bold;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .flex-row .value {
  font-size: 1.2em;
  font-weight: bold;
  color: #0080ab;
}
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .flex-row .gutter,
.fdx-mdb-container-copy-asset .modal-body.page-conflict .right-menu .flex-row .btn {
  flex: 1;
}
.fdx-mdb-container-copy-asset .right-aligned {
  float: right;
}
.fdx-mdb-container-copy-asset .right-aligned > * {
  margin: 0 3rem;
}
.fdx-mdb-container-copy-asset-import {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 520rem;
  left: 0;
  padding: 10rem;
}
.fdx-mdb-container-copy-asset-import-label {
  height: 60rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10rem 20rem;
  display: flex;
}
.fdx-mdb-container-copy-asset-import-label-dropdown {
  float: left;
  margin: 0 10rem 0 0;
  white-space: nowrap;
  flex: 0 1 33%;
  max-width: 33%;
}
.fdx-mdb-container-copy-asset-import-label-dropdown:last-child {
  margin-right: 0rem;
}
.fdx-mdb-container-copy-asset-import-label-dropdown .dropdown {
  display: inline-block;
  width: 206rem;
  min-height: 43rem;
}
.fdx-mdb-container-copy-asset-import-tools {
  position: absolute;
  padding: 6rem;
  top: 60rem;
  left: 20rem;
  right: 20rem;
  height: 50rem;
  border-top: 1rem solid #d8d8d8;
  border-left: 1rem solid #d8d8d8;
  background-color: #fff;
  border-right: 1rem solid #d8d8d8;
}
.fdx-mdb-container-copy-asset-import-tools-search {
  position: relative;
  width: 200rem;
  float: left;
}
.fdx-mdb-container-copy-asset-import-tools-search .fdxicon-regular {
  right: 15rem;
  position: absolute;
  padding: 10rem;
  pointer-events: none;
}
.fdx-mdb-container-copy-asset-import-asset-list {
  position: absolute;
  top: 110rem;
  left: 20rem;
  right: 20rem;
  bottom: 20rem;
  border: 1rem solid #d9d9d9;
  overflow: auto;
  background-color: #fff;
}
.fdx-mdb-container-copy-asset-import-asset-list-tree {
  position: relative;
}
.fdx-mdb-container-copy-asset-import-asset-list-tree .btn-primary {
  position: absolute;
  right: 0;
  top: 5rem;
}
.fdx-mdb-container-copy-asset-import-asset-list-tree-wrapper {
  margin-top: 13rem !important;
  margin-left: 0 !important;
}
.fdx-mdb-container-copy-asset-import-asset-list-tree-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
.fdx-mdb-container-copy-asset-import-asset-list-no-tree {
  color: #ababab;
  font-style: italic;
  text-align: center;
  margin-top: 28rem;
  font-size: 18rem;
}
.fdx-mdb-container-copy-asset-import .fdx-mdb-container-copy-asset-import-tools .toolbar-button {
  width: auto;
  margin: 0;
  padding: 8rem 12rem;
  font-size: 15rem;
  line-height: 1.2;
}
.fdx-mdb-container-copy-asset-import .fdx-mdb-container-copy-asset-import-tools .toolbar-button:hover,
.fdx-mdb-container-copy-asset-import .fdx-mdb-container-copy-asset-import-tools .toolbar-button.toggled {
  background: #00a9ce;
  border: 1rem solid white;
  color: white;
}
.fdx-mdb-container-copy-asset-target {
  position: absolute;
  top: 0;
  right: 20rem;
  bottom: 20rem;
  width: 500rem;
}
.fdx-mdb-container-copy-asset-target-title {
  line-height: 65rem !important;
  font-weight: bold;
}
.fdx-mdb-container-copy-asset-target-content {
  position: absolute;
  top: 60rem;
  right: 0;
  bottom: 260rem;
  width: 100%;
  padding: 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.fdx-mdb-container-copy-asset-target-content-section {
  white-space: nowrap;
  margin-bottom: 10rem;
}
.fdx-mdb-container-copy-asset-target-content-section p {
  margin: 0;
}
.fdx-mdb-container-copy-asset-target-content-section .group-icon {
  padding: 5rem 10rem;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 100rem;
}
.fdx-mdb-container-copy-asset-target-content-section .group-icon .fdxicon-regular {
  font-size: 32rem;
}
.fdx-mdb-container-copy-asset-target-content-section .group-details {
  display: inline-block;
  margin-left: 5rem;
  width: calc(100% - 115rem);
}
.fdx-mdb-container-copy-asset-target-content-section .group-details-name {
  margin: 6rem 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fdx-mdb-container-copy-asset-target-content-section .group-details .container-options {
  margin-top: 10rem;
  width: auto;
  width: 350rem;
}
.fdx-mdb-container-copy-asset-target-content-section .group-details .container-options.text {
  line-height: 36rem;
  margin: 0;
  display: inline-block;
}
.fdx-mdb-container-copy-asset-target-content-section .group-details h1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fdx-mdb-container-copy-asset-target-content-section:first-child {
  border-bottom: 1rem solid #d9d9d9;
  padding-bottom: 10rem;
}
.fdx-mdb-container-copy-asset-target-conflict {
  position: absolute;
  top: 250rem;
  right: 0;
  bottom: 50rem;
  width: 100%;
  padding: 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.fdx-mdb-container-copy-asset-target-conflict label {
  line-height: 25rem;
}
.fdx-mdb-container-copy-asset-target-conflict-checkbox {
  display: block;
  margin-bottom: 2rem;
}
.fdx-mdb-container-copy-asset-target-conflict-checkbox label {
  line-height: initial;
  margin-bottom: 0;
}
.fdx-mdb-container-copy-asset-target-conflict-checkbox-all-conts {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
}
.fdx-mdb-container-copy-asset-target .cancel-button {
  position: absolute;
  right: 255rem;
  bottom: 0rem;
  width: 49%;
}
.fdx-mdb-container-copy-asset-target .import-button {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  width: 49%;
}
.fdx-mdb-container-copy-asset .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
.fdx-mdb-container-copy-asset .bold {
  font-weight: bold;
}
.fdx-mdb-container-copy-asset .italic {
  font-style: italic;
}
.fdx-mdb-container-copy-asset .small {
  font-size: 0.8em;
}
.fdx-mdb-container-copy-asset .brackets:before {
  content: '(';
}
.fdx-mdb-container-copy-asset .brackets:after {
  content: ')';
}
.tooltip.asset-selection-tree-text-tooltip {
  max-width: 500rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.tooltip.tooltip-above-modal {
  z-index: 1051;
}
.dropdown-menu.import-asset-selection-options-menu .category {
  padding: 7rem;
  border-bottom: 1rem solid #d9d9d9;
  font-family: "interstate", Helvetica, sans-serif;
  font-size: 11rem;
  font-weight: bold;
  background: #f2f2f2;
  color: #00677d;
  text-decoration: none;
  text-transform: uppercase;
}
ul.asset-selection-tree-display {
  --fdx-asset-tree-display-container-width-default: 974rem;
  --fdx-asset-tree-display-container-width-internal: var(--fdx-asset-tree-display-container-width, var(--fdx-asset-tree-display-container-width-default));
  padding: 0;
  list-style: none;
  position: relative;
}
ul.asset-selection-tree-display.relink {
  --fdx-asset-tree-display-container-width-default: 1536rem;
}
ul.asset-selection-tree-display:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -0.5em;
  bottom: 0;
  left: 1.5em;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
ul.asset-selection-tree-display.skeleton * {
  background: transparent !important;
  box-shadow: none !important;
}
ul.asset-selection-tree-display.skeleton li .related-asset-inner.skeleton-box {
  font-size: 1.2em;
  min-height: 55rem;
  overflow: hidden;
}
ul.asset-selection-tree-display.skeleton li .related-asset-inner.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-150%);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0));
  animation: shimmer linear 4s infinite;
  content: '';
}
@keyframes shimmer {
  100% {
    transform: translateX(350%);
  }
}
ul.asset-selection-tree-display li {
  position: relative;
  margin: 0;
  padding: 0 0 0 3em;
  font-weight: bold;
  display: block;
}
ul.asset-selection-tree-display li:before {
  content: "";
  display: block;
  position: absolute;
  top: 2em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
ul.asset-selection-tree-display li:last-child:before {
  background: #fff;
  height: auto;
}
ul.asset-selection-tree-display li input.collapse-checkbox {
  display: none;
}
ul.asset-selection-tree-display li .asset-row {
  display: flex;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner {
  position: relative;
  flex: 1 0 auto;
  vertical-align: middle;
  display: flex;
  justify-content: flex-start;
  margin: 0.5em 0;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner > * {
  border-left: 1rem solid #d6d6d6;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner label.collapse-label {
  width: auto;
  margin: 0;
  padding: 0 0.5em;
  cursor: pointer;
  align-self: center;
  border-left: none;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details {
  align-items: center;
  display: flex;
  flex: 1 1;
  min-width: 25em;
  min-height: 55rem;
  white-space: nowrap;
  font-weight: normal;
  font-size: 0.8em;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details:first-child {
  border-left: none;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .flex-row {
  align-items: center;
  display: flex;
  flex: 1;
  margin: 0 0.5em;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box {
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: flex-start;
  background-color: white;
  border-radius: 5rem;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box.wrapped {
  flex-wrap: wrap;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .asset-type-box {
  display: flex;
  align-items: center;
  border: 1rem solid #999999;
  border-radius: 5rem;
  padding: 0em 1em;
  margin: 0.5em 0;
  font-size: 0.9em;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .asset-type-box .asset-type-icon {
  line-height: 1.1;
  margin-right: 0.2em;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box > label.btn {
  margin: 0.5em 0;
  padding: 0;
  flex: 1;
  line-height: 2em;
  background: #00a9ce;
  color: white;
  border-color: #0080ab;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .btn-group {
  display: flex;
  flex: 0 1 auto;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .btn-group .btn {
  line-height: 1;
  margin: 0.5em 0;
  background-color: transparent;
  color: #333;
  padding: 0.5em 1em;
  flex: 1;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .btn-group .btn.active {
  background-color: #00a9ce;
  color: white;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .btn-group .btn:hover {
  background-color: #0087ab;
  color: white;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box .choice-disabled-warn {
  text-align: center;
  flex: 1;
  margin: 0.5em 0;
  padding: 0em 1em;
  border-radius: 4rem;
  border: 1rem solid #0080ab;
  background: #00a9ce;
  color: white;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box fdx-dropdown {
  flex: 1;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box fdx-dropdown .dropdown-wrapper {
  width: auto;
  display: inherit;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box fdx-dropdown .dropdown-wrapper .dropdown {
  line-height: auto !important;
  border: none !important;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details .asset-type-box fdx-dropdown .dropdown-wrapper .dropdown.single {
  line-height: auto !important;
  border: none !important;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.row-label {
  width: 100%;
  font-weight: bold;
  margin-bottom: -1em;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper {
  flex: 0 1 calc((var(--fdx-asset-tree-display-container-width-internal) / 2) / 2.6);
  height: fit-content;
  line-height: 38rem;
  display: inline-flex;
  justify-content: flex-end;
  font-size: 14rem;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper > * {
  padding: 0 0.5em;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper > fdx-dropdown {
  padding: 0;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper > .boxed {
  border: 1px solid #d9d9d9;
  margin-left: -1px;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-label {
  flex: 1;
  padding: 0 9rem 0 9rem;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn {
  width: auto;
  line-height: 38rem;
  height: max-content;
  text-align: center;
  color: #00a9ce;
  cursor: pointer;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn:hover:not(.disabled) {
  border-color: #00a9ce;
  z-index: 1;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn.disabled {
  cursor: default;
  color: #d9d9d9;
  border-color: transparent;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn.fdxicon-regular {
  margin-top: 0 !important;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner.has-children {
  padding-left: 0;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner.selected {
  border: 1rem solid #00a9ce;
  box-shadow: 0rem 2rem 6rem 0 rgba(0, 160, 206, 0.1);
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner.selected .asset-details {
  box-shadow: 0em 0 20rem -5rem rgba(0, 160, 206, 0.3);
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner.not-suggested ~ span.rule {
  opacity: 0.5;
}
ul.asset-selection-tree-display li .asset-row .related-asset-inner.not-suggested:not(.selected) {
  background: #d9d9d9;
  opacity: 0.5;
}
ul.asset-selection-tree-display li .asset-row-info {
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  min-width: fit-content;
  flex: 0 1 calc(var(--fdx-asset-tree-display-container-width-internal) / 2);
  margin: 0.5em 0;
  padding-right: 1em;
}
ul.asset-selection-tree-display li .asset-row-info:has(.msg-wrapper):before {
  content: "";
  display: block;
  top: 2em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  border-radius: 5rem;
  min-height: 55rem;
  padding: 0 1em;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper.info {
  color: #00a9ce;
  border: 1rem solid #00a9ce;
  background-color: #e5f4f8;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper.info *::selection {
  color: white !important;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper.warning {
  color: #c4772b;
  border: 1rem solid #c4772b;
  background-color: #e7c5a3;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper.warning *::selection {
  color: white !important;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper .msg {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-weight: normal;
}
ul.asset-selection-tree-display li .asset-row-info .msg-wrapper .msg .fdxicon-regular {
  width: auto;
}
ul.asset-selection-tree-display li .asset-row span.icon {
  font-size: 2em;
  margin-right: 7rem;
}
ul.asset-selection-tree-display li span.badge {
  margin: 0.5em;
  font-weight: normal;
  vertical-align: middle;
  font-size: 13rem;
  border: 1rem solid;
  padding: 5rem;
  border-radius: 5rem;
  user-select: none;
}
ul.asset-selection-tree-display li span.badge.rule {
  color: #97510b;
}
ul.asset-selection-tree-display li span.badge.analysis-variable {
  color: #999;
}
ul.asset-selection-tree-display li .asset-select-options-dropdown-wrapper {
  display: inline-block;
}
ul.asset-selection-tree-display .asset-text-wrapper {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 0 auto;
  font-size: 1.4em;
}
ul.asset-selection-tree-display .asset-text-wrapper .asset-text {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20em;
  margin-right: 5rem;
}
ul.asset-selection-tree-display .asset-text-wrapper .asset-text.bold {
  font-weight: bold;
}
ul.asset-selection-tree-display .asset-text-wrapper .asset-text.italic {
  font-style: italic;
}
ul.asset-selection-tree-display .asset-text-wrapper .asset-text.small {
  font-size: 0.8em;
}
ul.asset-selection-tree-display .asset-text-wrapper .asset-text.brackets:before {
  content: '(';
}
ul.asset-selection-tree-display .asset-text-wrapper .asset-text.brackets:after {
  content: ')';
}
ul.asset-selection-tree-display .btn.btn-select-options {
  width: auto;
  padding: 0.4em;
  margin: 0 -0.2em 0 0.4em;
  border-radius: 0.5em;
  color: #00a9ce;
}
ul.asset-selection-tree-display .btn.btn-select-options:before {
  display: inline-block;
  transform: rotate(90deg);
}
ul.asset-selection-tree-display .tooltip {
  max-width: initial;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.tooltip.tooltip-above-modal {
  z-index: 1051;
}
ul.asset-conflict-tree-display {
  --fdx-asset-tree-display-container-width-default: 1536rem;
  --fdx-asset-tree-display-container-width-internal: var(--fdx-asset-tree-display-container-width, var(--fdx-asset-tree-display-container-width-default));
  padding: 0;
  list-style: none;
  position: relative;
}
ul.asset-conflict-tree-display:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -0.5em;
  bottom: 0;
  left: 1.5em;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
ul.asset-conflict-tree-display li {
  position: relative;
  margin: 0;
  padding: 0 0 0 3em;
  font-weight: bold;
  display: block;
}
ul.asset-conflict-tree-display li:before {
  content: "";
  display: block;
  position: absolute;
  top: 2em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
ul.asset-conflict-tree-display li:last-child:before {
  background: #fcfcfc;
  height: auto;
}
ul.asset-conflict-tree-display li input.collapse-checkbox {
  display: none;
}
ul.asset-conflict-tree-display li .import-conflict-tree {
  display: flex;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner {
  vertical-align: middle;
  justify-content: flex-start;
  margin: 0.5em 0;
  border-radius: 5rem;
  flex: 1 0 auto;
  display: flex;
  border: 1rem solid #d9d9d9;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner > * {
  border-left: 1rem solid #d6d6d6;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner label.collapse-label {
  width: auto;
  margin: 0;
  padding: 0 0.5em;
  cursor: pointer;
  align-self: center;
  border-left: none;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details {
  display: flex;
  flex: 1 1;
  min-width: 25em;
  white-space: nowrap;
  font-weight: normal;
  font-size: 0.8em;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details:first-child {
  border-left: none;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0 1em;
  background-color: white;
  border-radius: 5rem;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row .arrow {
  font-size: 2em;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row .arrow:before {
  content: "↔";
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row fdx-dropdown {
  flex: 1;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row fdx-dropdown .dropdown-wrapper {
  width: auto;
  display: inherit;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row fdx-dropdown .dropdown-wrapper .dropdown {
  line-height: auto !important;
  border: none !important;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row fdx-dropdown .dropdown-wrapper .dropdown.single {
  line-height: auto !important;
  border: none !important;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row .asset-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 0 auto;
  font-size: 1.4em;
  font-weight: bold;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row .asset-type-box {
  display: flex;
  align-items: center;
  border: 1rem solid #999999;
  border-radius: 5rem;
  padding: 0em 1em;
  margin: 0.5em 0;
  font-size: 0.9em;
  font-weight: bold;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row .asset-type-box .asset-type-icon {
  line-height: 1.1;
  margin-right: 0.2em;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row > label.btn {
  margin: 0.5em 0;
  padding: 0;
  flex: 1;
  line-height: 2em;
  background: #00a9ce;
  color: white;
  border-color: #0080ab;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details .flex-row .choice-disabled-warn {
  text-align: center;
  flex: 1;
  margin: 0.5em 0;
  padding: 0em 1em;
  border-radius: 4rem;
  border: 1rem solid #0080ab;
  background: #00a9ce;
  color: white;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.row-label {
  width: 100%;
  font-weight: bold;
  margin-bottom: -1em;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper {
  flex: 0 1 calc((var(--fdx-asset-tree-display-container-width-internal) / 2) / 2.6);
  height: fit-content;
  display: inline-flex;
  justify-content: flex-end;
  font-size: 14rem;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper > * {
  padding: 0 0.5em;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper > fdx-dropdown {
  padding: 0;
  max-width: 255px;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper > .boxed {
  border: 1px solid #d9d9d9;
  margin-left: -1px;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.target-asset-only-target {
  align-items: center;
  display: flex;
  flex: 1;
  padding: 0 9rem 0 9rem;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.target-asset-only-target .target-asset-only-target-span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 14em;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.target-asset-only-target .flex-row {
  padding: 0;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.boxed-btn {
  width: auto;
  line-height: 38rem;
  height: max-content;
  text-align: center;
  color: #00a9ce;
  cursor: pointer;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.boxed-btn:hover:not(.disabled) {
  border-color: #00a9ce;
  z-index: 1;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.boxed-btn.disabled {
  cursor: default;
  color: #d9d9d9;
  border-color: transparent;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner div.import-conflict-tree-asset-details span.boxed-label-wrapper span.boxed-btn.fdxicon-regular {
  margin-top: 0 !important;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner.has-children {
  padding-left: 0;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner.selected {
  border: 1rem solid #00a9ce;
  box-shadow: 0rem 2rem 6rem 0 rgba(0, 160, 206, 0.1);
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner.selected .asset-details {
  box-shadow: 0em 0 20rem -5rem rgba(0, 160, 206, 0.3);
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner.not-suggested ~ span.rule {
  opacity: 0.5;
}
ul.asset-conflict-tree-display li .import-conflict-tree .import-conflict-tree-related-asset-inner.not-suggested:not(.selected) {
  background: #d9d9d9;
  opacity: 0.5;
}
ul.asset-conflict-tree-display li .import-conflict-info {
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  min-height: 55rem;
  min-width: fit-content;
  flex: 0 1 calc(var(--fdx-asset-tree-display-container-width-internal) / 2);
  margin: 0.5em 0;
  padding-right: 1em;
}
ul.asset-conflict-tree-display li .import-conflict-info:has(.conflict-msg):before {
  content: "";
  display: block;
  top: 2em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  border-radius: 5rem;
  min-height: 55rem;
  padding: 0 1em;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper.info {
  color: #00a9ce;
  border: 1rem solid #00a9ce;
  background-color: #e5f4f8;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper.info *::selection {
  color: white !important;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper.warning {
  color: #c4772b;
  border: 1rem solid #c4772b;
  background-color: #e7c5a3;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper.warning *::selection {
  color: white !important;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper .conflict-msg {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-weight: normal;
}
ul.asset-conflict-tree-display li .import-conflict-info .conflict-msg-wrapper .conflict-msg .fdxicon-regular {
  width: auto;
}
ul.asset-conflict-tree-display li .import-conflict-info .btn-group {
  display: flex;
  flex: 0 1 auto;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
  background-color: white;
}
ul.asset-conflict-tree-display li .import-conflict-info .btn-group:last-child {
  border-right: none;
}
ul.asset-conflict-tree-display li .import-conflict-info .btn-group .btn {
  line-height: 1;
  font-size: 12rem;
  border-right: 1rem solid #d9d9d9;
  color: #333;
  font-weight: normal;
  padding: 0.5em;
  flex: 1;
}
ul.asset-conflict-tree-display li .import-conflict-info .btn-group .btn.active {
  background-color: #00a9ce;
  color: white;
}
ul.asset-conflict-tree-display li .import-conflict-info .btn-group .btn:hover {
  background-color: #0087ab;
  color: white;
}
ul.asset-conflict-tree-display li .import-conflict-info .choice-disabled-warn {
  text-align: center;
  flex: 1;
  margin: 0.5em 0;
  padding: 0em 1em;
  border-radius: 4rem;
  border: 1rem solid #0080ab;
  background: #00a9ce;
  color: white;
}
ul.asset-conflict-tree-display li span.icon {
  font-size: 1.5em;
}
ul.asset-conflict-tree-display li span.rule {
  margin: 0.5em;
  font-weight: normal;
  vertical-align: middle;
  color: #97510b;
  font-size: 13rem;
  border: 1rem solid #97510b;
  padding: 5rem;
  border-radius: 5rem;
}
ul.asset-conflict-tree-display li .asset-select-options-dropdown-wrapper {
  display: inline-block;
}
ul.asset-conflict-tree-display span.none {
  color: #6666;
  font-style: italic;
  padding: 0;
}
ul.asset-conflict-tree-display .asset-text-wrapper {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 0 auto;
  font-size: 1.4em;
}
ul.asset-conflict-tree-display .asset-text-wrapper .asset-text {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
}
ul.asset-conflict-tree-display .asset-text-wrapper .asset-text.bold {
  font-weight: bold;
}
ul.asset-conflict-tree-display .asset-text-wrapper .asset-text.italic {
  font-style: italic;
}
ul.asset-conflict-tree-display .asset-text-wrapper .asset-text.small {
  font-size: 0.8em;
}
ul.asset-conflict-tree-display .asset-text-wrapper .asset-text.brackets:before {
  content: '(';
}
ul.asset-conflict-tree-display .asset-text-wrapper .asset-text.brackets:after {
  content: ')';
}
ul.asset-conflict-tree-display .btn.btn-select-options {
  width: auto;
  padding: 0.4em;
  margin: 0 -0.2em 0 0.4em;
  border-radius: 0.5em;
  color: #00a9ce;
}
ul.asset-conflict-tree-display .btn.btn-select-options:before {
  display: inline-block;
  transform: rotate(90deg);
}
ul.asset-conflict-tree-display .tooltip {
  max-width: initial;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-asset-smart-import .modal-body.page-import {
  gap: 1em;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-right {
  width: 30%;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-right .icon-wrapper {
  min-width: 80rem;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-right .checkbox-bottom {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 5rem;
  margin-top: 2em;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-right fdx-checkbox {
  display: block;
  margin-bottom: 2rem;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-right fdx-checkbox label {
  line-height: initial;
  margin-bottom: 0;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-right fdx-checkbox-all-conts {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .options-menu {
  padding: 1em;
  display: flex;
  gap: 0.5em;
  align-items: center;
  padding: 0.5em 1.5em;
  font-weight: bold;
  background-color: #F6F6F6;
  z-index: 5001;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .filter-menu .toolbar-button {
  width: auto;
  margin: 0;
  padding: 8rem 12rem;
  font-size: 15rem;
  line-height: 1.2;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .filter-menu .toolbar-button:hover,
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .filter-menu .toolbar-button.toggled {
  background: #00a9ce;
  border: 1rem solid white;
  color: white;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .filter-menu .toolbar-search {
  position: relative;
  width: 185rem;
  float: left;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .filter-menu .toolbar-search .fdxicon-regular {
  right: 0;
  position: absolute;
  padding: 10rem;
  pointer-events: none;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left .asset-trees {
  position: relative;
  min-height: 22em;
}
.fdx-mdb-asset-smart-import .modal-body.page-import .page-left fdx-dropdown.inline .dropdown-wrapper {
  width: auto;
}
.fdx-mdb-asset-smart-import div.suggestion {
  background-color: #99999926;
  border-radius: 5rem;
  margin: 1em;
  font-size: 1em;
}
.fdx-mdb-asset-smart-import div.suggestion .suggestion-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.fdx-mdb-asset-smart-import div.suggestion .suggestion-title,
.fdx-mdb-asset-smart-import div.suggestion .suggestion-collapse {
  padding: 10rem;
}
.fdx-mdb-asset-smart-import div.suggestion .suggestion-assets {
  padding-bottom: 1em;
  overflow: hidden;
}
.fdx-mdb-asset-smart-import .fdxicon-regular {
  width: auto !important;
  margin: 0;
}
.fdx-mdb-asset-smart-import hr {
  margin-top: 0;
  margin-bottom: 0;
}
.fdx-mdb-asset-smart-import .rel {
  position: relative;
}
.fdx-mdb-asset-smart-import .flex {
  display: flex;
}
.fdx-mdb-asset-smart-import .flex.gapped {
  gap: 1em;
}
.fdx-mdb-asset-smart-import .flex.gapped-sm {
  gap: 0.5em;
}
.fdx-mdb-asset-smart-import .flex.space-between {
  justify-content: space-between;
}
.fdx-mdb-asset-smart-import .flex.center {
  align-items: center;
}
.fdx-mdb-asset-smart-import .flex.baseline {
  align-items: baseline;
}
.fdx-mdb-asset-smart-import .flex > div {
  flex: 0 1 auto;
}
.fdx-mdb-asset-smart-import .flex > div.flex-expand {
  flex: 1 0 auto;
}
.fdx-mdb-asset-smart-import .text-icon-large {
  font-size: 32rem;
}
.fdx-mdb-asset-smart-import .text-small {
  font-size: 0.8em;
}
.fdx-mdb-asset-smart-import .pointer {
  cursor: pointer;
}
.fdx-mdb-asset-smart-import .boxed {
  border: 1px solid #d9d9d9;
  background-color: white;
}
.fdx-mdb-asset-smart-import .pad {
  padding: 1em;
}
.fdx-mdb-asset-smart-import .pad-none {
  padding: 0;
}
.fdx-mdb-asset-smart-import .pad-small {
  padding: 5rem;
}
.fdx-mdb-asset-smart-import .pad-large {
  padding: 1.5em;
}
.fdx-mdb-asset-smart-import .margin {
  margin: 1em;
}
.fdx-mdb-asset-smart-import .margin-none {
  margin: 0;
}
.fdx-mdb-asset-smart-import .margin-small {
  margin: 5rem;
}
.fdx-mdb-asset-smart-import .margin-large {
  margin: 1.5em;
}
.fdx-mdb-asset-smart-import .align-center {
  text-align: center;
}
.fdx-mdb-asset-smart-import .ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fdx-mdb-asset-smart-import .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}
.fdx-mdb-asset-smart-import .bold {
  font-weight: bold;
}
.fdx-mdb-asset-smart-import .italic {
  font-style: italic;
}
.fdx-mdb-asset-smart-import .small {
  font-size: 0.8em;
}
.fdx-mdb-asset-smart-import .brackets:before {
  content: '(';
}
.fdx-mdb-asset-smart-import .brackets:after {
  content: ')';
}
.afdx-mdb-asset-smart-import .modal-body {
  height: 635rem!important;
  max-height: 635rem!important;
  color: #4c4c4c;
  background-color: #fcfcfc;
  max-height: initial;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict {
  display: flex;
  border: 1rem solid #d9d9d9;
  padding: 0;
  margin: 15rem;
  box-shadow: 0rem 6rem 12rem -12rem rgba(0, 0, 0, 0.63);
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict div.no-conflicts {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: gray;
  font-style: italic;
  margin: 2em 0 1em 0;
  text-align: center;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict div.no-conflicts h1 {
  font-size: 1.6em;
  margin-bottom: 1em;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict div.no-conflicts span {
  max-width: 40%;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .left-side {
  flex: 1 0 auto;
  --fdx-asset-tree-display-container-width: 1194rem;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu {
  width: 20em;
  margin: 1em;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
  padding: 1em;
  background: #fcfcfc;
  user-select: none;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
  box-shadow: 0 0 10px -6px;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card .message {
  flex: 1 1 auto;
  display: flex;
  gap: 1em;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card .message .card-icon {
  font-size: 1.5em;
  color: #00a9ce;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card .message .card-text {
  flex: 1 1 auto;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card .actions {
  display: flex;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card .actions .btn.btn-action {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .menu-card .actions .btn.btn-action.rigid {
  flex: 0;
  padding: 0.5em;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .bulk-warning {
  padding: 0 0.5em;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .bulk-resolve .asset-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .bulk-resolve label {
  line-height: 1.5;
  font-weight: normal;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .bulk-resolve label input + i + span {
  color: #686868;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .bulk-resolve label input:checked + i + span {
  color: #3191b2;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .flex-row {
  display: flex;
  align-items: center;
  line-height: 2;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .flex-row .title {
  font-weight: bold;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .flex-row .value {
  font-size: 1.2em;
  font-weight: bold;
  color: #0080ab;
}
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .flex-row .gutter,
.afdx-mdb-asset-smart-import .modal-body.page-conflict .right-menu .flex-row .btn {
  flex: 1;
}
.afdx-mdb-asset-smart-import .right-aligned {
  float: right;
}
.afdx-mdb-asset-smart-import .right-aligned > * {
  margin: 0 3rem;
}
.afdx-mdb-asset-smart-import-import {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 520rem;
  left: 0;
  padding: 10rem;
}
.afdx-mdb-asset-smart-import-import-label {
  height: 60rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10rem 20rem;
  display: flex;
}
.afdx-mdb-asset-smart-import-import-label-dropdown {
  float: left;
  margin: 0 10rem 0 0;
  white-space: nowrap;
  flex: 0 1 33%;
  max-width: 33%;
}
.afdx-mdb-asset-smart-import-import-label-dropdown:last-child {
  margin-right: 0rem;
}
.afdx-mdb-asset-smart-import-import-label-dropdown .dropdown {
  display: inline-block;
  width: 206rem;
  min-height: 43rem;
}
.afdx-mdb-asset-smart-import-import-tools {
  position: absolute;
  padding: 6rem;
  top: 60rem;
  left: 20rem;
  right: 20rem;
  height: 50rem;
  border-top: 1rem solid #d8d8d8;
  border-left: 1rem solid #d8d8d8;
  background-color: #fff;
  border-right: 1rem solid #d8d8d8;
}
.afdx-mdb-asset-smart-import-import-tools-search {
  position: relative;
  width: 185rem;
  float: left;
}
.afdx-mdb-asset-smart-import-import-tools-search .fdxicon-regular {
  right: 15rem;
  position: absolute;
  padding: 10rem;
  pointer-events: none;
}
.afdx-mdb-asset-smart-import-import-asset-list {
  position: absolute;
  top: 110rem;
  left: 20rem;
  right: 20rem;
  bottom: 20rem;
  border: 1rem solid #d9d9d9;
  overflow: auto;
  background-color: #fff;
}
.afdx-mdb-asset-smart-import-import-asset-list-tree {
  position: relative;
}
.afdx-mdb-asset-smart-import-import-asset-list-tree .btn-primary {
  position: absolute;
  right: 0;
  top: 5rem;
}
.afdx-mdb-asset-smart-import-import-asset-list-tree-wrapper {
  margin-top: 13rem !important;
  margin-left: 0 !important;
}
.afdx-mdb-asset-smart-import-import-asset-list-tree-none {
  text-align: center;
  margin: 15rem 0 10rem;
  font-style: italic;
  color: #878787;
}
.afdx-mdb-asset-smart-import-import-asset-list-no-tree {
  color: #ababab;
  font-style: italic;
  text-align: center;
  margin-top: 28rem;
  font-size: 18rem;
}
.afdx-mdb-asset-smart-import-import .afdx-mdb-asset-smart-import-import-tools .toolbar-button {
  width: auto;
  margin: 0;
  padding: 8rem 12rem;
  font-size: 15rem;
  line-height: 1.2;
}
.afdx-mdb-asset-smart-import-import .afdx-mdb-asset-smart-import-import-tools .toolbar-button:hover,
.afdx-mdb-asset-smart-import-import .afdx-mdb-asset-smart-import-import-tools .toolbar-button.toggled {
  background: #00a9ce;
  border: 1rem solid white;
  color: white;
}
.afdx-mdb-asset-smart-import-target {
  position: absolute;
  top: 0;
  right: 20rem;
  bottom: 20rem;
  width: 500rem;
}
.afdx-mdb-asset-smart-import-target-title {
  line-height: 65rem !important;
  font-weight: bold;
}
.afdx-mdb-asset-smart-import-target-content {
  position: absolute;
  top: 60rem;
  right: 0;
  bottom: 260rem;
  width: 100%;
  padding: 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.afdx-mdb-asset-smart-import-target-content-section {
  white-space: nowrap;
  margin-bottom: 10rem;
}
.afdx-mdb-asset-smart-import-target-content-section p {
  margin: 0;
}
.afdx-mdb-asset-smart-import-target-content-section .group-icon {
  padding: 5rem 10rem;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 100rem;
}
.afdx-mdb-asset-smart-import-target-content-section .group-icon .fdxicon-regular {
  font-size: 32rem;
}
.afdx-mdb-asset-smart-import-target-content-section .group-details {
  display: inline-block;
  margin-left: 5rem;
  width: calc(100% - 115rem);
}
.afdx-mdb-asset-smart-import-target-content-section .group-details-name {
  margin: 6rem 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.afdx-mdb-asset-smart-import-target-content-section .group-details .container-options {
  margin-top: 10rem;
  width: auto;
  width: 350rem;
}
.afdx-mdb-asset-smart-import-target-content-section .group-details .container-options.text {
  line-height: 36rem;
  margin: 0;
  display: inline-block;
}
.afdx-mdb-asset-smart-import-target-content-section .group-details h1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.afdx-mdb-asset-smart-import-target-content-section:first-child {
  border-bottom: 1rem solid #d9d9d9;
  padding-bottom: 10rem;
}
.afdx-mdb-asset-smart-import-target-conflict {
  position: absolute;
  top: 250rem;
  right: 0;
  bottom: 50rem;
  width: 100%;
  padding: 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.afdx-mdb-asset-smart-import-target-conflict label {
  line-height: 25rem;
}
.afdx-mdb-asset-smart-import-target-conflict-checkbox {
  display: block;
  margin-bottom: 2rem;
}
.afdx-mdb-asset-smart-import-target-conflict-checkbox label {
  line-height: initial;
  margin-bottom: 0;
}
.afdx-mdb-asset-smart-import-target-conflict-checkbox-all-conts {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
}
.afdx-mdb-asset-smart-import-target .cancel-button {
  position: absolute;
  right: 255rem;
  bottom: 0rem;
  width: 49%;
}
.afdx-mdb-asset-smart-import-target .import-button {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  width: 49%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.tooltip.tooltip-above-modal {
  z-index: 1051;
}
.asset-selection-tree-smart-display {
  margin-top: 1em;
  margin-left: 2em;
}
.asset-selection-tree-smart-display .fdxicon-regular {
  width: auto !important;
}
.asset-selection-tree-smart-display .icon-expand {
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid #d9d9d9;
  padding: 0.7em;
  font-size: 1.2em;
}
.asset-selection-tree-smart-display .icon-asset-type {
  font-size: 1.2em;
  padding: 0.5em;
}
.asset-selection-tree-smart-display div.asset-info-wrapper {
  flex: 0 1 50%;
}
.asset-selection-tree-smart-display .asset-details {
  padding: 0.1em 0.5em 0.1em 0;
}
.dropdown-menu.import-asset-selection-options-menu .category {
  padding: 7rem;
  border-bottom: 1rem solid #d9d9d9;
  font-family: "interstate", Helvetica, sans-serif;
  font-size: 11rem;
  font-weight: bold;
  background: #f2f2f2;
  color: #00677d;
  text-decoration: none;
  text-transform: uppercase;
}
.asset-selection-tree-display-smart {
  --fdx-asset-tree-display-container-width-default: 974rem;
  --fdx-asset-tree-display-container-width-internal: var(--fdx-asset-tree-display-container-width, var(--fdx-asset-tree-display-container-width-default));
  padding: 0;
  position: relative;
}
.asset-selection-tree-display-smart:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -0.5em;
  bottom: 0;
  left: 1.5em;
  border-left: 1rem solid;
  border-color: #d9d9d9;
}
.asset-selection-tree-display-smart.skeleton * {
  background: transparent !important;
  box-shadow: none !important;
}
.asset-selection-tree-display-smart.skeleton .related-asset-inner.skeleton-box {
  font-size: 1.2em;
  min-height: 55rem;
  overflow: hidden;
}
.asset-selection-tree-display-smart.skeleton .related-asset-inner.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-150%);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0));
  animation: shimmer linear 4s infinite;
  content: '';
}
@keyframes shimmer {
  100% {
    transform: translateX(350%);
  }
}
.asset-selection-tree-display-smart li {
  position: relative;
  margin: 0;
  padding: 0 0 0 3em;
  display: block;
}
.asset-selection-tree-display-smart li:before {
  content: "";
  display: block;
  position: absolute;
  top: 2em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
.asset-selection-tree-display-smart li:last-child:before {
  background: #f0f0f0;
  height: auto;
}
.asset-selection-tree-display-smart li input.collapse-checkbox {
  display: none;
}
.asset-selection-tree-display-smart li .asset-row {
  display: flex;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner {
  position: relative;
  flex: 1 0 auto;
  background-color: white;
  vertical-align: middle;
  display: flex;
  justify-content: flex-start;
  margin: 0.5em 0;
  border: 1rem solid #d9d9d9;
  border-radius: 5rem;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner > * {
  border-left: 1rem solid #d6d6d6;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner label.collapse-label {
  width: auto;
  margin: 0;
  padding: 0 0.5em;
  cursor: pointer;
  align-self: center;
  border-left: none;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details {
  display: flex;
  flex: 1 1;
  min-width: 25em;
  min-height: 55rem;
  padding: 0 1em;
  white-space: nowrap;
  font-weight: normal;
  font-size: 0.8em;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details:first-child {
  border-left: none;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: flex-start;
  border-radius: 5rem;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row.wrapped {
  flex-wrap: wrap;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .asset-type-box {
  display: flex;
  align-items: center;
  border: 1rem solid #999999;
  border-radius: 5rem;
  padding: 0em 1em;
  margin: 0.5em 0;
  font-size: 0.9em;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .asset-type-box .asset-type-icon {
  line-height: 1.1;
  margin-right: 0.2em;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row > label.btn {
  margin: 0.5em 0;
  padding: 0;
  flex: 1;
  line-height: 2em;
  background: #00a9ce;
  color: white;
  border-color: #0080ab;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .btn-group {
  display: flex;
  flex: 0 1 auto;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .btn-group .btn {
  line-height: 1;
  margin: 0.5em 0;
  background-color: transparent;
  color: #333;
  padding: 0.5em 1em;
  flex: 1;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .btn-group .btn.active {
  background-color: #00a9ce;
  color: white;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .btn-group .btn:hover {
  background-color: #0087ab;
  color: white;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row .choice-disabled-warn {
  text-align: center;
  flex: 1;
  margin: 0.5em 0;
  padding: 0em 1em;
  border-radius: 4rem;
  border: 1rem solid #0080ab;
  background: #00a9ce;
  color: white;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row fdx-dropdown {
  flex: 1;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row fdx-dropdown .dropdown-wrapper {
  width: auto;
  display: inherit;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row fdx-dropdown .dropdown-wrapper .dropdown {
  line-height: auto !important;
  border: none !important;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details .flex-row fdx-dropdown .dropdown-wrapper .dropdown.single {
  line-height: auto !important;
  border: none !important;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.row-label {
  width: 100%;
  font-weight: bold;
  margin-bottom: -1em;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper {
  flex: 0 1 calc((var(--fdx-asset-tree-display-container-width-internal) / 2) / 2.6);
  height: fit-content;
  line-height: 38rem;
  display: inline-flex;
  justify-content: flex-end;
  font-size: 14rem;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper > * {
  padding: 0 0.5em;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper > fdx-dropdown {
  padding: 0;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper > .boxed {
  border: 1px solid #d9d9d9;
  margin-left: -1px;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-label {
  flex: 1;
  padding: 0 9rem 0 9rem;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn {
  width: auto;
  line-height: 38rem;
  height: max-content;
  text-align: center;
  color: #00a9ce;
  cursor: pointer;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn:hover:not(.disabled) {
  border-color: #00a9ce;
  z-index: 1;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn.disabled {
  cursor: default;
  color: #d9d9d9;
  border-color: transparent;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner div.asset-details span.boxed-label-wrapper span.boxed-btn.fdxicon-regular {
  margin-top: 0 !important;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner.has-children {
  padding-left: 0;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner.selected {
  border: 1rem solid #00a9ce;
  box-shadow: 0rem 2rem 6rem 0 rgba(0, 160, 206, 0.1);
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner.selected .asset-details {
  box-shadow: 0em 0 20rem -5rem rgba(0, 160, 206, 0.3);
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner.not-suggested ~ span.rule {
  opacity: 0.5;
}
.asset-selection-tree-display-smart li .asset-row .related-asset-inner.not-suggested:not(.selected) {
  background: #d9d9d9;
  opacity: 0.5;
}
.asset-selection-tree-display-smart li .asset-row-info {
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  min-width: fit-content;
  flex: 0 1 calc(var(--fdx-asset-tree-display-container-width-internal) / 2);
  margin: 0.5em 0;
  padding-right: 1em;
}
.asset-selection-tree-display-smart li .asset-row-info:has(.msg-wrapper):before {
  content: "";
  display: block;
  top: 2em;
  left: 1.5em;
  width: 1.5em;
  bottom: 0;
  height: 0;
  border-top: 1rem solid #d9d9d9;
  margin-top: -1rem;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  border-radius: 5rem;
  min-height: 55rem;
  padding: 0.5em 1em;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper.info {
  color: #00a9ce;
  border: 1rem solid #00a9ce;
  background-color: #e5f4f8;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper.info *::selection {
  color: white !important;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper.warning {
  color: #c4772b;
  border: 1rem solid #c4772b;
  background-color: #e7c5a3;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper.warning *::selection {
  color: white !important;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper .msg {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-weight: normal;
  max-width: 30em;
}
.asset-selection-tree-display-smart li .asset-row-info .msg-wrapper .msg .fdxicon-regular {
  width: auto;
}
.asset-selection-tree-display-smart li .asset-row span.icon {
  font-size: 2em;
}
.asset-selection-tree-display-smart li span.badge {
  margin: 0.5em;
  font-weight: normal;
  vertical-align: middle;
  font-size: 13rem;
  border: 1rem solid;
  padding: 5rem;
  border-radius: 5rem;
  user-select: none;
}
.asset-selection-tree-display-smart li span.badge.rule {
  color: #97510b;
}
.asset-selection-tree-display-smart li span.badge.analysis-variable {
  color: #999;
}
.asset-selection-tree-display-smart li .asset-select-options-dropdown-wrapper {
  display: inline-block;
}
.asset-selection-tree-display-smart .asset-text-wrapper {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 0 auto;
  font-size: 1.4em;
}
.asset-selection-tree-display-smart .asset-text-wrapper .asset-text {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20em;
}
.asset-selection-tree-display-smart .asset-text-wrapper .asset-text.bold {
  font-weight: bold;
}
.asset-selection-tree-display-smart .asset-text-wrapper .asset-text.italic {
  font-style: italic;
}
.asset-selection-tree-display-smart .asset-text-wrapper .asset-text.small {
  font-size: 0.8em;
}
.asset-selection-tree-display-smart .asset-text-wrapper .asset-text.brackets:before {
  content: '(';
}
.asset-selection-tree-display-smart .asset-text-wrapper .asset-text.brackets:after {
  content: ')';
}
.asset-selection-tree-display-smart .btn.btn-select-options {
  width: auto;
  padding: 0.4em;
  margin: 0 -0.2em 0 0.4em;
  border-radius: 0.5em;
  color: #00a9ce;
}
.asset-selection-tree-display-smart .btn.btn-select-options:before {
  display: inline-block;
  transform: rotate(90deg);
}
.asset-selection-tree-display-smart .tooltip {
  max-width: initial;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-relink-assets .modal-body {
  height: 70vh;
  color: #4c4c4c;
  background-color: #fcfcfc;
}
.fdx-mdb-relink-assets .modal-body.page-conflict {
  padding-top: 0;
}
.fdx-mdb-relink-assets-select {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10rem;
  display: flex;
  flex-direction: column;
}
.fdx-mdb-relink-assets-select-label {
  margin-top: 10rem;
  flex: 0;
  display: flex;
  justify-content: flex-end;
}
.fdx-mdb-relink-assets-select-label-dropdown {
  float: left;
  margin: 0 10rem 0 0;
  white-space: nowrap;
  flex: 0 1 33%;
}
.fdx-mdb-relink-assets-select-label-dropdown:last-child {
  margin-right: 0rem;
}
.fdx-mdb-relink-assets-select-label-dropdown .dropdown {
  display: inline-block;
  width: 206rem;
  min-height: 43rem;
}
.fdx-mdb-relink-assets-select-tools {
  flex: 0;
  border-top: 1rem solid #d8d8d8;
  border-left: 1rem solid #d8d8d8;
  background-color: #fff;
  border-right: 1rem solid #d8d8d8;
}
.fdx-mdb-relink-assets-select-tools-dropdown {
  margin: 6rem;
  position: relative;
  width: 185rem;
  float: left;
}
.fdx-mdb-relink-assets-select-tools-search {
  margin: 6rem;
  position: relative;
  width: 185rem;
  float: left;
}
.fdx-mdb-relink-assets-select-tools-search .fdxicon-regular.fdx-search {
  right: 15rem;
  position: absolute;
  padding: 10rem;
  pointer-events: none;
}
.fdx-mdb-relink-assets-select-tools-search input {
  height: 40rem;
}
.fdx-mdb-relink-assets-select-tools-search {
  margin: 6rem;
  position: relative;
  width: 185rem;
  float: left;
}
.fdx-mdb-relink-assets-select-tools-button {
  margin: 6rem;
  float: right;
}
.fdx-mdb-relink-assets-select-asset-list {
  flex: 1;
  border: 1rem solid #d9d9d9;
  overflow: auto;
  background-color: #fff;
}
.fdx-mdb-relink-assets-select-asset-list-no-tree {
  color: #ababab;
  font-style: italic;
  text-align: center;
  margin-top: 28rem;
  font-size: 18rem;
}
.fdx-mdb-relink-assets-target {
  position: absolute;
  top: 0;
  right: 20rem;
  bottom: 20rem;
  width: 500rem;
}
.fdx-mdb-relink-assets-target-title {
  line-height: 65rem !important;
  font-weight: bold;
}
.fdx-mdb-relink-assets-target-content {
  position: absolute;
  top: 60rem;
  right: 0;
  bottom: 56rem;
  width: 100%;
  padding: 20rem 10rem 10rem;
  border: 1rem solid #d9d9d9;
  font-size: 15rem;
  background-color: #fff;
}
.fdx-mdb-relink-assets-target-content-section {
  white-space: nowrap;
  margin-bottom: 10rem;
}
.fdx-mdb-relink-assets-target-content-section p {
  margin: 0;
}
.fdx-mdb-relink-assets-target-content-section .group-icon {
  padding: 5rem 10rem;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 100rem;
}
.fdx-mdb-relink-assets-target-content-section .group-details {
  display: inline-block;
  margin-left: 5rem;
  width: calc(100% - 115rem);
}
.fdx-mdb-relink-assets-target-content-section .group-details-name {
  margin: 6rem 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fdx-mdb-relink-assets-target-content-section .group-details .container-options {
  margin-top: 10rem;
  width: auto;
  width: 350rem;
}
.fdx-mdb-relink-assets-target-content-section .group-details .container-options.text {
  line-height: 36rem;
  margin: 0;
  display: inline-block;
}
.fdx-mdb-relink-assets-target-content-section:first-child {
  border-bottom: 1rem solid #d9d9d9;
  padding-bottom: 10rem;
}
.fdx-mdb-relink-assets .relinkLabel {
  margin-right: 10rem;
}
.fdx-mdb-relink-assets div.no-matches {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: gray;
  font-style: italic;
  margin: 2em 0 1em 0;
  text-align: center;
}
.fdx-mdb-relink-assets div.no-matches span {
  max-width: 40%;
}
.fdx-mdb-relink-assets .no-property-value-replacement {
  color: #6666;
  font-style: italic;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-filters {
  position: relative;
  height: 100%;
  padding: 0 15rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.fdx-mdb-filters-search-btn {
  padding: 15rem 0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 9;
}
.fdx-mdb-filters-search-btn button {
  width: 100%;
}
.fdx-mdb-filters.auto-search {
  padding-bottom: 0rem;
  padding: 15rem;
}
.fdx-mdb-filters .row {
  margin-left: 0;
  margin-right: 0;
}
.fdx-mdb-filters .row {
  margin-left: 0;
  margin-right: 0;
}
.fdx-mdb-filters-name {
  position: relative;
  margin-top: 15rem;
}
.fdx-mdb-filters-name input {
  padding-left: 35rem;
}
.fdx-mdb-filters-name .search-icon {
  position: absolute;
  top: 9rem;
  left: 10rem;
}
.fdx-mdb-filters-applied {
  text-align: right;
}
.fdx-mdb-filters-applied .filter-options div {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  color: #949494;
  font-size: 11rem;
  text-transform: uppercase;
  text-align: right;
}
.fdx-mdb-filters-applied .filter-options div:nth-of-type(1) {
  margin-right: 10rem;
}
.fdx-mdb-filters-applied .filter-options div .fdxicon-regular {
  font-size: 10rem;
}
.fdx-mdb-filters-applied .filter-options div.no-filters {
  cursor: not-allowed;
}
.fdx-mdb-filters-sort {
  margin-bottom: 10rem;
  padding: 15rem;
  padding-bottom: 5rem;
}
.fdx-mdb-filters-sort-title {
  position: relative;
  cursor: pointer;
  margin-bottom: 10rem;
  border-bottom: 2rem solid #d9d9d9;
  font: 17rem "PT Sans", "interstate", Helvetica, sans-serif;
  padding: 5rem;
}
.fdx-mdb-filters-sort-title i {
  font-size: 12rem;
  margin-top: 5rem;
  margin-right: 5rem;
}
.fdx-mdb-filters-sort .label {
  font-weight: bold;
  min-height: 38rem;
  padding-top: 8rem;
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-size: 13rem;
}
.fdx-mdb-filters-sort .row {
  margin-bottom: 10rem;
}
.fdx-mdb-filters-sort-assets {
  margin-top: 15rem;
  color: #333;
  margin-bottom: 15rem;
  border: 1rem solid #d9d9d9;
  background-color: #fcfcfc;
}
.fdx-mdb-filters-sort-assets-title {
  position: relative;
  border-bottom: 1rem solid #d9d9d9;
  padding: 10rem;
  cursor: pointer;
  background: #f5f5f5 !important;
}
.fdx-mdb-filters-sort-assets-title span {
  font: 17rem "PT Sans", "interstate", Helvetica, sans-serif;
}
.fdx-mdb-filters-sort-assets-title i {
  margin-top: 5rem;
  margin-right: 5rem;
}
.fdx-mdb-filters-sort-assets-body {
  padding: 5rem;
}
.fdx-mdb-filters-sort-assets-body .row {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.fdx-mdb-filters-sort-assets-body .label {
  font-weight: bold;
  min-height: 38rem;
  font-size: 13rem;
  padding: 10rem 10rem 10rem 14rem;
}
.fdx-mdb-filters-list {
  margin-top: 15rem;
}
.fdx-mdb-filters-list > .group {
  color: #333;
  margin-bottom: 15rem;
  border: 1rem solid #d9d9d9;
  background-color: #fcfcfc;
}
.fdx-mdb-filters-list > .group > .group-title {
  position: relative;
  border-bottom: 1rem solid #d9d9d9;
  padding: 10rem;
  cursor: pointer;
  background: #f5f5f5;
}
.fdx-mdb-filters-list > .group > .group-title span {
  font: 17rem "PT Sans", "interstate", Helvetica, sans-serif;
}
.fdx-mdb-filters-list > .group > .group-title i {
  margin-top: 5rem;
  margin-right: 5rem;
}
.fdx-mdb-filters-list > .group > .group-body {
  padding: 15rem;
  padding-bottom: 5rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters {
  margin-bottom: 10rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-title {
  position: relative;
  cursor: pointer;
  margin-bottom: 10rem;
  border-bottom: 2rem solid #d9d9d9;
  font: 17rem "PT Sans", "interstate", Helvetica, sans-serif;
  padding: 5rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-title i {
  font-size: 12rem;
  margin-top: 5rem;
  margin-right: 5rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-body {
  position: relative;
  padding: 10rem;
  padding-bottom: 0;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list {
  margin: 10rem 0;
  border: 1px solid lightgrey;
  overflow: hidden;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter {
  position: relative;
  padding: 8rem;
  border-bottom: 1px solid lightgray;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter:last-child {
  border-bottom: none;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter:last-child:before {
  content: none;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter:before {
  display: inline-block;
  content: 'OR';
  font-size: 0.8em;
  position: absolute;
  bottom: -0.75em;
  left: calc(50% - 1.3em);
  text-transform: capitalize;
  font-weight: bold;
  padding: 0 0.5em;
  background: lightgray;
  border-radius: 1em;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-property .property-label {
  font-weight: bold;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-property .property-label:after {
  content: ':';
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-remove > span {
  color: lightgray;
  cursor: pointer;
  margin-top: 0;
  line-height: 1.2;
  transition: color 0.2s;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-remove > span:hover {
  color: #333;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list {
  margin: 10rem 0;
  border: 1px solid lightgrey;
  overflow: hidden;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter {
  position: relative;
  padding: 8rem;
  border-bottom: 1px solid lightgray;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter:last-child {
  border-bottom: none;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter:last-child:before {
  content: none;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter:before {
  display: inline-block;
  content: 'OR';
  font-size: 0.8em;
  position: absolute;
  bottom: -0.75em;
  left: calc(50% - 1.3em);
  text-transform: capitalize;
  font-weight: bold;
  padding: 0 0.5em;
  background: lightgray;
  border-radius: 1em;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-property .property-label {
  font-weight: bold;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-property .property-label:after {
  content: ':';
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-remove > span {
  color: lightgray;
  cursor: pointer;
  margin-top: 0;
  line-height: 1.2;
  transition: color 0.2s;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .composite-group-filters-body .group-composite-controls .group-composite-applied-filters-list .applied-filter .applied-filter-remove > span:hover {
  color: #333;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property {
  margin-bottom: 10rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .label {
  font-weight: bold;
  min-height: 38rem;
  padding-top: 8rem;
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-size: 13rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property p.input-group {
  margin: 0 !important;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-date #dateRangeComponent {
  margin-right: 12rem;
  transition: all 0.3s;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-date .no-date #dateRangeComponent {
  margin-right: -9rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-date .fdx-circle-remove {
  color: #999;
  font-size: 14rem;
  position: absolute;
  cursor: pointer;
  right: 7rem;
  top: 11rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-string .fdx-circle-remove {
  right: 19rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-singleselect-dropdown {
  height: 40rem;
  display: inline-block;
  transition: all 0.3s;
  width: 100%;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-singleselect-dropdown.remove {
  width: calc(100% - 19rem);
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .type-singleselect-remove {
  color: #999;
  font-size: 14rem;
  position: absolute;
  cursor: pointer;
  right: 7rem;
  top: 14rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .active input:not(.search-input),
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .active .dropdown {
  border: 1rem solid #00a9ce;
  background-color: #e5f4f8;
  outline: none;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters-property .col-md-9 {
  min-height: 42rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .options .col-md-6,
.fdx-mdb-filters-list > .group > .group-body .group-filters .options .col-md-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .options .option {
  width: 100%;
  padding: 5rem;
  margin-bottom: 5rem;
  outline: none;
}
.fdx-mdb-filters-list > .group > .group-body .group-filters .options .option#mdbFiltersOption-assetGroup-sELECTIONCRITERIA {
  font-size: 0.9em;
}
.fdx-mdb-filters-list > .group.single-group {
  background: transparent !important;
  border: none;
}
.fdx-mdb-filters-list > .group.single-group > .group-title {
  display: none;
}
.fdx-mdb-filters-list > .group.single-group > .group-body {
  padding-top: 0;
}
.fdx-mdb-filters-list > .group.single-group .group-filters-body {
  padding: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-mdb-filters-applied .fdx-mdb-current-filters {
  position: relative;
  border: 1rem solid #d3d3d3;
  background: #fcfcfc;
  margin-top: 5rem;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter {
  text-align: left;
  border-bottom: 1rem solid #d3d3d3;
  padding: 7rem;
  position: relative;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter:nth-of-type(odd) {
  background: #fff;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter:last-child {
  margin-bottom: 0;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter .filter-value {
  font-weight: bold;
  max-width: 421rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter .fdx-circle-remove {
  color: #999;
  cursor: pointer;
  position: absolute;
  right: 8rem;
  top: 8rem;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter-wrapper {
  width: 425rem;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter span {
  display: inline-block;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters .current-filter .filter-item {
  padding-right: 5rem;
}
fdx-mdb-filters-applied .fdx-mdb-current-filters-msg {
  text-align: left;
  padding: 8rem;
  font: 15rem "PT Sans", "interstate", Helvetica, sans-serif;
  border-bottom: 1rem solid #d3d3d3;
  cursor: pointer;
  background: #f5f5f5;
}

.roles-tab-content {
  padding: 20rem;
}
.roles-tab-content .text-blue {
  color: #3BA9CF;
}
.roles-tab-content .help-link {
  position: absolute;
  top: 8rem;
  right: 20rem;
}
.roles-tab-content h1 {
  margin-top: 10rem;
}
.roles-tab-content-column {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
.roles-tab-content-column-vs {
  border: 1rem solid #d3d3d3;
  width: 437rem;
  height: calc(100vh - 328rem);
}
.roles-tab-content-column-vs-permissions {
  height: calc(100vh - 269rem);
}
.roles-tab-content-column-vs h4 {
  padding-left: 1em;
  display: inline-block;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25rem;
}
.roles-tab-content-column-vs-action {
  right: 10rem;
  top: 10rem;
  position: absolute;
}
.roles-tab-content-column-vs-action .fdxicon-regular {
  font-size: 18rem;
}
.roles-tab-content-column-vs .renderer {
  border-bottom: 1rem solid #d3d3d3;
}
.roles-tab-content-column-roles {
  border-top: 1rem solid #d3d3d3;
  border-right: 1rem solid #d3d3d3;
  border-left: 1rem solid #d3d3d3;
  width: 437rem;
  padding: 10rem;
}
.roles-tab-content-column-roles-input .btn-primary {
  width: 115rem;
  margin-left: 10rem;
}
.roles-tab-content-column-roles-input .fdx-clearable-wrapper input {
  width: 285rem !important;
}
.roles-tab-content-column.no-selected-role {
  vertical-align: top;
  text-align: center;
  margin-top: 4em;
  font-style: italic;
  color: #999;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-admin-system-user-groups .user-group-select {
  padding: 2em;
  margin-bottom: 5em;
}
fdx-admin-system-user-groups .user-group-select h1 {
  margin-top: 5rem;
}
fdx-admin-system-user-groups .user-group-select__properties .permissionDescription {
  display: inherit;
  font-size: 12rem;
}
fdx-admin-system-user-groups .dropdown-container {
  display: flex;
}
fdx-admin-system-user-groups .dropdown-container fdx-dropdown-angular {
  flex: 1;
}
fdx-admin-system-user-groups .dropdown-container .user-group-delete {
  margin-left: 5rem;
}
fdx-admin-system-user-groups .dropdown-container .user-group-delete .btn-danger {
  color: white;
  font-weight: bolder;
  background-color: #CB7D7D;
}
fdx-admin-system-user-groups .dropdown-container .user-group-delete .btn-danger:hover,
fdx-admin-system-user-groups .dropdown-container .user-group-delete .btn-danger :active,
fdx-admin-system-user-groups .dropdown-container .user-group-delete .btn-danger :focus {
  color: white;
  background-color: #bc5959;
}
fdx-admin-system-user-groups .user-group-list-container {
  height: 100%;
}
fdx-admin-system-user-groups .user-group-list-container .spinner {
  z-index: 1;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container {
  margin-top: 70rem;
  margin-right: 2em;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1rem solid #d9d9d9;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table {
  width: 100% !important;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table .user-group-avatar-cell {
  width: 64rem;
  height: 49rem;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table .user-group-avatar-cell .remove-user-action-button {
  display: none;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table tr {
  background-color: #fff;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table tr:hover {
  background-color: #fcfcfc;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table tr:hover .removable-user .remove-user-action-button {
  display: block;
  cursor: pointer;
}
fdx-admin-system-user-groups .user-group-list-container .user-group-table-container .user-group-table tr:hover .removable-user .user-group-user-avatar {
  display: none;
}
fdx-admin-system-user-groups .user-group-list-container .add-user-to-group-button {
  position: absolute;
  right: 2em;
  top: 1em;
}
fdx-admin-system-user-groups fdx-visible-columns-angular .dropdown-menu {
  min-width: 165rem !important;
}

.userGroupAddUserModal.modal-body {
  height: 70vh;
}
.userGroupAddUserModal.modal-body .header {
  padding: 15rem;
  margin: -15rem;
  background-color: #fcfcfc;
  padding-bottom: 30rem;
}
.userGroupAddUserModal.modal-body .header .fdx-clearable-wrapper {
  float: right;
}
.userGroupAddUserModal.modal-body .userGroupAddUserTable .scrollable-table-wrapper {
  top: 65rem;
  left: 15rem;
  right: 15rem;
  bottom: 15rem;
  border: 1rem solid #cfcfcf;
  background-color: #fff;
}
.userGroupAddUserModal.modal-body .userGroupAddUserTable .scrollable-table-wrapper .thead-clone {
  border-bottom: 1rem solid #ece8e8;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-admin-mdb-workflows .mdb-workflow-content {
  position: relative;
  padding: 1em 2em 4em;
}
fdx-admin-mdb-workflows .mdb-workflow-content .text-blue {
  color: #3BA9CF;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 12rem;
  width: 437rem;
  height: 100%;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list {
  position: absolute;
  bottom: 0;
  top: 55rem;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  border: 1rem solid #d9d9d9;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list span {
  line-height: 24rem;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item {
  position: relative;
  padding: 15rem 10rem 10rem 10rem;
  border-bottom: 1rem solid #d9d9d9;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .fdx-bullet-arrow {
  font-size: 10rem;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item.current {
  border-left: 5rem solid #00677d;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item:nth-child(even) {
  background-color: #fff;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item:nth-child(odd) {
  background-color: #F6F6F6;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item h2 {
  width: 100%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item h2 .fdxicon-regular {
  color: #333;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .fdx-arrow-e {
  font-size: 11rem;
  margin-left: 5rem;
  margin-right: 3rem;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .status-inactive {
  color: #d3d3d3;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .no-states,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .is-default {
  position: absolute;
  cursor: pointer;
  top: 1em;
  right: 1em;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .no-states .fdxicon-regular,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown .fdxicon-regular,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .is-default .fdxicon-regular {
  font-size: 18rem;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .no-states,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown {
  top: 2em;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .inactive-default {
  right: 3em;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .no-states {
  color: #aa1c1c;
  right: 3em;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown-menu {
  right: 0 !important;
  left: -11em !important;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown-menu li {
  padding: 0.5em;
  background-color: #fff;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown-menu li span::before {
  font-size: 12rem;
  padding-right: 6rem;
  color: #666;
  line-height: 0;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown-menu li:hover {
  background-color: #e5f4f8;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown-menu li:hover span::before {
  color: #00a9ce;
  padding-left: 3rem;
  padding-right: 3rem;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .dropdown-menu.last {
  bottom: -2em;
  right: 2em;
  top: auto;
  left: -13em;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item.ng-enter,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item.ng-leave,
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item.ng-move {
  -webkit-transition: all ease 0s;
  transition: all ease 0s;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .tooltip {
  right: 10rem !important;
  top: -4rem !important;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list-item .tooltip.bs-tooltip-start .tooltip-arrow {
  content: " ";
  position: absolute;
  top: 10% !important;
  left: 102%;
  /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #00677d;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .list.state-list .dropdown {
  top: 1em;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .states-header button {
  position: absolute;
  top: 1em;
  right: 0;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .not-available {
  padding: 2em;
  text-align: center;
  font-style: italic;
  color: #999;
}
fdx-admin-mdb-workflows .mdb-workflow-content-column .none {
  font-style: italic;
  color: #999;
}
fdx-admin-mdb-state .selected-transition-name {
  font-weight: bold;
}
fdx-admin-mdb-state .states-wrapper {
  margin-top: 5rem;
}
fdx-admin-mdb-state .states-wrapper .file-item {
  border-radius: 20rem;
  border: 1px solid #d9d9d9;
  padding: 6rem 12rem;
  margin-bottom: 5rem;
}
fdx-admin-mdb-state .states-wrapper .file-item.open {
  border-radius: 10rem;
}
fdx-admin-mdb-state .states-wrapper .file-item:hover {
  border-color: #00a9ce;
}
fdx-admin-mdb-state .states-wrapper .file-item.open {
  border-radius: 4rem;
}
fdx-admin-mdb-state .states-wrapper .file-item.open .item-card {
  margin-bottom: 10rem;
}
fdx-admin-mdb-state .states-wrapper .file-item .item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
fdx-admin-mdb-state .states-wrapper .file-item .item-card .remove-selection {
  color: #00a9ce;
  margin-left: 10rem;
  font-size: 20rem;
  cursor: pointer;
}
fdx-admin-mdb-state .states-wrapper .file-item .item-card-actions {
  display: flex;
  align-items: center;
}
fdx-admin-mdb-state .states-wrapper .file-item .item-card-actions .list-item-limit {
  display: flex;
  justify-content: center;
  align-items: center;
}
fdx-admin-mdb-state .states-wrapper .file-item .item-card-actions .list-item-limit fdx-checkbox > label {
  line-height: 15rem;
  margin-top: 5rem;
}
fdx-admin-mdb-state .modal-body,
fdx-admin-mdb-workflow .modal-body {
  overflow: visible;
  min-height: 0 !important;
}
fdx-admin-mdb-state .modal-body .row,
fdx-admin-mdb-workflow .modal-body .row {
  margin-bottom: 1em;
}
fdx-admin-mdb-state .modal-body .row .no-category,
fdx-admin-mdb-workflow .modal-body .row .no-category {
  margin-top: 0.6;
  font-style: italic;
  color: #999;
}
fdx-admin-mdb-workflow-activation .modal-body {
  max-height: calc(72vh - 85rem);
  padding: 0 !important;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row {
  margin: 15rem;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row .col-md-1 {
  text-align: center;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row .col-md-1 .fdxicon-regular {
  line-height: 2em;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row .col-md-4 {
  text-align: right;
  margin-top: 0.5em;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row .migrating-warning {
  margin-top: 0.5em;
  padding: 0.5em;
  font-size: 0.9em;
  text-align: center;
  color: #00a9ce;
  background: #fcfcfc;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row .migrating-warning .fdxicon-regular {
  float: left;
  font-size: 2em;
  margin-right: 0.2em;
}
fdx-admin-mdb-workflow-activation .modal-body .activate-state-mapping .row .no-states-warning {
  color: #aa1c1c;
  font-size: 0.8em;
  font-style: italic;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mdb-cr-templates-content {
  padding: 20rem;
  overflow: hidden !important;
}
.mdb-cr-templates-content .text-blue {
  color: #3BA9CF;
}
.mdb-cr-templates-content-column {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
.mdb-cr-templates-content-column-header h1 {
  margin-top: 10rem;
  display: inline-block;
}
.mdb-cr-templates-content-column-header button {
  display: block;
  float: right;
  margin-right: 50rem;
}
.mdb-cr-templates-content-column-vs {
  border: 1rem solid #d3d3d3;
  width: 437rem;
  height: calc(100vh - 278rem);
}
.mdb-cr-templates-content-column-vs .cdk-virtual-scroll-content-wrapper {
  contain: initial;
}
.mdb-cr-templates-content-column-vs-content h3 {
  padding-left: 11rem;
  display: inline-block;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25rem;
  font-size: 18rem;
  margin-top: 10rem;
  margin-bottom: 0;
}
.mdb-cr-templates-content-column-vs-content-context {
  padding-left: 12rem;
  color: #5d5d5d;
}
.mdb-cr-templates-content-column-vs-content-context .label {
  font-weight: bold;
}
.mdb-cr-templates-content-column-vs-content .dropdown,
.mdb-cr-templates-content-column-vs-content .dropup {
  position: absolute;
  right: 12rem;
  top: 10rem;
}
.mdb-cr-templates-content-column-vs-content .dropdown .fdxicon-regular,
.mdb-cr-templates-content-column-vs-content .dropup .fdxicon-regular {
  top: 10rem;
  font-size: 18rem;
}
.mdb-cr-templates-content-column-vs-content .dropup ul.dropdown-menu {
  bottom: unset;
  top: 0px !important;
}
.mdb-cr-templates-content-column-vs-content .info {
  position: absolute;
  right: 37rem;
  top: 22rem;
  font-size: 18rem;
}
.mdb-cr-templates-content-column-vs-content .info.fdx-circle-alert {
  color: #aa1c1c;
}
.mdb-cr-templates-content-column-vs-content .info.fdx-circle-tick {
  color: #6aa445;
}
.mdb-cr-templates-content-column-vs-content .info.fdx-help {
  color: #ce6c0d;
}
.mdb-cr-templates-content-column-vs .renderer {
  width: 100%;
  cursor: pointer;
  position: relative;
  color: #333;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  border-bottom: 1rem solid #d3d3d3;
}
.mdb-cr-templates-content-column-vs .renderer.odd {
  background-color: #F6F6F6;
}
.mdb-cr-templates-content-column-vs .renderer.selected div {
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  padding-left: 7rem;
}
.mdb-cr-templates-content-column-vs .renderer.selected::before {
  content: "";
  background-color: #00677d;
  position: absolute;
  height: 100%;
  width: 6rem;
}
.mdb-cr-templates-content-column-vs .renderer:hover {
  box-shadow: 0rem 0rem 50rem -8rem #999;
  z-index: 300;
}
.mdb-cr-templates-content-column-accordian {
  width: 437rem;
  display: inline-block;
  vertical-align: top;
  min-width: 500rem;
  max-width: 600rem;
  border: 1rem solid #d3d3d3;
  height: calc(100vh - 234rem);
  background-color: #fff;
}
.mdb-cr-templates-content-column-accordian .no-selected-template {
  max-width: 600rem;
  border: 1rem solid #d3d3d3;
  height: calc(100vh - 277rem);
  text-align: center;
  padding: 150rem 30rem 0;
  color: #989898;
  font-style: italic;
}
.mdb-cr-templates-content-column-accordian .card-header {
  padding: 0 !important;
}
.mdb-cr-templates-content-column-accordian .card-header-content {
  background-color: #f6f6f6;
  border-bottom: 1rem solid #d3d3d3;
  font-size: 18rem;
  margin: 0;
  color: #333;
  padding: 10rem;
  line-height: 1.1;
  width: 100%;
  text-align: left;
}
.mdb-cr-templates-content-column-accordian .card-header-content .alert-message {
  font-size: 16rem;
  color: #aa1c1c;
}
.mdb-cr-templates-content-column-accordian .card-header-content i {
  font-size: 18rem;
}
.mdb-cr-templates-content-column-accordian .card-body {
  padding: 0 !important;
  border: 0 !important;
}
.mdb-cr-templates-content-column-accordian .card-body-table-header {
  padding: 10rem 20rem 10rem 10rem;
  border-bottom: 1rem solid #d3d3d3;
}
.mdb-cr-templates-content-column-accordian .card-body-table-header .submit-button {
  float: right;
}
.mdb-cr-templates-content-column-accordian .card-body .required-icon {
  color: #00a9ce;
  font-weight: bold;
}
.mdb-cr-templates-content-column-accordian .card-body .fdxicon-regular:not(.drag-handle) {
  cursor: pointer;
}
.mdb-cr-templates-content-column-accordian .card-body .fdxicon-regular:not(:last-of-type) {
  margin-right: 5rem;
}
.mdb-cr-templates-content-column-accordian .card-body .fdxicon-regular.drag-handle::before {
  cursor: move;
}
.mdb-cr-templates-content-column-accordian .card-body .fdxicon-regular.drag-handle.disabled {
  opacity: 0.3;
}
.mdb-cr-templates-content-column-accordian .card-body .fdxicon-regular.drag-handle.disabled::before {
  cursor: not-allowed;
}
.mdb-cr-templates-content-column-accordian .card-body .scrolling-content {
  max-height: calc(100vh - 420rem);
  overflow-x: hidden;
}
.mdb-cr-templates-content-column-accordian .card-body .single-workflow {
  height: calc(100vh - 375rem);
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state {
  padding: 15rem 10rem 10rem 10rem;
  border-bottom: 1rem solid #d3d3d3;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state span {
  line-height: 24rem;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .glyphicon-chevron-right {
  color: #333;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header h2 {
  display: inline-block;
  margin: 0;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .dropdown,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .dropup {
  display: block;
  right: 2rem;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .dropdown .fdxicon-regular,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .dropup .fdxicon-regular {
  font-size: 18rem;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .dropup ul.dropdown-menu {
  bottom: unset;
  top: 0px !important;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-header .fdx-bookmark {
  font-size: 18rem;
  margin-right: 5rem;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-category .fdx-bullet-arrow,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-transitions .fdx-bullet-arrow,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-approvers .fdx-bullet-arrow {
  font-size: 11rem;
  margin-left: 5rem;
  margin-right: 3rem;
  cursor: auto !important;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-category .approval,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-transitions .approval,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-approvers .approval {
  color: #999;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-category .none,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-transitions .none,
.mdb-cr-templates-content-column-accordian .card-body .states-list-state-approvers .none {
  font-style: italic;
  color: #999;
}
.mdb-cr-templates-content-column-accordian .card-body .states-list-state:nth-child(odd) {
  background-color: #F6F6F6;
}
.mdb-cr-templates-content-column-accordian .card:not(:last-child) .panel-body {
  border-bottom: 1rem solid #d3d3d3;
}
.mdb-cr-templates-content-column-accordian .sortable-custom-property .tooltip {
  min-width: 250rem;
  text-align: center;
}
.integrated-list-table {
  width: 100%;
}
.integrated-list-table th {
  padding: 10rem;
  color: #333;
  vertical-align: bottom;
  border-bottom: 1rem solid #d9d9d9;
}
.integrated-list-table th:not(:last-child) {
  border-right: 1rem solid #eeeeee;
}
.integrated-list-table th:last-child {
  text-align: right;
}
.integrated-list-table td {
  padding: 5rem 10rem;
  vertical-align: bottom;
}
.integrated-list-table td:not(:last-child) {
  border-right: 1rem solid #eeeeee;
}
.integrated-list-table td:last-child {
  text-align: right;
}
.integrated-list-table td.noCustomProps {
  text-align: center;
  color: #666;
}
.integrated-list-table tbody tr:last-child td {
  padding-bottom: 10rem;
}
fdx-admin-mdb-change-request-templates-create .modal-body {
  overflow: visible;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .list-item-approval {
  float: right;
  color: #666;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .list-item-approval input {
  margin-left: 3rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .row {
  margin-bottom: 5rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .selected-list {
  display: none;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .states-wrapper {
  margin-top: 5rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper {
  margin-top: 10rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item {
  border-radius: 20rem;
  border: 1px solid #d9d9d9;
  padding: 6rem 12rem;
  margin-bottom: 5rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item:hover {
  border-color: #00a9ce;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item.open {
  border-radius: 4rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item.open .item-card {
  margin-bottom: 10rem;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item .item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item .item-card .remove-selection {
  color: #00a9ce;
  margin-left: 10rem;
  font-size: 20rem;
  cursor: pointer;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item .item-card-actions {
  display: flex;
  align-items: center;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item .item-card-actions .list-item-approval {
  position: relative;
}
fdx-admin-mdb-change-request-templates-state-create .cr-create-state .transition-wrapper .file-item .item-card-actions .list-item-approval fdx-checkbox {
  position: absolute;
  left: -35rem;
  top: -8rem;
}
fdx-admin-mdb-change-request-templates-state-create .modal-body {
  overflow: visible;
}

fdx-admin-mdb-change-request-templates-prop-create .cr-create-custom-prop input[type='checkbox'] {
  margin-top: 12rem;
}
fdx-admin-mdb-change-request-templates-prop-create .modal-body {
  overflow: visible;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.subscriptions .app-content-header .controls fdx-logs {
  float: left;
}
.subscriptions .app-content-header .controls fdx-dropdown {
  display: inline-block;
}
.subscriptions .app-content-header .controls fdx-dropdown .dropdown {
  float: left;
  width: 200rem;
  line-height: 38rem;
}
.subscriptions h1.no-subscriptions {
  color: #6b6b6b;
  text-align: center;
  position: absolute;
  top: 30rem;
  width: 100%;
}
.subscriptions .filter-controls {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
}
.subscriptions .filter-controls fdx-dropdown {
  width: 200rem;
  display: inline-block;
}
.subscriptions .filter-controls fdx-dropdown .dropdown-wrapper {
  min-height: 38rem;
}
.subscriptions .filter-controls fdx-dropdown .dropdown-wrapper .dropdown {
  line-height: 36rem;
}
.subscriptions .filter-controls .filter {
  float: left;
  margin-left: 0;
  margin-right: 10rem;
}
.subscriptions .filter-controls .btn-inline {
  left: 163rem;
}
.subscriptions .scroll-shadow.scrolling::after {
  opacity: 1;
  width: calc(100% - 7rem);
  z-index: 99;
}
.subscriptions .col-md-6.more {
  width: 67% !important;
}
.subscriptions .col-md-6.more.read {
  width: 80% !important;
  min-width: 873rem;
}
.subscriptions .col-md-6.less {
  padding: 0 2em;
  width: 33% !important;
}
.subscriptions .col-md-6.less.read {
  width: 20% !important;
  min-width: 215rem;
}
.subscriptions .no-margin {
  margin: 0 !important;
}
.subscriptions .no-padding {
  padding: 0;
}
.subscriptions #back-subscription {
  height: calc(100vh - 240rem);
  width: calc(100% - 1rem);
  position: absolute;
}
.subscriptions #back-subscription.gone {
  opacity: 0;
}
.subscriptions #subscriptions-wrapper {
  max-height: calc(100vh - 360rem);
  overflow-y: auto;
  border: 1rem solid #e0dfdf;
}
.subscriptions #subscriptions-wrapper .ng-enter,
.subscriptions #subscriptions-wrapper .ng-leave,
.subscriptions #subscriptions-wrapper .ng-move {
  transition: none !important;
}
.subscriptions #subscriptions-wrapper .subscription {
  padding: 0.6em;
  z-index: 2;
  position: relative;
  border-bottom: 1rem solid #e0dfdf;
  visibility: visible;
  background-color: white;
  cursor: pointer;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
}
.subscriptions #subscriptions-wrapper .subscription:nth-child(odd) {
  background-color: #F6F6F6;
}
.subscriptions #subscriptions-wrapper .subscription.selected {
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  padding-left: calc(0.6em + 7rem);
}
.subscriptions #subscriptions-wrapper .subscription.selected::before {
  content: "";
  background-color: #00677d;
  position: absolute;
  height: 100%;
  width: 6rem;
  top: 0rem;
  left: 0;
}
.subscriptions #subscriptions-wrapper .subscription:hover {
  box-shadow: 0rem 0rem 50rem -8rem #999;
  z-index: 300;
}
.subscriptions #subscriptions-wrapper .subscription-icon {
  width: 100%;
  text-align: center;
}
.subscriptions #subscriptions-wrapper .subscription-icon-wrapper {
  display: inline-block;
  border: none;
  text-align: center;
  height: 113rem;
  padding-top: 35rem;
  background-color: transparent;
}
.subscriptions #subscriptions-wrapper .subscription-icon-wrapper.enabled {
  color: #0191B6;
}
.subscriptions #subscriptions-wrapper .subscription-icon-wrapper.disabled {
  color: #A51010;
}
.subscriptions #subscriptions-wrapper .subscription-icon-wrapper.expired {
  color: #969696;
}
.subscriptions #subscriptions-wrapper .subscription-icon-wrapper-text {
  margin: 5rem 0;
}
.subscriptions #subscriptions-wrapper .subscription-icon-wrapper-image {
  font-size: 2em !important;
  vertical-align: middle;
  margin-top: -4rem;
}
.subscriptions #subscriptions-wrapper .subscription-details {
  margin-top: 20rem;
}
.subscriptions #subscriptions-wrapper .subscription-details h1 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.subscriptions #subscriptions-wrapper .subscription-details span.subscription-detail {
  display: block;
  margin-top: 5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.subscriptions #subscriptions-wrapper .subscription-details span.subscription-detail:nth-of-type(2) {
  font-size: 13rem;
}
.subscriptions #subscriptions-wrapper .subscription-details-values p {
  font-size: 15rem;
  display: block;
}
.subscriptions #subscriptions-wrapper .subscription-details-values p span {
  margin-right: 5rem;
}
.subscriptions #subscriptions-wrapper .subscription-details-values p .badge {
  float: right;
  min-width: 10rem;
  padding: 5rem 9rem;
  font-size: 14rem;
  font-weight: 700;
  line-height: 14rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10rem;
}
.subscriptions #subscriptions-wrapper .subscription-details-values p .badge.blue {
  background-color: #0191B6;
}
.subscriptions #subscriptions-wrapper .subscription-details-values p .badge.green {
  background-color: #8BC34A;
}
.subscriptions #subscriptions-wrapper .subscription-details-properties {
  display: inline-block;
  margin-left: 5rem;
}
.subscriptions #subscriptions-wrapper .subscription-details-properties p {
  font-size: 15rem;
}
.subscriptions #subscriptions-wrapper .noresults {
  position: relative;
  height: 121rem;
}
.subscriptions .user-subscription-table-container {
  position: absolute;
  height: calc(100vh - 299rem);
  padding-top: 50rem;
  top: 58rem;
  left: 8rem;
  right: 17rem;
  bottom: 15rem;
}
.subscriptions .user-subscription-table-container .table-list {
  border: 1rem solid #d9d9d9;
  background-color: #fff;
}
.subscriptions .user-subscription-table-container .table-list tr:hover {
  background-color: #fcfcfc;
}
.subscriptions .user-subscription-table-container .table-list > thead > tr > th,
.subscriptions .user-subscription-table-container .table-list .th-clone {
  padding-left: 10rem;
}
.subscriptions .user-subscription-table-container .table-list > thead > tr > th span,
.subscriptions .user-subscription-table-container .table-list .th-clone span {
  z-index: 99999;
}
.subscriptions .thead-clone.table-list {
  width: 100% !important;
}
.subscriptions .thead-clone.table-list .th-clone:last-child {
  max-width: 230rem;
}
.subscriptions .table-wrapper table.table-list {
  border-bottom: none;
}
.subscriptions .table-wrapper table .th-clone.table > tbody > tr:last-child > td {
  border-bottom: none !important;
}
.subscriptions .table-wrapper table .user-group-avatar-cell {
  width: 64rem;
  height: 49rem;
}
.subscriptions .table-wrapper table .user-group-avatar-cell .remove-user-action-button {
  display: none;
}
.subscriptions .table-wrapper table tr:hover .removable-user .remove-user-action-button {
  display: block;
  cursor: pointer;
}
.subscriptions .table-wrapper table tr:hover .removable-user .user-group-user-avatar {
  display: none;
}
.subscriptions .user-control {
  padding: 10rem;
  padding-left: 0 !important;
  float: left;
  width: 100%;
}
.subscriptions .user-control .btn-compact {
  float: right;
}
.subscriptions .user-control .no-subs {
  color: #6b6b6b;
  text-align: center;
}
.subscriptions-message {
  display: block;
  color: #666;
  padding: 1.5em 0 0;
}
.subscriptions .reader {
  font-size: 20rem;
}
.subscriptions .reader span.badge {
  float: right;
  min-width: 10rem;
  padding: 5rem 9rem;
  font-size: 14rem;
  font-weight: 700;
  line-height: 14rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10rem;
}
.subscriptions .reader span.badge.blue {
  background-color: #0191B6;
}
.subscriptions .reader span.badge.green {
  background-color: #8BC34A;
}
.subscriptions .reader span.badge.yellow {
  background-color: #dea338;
}
.subscriptions .error-no-subscriptions.error-page.error-overlay {
  position: absolute;
  background-color: transparent;
  z-index: 1;
}
.subscriptions .error-no-subscriptions.error-page.error-overlay h1,
.subscriptions .error-no-subscriptions.error-page.error-overlay .fdxicon-regular {
  color: lightgray;
}
.subscriptions-log .modal-dialog {
  width: 90% !important;
}
.subscriptions-log .modal-controls {
  padding: 10rem;
  height: 58rem;
  padding-right: 15rem;
}
.subscriptions-log .modal-controls .subscriptions-header-log-controls {
  float: right;
}
.subscriptions-log .modal-body {
  height: 320rem;
}
.subscriptions-log .modal-body .scrollable-table-wrapper {
  right: 15rem;
  left: 15rem;
  bottom: 15rem;
}

fdx-admin-published-standard-permissions #published-standard-permissions-title {
  margin-top: 0;
}
fdx-admin-published-standard-permissions #published-standard-permissions-checkbox-list {
  max-height: 40vh;
  overflow: auto;
  padding-bottom: 5rem;
}
fdx-admin-published-standard-permissions #published-standard-permissions-checkbox-list input[type="checkbox"] {
  margin-right: 5rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#fdxAdminMdbPublished .mdb-published-content {
  padding: 20rem;
  overflow: hidden !important;
}
#fdxAdminMdbPublished .mdb-published-content .text-blue {
  color: #3BA9CF;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-header h1 {
  margin-top: 10rem;
  display: inline-block;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-header .mdb-published-content-column-header-input {
  height: 50rem;
  border-top: 1rem solid #d3d3d3;
  border-right: 1rem solid #d3d3d3;
  border-left: 1rem solid #d3d3d3;
  width: 437rem;
  padding: 10rem;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-header .mdb-published-content-column-header-input .fdx-clearable-wrapper,
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-header .mdb-published-content-column-header-input #publishedStandardsFilter {
  width: 414rem;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list {
  border: 1rem solid #d3d3d3;
  width: 437rem;
  overflow-y: auto;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .mdb-published-content-column-list-none {
  margin-top: 5em;
  margin-left: 2em;
  margin-right: 2em;
  text-align: center;
  font-style: italic;
  color: #999;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel {
  position: relative;
  background-color: #fff;
  color: #333;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel:hover {
  box-shadow: 0 0 30rem -8rem #999;
  z-index: 600;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .panel-text {
  width: 87%;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .icon-button {
  margin: 1.1em 0.8em;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .icon-button.fdxicon-regular {
  position: absolute;
  top: 2rem;
  right: 0;
  font-size: 18rem;
  color: #3BA9CF;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .icon-button.fdxicon-regular.fdx-edit {
  right: 1.6em;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .icon-button.fdxicon-regular.fdx-edit,
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .icon-button.fdxicon-regular.fdx-arrow-2-s {
  top: 6rem;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .icon-button.fdxicon-regular {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  margin: 0.6em;
  font-size: 18rem;
  color: #3BA9CF;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .panel-title {
  margin: 0;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel .panel-title a {
  text-decoration: none;
  color: #333;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-text-version {
  color: #666;
  max-width: 85%;
  vertical-align: middle;
  font-size: 0.8em;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content {
  position: relative;
  margin: 0;
  padding: 0.7em;
  border-bottom: 1rem solid #d9d9d9;
  font-size: 16rem;
  color: #333;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content.imported-content {
  padding-top: 18rem;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content .container-type-icon {
  float: left;
  font-size: 1.6em;
  margin-right: 0.5em;
  margin-top: 2rem;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content .permittedAssetGroups {
  margin-top: 10rem;
  color: #333;
  font-size: 0.8em;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content .permittedAssetGroups .permittedAssetGroupsList {
  margin-bottom: 0;
  margin-top: 0.3em;
  padding-inline-start: 15rem;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content .permittedAssetGroups .permittedAssetGroupsList .permittedAssetGroupsListItem {
  margin-top: 0.2em;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .mdb-published-content-column-list .panel-title-content .permittedAssetGroupsNone {
  font-style: italic;
  color: #999;
  margin-left: 40rem;
  display: block;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .card-header {
  padding: 0;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .card-header,
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .panel {
  background-color: #f6f6f6;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .card-body {
  border: 0;
  padding: 0;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .card-body .version {
  position: relative;
  padding: 0.4em 0.4em 0.4em 3em;
  border-bottom: 1rem solid #d9d9d9;
  background: #fff;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .card-body .version .panel-text {
  font-size: 0.9em;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column .imported-standards-list .toggle-button {
  position: absolute;
  top: 0;
  right: 0;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column #publishedStandardsList {
  height: calc(100vh - 328rem);
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column #publishedStandardsList .panel:nth-child(odd) {
  background: #f6f6f6;
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column #importedStandardsList {
  height: calc(100vh - 269rem);
}
#fdxAdminMdbPublished .mdb-published-content .mdb-published-content-column #importedStandardsList .panel .panel-title-content {
  background: #f6f6f6;
}

.mdb-default-permissions-content {
  padding: 20rem;
  overflow: hidden !important;
}
.mdb-default-permissions-content .text-blue {
  color: #3BA9CF;
}
.mdb-default-permissions-content-column {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
.mdb-default-permissions-content-column h1 {
  margin-top: 10rem;
}
.mdb-default-permissions-content-column-vs {
  border: 1rem solid #d3d3d3;
  width: 437rem;
  height: calc(100vh - 278rem);
}
.mdb-default-permissions-content-column-vs h4 {
  padding-left: 1em;
  display: inline-block;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25rem;
  font-size: 18rem;
}
.mdb-default-permissions-content-column-vs-action {
  font-size: 18rem !important;
  float: right;
  top: 12rem!important;
  right: 12rem;
}
.mdb-default-permissions-content-column-vs .renderer {
  border-bottom: 1rem solid #d3d3d3;
}
.mdb-default-permissions-content-column-vs .dropdown {
  right: 12rem;
  top: 12rem;
}
.mdb-default-permissions-content-column-vs .dropdown-menu {
  min-width: 155rem;
}
.mdb-default-permissions-content-column-vs .dropdown .fdxicon-regular {
  font-size: 18rem;
}

fdx-admin-mdb-plugins #adminPluginsList {
  padding: 20rem 6rem;
}
fdx-admin-mdb-plugins #adminPluginsList .plugins-list {
  background-color: #fff;
}
fdx-admin-mdb-plugins #adminPluginsList .plugin-loading {
  position: relative;
  width: 90rem;
  height: 40rem;
}
fdx-admin-mdb-plugins #adminPluginsList .toggle-enabled-button {
  width: 90rem;
}
fdx-admin-mdb-plugins .plugin-missing {
  display: inline-block;
  margin: 0;
  padding: 8rem;
}
fdx-admin-mdb-plugins .plugin-missing span {
  vertical-align: middle;
}
fdx-admin-mdb-plugins .plugin-missing span.notification-icon {
  margin: 0 5rem 0 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mdb-external-standards-content {
  padding: 20rem;
}
.external-standards-list {
  margin-top: 10px;
}
.external-standards-list .fdx-smart-table-wrapper {
  overflow: initial;
}
.external-standards-actions .fdx-menu {
  font-size: 20rem;
  color: #00a9ce;
  cursor: pointer;
}
.external-standards-edit {
  padding: 15rem 40rem 0!important;
}
.external-standards-edit .row {
  margin-bottom: 15rem;
}
.external-standards-edit .line-height {
  line-height: 38rem;
}
.external-standards-edit .has-error {
  border-color: #aa1c1c;
}
.external-standards-pagination {
  background: #fcfcfc;
  bottom: 0;
  height: 50px;
  left: 0;
  padding: 7rem;
  position: sticky;
  right: 0;
  text-align: center;
  width: 100%;
}
.external-standards-pagination ul {
  margin-bottom: 0;
}
.external-standards-pagination ul li {
  display: inline-block;
  font-size: 16rem;
  margin: 0 8rem;
}
.external-standards-pagination ul li a {
  font-size: 23rem;
  text-decoration: none;
}
.external-standards-pagination ul li a.disabled {
  cursor: not-allowed;
  color: #999;
}
.no-property-value-replacement {
  color: #6666;
  font-style: italic;
  padding: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-admin-mdb-reference-lists .mdb-settings-content {
  padding: 20rem;
  overflow: hidden !important;
}
fdx-admin-mdb-reference-lists .mdb-settings-content-options {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
fdx-admin-mdb-reference-lists .mdb-settings-content-options h1 {
  margin-top: 15rem;
  margin-bottom: 12rem;
}
fdx-admin-mdb-reference-lists .mdb-settings-content-list {
  display: inline-block;
}
fdx-admin-mdb-reference-lists .mdb-settings-content-column {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
fdx-admin-mdb-reference-lists .mdb-settings-content-column-vs {
  border: 1rem solid #d3d3d3;
  width: 437rem;
  height: calc(100vh - 286rem);
}
fdx-admin-mdb-reference-lists .mdb-settings-content-column-vs h4 {
  padding-left: 1em;
  display: inline-block;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25rem;
}
fdx-admin-mdb-reference-lists .dropdown-control {
  display: inline-block;
  width: 200rem;
}
fdx-admin-mdb-reference-lists .text-control {
  vertical-align: top;
  padding-top: 11rem;
}
fdx-admin-mdb-reference-lists .app-content-header .controls {
  padding: 7rem 0 !important;
}
fdx-admin-mdb-reference-lists .admin-settings-data {
  width: 600rem;
  margin-left: 30rem;
}
fdx-admin-mdb-reference-lists .admin-settings-data-descr {
  padding: 15rem;
  background: #f4f9fb;
  text-align: center;
  color: #4490b2;
  border: 1rem solid #4490b2;
}
fdx-admin-mdb-reference-lists .admin-settings-data-descr .fdxicon-regular {
  float: left;
  line-height: 61rem;
}
fdx-admin-mdb-reference-lists .admin-settings-data-descr .main-msg {
  font-size: 15rem;
}
fdx-admin-mdb-reference-lists .admin-settings-data .btn {
  float: right;
}
fdx-admin-mdb-reference-lists .admin-settings-data .btn:first-of-type {
  margin-left: 10rem;
}
fdx-admin-mdb-reference-lists .admin-settings-data-checkbox {
  text-align: center;
  padding: 10rem;
  font-weight: bold;
}
fdx-admin-mdb-reference-lists .admin-settings-data-checkbox label {
  cursor: pointer;
}
fdx-admin-mdb-reference-lists .admin-settings-data-checkbox label span {
  vertical-align: text-bottom;
  margin-left: 5rem;
}
fdx-admin-mdb-reference-lists .admin-settings-data .form-control-error.remove {
  opacity: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fdx-mdb-reference-list-edit {
  margin-top: 50rem;
}
.fdx-mdb-reference-list-edit-add {
  margin-top: 10rem;
  border-top: 1rem solid #d3d3d3;
  border-right: 1rem solid #d3d3d3;
  border-left: 1rem solid #d3d3d3;
  padding: 10rem;
}
.fdx-mdb-reference-list-edit-add-input {
  width: 312rem;
  display: inline-block;
}
.fdx-mdb-reference-list-edit-add-input span {
  margin-left: 10rem;
}
.fdx-mdb-reference-list-edit-add-input .alert-text {
  margin: 0;
}
.fdx-mdb-reference-list-edit-add-button {
  margin-left: 10rem;
  display: inline-block;
  vertical-align: top;
}
.fdx-mdb-reference-list-edit-no-items {
  color: #999;
  margin-top: 150rem;
  text-align: center;
  font-style: italic;
}
.fdx-mdb-reference-list-edit-list {
  padding-left: 0rem;
  padding: 0;
  margin-bottom: 75rem;
  width: 425rem;
  height: calc(100vh - 344rem);
  overflow-y: auto;
  border: 1rem solid #d3d3d3;
}
.fdx-mdb-reference-list-edit-list-shadow {
  position: absolute;
  z-index: 200;
  transition: all linear 150ms;
  width: 425rem;
}
.fdx-mdb-reference-list-edit-list-shadow:after {
  content: "";
  opacity: 1;
  -webkit-transition: opacity ease-out 0.5s;
  transition: opacity ease-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  pointer-events: none;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bfd2d2d2', endColorstr='#00d2d2d2', GradientType=0);
}
.fdx-mdb-reference-list-edit-list-item {
  background-color: #fff;
  border-bottom: 1rem solid #e1e1e1;
  display: block;
  padding: 10rem 15rem;
  cursor: grab;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  list-style: none;
  padding: 10rem;
  height: 45rem;
  position: relative;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
}
.fdx-mdb-reference-list-edit-list-item:nth-child(odd) {
  background: #f6f6f6;
}
.fdx-mdb-reference-list-edit-list-item-text {
  width: 360rem;
  display: inline-block;
  margin: 0;
  line-height: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.fdx-mdb-reference-list-edit-list-item-delete {
  float: right;
  top: 3rem !important;
  font-size: 18rem !important;
  margin-top: -2rem;
  color: #00a9ce;
  cursor: pointer;
}
.fdx-mdb-reference-list-edit-list:hover list:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
.fdx-mdb-reference-list-edit-list .ghost {
  opacity: 0.4;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.add-ons .add-on {
  padding: 1.3em;
  border-bottom: 1rem solid #e0dfdf;
  background-color: #fff;
}
.add-ons .add-on-icon {
  display: inline-block;
  vertical-align: top;
}
.add-ons .add-on-icon-wrapper {
  display: inline-block;
  width: 65rem;
  height: 65rem;
  border: none;
  text-align: center;
  line-height: 65rem;
  background-color: transparent;
}
.add-ons .add-on-icon-wrapper-image {
  font-size: 2em !important;
  vertical-align: middle;
  color: #4a4a4a;
  margin-top: -4rem;
}
.add-ons .add-on-details {
  margin-top: 20rem;
}
.add-ons .add-on-details h1 {
  margin: 0;
}
.add-ons .add-on-details-values p {
  font-size: 15rem;
  display: inline-block;
  margin-right: 50rem;
  margin-left: 50rem;
}
.add-ons .add-on-details-values p span {
  margin-right: 5rem;
}
.add-ons .add-on-details-values p .badge {
  display: inline-block;
  min-width: 10rem;
  padding: 5rem 9rem;
  font-size: 14rem;
  font-weight: 700;
  line-height: 14rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10rem;
}
.add-ons .add-on-details-values p .badge.blue {
  background-color: #0191B6;
}
.add-ons .add-on-details-values p .badge.green {
  background-color: #8BC34A;
}
.add-ons .add-on-details-properties {
  display: inline-block;
  margin-left: 5rem;
}
.add-ons .add-on-details-properties p {
  font-size: 15rem;
}
.add-ons .controls button .logs-text {
  margin-left: 5rem;
}
.add-ons-form .settings-form-warning {
  background-color: #FDF4AA;
  color: #A81E19;
  height: 50rem;
  line-height: 50rem;
  margin-bottom: 8rem;
  text-align: center;
}
.add-ons-form .settings-form-warning .alert-icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 32rem;
}
.add-ons-form .settings-form-warning .alert-danger-text {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10rem;
}
.add-ons-form input {
  min-width: 100rem;
}
.add-ons-log .modal-dialog {
  width: 90% !important;
}
.add-ons-log .modal-controls .add-ons-header-log-controls {
  float: right;
}
.add-ons-log .modal-controls .add-ons-header-log-controls > button {
  margin-right: 18rem;
}
.add-ons-log .modal-body {
  padding: 15rem;
}
.add-ons-log .modal-body .table-container {
  height: 60vh;
  margin-top: 55rem;
  position: relative;
}
.add-ons-log .modal-body td span.none {
  color: #6666;
  font-style: italic;
  padding: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.admin-users-list tr {
  background-color: #fff;
}
.admin-users-list tr .fdx-menu {
  font-size: 20rem;
  color: #00a9ce;
  cursor: pointer;
}
.admin-users-list tr:hover {
  background-color: #fcfcfc;
}
.admin-users-list tr .none {
  color: #666;
  font-style: italic;
  padding: 0;
}

fdx-user-system-permissions-modal .mdb-load-permissions {
  min-height: 300rem;
}
fdx-user-system-permissions-modal .mdb-load-permissions span {
  text-align: center;
  font-style: italic;
  color: #999;
  position: absolute;
  top: 180rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5001;
}
fdx-user-system-permissions-modal .permissions-body {
  height: 515rem;
  overflow-y: hidden!important;
  position: relative;
  padding-bottom: 15rem;
}
fdx-user-system-permissions-modal .permissions-body .fdx-smart-table-wrapper {
  height: 450rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-admin-mdb-integrations .app-content-content {
  position: relative;
  padding: 10rem 20rem 20rem 20rem;
}
fdx-admin-mdb-integrations .app-content-content .column {
  float: left;
  width: 400rem;
  margin-right: 50rem;
}
fdx-admin-mdb-integrations .app-content-content .column .column-header .btn {
  width: 77rem;
  display: inline-block;
  margin-top: -13rem;
}
fdx-admin-mdb-integrations .app-content-content .column .column-header h1 {
  display: inline-block;
  width: calc(100% - 81px);
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list {
  position: absolute;
  width: 437rem;
  bottom: 95rem;
  top: 64rem;
  overflow-y: auto;
  border: 1px solid #d3d3d3;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-none {
  text-align: center;
  font-size: 18rem;
  font-style: italic;
  color: #999;
  margin-top: 30rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item {
  position: relative;
  border-bottom: 1px solid #d3d3d3;
  cursor: pointer;
  transition: all ease-in 0.15s;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item:nth-child(odd) {
  background-color: #fff;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item.selected {
  border-left: 5rem solid #00677d;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item:hover {
  box-shadow: 0rem 0rem 50rem -8rem #999;
  z-index: 300;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper {
  padding: 10rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-icon {
  font-size: 26rem;
  position: absolute;
  top: 31rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-title {
  padding-left: 34rem;
  max-width: 340rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-label {
  margin: 0 !important;
  line-height: 26rem;
  vertical-align: text-bottom;
  overflow: hidden;
  max-width: 300rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-type {
  display: inline-block;
  line-height: 21rem;
  vertical-align: text-bottom;
  overflow: hidden;
  max-width: 300rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-info {
  margin-left: 35rem;
  color: #999;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-delete {
  position: absolute;
  right: 15rem;
  top: 35rem;
  font-size: 20rem;
  transition: all 0.4s;
  color: #00a9ce;
}
fdx-admin-mdb-integrations .app-content-content .column .integrations-list-item .item-wrapper .item-delete.disabled {
  color: #d3d3d3;
  cursor: not-allowed;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info {
  border: 1px solid #d3d3d3;
  position: absolute;
  width: 437rem;
  top: 64rem;
  bottom: 95rem;
  overflow-y: auto;
  overflow-x: hidden;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info-none {
  text-align: center;
  font-size: 18rem;
  font-style: italic;
  color: #999;
  margin-top: 100rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info-scrollable-area {
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  bottom: 66rem;
  left: 0;
  right: 0;
  padding: 15rem 15rem 0;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration-heading {
  margin: 10rem 5rem 25rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .row {
  display: flex;
  margin: 0 0 15rem 0 !important;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .configuration-container {
  padding-top: 30rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .input-label {
  width: 25% !important;
  padding-right: 10rem;
  padding-left: 0;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .show-password-btn {
  color: #00a9ce;
  cursor: pointer;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .input {
  width: 82% !important;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .control-label {
  font-weight: bold;
  text-align: right;
  margin-top: 8rem;
  width: 43%;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .control-label.no-margin-top {
  margin-top: 0;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .error-msg {
  color: #aa1c1c;
  font-style: italic;
  font-size: 12rem;
  margin-top: 5rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files {
  min-height: 38rem;
  padding-left: 10rem;
  width: 58%;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .download-btn {
  display: inline-block;
  padding: 8rem 0;
  width: 96%;
  margin-top: 5rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .download-btn .fdx-arrow-s {
  font-size: 11rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .tooltip-inner {
  width: 157rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .upload-btns {
  position: relative;
  width: 100%;
  display: flex;
  gap: 8rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .upload-btns .btn {
  padding: 8rem 10rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .upload-btns .upload {
  width: 76%;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .upload-btns .upload .fdx-arrow-n {
  font-size: 11rem;
}
fdx-admin-mdb-integrations .app-content-content .column .integration-info .integration .upload-files .upload-btns .download {
  display: flex;
  justify-content: center;
  align-items: center;
}
fdx-admin-mdb-integrations .app-content-content .column.right .btn-save {
  position: absolute;
  bottom: 15rem;
  left: 15rem;
  right: 15rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-admin-mdb-add-integration .modal-body {
  overflow: visible;
  padding: 15rem 0;
}
fdx-admin-mdb-add-integration .select-type {
  padding: 0 15rem;
}
fdx-admin-mdb-add-integration .modal-label {
  padding: 10px 0;
}
fdx-admin-mdb-add-integration .integration-form {
  padding: 20px 15rem;
  max-height: 575rem;
  overflow-y: auto;
}
fdx-admin-mdb-add-integration .integration-form .row {
  margin: 0 0 15rem 0;
}
fdx-admin-mdb-add-integration .integration-form .row .col-md-9 {
  padding: 0 87rem 0 15rem;
}
fdx-admin-mdb-add-integration .integration-form .row .col-md-9 .inputControls {
  padding-right: 87rem;
}
fdx-admin-mdb-add-integration .integration-form .row label {
  text-align: right;
}
fdx-admin-mdb-add-integration .error-msg {
  color: #aa1c1c;
  font-style: italic;
  font-size: 12px;
  margin-top: 5px;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-admin-veeva-integration-form .integration-form {
  overflow-y: auto;
}
fdx-admin-veeva-integration-form .integration-form .row {
  margin: 0 0 15rem 0;
}
fdx-admin-veeva-integration-form .integration-form .row label {
  text-align: right;
}
fdx-admin-veeva-integration-form .error-msg {
  color: #aa1c1c;
  font-style: italic;
  font-size: 12px;
  margin-top: 5px;
}
fdx-admin-veeva-integration-form .add-btn-row {
  text-align: center;
  display: block!important;
}
fdx-admin-veeva-integration-form .add-btn {
  color: #00a9ce;
  display: inline-block;
  cursor: pointer;
}
fdx-admin-veeva-integration-form .inputControls {
  display: flex;
  align-items: center;
  height: 38rem;
  position: absolute;
  top: 0;
  right: 8rem;
}
fdx-admin-veeva-integration-form .inputControls .fdx-circle-alert {
  color: #aa1c1c;
  padding: 10rem;
}
fdx-admin-veeva-integration-form .inputControls .fdx-circle-tick {
  color: #6aa445;
  padding: 10rem;
}
fdx-admin-veeva-integration-form .inputControls fdx-loader {
  display: inline-block;
}
fdx-admin-veeva-integration-form .inputControls fdx-loader .spinner {
  position: initial;
}
fdx-admin-veeva-integration-form .inputControls fdx-loader .spinner img.loading {
  margin: 0;
  position: initial;
}
fdx-admin-veeva-integration-form .error {
  border: 1rem solid #aa1c1c;
}
fdx-admin-veeva-integration-form .vault-config {
  margin-bottom: 16rem;
}
fdx-admin-veeva-integration-form .vault-config-header {
  border: 1rem solid #ddd;
  padding: 15rem 10rem;
}
fdx-admin-veeva-integration-form .vault-config-header-title {
  color: #333;
  font-weight: bold;
}
fdx-admin-veeva-integration-form .vault-config-header-subtitle {
  color: #666;
  margin-left: 5rem;
}
fdx-admin-veeva-integration-form .vault-config-body {
  border: 1rem solid #ddd;
  border-top: 0;
  padding-top: 15rem;
}
fdx-admin-veeva-integration-form .vault-config-expand {
  float: right;
  color: #00a9ce;
  cursor: pointer;
  background: none;
}
fdx-admin-veeva-integration-form .vault-config-remove-button {
  color: #00a9ce;
  cursor: pointer;
  float: right;
  margin-right: 4rem;
}
fdx-admin-veeva-integration-form .row:hover .show-password-btn {
  opacity: 1;
  display: block;
}
fdx-admin-veeva-integration-form .inputControls .show-password-btn {
  color: #00a9ce;
  cursor: pointer;
  margin-right: 6rem;
  opacity: 0;
  transition: opacity 0.3s, display 0.3s allow-discrete;
  display: none;
  background-color: #fff;
}
@starting-style {
  fdx-admin-veeva-integration-form .inputControls .show-password-btn {
    opacity: 0!important;
  }
}
fdx-admin-veeva-integration-form input:focus + .inputControls .show-password-btn {
  background-color: #e5f4f8 !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mdb-webhooks-content {
  padding: 20rem;
  overflow: hidden !important;
}
.mdb-webhooks-content-column {
  width: 450rem;
  display: inline-block;
  vertical-align: top;
}
.mdb-webhooks-content-column-header h1 {
  margin-top: 10rem;
  display: inline-block;
}
.mdb-webhooks-content-column-header button {
  display: block;
  float: right;
  margin-right: 50rem;
}
.mdb-webhooks-content-column-vs {
  border: 1rem solid #d3d3d3;
  width: 437rem;
  height: calc(100vh - 278rem);
}
.mdb-webhooks-content-column-vs .vs-scroll-container {
  overflow-y: visible;
  overflow-x: visible;
}
.mdb-webhooks-content-column-vs-content {
  padding-left: 0 !important;
  position: relative;
  min-height: 70rem;
}
.mdb-webhooks-content-column-vs-content.selected .item-icon {
  left: 15rem;
}
.mdb-webhooks-content-column-vs-content.selected .item-title {
  padding-left: 28rem !important;
}
.mdb-webhooks-content-column-vs-content-item {
  padding-left: 10rem;
}
.mdb-webhooks-content-column-vs-content-item .item-label-name {
  margin: 0 !important;
  line-height: 26rem;
  overflow: hidden;
  max-width: calc(100% - 3rem);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20rem;
}
.mdb-webhooks-content-column-vs-content-item .item-icon {
  font-size: 24rem;
  position: absolute;
  top: 20rem;
}
.mdb-webhooks-content-column-vs-content-item .item-title {
  padding-left: 34rem !important;
  max-width: 340rem;
  padding-top: 5rem;
}
.mdb-webhooks-content-column-vs-content-item .item-url {
  margin-left: 34rem;
  color: #999;
  line-height: 1.5;
}
.mdb-webhooks-content-column-vs-content-item .urlLabel {
  width: 3rem;
  vertical-align: top;
}
.mdb-webhooks-content-column-vs-content-item .urlText {
  max-width: calc(88% - 3rem);
  white-space: nowrap;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: top;
}
.mdb-webhooks-content-column-vs-content-item .item-dropdown {
  position: absolute;
  font-size: 20rem;
  transition: all 0.4s;
}
.mdb-webhooks-content-column-vs-content-item .item-dropdown .fdx-menu dropdown-toggle {
  color: #00a9ce;
}
.mdb-webhooks-content-column-vs-content-item.selected .item-title {
  padding-left: 18rem !important;
}
.mdb-webhooks-content-column-vs-content-item.selected .item-url {
  margin-left: 26rem;
}
.mdb-webhooks-content-column-vs-content .tooltipText {
  visibility: hidden;
  background-color: #00677d;
  color: #fff;
  display: block;
  font-size: 16rem;
  overflow: visible;
  padding: 5rem;
  margin: 5rem;
  border-radius: 6rem;
  position: absolute;
  top: 50%;
  left: 10%;
  text-align: center;
}
.mdb-webhooks-content-column-vs-content h3:hover .tooltipText {
  visibility: visible;
}
.mdb-webhooks-content-column-vs-content .disabled {
  opacity: 0.3;
}
.mdb-webhooks-content-column-vs-content .disabled::before {
  cursor: not-allowed;
}
.mdb-webhooks-content-column-vs-content .newWebhook {
  font-style: italic;
}
.mdb-webhooks-content-column-vs-content-context {
  padding-left: 12rem;
  color: #5d5d5d;
}
.mdb-webhooks-content-column-vs-content-context .label {
  font-weight: bold;
}
.mdb-webhooks-content-column-vs-content .dropdown {
  right: 12rem;
  top: 20rem;
}
.mdb-webhooks-content-column-vs-content .dropdown .dropdown-toggle {
  font-size: 18rem;
}
.mdb-webhooks-content-column-vs-content .dropdown .dropdown-menu {
  min-width: 200rem;
}
.mdb-webhooks-content-column-vs-content .dropdown .dropdown-menu li:hover {
  background: #38aace;
  color: white;
}
.mdb-webhooks-content-column-vs-content .dropdown .dropdown-menu li .fdxicon-regular {
  margin: 6rem 10rem;
  font-size: 16rem;
  height: 16rem;
}
.mdb-webhooks-content-column-vs-content .dropdown .dropdown-menu li span:not(.fdxicon-regular) {
  font: 12rem "PT Sans", "interstate", Helvetica, sans-serif;
  padding: 7rem;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mdb-webhooks-content-column-vs-content .dropdown.open .dropdown-menu {
  opacity: 1;
  height: fit-content;
}
.mdb-webhooks-content-column-form {
  width: 437rem;
  display: inline-block;
  vertical-align: top;
  max-width: 700rem;
  line-height: 25rem;
  font-size: 18rem;
  margin-top: 44rem;
}
.mdb-webhooks-content-column-form .webhook-details {
  border: 1rem solid #d3d3d3;
}
.mdb-webhooks-content-column-form .webhook-details form {
  height: calc(100vh - 338rem);
  display: flex;
  flex-flow: column;
}
.mdb-webhooks-content-column-form .webhook-details form h2 {
  margin-left: 40rem;
  margin-top: 10rem;
  line-height: 60rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 60rem;
}
.mdb-webhooks-content-column-form .webhook-details form .webhook-input {
  margin-top: auto;
  height: fit-content;
  line-height: 25rem;
  font-size: 14rem;
  font-weight: bold;
  padding: 10rem;
  border-bottom: 1rem solid #d3d3d3;
}
.mdb-webhooks-content-column-form .webhook-details form .webhook-options {
  height: 100%;
  background-color: #F6F6F6;
  text-align: left;
  padding: 10rem;
  line-height: 25rem;
  font-size: 14rem;
  overflow-y: auto;
}
.mdb-webhooks-content-column-form .webhook-details form .webhook-options h3 {
  font-weight: bold;
  margin-left: 10rem;
  margin-bottom: 24rem;
}
.mdb-webhooks-content-column-form .webhook-details form .webhook-options .option-lable {
  display: block;
  padding: 10rem;
  color: black;
}
.mdb-webhooks-content-column-form .webhook-details form .webhook-options .option {
  display: inline-block;
  margin-bottom: 20rem;
}
.mdb-webhooks-content-column-form .webhook-details form .webhook-options .option ul {
  list-style-type: none;
}
.mdb-webhooks-content-column-form .btn-save {
  margin-top: 10rem;
}
.mdb-webhooks-content-column-form .modal-footer {
  border-bottom: 1rem solid #d3d3d3;
  border-right: 1rem solid #d3d3d3;
  border-left: 1rem solid #d3d3d3;
  padding: 10rem;
}
.mdb-webhooks-content .empty {
  color: #6666;
  font-style: italic;
  padding-left: 16rem;
  font-size: 18rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-manager-system-logs #lnkChangeDates {
  margin-left: 6rem;
}
fdx-manager-system-logs .logs-content #downloadButton li {
  padding: 7rem;
  text-align: center;
  transition: background-color ease-in-out 0.3s;
  cursor: pointer;
}
fdx-manager-system-logs .logs-content #downloadButton li:hover,
fdx-manager-system-logs .logs-content #downloadButton li.active {
  background: #d7e8ef;
}
fdx-manager-system-logs .logs-pagination {
  background: #fcfcfc;
  border-top: 1px solid lightgrey;
  bottom: 0;
  height: 50px;
  left: 0;
  padding: 7rem;
  position: sticky;
  right: 0;
  text-align: center;
  width: 100%;
}
fdx-manager-system-logs .logs-pagination ul {
  margin-bottom: 0;
}
fdx-manager-system-logs .logs-pagination ul li {
  display: inline-block;
  font-size: 16rem;
  margin: 0 8rem;
}
fdx-manager-system-logs .logs-pagination ul li a {
  font-size: 23rem;
  text-decoration: none;
}
fdx-manager-system-logs .logs-pagination ul li a.disabled {
  cursor: not-allowed;
  color: #999;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.add-on-container {
  align-items: center;
  padding: 30rem;
}
.add-on-container:not(:last-child) {
  border-bottom: 1rem solid #ddd;
}
.add-on-container,
.add-on-container > div,
.add-on-container .edit-add-ons,
.add-on-container .add-on-values {
  display: flex;
}
.add-on-container div p,
.add-on-container div h2 {
  margin: 0;
}
.add-on-container div.edit-add-ons {
  justify-content: flex-end;
}
.add-on-container div.edit-add-ons .edit-total-input {
  border-radius: 3rem;
  max-width: 70%;
}
.add-on-container div.add-on-values {
  justify-content: space-between;
}
.add-on-container div.add-on-values .badge {
  background-color: #777777;
  border-radius: 100rem;
  color: #fff;
  display: inline-block;
  font-size: 14rem;
  font-weight: 700;
  line-height: 14rem;
  min-width: 10rem;
  padding: 5rem 9rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  margin-left: 5rem;
}
.add-on-container div.add-on-values .badge.blue {
  background-color: #0191B6;
}
.add-on-container div.add-on-values .badge.green {
  background-color: #8BC34A;
}

.date-form {
  display: table;
  margin: 0 auto;
}
.theme-green .btn-today-wrapper,
.theme-green .btn-clear-wrapper {
  margin: 0;
  padding: 0;
  float: left;
}
.theme-green .btn-today-wrapper .btn-success,
.theme-green .btn-clear-wrapper .btn-success {
  background-color: #e9e9ed !important;
  border: none !important;
  position: relative;
  float: left !important;
  transition: outline 0.2s;
}
.theme-green .btn-today-wrapper .btn-success:hover,
.theme-green .btn-clear-wrapper .btn-success:hover {
  outline: 1rem solid #33A1CB !important;
}
.bs-datepicker-buttons {
  display: unset !important;
}
.btn-clear-wrapper .btn-success {
  margin-left: 2rem !important;
}
.is-invalid-group {
  border: 1px solid red !important;
  border-radius: 4px;
}
.is-invalid-group .form-control {
  border: none !important;
  box-shadow: none !important;
}
.is-invalid-group .input-group-btn .btn-date {
  border-left: 1px solid red !important;
}

.upload-file-container {
  display: flex;
  align-items: center;
}
.upload-file-container > div {
  margin-right: 5rem;
}

.plugin-modal {
  height: 500rem;
}
.plugin-modal .plugin-content {
  width: 100%;
  padding-right: 0;
}
.plugin-modal .plugin-content .plugin-details {
  padding: 10rem 25rem 25rem 25rem;
  height: 435rem;
  background-color: #fff;
  border: 1rem solid #d3d3d3;
  border-radius: 2rem;
  box-shadow: 0 2rem 10rem 0 rgba(0, 0, 0, 0.07), 0 3.5rem 5rem -2.5rem rgba(1, 100, 158, 0.1);
  overflow: auto;
}
.plugin-modal .plugin-content .plugin-details .company-access-list ul {
  list-style: none;
}
.plugin-modal .plugin-content .plugin-details .company-access-list ul .company-availiable {
  cursor: pointer;
}
.plugin-modal .plugin-content .plugin-details .company-access-list ul .company-availiable:hover .company-item {
  text-decoration: underline;
}
.plugin-modal .plugin-content .plugin-details .access-yes {
  position: relative;
  top: 3rem;
  font-size: 20rem;
  color: green;
}
.plugin-modal .plugin-content .plugin-details .access-no {
  position: relative;
  top: 3rem;
  font-size: 20rem;
  color: red;
}
.plugin-modal .plugin-content .fdxicon-regular {
  top: 6rem !important;
}
.plugin-modal .plugin-content .plugin-avatar {
  margin-top: 110rem;
}
.plugin-modal .plugin-content .plugin-title {
  margin-top: 5rem;
}
.plugin-modal .plugin-content .pluginedit-plug {
  font-size: 8em;
}
.plugin-modal .plugin-content .is-enabled-text {
  font-size: 26rem;
}
.plugin-modal .delete-plugin-btn {
  margin-right: 4rem;
}
ngb-modal-window.fdx-edit-plugin.modal {
  z-index: 1030 !important;
}
ngb-modal-backdrop.fdx-edit-plugin.modal-backdrop {
  z-index: 1030  !important;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.settings-page-header {
  align-items: center;
  background-color: #fff;
  border-bottom: 1rem solid #ddd;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15rem;
  padding: 10rem;
  justify-content: flex-end;
}
.settings-page-header p {
  margin-bottom: 0;
}
.settings-page-header .edit-settings-alert {
  font-weight: 600;
  margin-right: 10rem;
}
.settings-card-list {
  margin-left: 5rem;
}
.settings-card-list .settings-card {
  float: left;
  margin: 0rem 7rem 5rem;
  height: 400rem;
  width: 440rem;
  background-color: #fff;
  border: 1rem solid #d3d3d3;
  border-radius: 2rem;
  box-shadow: 0 2rem 10rem 0 rgba(0, 0, 0, 0.07), 0 3.5rem 5rem -2.5rem rgba(1, 100, 158, 0.1);
}
.settings-card-list .settings-card .setting-description-card .p-container {
  margin-top: 15rem;
  padding: 0 7rem;
}
.settings-card-list .settings-card .setting-description-card p {
  font-weight: 500;
  margin-left: 15rem;
}
.settings-card-list .settings-card .setting-description-card span {
  font-weight: 600;
  float: right;
  margin-right: 20rem;
}
.settings-card-list .settings-card .setting-description-card .setting-card-header {
  display: flex;
  align-items: center;
  width: 400rem;
  padding: 5rem 5rem;
  margin-left: 20rem;
  border-bottom: 1rem solid #8dc5d8;
}
.settings-card-list .settings-card .setting-description-card .setting-card-header .setting-icon {
  font-size: 30rem;
}
.settings-card-list .settings-card .setting-description-card .setting-card-header .setting-title {
  margin: 15rem 25rem;
  font-size: 22rem;
}

#fdxManagerCompanySubsriptions {
  background-color: #fff;
}
#fdxManagerCompanySubsriptions .btn .fdx-circle-add {
  margin-right: 2rem;
  font-size: 14rem;
}
#fdxManagerCompanySubsriptions #subscriptionType {
  display: inline-block;
  width: 150rem;
  height: 38rem;
  vertical-align: middle;
}
#fdxManagerCompanySubsriptions #subscriptionType #searchableDropdownToggle {
  height: 38rem;
}
.fdx-manager-breadcrumbs {
  list-style: none;
  overflow: hidden;
  margin: 0;
  height: 60rem;
  padding-left: 0;
}
.fdx-manager-breadcrumbs li {
  float: left;
}
.fdx-manager-breadcrumbs li a {
  height: 60rem;
  padding: 1.4em 1em 1.4em 2em;
  float: left;
  text-decoration: none !important;
  color: #444;
  position: relative;
  text-shadow: 0 1rem 0 rgba(255, 255, 255, 0.5);
}
.fdx-manager-breadcrumbs li a .breadcrumb-version {
  margin: 0;
  font-size: 13rem;
  line-height: 16rem;
  vertical-align: middle;
  opacity: 0.7;
}
.fdx-manager-breadcrumbs li a::after,
.fdx-manager-breadcrumbs li a::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid;
  right: -1em;
}
.fdx-manager-breadcrumbs li a::after {
  z-index: 2;
  border-left-color: #fff;
}
.fdx-manager-breadcrumbs li a::before {
  border-left-color: #ccc;
  right: -1.1em;
  z-index: 1;
}
.fdx-manager-breadcrumbs li a:focus {
  color: #444;
  outline: none;
}
.fdx-manager-breadcrumbs li:first-child {
  padding-left: 20rem;
}
.fdx-manager-breadcrumbs li:first-child a {
  padding-left: 1em;
}
.fdx-manager-breadcrumbs li:last-child {
  font-weight: bold;
  background: #fff;
}
.fdx-manager-breadcrumbs li:last-child a:hover {
  cursor: auto;
}
.fdx-manager-breadcrumbs li:last-child a::after {
  border-left-color: #fff !important;
}
.fdx-manager-breadcrumbs li:not(:last-child) a:hover {
  color: #000;
}

fdx-user-restore-defaults #clearPreferencesForm .form-group {
  margin: 0rem;
  margin-bottom: 1rem;
}
fdx-user-restore-defaults #clearPreferencesForm .form-group article {
  display: flex;
  align-items: baseline;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-dashboard-layout {
  position: relative;
}
fdx-dashboard-layout .editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5rem;
  position: absolute;
  width: 100%;
  top: -50rem;
}
fdx-dashboard-layout .editor-header button {
  font-weight: bold;
  color: #00a9ce;
  outline: none;
}
fdx-dashboard-layout .dashboard-layout-editor {
  display: flex;
  background-color: #F6F6F6;
  border: 1rem solid #ddd;
  max-height: calc(100vh - 452rem);
  margin-top: 42rem;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion {
  overflow-y: auto;
  width: 40%;
  background-color: #F6F6F6;
  padding-bottom: 30rem;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .header {
  width: 100%;
  margin: 0;
  padding: 10rem;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1rem solid #ddd;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .header .title {
  display: flex;
  align-items: center;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .header .title > span {
  font-weight: bold;
  margin-left: 10rem;
  margin-right: 10rem;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .header i {
  font-size: 18rem;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .body .versions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10rem 5rem;
  background-color: #fff;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .body .versions .version {
  box-shadow: -2px 3px 20px 1px #ccc;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #afadad;
  font-size: 12rem;
  cursor: move;
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .body .versions .version:hover {
  color: #00a9ce;
  box-shadow: none;
  border: 1px solid #00a9ce;
  background-color: rgba(0, 169, 206, 0.13);
}
fdx-dashboard-layout .dashboard-layout-editor-column-accordion .body.show .versions {
  border-bottom: 1rem solid #ddd;
}
fdx-dashboard-layout .dashboard-layout-editor-grid {
  overflow-y: auto;
  width: 60%;
  position: relative;
  z-index: 1;
}
fdx-dashboard-layout .dashboard-layout-editor-grid-widgets,
fdx-dashboard-layout .dashboard-layout-editor-grid-lines {
  width: 100%;
}
fdx-dashboard-layout .dashboard-layout-editor-grid-lines {
  position: absolute;
  pointer-events: none;
  top: 0;
}
fdx-dashboard-layout .dashboard-layout-editor-grid-lines .cell {
  grid-column-end: span 1;
  border: 1px solid #dcdcdc;
}
fdx-dashboard-layout .modal-footer {
  position: relative !important;
  padding: 20rem 0 0 0;
}
fdx-dashboard-layout .header.widget .widget-body {
  cursor: auto;
  background-color: #3ba9cf;
}
fdx-dashboard-layout .header.widget .widget-body .toggle-fixed {
  cursor: pointer;
  position: absolute;
  left: 10rem;
  bottom: 10rem;
  width: 25rem;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
fdx-dashboard-layout .header.widget .widget-body .toggle-fixed.enabled {
  color: #88ce86;
  background-color: #eaf2ea;
}
fdx-dashboard-layout .header.widget .widget-body .toggle-fixed.disabled {
  background-color: #f2eaea;
  color: #ce8686;
}
fdx-dashboard-layout .header.widget .widget-body .toggle-fixed .fdxicon-regular {
  font-size: 14rem;
  font-weight: bold;
}
fdx-dashboard-layout .header.widget .widget-body .app-header-title {
  height: 100%;
  width: 50%;
  padding-right: 190rem;
  display: flex;
  justify-content: end;
  align-items: center;
  border-bottom-left-radius: 8rem;
  border-top-left-radius: 8rem;
}
fdx-dashboard-layout .header.widget .widget-body .app-header-title img {
  max-height: 40rem;
  margin: 0;
}
fdx-dashboard-layout .header.widget .widget-body .app-header-menu {
  width: 50%;
  display: flex;
}
fdx-dashboard-layout .header.widget .widget-body .app-header-menu div {
  background-color: #fff;
  height: 6rem;
  width: 40rem;
  margin-right: 60rem;
  position: relative;
}
fdx-dashboard-layout .header.widget .widget-body .app-header-menu div:before {
  content: '';
  background-color: #fff;
  height: 6rem;
  width: 40rem;
  margin-right: 10rem;
  position: absolute;
  left: 50rem;
}
fdx-dashboard-layout .widget {
  padding: 10rem;
}
fdx-dashboard-layout .widget-body {
  cursor: move;
  background-color: #fff;
  border: 1rem solid #ddd;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
}
fdx-dashboard-layout .widget-body .remove {
  position: absolute;
  right: 10rem;
  top: 10rem;
  cursor: pointer;
}
fdx-dashboard-layout .widget-body-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9f9f9f;
  text-transform: uppercase;
}
fdx-dashboard-layout .widget-body-title .fdxicon-regular {
  font-size: 20rem;
}
fdx-dashboard-layout .widget-body-title span {
  margin-top: 10rem;
  font-weight: bold;
  font-size: 13rem;
  text-align: center;
}
fdx-dashboard-layout .widget-body .tooltip-inner {
  width: auto;
}
fdx-dashboard-layout #template {
  z-index: 1;
}
fdx-dashboard-layout #template .widget-body {
  border: 2px dashed #ccc;
}
fdx-dashboard-layout #template .widget-body .notAllowed {
  display: none;
}
fdx-dashboard-layout .not-fit .widget-body {
  border: 2px dashed red !important;
}
fdx-dashboard-layout .not-fit .widget-body-title {
  color: red;
}
fdx-dashboard-layout .not-fit .widget-body-title .notAllowed {
  display: block !important;
}
fdx-dashboard-layout .not-fit .widget-body-title .drop {
  display: none;
}

fdx-user-theme h3 {
  margin-top: 0;
}
fdx-user-theme .themes-container {
  text-align: center;
}
fdx-user-theme .themes-container .theme-container {
  width: 150px;
  height: 150px;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid;
  display: inline-block;
  cursor: pointer;
}
fdx-user-theme .themes-container .theme-container.fdx-light-theme {
  background-color: #fff;
  border-color: #d3d3d3;
}
fdx-user-theme .themes-container .theme-container.fdx-dark-theme {
  background-color: #323232;
  border-color: #323232;
}
fdx-user-theme .themes-container .theme-container-wrapper {
  padding: 8px;
  border-radius: 15px;
  display: inline-block;
  margin: 20px;
}
fdx-user-theme .themes-container .theme-container-wrapper.active {
  background-color: #00a9ce;
}
fdx-user-theme .themes-container .theme-container-wrapper.active .fdx-light-theme {
  border-color: #fff;
}
fdx-user-theme .themes-container .theme-container img {
  height: 100%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-user-preferences .modal-body-with-sidebar .flex-container {
  display: flex;
}
fdx-user-preferences .modal-body-with-sidebar .modal-sidebar {
  flex: 1 0 20%;
  background-color: #f5f6fa;
  border-right: 1rem solid #ddd;
}
fdx-user-preferences .modal-body-with-sidebar .modal-content-right {
  flex: 1 0 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
fdx-user-preferences .modal-body-with-sidebar .modal-content-right.justify-center {
  justify-content: center;
}
fdx-user-preferences .modal-body-with-sidebar .modal-content-right .switch-content-container {
  padding: 15rem;
  min-height: 70vh;
}
fdx-user-preferences .modal-body-with-sidebar .modal-content-right .modal-content-right-header {
  margin: 10rem 0 25rem 0;
}
fdx-user-preferences ul {
  padding-left: 0;
  margin-bottom: 0;
}
fdx-user-preferences ul li {
  list-style-type: none;
}
fdx-user-preferences ul.sidebar-nav li {
  background-color: white;
  border-bottom: 1rem solid #ddd;
  cursor: pointer;
  height: 45rem;
  position: relative;
  line-height: 3.2;
}
fdx-user-preferences ul.sidebar-nav li span {
  padding: 12rem;
}
fdx-user-preferences ul.sidebar-nav li i {
  padding: 0 10rem;
}
fdx-user-preferences ul.sidebar-nav li.active {
  font-weight: bold;
}
fdx-user-preferences ul.sidebar-nav li.active span,
fdx-user-preferences ul.sidebar-nav li.active i {
  padding-left: 16rem;
}
fdx-user-preferences ul.sidebar-nav li.active::before {
  content: "";
  background-color: #00677d;
  position: absolute;
  height: 100%;
  width: 6rem;
}
fdx-user-preferences ul.asset-types-list {
  max-height: 55vh;
  overflow-y: auto;
}
fdx-user-preferences .asset-browse-list-item-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 65%;
}
fdx-user-preferences .inner {
  border: 1rem solid #ddd;
}
fdx-user-preferences .fdx-restore-defaults-container label.fdx-input-checkbox span {
  font-size: 16rem;
  line-height: 32rem;
}
fdx-user-preferences .fdx-restore-defaults-container .fdx-help {
  top: -5rem;
}
fdx-user-preferences .background-inset {
  background-color: #f6f6f6;
  box-shadow: inset 0px 0px 10px #0000001a;
}
fdx-user-preferences .card {
  padding: 10rem;
}
fdx-user-preferences .card.shadow {
  border: 1px solid #C5C5C5;
  box-shadow: 0px 0px 10px #00000033;
}
fdx-user-preferences .modal-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.message-list-item {
  border-bottom: 1rem solid #DDDDDD;
  cursor: pointer;
  position: relative;
  padding: 24rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.message-list-item:nth-child(odd) {
  background-color: #F8F8F8;
}
.message-list-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.6);
}
.message-list-item:hover {
  background-color: #E5F4F8;
}
.message-list-item-content {
  display: flex;
  padding: 0 250rem;
}
.message-list-item-content .message-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20rem;
}
.message-list-item-content .message-icon .icon-circled {
  width: 44rem;
  height: 44rem;
  border: 1rem solid #DDDDDD;
}
.message-list-item-content .message-icon .icon-circled > span {
  margin-left: -10rem;
  margin-top: -10rem;
}
.message-list-item-content .message-icon .icon-circled .fdxicon-regular {
  font-size: 20rem;
}
.message-list-item-content .message-details {
  display: flex;
  flex-direction: column;
}
.message-list-item-content .message-details-content {
  margin-bottom: 8rem;
  font-weight: bolder;
}
.message-list-item-content .message-details-created-date .fdxicon-regular {
  margin-right: 2rem;
}
.message-list-item-content .message-details-created-date span {
  vertical-align: middle;
}
.message-list .message-list-body-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24rem;
  color: #d3d3d3;
  font-style: italic;
}

.message-container {
  padding: 20rem 10rem;
}
.message-container .message-list,
.message-container .message-configuration {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2rem 6rem 0px;
  background-color: #ffffff;
  border-width: 1rem;
  border-style: solid;
  border-color: #d9d9d9;
  border-image: initial;
}
.message-container .message-list-header,
.message-container .message-configuration-header {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2rem 6rem 0px;
  border-bottom: 1rem solid #d9d9d9;
  padding: 15rem;
}
.message-container .message-list-header h3,
.message-container .message-configuration-header h3 {
  line-height: 20rem;
  display: inline-block;
  color: #4c4c4c;
  text-transform: uppercase;
  font-size: 13rem;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 0px 0px 0px 10rem;
}


.message-configuration .message-configuration-body {
  padding: 15rem;
}
.message-configuration .message-configuration-body .message-configuration-row {
  margin: 0px 0px 0px 10rem;
  padding: 18rem 0;
  border-bottom: 1rem solid lightgrey;
}
.message-configuration .message-configuration-body .message-configuration-row .control-label {
  font-weight: bolder;
}
.message-configuration .message-configuration-body .message-configuration-row .control-switch {
  margin-right: 4rem;
}
.message-configuration .message-configuration-body .message-configuration-row .control-switch .fdx-switch {
  vertical-align: middle;
  margin-left: 4rem;
  margin-bottom: 14rem;
}
.message-configuration .message-configuration-body .message-configuration-row .control-switch .fdxicon-regular.fdx-email-closed {
  color: #ccc;
}
.message-configuration .message-configuration-body .message-configuration-row .control-switch .fdxicon-regular.fdx-email-closed.active {
  color: #3191b2;
}
.message-configuration .message-configuration-body .message-configuration-row:first-child {
  padding-top: 8rem;
}
.message-configuration .message-configuration-body .message-configuration-row:last-child {
  border: none;
  margin-bottom: -16rem;
}
.message-configuration .message-configuration-body .message-configuration-row button {
  width: 100%;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-uploads .app-header-controls .refresh-button {
  vertical-align: top;
  background: transparent;
  padding: 10rem;
  margin-top: 9rem;
  color: #fff;
}
fdx-uploads .app-header-controls .refresh-button .btn-text {
  color: #fff;
  vertical-align: text-bottom;
  text-transform: uppercase;
  padding: 4rem 2rem;
}
fdx-uploads .app-header-controls .refresh-button .fdxicon-regular {
  margin-top: 0;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-uploads .app-header-controls .refresh-button:hover .fdxicon-regular {
  opacity: 1;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper {
  vertical-align: top;
  margin-top: 11rem;
  margin-right: 30rem;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper .form-control {
  width: 230rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #46bee1;
  outline: none;
  color: #ffffff;
  padding: 2rem 5rem;
  height: 30rem;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper .form-control:-moz-placeholder {
  color: #e5e5e5;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper .form-control::-moz-placeholder {
  color: #e5e5e5;
  opacity: 1;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper .form-control:-ms-input-placeholder {
  color: #e5e5e5;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper .form-control::-webkit-input-placeholder {
  color: #e5e5e5;
}
fdx-uploads .app-header-controls .fdx-clearable-wrapper input[fdx-clearable] + .fdx-remove,
fdx-uploads .app-header-controls .fdx-clearable-wrapper input[data-fdx-clearable] + .fdx-remove {
  top: 7rem;
  color: #fcfcfc;
}
fdx-uploads fdx-smart-table .fdx-smart-table-controls-columns {
  position: fixed;
  top: 9rem;
  right: 45rem;
  color: #fff;
  background-color: transparent;
  border: none;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-uploads fdx-smart-table .fdx-smart-table-controls-columns .dropdown-toggle {
  opacity: 0.6;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-uploads fdx-smart-table .fdx-smart-table-controls-columns:hover {
  color: #fff;
  background-color: transparent;
  border: none;
}
fdx-uploads fdx-smart-table .fdx-smart-table-controls-columns:hover .dropdown-toggle {
  opacity: 1;
}
fdx-uploads fdx-smart-table .fdx-smart-table-controls {
  height: 0;
}
fdx-uploads fdx-smart-table .fdx-smart-table-wrapper {
  position: static;
  overflow: initial;
}
fdx-uploads fdx-smart-table td,
fdx-uploads fdx-smart-table th {
  border-width: 1rem 0 !important;
}
fdx-uploads fdx-smart-table th {
  border-top: 0 !important;
}
fdx-uploads fdx-smart-table .fdx-smart-table-wrapper {
  margin-top: 0;
}
fdx-uploads fdx-smart-table .cell-asset-group-label {
  cursor: pointer;
  color: #0090b2;
}
fdx-uploads fdx-smart-table .cell-asset-group-label:hover {
  color: #005266;
}
fdx-uploads fdx-smart-table .cell-sublabel {
  color: #666;
}
fdx-uploads fdx-smart-table .cell-view-issue {
  text-align: center;
  cursor: pointer;
  color: #0090b2;
}
fdx-uploads fdx-smart-table .cell-view-issue:hover {
  color: #005266;
}
fdx-uploads fdx-smart-table .upload-status-COMPLETED {
  color: #6aa445;
}
fdx-uploads fdx-smart-table .upload-status-COMPLETED-icon {
  color: #6aa445;
  margin-right: 3rem;
}
fdx-uploads fdx-smart-table .upload-status-FAILED {
  color: #aa1c1c;
}
fdx-uploads fdx-smart-table .upload-status-FAILED-icon {
  color: #aa1c1c;
  margin-right: 3rem;
}
fdx-uploads fdx-smart-table .upload-status-ISSUES_REPORTED {
  color: #ce6c0d;
}
fdx-uploads fdx-smart-table .upload-status-ISSUES_REPORTED-icon {
  color: #ce6c0d;
  margin-right: 3rem;
}
fdx-uploads fdx-smart-table #loading-column {
  width: 32rem;
}
fdx-uploads fdx-smart-table .loading-icon {
  width: 32rem;
}
fdx-uploads fdx-smart-table #delete-column {
  width: 1em;
}
fdx-uploads fdx-smart-table .delete-button {
  float: right;
  padding: 0 0 0 5rem;
}
fdx-uploads fdx-smart-table .delete-button span {
  color: #00a9ce;
}
fdx-uploads .loadingMore {
  position: relative;
  height: 60rem;
}
fdx-uploads .uploads-actions .fdx-menu {
  font-size: 20rem;
  color: #00a9ce;
  cursor: pointer;
}
fdx-uploads .uploads-actions .dropdown-menu .disabled {
  color: #d3d3d3;
  cursor: not-allowed;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-ods .app-header-tabs .form-control {
  position: absolute;
  display: inline-block;
  width: 230rem;
  height: 30rem;
  top: 11rem;
  right: 100rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #46bee1;
  outline: none;
  color: #ffffff;
}
fdx-ods .app-header-tabs .form-control:-moz-placeholder {
  color: #e5e5e5;
}
fdx-ods .app-header-tabs .form-control::-moz-placeholder {
  color: #e5e5e5;
  opacity: 1;
}
fdx-ods .app-header-tabs .form-control:-ms-input-placeholder {
  color: #e5e5e5;
}
fdx-ods .app-header-tabs .form-control::-webkit-input-placeholder {
  color: #e5e5e5;
}
fdx-ods .app-header-tabs input[fdx-clearable] + .fdx-remove,
fdx-ods .app-header-tabs input[data-fdx-clearable] + .fdx-remove {
  right: 110rem;
  top: 17rem;
  color: #fcfcfc;
}
.services-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  padding: 10rem;
}
.services-container-none {
  text-align: center;
  font-size: 18rem;
  font-style: italic;
  color: #999;
  margin-top: 30rem;
}
.service-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10rem;
}
.service-grid > li {
  list-style-type: none;
  width: 155rem;
  margin: 15rem 15rem 0 0;
  text-align: center;
  vertical-align: top;
  display: inline-block;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-ods-modal .modal-body {
  overflow: visible!important;
  max-height: unset!important;
}
fdx-ods-modal .service-description {
  margin-top: 15rem;
}
fdx-ods-modal .file-hint {
  display: none;
}
.no-adownload fdx-ods-modal .file-hint {
  display: inline;
}
fdx-ods-modal .file-list-wrapper {
  max-height: 250rem;
  overflow-y: auto;
  margin-top: 5rem;
}
fdx-ods-modal .file-list-wrapper.fdx-has-scrollbar {
  border: 1rem solid #d3d3d3;
  border-left: none;
}
fdx-ods-modal .file-item {
  position: relative;
  margin-bottom: 5rem;
}
fdx-ods-modal .file-item:first-child {
  margin-top: 5rem;
}
fdx-ods-modal .file-item .fdx-ellipsis {
  width: 100%;
  padding-right: 30rem;
  white-space: nowrap;
}
fdx-ods-modal .file-item .fdx-circle-remove {
  position: absolute;
  top: 3rem;
  right: 5rem;
  cursor: pointer;
  color: #666;
}
fdx-ods-modal .file-item .fdx-circle-remove:hover {
  color: #00a9ce;
}
fdx-ods-modal .service-parameters .radio label {
  line-height: 23rem;
}
fdx-ods-modal button.add-file + .file-list-container {
  margin-top: 10rem;
}
fdx-ods-modal fdx-dropdown .dropdown-toggle {
  height: 38rem;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
fdx-downloads .app-header-controls fdx-help-angular .fdxicon-regular {
  color: #fff;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-downloads .app-header-controls fdx-help-angular:hover .fdxicon-regular {
  opacity: 1;
}
fdx-downloads .app-header-controls .update-button {
  vertical-align: top;
  background: transparent;
  padding: 10rem;
  margin-top: 9rem;
  color: #fff;
}
fdx-downloads .app-header-controls .update-button .btn-text {
  color: #fff;
  text-transform: uppercase;
  vertical-align: text-bottom;
  padding: 4rem 2rem;
}
fdx-downloads .app-header-controls .update-button .fdxicon-regular {
  margin-top: 0;
  opacity: 0.5;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-downloads .app-header-controls .update-button:hover .fdxicon-regular {
  opacity: 1;
}
fdx-downloads .app-header-controls .btn-group {
  vertical-align: top;
  margin-top: 12rem;
}
fdx-downloads .app-header-controls .btn-group .toggle-btn {
  display: inline-block;
  color: #fff;
  padding: 7rem;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-downloads .app-header-controls .btn-group .toggle-btn .dropdown-btn .fdxicon-regular {
  opacity: 0.6;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
fdx-downloads .app-header-controls .btn-group .toggle-btn:hover .dropdown-btn .fdxicon-regular {
  opacity: 1;
}
fdx-downloads .app-header-controls .btn-group .toggle-btn .dropdown-btn {
  padding: 6rem 2rem;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper {
  vertical-align: top;
  margin-top: 11rem;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper .form-control {
  width: 230rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #46bee1;
  outline: none;
  color: #ffffff;
  padding: 2rem 5rem;
  height: 30rem;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper .form-control:-moz-placeholder {
  color: #e5e5e5;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper .form-control::-moz-placeholder {
  color: #e5e5e5;
  opacity: 1;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper .form-control:-ms-input-placeholder {
  color: #e5e5e5;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper .form-control::-webkit-input-placeholder {
  color: #e5e5e5;
}
fdx-downloads .app-header-controls .fdx-clearable-wrapper input[fdx-clearable] + .fdx-remove,
fdx-downloads .app-header-controls .fdx-clearable-wrapper input[data-fdx-clearable] + .fdx-remove {
  top: 7rem;
  color: #fcfcfc;
}
.downloads-container th.status-th,
.downloads-container .th-clone.status-th {
  width: 52rem;
  text-align: center;
}
.downloads-container th.status-th > .fdx-flag,
.downloads-container .th-clone.status-th > .fdx-flag {
  margin-left: 0.5em;
}
.downloads-container td {
  background-color: #fff;
}
.downloads-container td.first {
  text-align: center;
}
.downloads-container td.first > .icon-circled {
  margin: 0;
}
.downloads-container td.download-actions {
  padding: 0 20rem 0 6rem;
  text-align: right;
}
.downloads-container td.download-actions > .btn-primary,
.downloads-container td.download-actions > .btn-link {
  width: 140rem;
  font-weight: normal;
  padding-left: 0;
  padding-right: 0;
}
.downloads-container td.download-actions > .btn-primary:focus,
.downloads-container td.download-actions > .btn-link:focus {
  outline: none;
}
.downloads-container td.download-actions > .btn-text {
  padding: 0 0 0 5rem;
}
.downloads-container .fdx-circle-remove {
  color: #00a9ce;
}
.downloads-container h2 {
  padding-bottom: 5rem;
  border-bottom: 1rem solid #d9d9d9;
}
.downloads-container .download-status,
.downloads-container .download-cost {
  display: block;
}
.downloads-container .source-files {
  cursor: default;
}
.downloads-container .fdx-smart-table .fdx-smart-table-controls {
  display: none;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-company-settings .edit-company-settings .property-value {
  margin: 9rem 0;
}
fdx-company-settings .edit-company-settings .company-profile-hint {
  margin: 10rem;
  text-align: center;
}
fdx-company-settings .edit-company-settings .company-profile-large {
  width: 128rem;
  height: 128rem;
  border: 1rem solid #d3d3d3;
  vertical-align: middle;
}
fdx-company-settings .edit-company-settings .company-profile-small {
  position: absolute;
  left: 150rem;
  border-radius: 50%;
  width: 32rem;
  height: 32rem;
  border: 1rem solid #d3d3d3;
  vertical-align: middle;
}
fdx-company-settings .edit-company-settings .fdxicon-regular {
  margin: auto;
  font-size: 100rem;
  padding: 10rem 14rem;
  color: #d3d3d3;
  border: 1rem solid #d3d3d3;
  background-color: #F6F6F6;
  box-sizing: content-box;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-company-switch .companies-board {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background-color: #fcfcfc;
  z-index: 1;
}
fdx-company-switch .companies-board .board-title {
  text-align: center;
  margin-top: 100rem;
}
fdx-company-switch .companies-board .companies-wrapper {
  margin: 20rem auto 0;
  width: 50%;
  height: calc(100% - 340rem);
  overflow: auto;
  text-align: center;
}
fdx-company-switch .companies-board .companies-wrapper.large .company {
  width: calc(33.333% - 30rem);
  height: 181rem;
}
fdx-company-switch .companies-board .companies-wrapper.large .company-logo {
  width: 135rem;
  height: 135rem;
}
fdx-company-switch .companies-board .companies-wrapper.large .company-logo.fdxicon-regular {
  font-size: 54rem;
  padding-top: 34rem;
}
fdx-company-switch .companies-board .companies-wrapper.medium .company {
  width: calc(25% - 30rem);
  height: 181rem;
}
fdx-company-switch .companies-board .companies-wrapper.medium .company-logo {
  width: 125rem;
  height: 125rem;
}
fdx-company-switch .companies-board .companies-wrapper.medium .company-logo.fdxicon-regular {
  font-size: 47rem;
  padding-top: 36rem;
}
fdx-company-switch .companies-board .companies-wrapper.small .company {
  width: calc(20% - 30rem);
  height: 160rem;
}
fdx-company-switch .companies-board .companies-wrapper.small .company-logo {
  width: 100rem;
  height: 100rem;
}
fdx-company-switch .companies-board .companies-wrapper.small .company-logo.fdxicon-regular {
  font-size: 42rem;
  padding-top: 24rem;
}
fdx-company-switch .companies-board .companies-wrapper .company {
  display: inline-block;
  padding: 15rem 15rem 0;
  margin: 10rem 10rem 0;
  transition: all ease 0.3s;
  color: #A5A5A5;
  overflow: hidden;
}
fdx-company-switch .companies-board .companies-wrapper .company-logo {
  transition: all ease 0.3s;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  border: 3rem solid #A5A5A5;
  filter: grayscale(1);
  cursor: pointer;
}
fdx-company-switch .companies-board .companies-wrapper .company-logo.fdxicon-regular {
  color: #A5A5A5;
  transition: all ease 0.3s;
}
fdx-company-switch .companies-board .companies-wrapper .company-name {
  font-weight: bold;
  margin-top: 10rem;
}
fdx-company-switch .companies-board .companies-wrapper .company:hover {
  color: #00a9ce;
}
fdx-company-switch .companies-board .companies-wrapper .company:hover .company-logo {
  border: 3rem solid #00a9ce;
  filter: grayscale(0);
}
fdx-company-switch .companies-board .companies-wrapper .company:hover .company-logo.fdxicon-regular {
  color: #00a9ce;
}
fdx-company-switch .companies-board nav {
  padding: 18rem;
}
fdx-company-switch .companies-board nav ul {
  padding-left: 0;
}
fdx-company-switch .companies-board nav ul li {
  display: inline;
  list-style-type: none;
}
fdx-company-switch .companies-board nav ul li button {
  padding: 0;
}
fdx-company-switch .companies-board nav ul li button i {
  vertical-align: text-bottom;
}

@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
fdx-company-settings-angular .edit-company-settings .property-value {
  margin: 9rem 0;
}
fdx-company-settings-angular .edit-company-settings .company-profile-hint {
  margin: 10rem;
  text-align: center;
}
fdx-company-settings-angular .edit-company-settings .company-profile-large {
  width: 128rem;
  height: 128rem;
  border: 1rem solid #d3d3d3;
  vertical-align: middle;
}
fdx-company-settings-angular .edit-company-settings .company-profile-small {
  position: absolute;
  left: 150rem;
  border-radius: 50%;
  width: 32rem;
  height: 32rem;
  border: 1rem solid #d3d3d3;
  vertical-align: middle;
}
fdx-company-settings-angular .edit-company-settings .fdxicon-regular {
  margin: auto;
  font-size: 100rem;
  padding: 10rem 14rem;
  color: #d3d3d3;
  border: 1rem solid #d3d3d3;
  background-color: #F6F6F6;
  box-sizing: content-box;
}

/*
* styles/less/signin.less
*/
@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/*1032px;*/
#signInForm .sign-in {
  padding-top: 10rem;
}
.navbar-signIn {
  margin-bottom: 0;
  border-radius: 0;
}
.signIn {
  background-color: #00a9ce;
  height: 100%;
}
.signIn-content-wrapper {
  width: 100%;
  height: 100%;
  font-family: "interstate", "PT Sans", "interstate", Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  padding-top: 125rem;
  padding-bottom: 125rem;
}
@media (max-width: 882px) {
  .signIn-content-wrapper {
    padding-top: 50rem;
  }
}
.signIn-content-wrapper .marketing-wrapper {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10%;
}
@media (max-width: 1200px) {
  .signIn-content-wrapper .marketing-wrapper {
    margin-right: 20rem;
    margin-left: 20rem;
  }
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper {
  text-align: left;
  width: 520rem;
}
@media (max-width: 480px) {
  .signIn-content-wrapper .marketing-wrapper .message-wrapper {
    width: auto;
  }
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper #logo {
  height: 148rem;
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper h1 {
  font-size: 42rem;
  font-weight: normal;
  margin: 0 0 25rem 0;
  text-transform: none;
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper span {
  display: block;
  line-height: 32rem;
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper span.upper {
  font-size: 26rem;
}
.signIn-content-wrapper .marketing-wrapper #discover-btn {
  border-radius: 15rem;
  color: #666;
  font-weight: bold;
  margin-top: 10rem;
}
.signIn-content-wrapper .signIn-wrapper {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}
@media (max-width: 882px) {
  .signIn-content-wrapper .signIn-wrapper {
    width: 100%;
    padding-top: 50rem;
  }
}
.signIn-content-wrapper .signIn-wrapper .signOut-reason {
  color: #fff;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 30rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper {
  border-radius: 5rem;
  padding: 20rem;
  width: 520rem;
  background-color: #fff;
  color: #333333;
}
@media (max-width: 882px) {
  .signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper {
    width: 100%;
    border-radius: 0;
  }
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper h1 {
  margin-top: 10rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper label {
  font-size: 16rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .reset-password-button,
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .register-button {
  font-size: 14rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .btn-link {
  padding: 10rem 5rem 5rem 5rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .register-button {
  float: right;
}
#pageFooter {
  background-color: #00a9ce;
  color: #fff;
  text-align: left;
  font-size: 12rem;
  position: fixed;
  bottom: 0rem;
  width: 100%;
}
#pageFooter #footerWrapper {
  padding-top: 10rem;
  padding-bottom: 10rem;
  width: calc(10% + 520rem + 520rem);
  margin: auto;
}
@media (max-width: 1200px) {
  #pageFooter #footerWrapper {
    width: 100%;
    padding-bottom: 30rem;
  }
}
#pageFooter #footerWrapper #pageFooterLinks {
  float: left;
  list-style-type: none;
  padding: 0rem;
  margin: 0rem;
  font-size: 15rem;
  text-align: left;
}
#pageFooter #footerWrapper #pageFooterLinks li {
  margin-bottom: 0.5em;
}
#pageFooter #footerWrapper #pageFooterLinks a {
  color: #fff;
  text-decoration: none;
}
#pageFooter #footerWrapper #pageFooterLinks a:hover,
#pageFooter #footerWrapper #pageFooterLinks a:focus,
#pageFooter #footerWrapper #pageFooterLinks a:active,
#pageFooter #footerWrapper #pageFooterLinks a.active {
  color: #fff;
}
#pageFooter #footerWrapper #pageFooterSocialButtons {
  float: right;
}
#pageFooter #footerWrapper #pageFooterSocialButtons img {
  height: 35rem;
  width: 35rem;
}
#pageFooter #footerWrapper .fdxicon-regular {
  margin-left: 10rem;
  padding-bottom: 30rem;
  font-size: 32rem;
}

@font-face {
    font-family: "fdxIcons";
    src: url(/fonts/icons/fdxIcons-ef848eea.woff2) format("woff2"),
url(/fonts/icons/fdxIcons-95a2a35d.woff) format("woff"),
url(/fonts/icons/fdxIcons-b83df925.ttf) format("truetype");
}

.fdxicon-regular:before {
    font-family: fdxIcons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fdxicon-regular.fdx-arrow-5-w:before {
    content: "\f143";
}
.fdxicon-regular.fdx-arrow-5-e:before {
    content: "\f144";
}
.fdxicon-regular.fdx-triangle-n:before {
    content: "\e60a";
}
.fdxicon-regular.fdx-triangle-s:before {
    content: "\e609";
}
.fdxicon-regular.fdx-circle-add:before {
    content: "\f101";
}
.fdxicon-regular.fdx-circle-alert:before {
    content: "\f102";
}
.fdxicon-regular.fdx-circle-disable:before {
    content: "\f103";
}
.fdxicon-regular.fdx-circle-info:before {
    content: "\f104";
}
.fdxicon-regular.fdx-circle-play:before {
    content: "\f105";
}
.fdxicon-regular.fdx-circle-remove:before {
    content: "\f106";
}
.fdxicon-regular.fdx-circle-stop:before {
    content: "\f107";
}
.fdxicon-regular.fdx-circle-tick:before {
    content: "\f108";
}
.fdxicon-regular.fdx-diamond-alert:before {
    content: "\f109";
}
.fdxicon-regular.fdx-help:before {
    content: "\f10a";
}
.fdxicon-regular.fdx-warning:before {
    content: "\f10b";
}
.fdxicon-regular.fdx-analysis-result:before {
    content: "\f10c";
}
.fdxicon-regular.fdx-comment:before {
    content: "\f10d";
}
.fdxicon-regular.fdx-condition:before {
    content: "\f10e";
}
.fdxicon-regular.fdx-dataset:before {
    content: "\f10f";
}
.fdxicon-regular.fdx-external-standard:before {
    content: "\f110";
}
.fdxicon-regular.fdx-file:before {
    content: "\f111";
}
.fdxicon-regular.fdx-form:before {
    content: "\f112";
}
.fdxicon-regular.fdx-link:before {
    content: "\f113";
}
.fdxicon-regular.fdx-method:before {
    content: "\f114";
}
.fdxicon-regular.fdx-published_standard:before {
    content: "\f115";
}
.fdxicon-regular.fdx-question:before {
    content: "\f116";
}
.fdxicon-regular.fdx-result-display:before {
    content: "\f117";
}
.fdxicon-regular.fdx-section:before {
    content: "\f118";
}
.fdxicon-regular.fdx-selection-criteria:before {
    content: "\f119";
}
.fdxicon-regular.fdx-standard-create:before {
    content: "\f11a";
}
.fdxicon-regular.fdx-standard:before {
    content: "\f11b";
}
.fdxicon-regular.fdx-study-create:before {
    content: "\f11c";
}
.fdxicon-regular.fdx-study:before {
    content: "\f11d";
}
.fdxicon-regular.fdx-term:before {
    content: "\f11e";
}
.fdxicon-regular.fdx-terminology:before {
    content: "\f11f";
}
.fdxicon-regular.fdx-unit:before {
    content: "\f120";
}
.fdxicon-regular.fdx-value:before {
    content: "\f121";
}
.fdxicon-regular.fdx-variable:before {
    content: "\f122";
}
.fdxicon-regular.fdx-visit-schedule:before {
    content: "\f123";
}
.fdxicon-regular.fdx-visit:before {
    content: "\f124";
}
.fdxicon-regular.fdx-asset-add-group:before {
    content: "\f125";
}
.fdxicon-regular.fdx-asset-export:before {
    content: "\f126";
}
.fdxicon-regular.fdx-asset-group:before {
    content: "\f127";
}
.fdxicon-regular.fdx-asset-icon:before {
    content: "\f128";
}
.fdxicon-regular.fdx-asset-upload:before {
    content: "\f129";
}
.fdxicon-regular.fdx-full-asset-validation:before {
    content: "\f12a";
}
.fdxicon-regular.fdx-import-asset:before {
    content: "\f12b";
}
.fdxicon-regular.fdx-relink-asset:before {
    content: "\f12c";
}
.fdxicon-regular.fdx-bullet-arrow:before {
    content: "\f12d";
}
.fdxicon-regular.fdx-tick-old:before {
    content: "\f12e";
}
.fdxicon-regular.fdx-triangle-e:before {
    content: "\f12f";
}
.fdxicon-regular.fdx-box-checked:before {
    content: "\f130";
}
.fdxicon-regular.fdx-box-empty:before {
    content: "\f131";
}
.fdxicon-regular.fdx-radio-checked:before {
    content: "\f132";
}
.fdxicon-regular.fdx-radio-empty:before {
    content: "\f133";
}
.fdxicon-regular.fdx-conversion-run:before {
    content: "\f134";
}
.fdxicon-regular.fdx-conversions-view:before {
    content: "\f135";
}
.fdxicon-regular.fdx-convert-2:before {
    content: "\f136";
}
.fdxicon-regular.fdx-convert:before {
    content: "\f137";
}
.fdxicon-regular.fdx-columns:before {
    content: "\f138";
}
.fdxicon-regular.fdx-list:before {
    content: "\f139";
}
.fdxicon-regular.fdx-tabular-view:before {
    content: "\f13a";
}
.fdxicon-regular.fdx-thumbnails:before {
    content: "\f13b";
}
.fdxicon-regular.fdx-permissions-edit:before {
    content: "\f13c";
}
.fdxicon-regular.fdx-permissions:before {
    content: "\f13d";
}
.fdxicon-regular.fdx-view-permissions:before {
    content: "\f13e";
}
.fdxicon-regular.fdx-add-ons:before {
    content: "\f13f";
}
.fdxicon-regular.fdx-admin:before {
    content: "\f140";
}
.fdxicon-regular.fdx-alarm-bell:before {
    content: "\f141";
}
.fdxicon-regular.fdx-arrow-e:before {
    content: "\f142";
}
.fdxicon-regular.fdx-arrow-n:before {
    content: "\f145";
}
.fdxicon-regular.fdx-arrow-s:before {
    content: "\f146";
}
.fdxicon-regular.fdx-arrow-w:before {
    content: "\f147";
}
.fdxicon-regular.fdx-arrow-2-e:before {
    content: "\f148";
}
.fdxicon-regular.fdx-arrow-2-n:before {
    content: "\f149";
}
.fdxicon-regular.fdx-arrow-2-s:before {
    content: "\f14a";
}
.fdxicon-regular.fdx-arrow-3-e:before {
    content: "\f14b";
}
.fdxicon-regular.fdx-arrow-3-s:before {
    content: "\f14c";
}
.fdxicon-regular.fdx-arrow-3-w:before {
    content: "\f14d";
}
.fdxicon-regular.fdx-arrow-4-e:before {
    content: "\f14e";
}
.fdxicon-regular.fdx-arrow-5-n:before {
    content: "\f14f";
}
.fdxicon-regular.fdx-arrow-5-s:before {
    content: "\f150";
}
.fdxicon-regular.fdx-arrow-6-e:before {
    content: "\f151";
}
.fdxicon-regular.fdx-arrow-6-w:before {
    content: "\f152";
}
.fdxicon-regular.fdx-associate-library:before {
    content: "\f153";
}
.fdxicon-regular.fdx-associate:before {
    content: "\f154";
}
.fdxicon-regular.fdx-basket-add:before {
    content: "\f155";
}
.fdxicon-regular.fdx-basket:before {
    content: "\f156";
}
.fdxicon-regular.fdx-basket-check:before {
    content: "\f157";
}
.fdxicon-regular.fdx-basket-remove:before {
    content: "\f158";
}
.fdxicon-regular.fdx-bookmark:before {
    content: "\f159";
}
.fdxicon-regular.fdx-change-request:before {
    content: "\f15a";
}
.fdxicon-regular.fdx-clear-recents:before {
    content: "\f15b";
}
.fdxicon-regular.fdx-clone:before {
    content: "\f15c";
}
.fdxicon-regular.fdx-cloud-upload:before {
    content: "\f15d";
}
.fdxicon-regular.fdx-company:before {
    content: "\f15e";
}
.fdxicon-regular.fdx-company-edit:before {
    content: "\f15f";
}
.fdxicon-regular.fdx-compare:before {
    content: "\f160";
}
.fdxicon-regular.fdx-conflict-both:before {
    content: "\f161";
}
.fdxicon-regular.fdx-conflict-resolve:before {
    content: "\f162";
}
.fdxicon-regular.fdx-conversation:before {
    content: "\f163";
}
.fdxicon-regular.fdx-copy:before {
    content: "\f164";
}
.fdxicon-regular.fdx-create-above:before {
    content: "\f165";
}
.fdxicon-regular.fdx-create-below:before {
    content: "\f166";
}
.fdxicon-regular.fdx-data-file-check:before {
    content: "\f167";
}
.fdxicon-regular.fdx-data-bars:before {
    content: "\f168";
}
.fdxicon-regular.fdx-data-clean:before {
    content: "\f169";
}
.fdxicon-regular.fdx-data-remove:before {
    content: "\f16a";
}
.fdxicon-regular.fdx-data-transfer:before {
    content: "\f16b";
}
.fdxicon-regular.fdx-dataset-download:before {
    content: "\f16c";
}
.fdxicon-regular.fdx-dataset-upload:before {
    content: "\f16d";
}
.fdxicon-regular.fdx-delete:before {
    content: "\f16e";
}
.fdxicon-regular.fdx-download:before {
    content: "\f16f";
}
.fdxicon-regular.fdx-drag-handle:before {
    content: "\f170";
}
.fdxicon-regular.fdx-edit:before {
    content: "\f171";
}
.fdxicon-regular.fdx-ellipsis-h:before {
    content: "\f172";
}
.fdxicon-regular.fdx-ellipsis-v:before {
    content: "\f173";
}
.fdxicon-regular.fdx-email-closed:before {
    content: "\f174";
}
.fdxicon-regular.fdx-filter:before {
    content: "\f175";
}
.fdxicon-regular.fdx-flag:before {
    content: "\f176";
}
.fdxicon-regular.fdx-headphones-customer-support:before {
    content: "\f177";
}
.fdxicon-regular.fdx-hierarchy-3:before {
    content: "\f178";
}
.fdxicon-regular.fdx-home:before {
    content: "\f179";
}
.fdxicon-regular.fdx-in-progress:before {
    content: "\f17a";
}
.fdxicon-regular.fdx-integration:before {
    content: "\f17b";
}
.fdxicon-regular.fdx-invisible:before {
    content: "\f17c";
}
.fdxicon-regular.fdx-lightbulb:before {
    content: "\f17d";
}
.fdxicon-regular.fdx-lock:before {
    content: "\f17e";
}
.fdxicon-regular.fdx-locked:before {
    content: "\f17f";
}
.fdxicon-regular.fdx-logout:before {
    content: "\f180";
}
.fdxicon-regular.fdx-logs:before {
    content: "\f181";
}
.fdxicon-regular.fdx-menu:before {
    content: "\f182";
}
.fdxicon-regular.fdx-move-vertical:before {
    content: "\f183";
}
.fdxicon-regular.fdx-multiselect:before {
    content: "\f184";
}
.fdxicon-regular.fdx-not-equal:before {
    content: "\f185";
}
.fdxicon-regular.fdx-notification:before {
    content: "\f186";
}
.fdxicon-regular.fdx-order:before {
    content: "\f187";
}
.fdxicon-regular.fdx-plugin:before {
    content: "\f188";
}
.fdxicon-regular.fdx-publish:before {
    content: "\f189";
}
.fdxicon-regular.fdx-pull:before {
    content: "\f18a";
}
.fdxicon-regular.fdx-refresh-arrow-2:before {
    content: "\f18b";
}
.fdxicon-regular.fdx-refresh-arrow-3:before {
    content: "\f18c";
}
.fdxicon-regular.fdx-refresh-arrow:before {
    content: "\f18d";
}
.fdxicon-regular.fdx-remove:before {
    content: "\f18e";
}
.fdxicon-regular.fdx-reorder:before {
    content: "\f18f";
}
.fdxicon-regular.fdx-repeat:before {
    content: "\f190";
}
.fdxicon-regular.fdx-repository:before {
    content: "\f191";
}
.fdxicon-regular.fdx-rerun:before {
    content: "\f192";
}
.fdxicon-regular.fdx-ryze-community:before {
    content: "\f193";
}
.fdxicon-regular.fdx-search:before {
    content: "\f194";
}
.fdxicon-regular.fdx-settings:before {
    content: "\f195";
}
.fdxicon-regular.fdx-share-external:before {
    content: "\f196";
}
.fdxicon-regular.fdx-split:before {
    content: "\f197";
}
.fdxicon-regular.fdx-star-remove:before {
    content: "\f198";
}
.fdxicon-regular.fdx-star:before {
    content: "\f199";
}
.fdxicon-regular.fdx-star-tick:before {
    content: "\f19a";
}
.fdxicon-regular.fdx-state-new:before {
    content: "\f19b";
}
.fdxicon-regular.fdx-state-transition:before {
    content: "\f19c";
}
.fdxicon-regular.fdx-status:before {
    content: "\f19d";
}
.fdxicon-regular.fdx-subscription:before {
    content: "\f19e";
}
.fdxicon-regular.fdx-support-old:before {
    content: "\f19f";
}
.fdxicon-regular.fdx-support:before {
    content: "\f1a0";
}
.fdxicon-regular.fdx-system:before {
    content: "\f1a1";
}
.fdxicon-regular.fdx-theme-brush:before {
    content: "\f1a2";
}
.fdxicon-regular.fdx-tick-bold:before {
    content: "\f1a3";
}
.fdxicon-regular.fdx-tick:before {
    content: "\f1a4";
}
.fdxicon-regular.fdx-todos:before {
    content: "\f1a5";
}
.fdxicon-regular.fdx-trip-pins:before {
    content: "\f1a6";
}
.fdxicon-regular.fdx-upload:before {
    content: "\f1a7";
}
.fdxicon-regular.fdx-user-add:before {
    content: "\f1a8";
}
.fdxicon-regular.fdx-user-edit:before {
    content: "\f1a9";
}
.fdxicon-regular.fdx-user-group:before {
    content: "\f1aa";
}
.fdxicon-regular.fdx-user-info:before {
    content: "\f1ab";
}
.fdxicon-regular.fdx-user:before {
    content: "\f1ac";
}
.fdxicon-regular.fdx-validate:before {
    content: "\f1ad";
}
.fdxicon-regular.fdx-visible:before {
    content: "\f1ae";
}
.fdxicon-regular.fdx-webhook-notifications:before {
    content: "\f1af";
}
.fdxicon-regular.fdx-whats-new:before {
    content: "\f1b0";
}
.fdxicon-regular.fdx-visualisation:before {
    content: "\f1ae";
}

/*
* styles/less/fonts.less
*/
@font-face {
  font-family: 'jenna_sueregular';
  src: url(/fonts/JennaSue-webfont.eot);
  src: url(/fonts/JennaSue-webfont.eot?#iefix) format('embedded-opentype'), url(/fonts/JennaSue-webfont.woff) format('woff'), url(/fonts/JennaSue-webfont.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url(/fonts/pt-sans.woff) format('woff');
}
@font-face {
  font-family: interstate;
  font-weight: bold;
  src: url("/fonts/Interstate%20Bold.otf") format('opentype');
}
@font-face {
  font-family: interstate;
  font-style: italic;
  font-weight: bold;
  src: url("/fonts/Interstate%20Bold%20Italic.otf") format('opentype');
}
@font-face {
  font-family: interstate;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Interstate%20Light.otf") format('opentype');
}
@font-face {
  font-family: interstate;
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/Interstate%20Light%20Italic.otf") format('opentype');
}
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide.ng-hide-animate {
  display: none !important;
}
@keyframes expand {
  0% {
    max-height: 0;
  }
  10% {
    max-height: 0;
  }
  100% {
    max-height: 750rem;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none !important;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  width: auto;
  height: auto;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
::-ms-clear {
  display: none;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 2cm 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
  font-size: 1px;
}
@media (max-width: 1728px) {
  html {
    font-size: 0.9px;
  }
}
@media (max-width: 1536px) {
  html {
    font-size: 0.8px;
  }
}
@media (max-width: 1344px) {
  html {
    font-size: 0.7px;
  }
}
body {
  font-family: "interstate", Helvetica, sans-serif;
  font-size: 14rem;
  line-height: 1.42857143;
  color: #333;
  margin: 0;
  padding: 0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #00a9ce;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #006a82;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5rem auto -webkit-focus-ring-color;
  outline-offset: -2rem;
}
a.help-link {
  color: #666;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 10rem;
}
.img-thumbnail {
  padding: 4rem;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20rem;
  margin-bottom: 20rem;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
iframe {
  display: none;
}
.italic {
  font-style: italic;
}
a {
  color: #00a9ce;
  cursor: pointer;
}
a:link.btn {
  text-decoration: none;
}
a:link,
a:link.btn-link {
  text-decoration: underline;
}
a:visited {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "interstate", "PT Sans", "interstate", Helvetica, sans-serif;
  font-weight: normal;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999;
}
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.h1.light,
.h2.light,
.h3.light,
.h4.light,
.h5.light,
.h6.light {
  font-weight: normal;
}
h1.inline-title,
h2.inline-title,
h3.inline-title,
h4.inline-title,
h5.inline-title,
h6.inline-title,
.h1.inline-title,
.h2.inline-title,
.h3.inline-title,
.h4.inline-title,
.h5.inline-title,
.h6.inline-title {
  display: inline-block;
}
h1,
h2,
h3 {
  margin-top: 20rem;
  margin-bottom: 10rem;
}
h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
  font-size: 65%;
}
h4,
h5,
h6 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
h4 small,
h5 small,
h6 small,
h4 .small,
h5 .small,
h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 22rem;
}
h2,
.h2 {
  font-size: 20rem;
}
h3,
.h3 {
  font-size: 18rem;
}
h4,
.h4 {
  font-size: 16rem;
}
h5,
.h5 {
  font-size: 14rem;
}
h6,
.h6 {
  font-size: 14rem;
}
.header h1,
.page-header h1,
.header h2,
.page-header h2,
.header h3,
.page-header h3,
.header h4,
.page-header h4,
.header h5,
.page-header h5,
.header h6,
.page-header h6 {
  margin-top: 0;
  margin-bottom: 0;
}
p {
  margin: 0 0 10rem;
}
.lead {
  margin-bottom: 20rem;
  font-size: 16rem;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21rem;
  }
}
small,
.small {
  font-size: 85%;
}
.xsmall {
  font-size: 70%;
}
cite {
  font-style: normal;
}
.text-muted {
  color: #999;
}
.text-strong {
  font-weight: bold;
}
.text-primary {
  color: #00a9ce;
}
.text-primary:hover {
  color: #007f9b;
}
.text-warning {
  color: #ce6c0d;
}
.text-warning:hover {
  color: #9e530a;
}
.text-danger {
  color: #aa1c1c;
}
.text-success {
  color: #6aa445;
}
.text-blue {
  color: #00677d;
}
.text-info {
  color: #00a9ce;
}
.text-fdx {
  color: #00a9ce;
}
.text-light {
  color: #d3d3d3;
}
.text-control {
  display: inline-block;
  padding: 9rem 0;
  max-width: 70%;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.fdx-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.text-none {
  color: #999;
  font-style: italic;
}
.text-uppercase {
  text-transform: uppercase;
}
.page-header {
  padding-bottom: 9rem;
  margin: 40rem 0 20rem;
  border-bottom: 1rem solid #e5e5e5;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5rem;
  padding-right: 5rem;
}
.list-inline > li:first-child {
  padding-left: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 20rem;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160rem;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180rem;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1rem dotted #999;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10rem 20rem;
  margin: 0 0 20rem;
  border-left: 5rem solid #e5e5e5;
}
blockquote p {
  font-size: 17.5rem;
  font-weight: 300;
  line-height: 1.25;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote small,
blockquote .small {
  display: block;
  line-height: 1.42857143;
  color: #999;
}
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  padding-right: 15rem;
  padding-left: 0;
  border-right: 5rem solid #e5e5e5;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
  text-align: right;
}
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 20rem;
  font-style: normal;
  line-height: 1.42857143;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 8rem;
  padding-right: 8rem;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 736rem;
  }
}
@media (min-width: 992px) {
  .container {
    width: 956rem;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1156rem;
  }
}
.row {
  margin-left: -8rem;
  margin-right: -8rem;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1rem;
  padding-left: 8rem;
  padding-right: 8rem;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  text-align: left;
}
tbody .sortable-drag td,
tbody .sortable-drag:nth-child(odd) td {
  background: #f3f3f3;
}
tbody .sortable-ghost td,
tbody .sortable-ghost:nth-child(odd) td {
  background: #f3f3f3;
  opacity: 0.3;
}
th.single-icon,
td.single-icon {
  width: 30rem;
}
.table {
  width: 100%;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td {
  vertical-align: middle;
  border-bottom: 1rem solid #d9d9d9;
  line-height: 17rem;
  padding: 8rem 12rem;
}
.table > thead > tr > th.cell-number,
.table > tbody > tr > th.cell-number,
.table > thead > tr > td.cell-number,
.table > tbody > tr > td.cell-number {
  text-align: right;
  padding-right: 28rem;
}
.table > thead > tr > th {
  background-color: #fff;
  padding: 16rem 12rem 14rem 12rem;
  color: #333;
  vertical-align: bottom;
  border-bottom: 1rem solid #d9d9d9;
}
.table > thead > tr > th,
.table > thead > tr > th > button {
  font-weight: bold;
}
.table > thead > tr > th > button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  text-align: left;
}
.table > thead > tr > th .no-sort,
.table > thead > tr > th .fdx-triangle-s,
.table > thead > tr > th .fdx-triangle-n,
.table > thead > tr > th .fdx-chevron-s,
.table > thead > tr > th .fdx-chevron-n {
  font-size: 11rem;
  margin-left: 5rem;
}
.table-scroll-shadow {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  top: -1rem;
}
.thead-clone {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  clear: both;
  display: block;
  overflow: hidden;
  border-bottom: 1rem solid #d9d9d9;
}
.thead-clone.table-list {
  border-bottom: 1rem solid #d9d9d9;
}
.thead-clone.table-bordered {
  border-bottom: none;
  background-color: white;
}
.thead-clone.table-bordered .th-clone {
  border-top: 1rem solid #d9d9d9 !important;
  border-bottom: 1rem solid #d9d9d9;
  z-index: 3;
}
.th-clone {
  float: left;
  background-color: #fff;
  padding: 16rem 12rem 14rem 12rem;
  color: #333;
  vertical-align: bottom;
}
.th-clone,
.th-clone > button {
  font-weight: bold;
}
.th-clone > button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  text-align: left;
}
.th-clone .no-sort,
.th-clone .fdx-triangle-s,
.th-clone .fdx-triangle-n,
.th-clone .fdx-chevron-s,
.th-clone .fdx-chevron-n {
  font-size: 11rem;
  margin-left: 5rem;
}
.scrollable-table-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.scrollable-table-wrapper.scroll-on .thead-clone.table-list.table-bordered .th-clone {
  border-bottom: 2rem solid #d9d9d9 !important;
}
.scrollable-table-wrapper.scroll-on .table-wrapper {
  border: 1rem solid #d9d9d9 !important;
  border-top: none !important;
}
.scrollable-table-wrapper.scroll-on .table-wrapper tbody tr td:first-child {
  border-left: none;
}
.scrollable-table-wrapper.scroll-on .table-wrapper tbody tr td:last-child {
  border-right: none;
}
.scrollable-table-wrapper.scroll-on .table-wrapper tbody tr:first-child td {
  border-top: none;
}
.table-wrapper {
  position: absolute;
  top: 51rem;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper > table {
  margin-top: -51rem;
}
.table-wrapper tr {
  background-color: #fff;
}
.table-large > tbody > tr > th,
.table-large > tbody > tr > td {
  padding: 12rem 12rem;
}
.table-striped > tbody > tr:nth-child(odd) {
  background-color: #fafcfd;
}
.table-striped > tbody > tr:nth-child(even) {
  background-color: #ffffff;
}
.table-striped > tbody > tr:nth-child(odd).selected,
.table-striped > tbody > tr:nth-child(even).selected,
.table-striped > tbody > tr.odd.selected,
.table-striped > tbody > tr.even.selected {
  background-color: #ffe5b2;
}
.table-striped > tbody > tr.selected {
  background-color: #ffe5b2;
}
.table-striped > tbody > tr > th,
.table-striped > tbody > tr > td {
  background-color: transparent;
}
.table-bordered {
  border-collapse: separate;
}
.table-bordered > thead > tr > th,
.table-bordered .th-clone {
  transition: 0.1s width ease;
  border-left: 1rem solid #d9d9d9;
  border-right: 1rem solid #eeeeee;
  border-bottom: 1rem solid #d9d9d9;
  border-bottom: none;
}
.table-bordered > thead > tr > th.visible ~ .visible,
.table-bordered .th-clone.visible ~ .visible {
  border-left: none;
}
.table-bordered > thead > tr > th:last-child,
.table-bordered .th-clone:last-child {
  border-right: 1rem solid #d9d9d9;
}
.table-bordered > thead > tr:nth-child(even),
.table-bordered > tbody > tr:nth-child(even) {
  background-color: #fbfbfb;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td {
  border-left: 1rem solid #d9d9d9;
  border-right: 1rem solid #eeeeee;
  border-bottom: 1rem solid #d9d9d9;
}
.table-bordered > thead > tr > th.visible ~ .visible,
.table-bordered > tbody > tr > th.visible ~ .visible,
.table-bordered > thead > tr > td.visible ~ .visible,
.table-bordered > tbody > tr > td.visible ~ .visible {
  border-left: none;
}
.table-bordered > thead > tr > th:last-child,
.table-bordered > tbody > tr > th:last-child,
.table-bordered > thead > tr > td:last-child,
.table-bordered > tbody > tr > td:last-child {
  border-right: 1rem solid #d9d9d9;
}
.table-list {
  border-collapse: separate;
}
.table-list > thead > tr > th,
.table-list .th-clone {
  background-color: #fff;
  color: #333;
}
.table-list > thead > tr > th > button,
.table-list .th-clone > button {
  color: #333;
}
.table-list > thead > tr > th,
.table-list > tbody > tr > td {
  white-space: nowrap;
}
.table-list > thead > tr > th:first-child,
.table-list .th-clone:first-child,
.table-list > tbody > tr > td:first-child {
  padding-left: 20rem;
}
.table-list > thead > tr > th:last-child,
.table-list .th-clone:last-child,
.table-list > tbody > tr > td:last-child {
  padding-right: 20rem;
}
.editable-table > thead > tr > th,
.editable-table .th-clone {
  padding: 10rem 12rem / 2 + 1rem;
}
.editable-table > thead > tr > th:not(:last-child),
.editable-table .th-clone:not(:last-child) {
  border-left: none;
  border-right: 1rem solid #d9d9d9;
}
.editable-table > tbody > tr > td {
  border-bottom: 1rem solid #d9d9d9;
  padding: 0;
}
.editable-table > tbody > tr > td:not(:last-child) {
  border-left: none;
  border-right: 1rem solid #eeeeee;
}
.modal-body .table > thead > tr > th:first-child,
.modal-body .table .th-clone:first-child,
.modal-body .table > tbody > tr > td:first-child {
  padding-left: 15rem;
}
.modal-body .table > thead > tr > th:last-child,
.modal-body .table .th-clone:last-child,
.modal-body .table > tbody > tr > td:last-child {
  padding-right: 15rem;
}
.table > tbody > tr > td.no-padd,
.table > tbody > tr > th.no-padd {
  padding-top: 0;
  padding-bottom: 0;
}
.table tr.selected > td {
  background-color: #d7e8ef;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: transparent;
}
.table > thead > tr > .active,
.table > tbody > tr > .active,
.table > tfoot > tr > .active,
.table > thead > .active > td,
.table > tbody > .active > td,
.table > tfoot > .active > td,
.table > thead > .active > th,
.table > tbody > .active > th,
.table > tfoot > .active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > .active:hover,
.table-hover > tbody > .active:hover > td,
.table-hover > tbody > .active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > .success,
.table > tbody > tr > .success,
.table > tfoot > tr > .success,
.table > thead > .success > td,
.table > tbody > .success > td,
.table > tfoot > .success > td,
.table > thead > .success > th,
.table > tbody > .success > th,
.table > tfoot > .success > th {
  background-color: #f0f6ec;
}
.table-hover > tbody > tr > .success:hover,
.table-hover > tbody > .success:hover > td,
.table-hover > tbody > .success:hover > th {
  background-color: #e2eedb;
}
.table > thead > tr > .danger,
.table > tbody > tr > .danger,
.table > tfoot > tr > .danger,
.table > thead > .danger > td,
.table > tbody > .danger > td,
.table > tfoot > .danger > td,
.table > thead > .danger > th,
.table > tbody > .danger > th,
.table > tfoot > .danger > th {
  background-color: #f3ebeb;
}
.table-hover > tbody > tr > .danger:hover,
.table-hover > tbody > .danger:hover > td,
.table-hover > tbody > .danger:hover > th {
  background-color: #e9dbdb;
}
.table > thead > tr > .warning,
.table > tbody > tr > .warning,
.table > tfoot > tr > .warning,
.table > thead > .warning > td,
.table > tbody > .warning > td,
.table > tfoot > .warning > td,
.table > thead > .warning > th,
.table > tbody > .warning > th,
.table > tfoot > .warning > th {
  background-color: #f9f0e3;
}
.table-hover > tbody > tr > .warning:hover,
.table-hover > tbody > .warning:hover > td,
.table-hover > tbody > .warning:hover > th {
  background-color: #f5e5ce;
}
.table > tbody > tr.table-empty > td {
  padding: 12rem;
  text-align: center;
  color: #999;
  background-color: #fff;
  font-weight: normal;
  line-height: 20rem;
}
.table-list .table > tbody > tr.table-empty > td {
  padding: 14rem !important;
}
.fdx-grid-locale-array {
  color: #333;
  background-color: #fff;
  border-radius: 5rem;
  border-color: #E1E1E1;
  cursor: pointer;
  min-width: 100%;
}
label {
  display: inline-block;
  margin-bottom: 5rem;
}
label.label-required:before {
  content: "* ";
  color: #00a9ce;
  font-weight: bold;
}
label.disabled {
  color: #bebebe;
}
label .label-required:after {
  content: "";
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4rem 0 0;
  line-height: normal;
}
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  border: none;
  background-color: transparent;
}
input[type="file"] {
  display: block;
}
input[type="file"]:focus {
  border: none;
  background-color: transparent;
}
input[type="checkbox"],
input[type="radio"],
input[type="color"],
input[type="file"],
input[type="range"] {
  border: none;
  cursor: pointer;
  background-color: transparent;
}
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="search"],
input[type="tel"],
input[type="datetime"],
input[type="date"] {
  width: auto;
}
textarea {
  width: 100%;
  height: 100rem;
}
select[multiple],
select[size] {
  height: auto;
}
select {
  padding: 5rem;
  width: auto;
}
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5rem auto -webkit-focus-ring-color;
  outline-offset: -2rem;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}
.fdx-clearable-wrapper {
  display: inline-block;
  position: relative;
}
.fdx-clearable-wrapper input[type=text].filter {
  width: 200rem;
  display: inline-block;
  vertical-align: middle;
  border-radius: 3rem;
}
input[fdx-clearable] + .fdx-remove,
input[data-fdx-clearable] + .fdx-remove {
  position: absolute;
  right: 12rem;
  top: 11rem;
  color: #999;
  outline: none;
  cursor: pointer;
}
input.show-cross {
  padding-right: 34rem;
}
output {
  display: block;
  padding-top: 9rem;
  font-size: 14rem;
  line-height: 1.42857143;
  color: #666;
}
.form-control {
  display: block;
  width: 100%;
  height: 38rem;
  padding: 8rem 6rem;
  font-size: 14rem;
  line-height: 1.42857143;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1rem solid #d3d3d3;
  border-radius: 0;
  -webkit-transition: border-color ease-in-out .15s;
  transition: border-color ease-in-out .15s;
}
.form-control:focus {
  border-color: #a51010;
  outline: 0;
}
.form-control:-moz-placeholder {
  color: #999;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #f8f8f8;
}
textarea.form-control {
  min-height: 95rem;
  height: auto;
  resize: vertical;
}
.form-control:hover {
  border-color: #00a9ce;
}
.form-control:focus {
  border: 1rem solid #00a9ce;
  background-color: #e5f4f8;
  outline: none;
}
.form-control:disabled {
  background-color: #f8f8f8;
  color: #bebebe;
  border: 1rem solid #E1E1E1;
  cursor: default;
}
.form-control-error {
  color: #aa1c1c;
  font-size: 10.99rem;
  margin-top: 3rem;
}
.form-control-warning {
  padding: 10rem;
  text-align: center;
  color: #ce6c0d;
  background-color: #f9f0e3;
}
.form-control-group-error {
  padding: 10rem;
  text-align: center;
  color: #aa1c1c;
  background-color: #f3ebeb;
}
.form-group {
  margin-bottom: 15rem;
}
.form-group:empty {
  margin-bottom: 0;
}
.form-group .form-control-error {
  padding: 12rem 7rem 5rem 7rem;
}
.form-group.no-margin {
  margin-bottom: 0;
}
.form-buttons {
  text-align: right;
}
.form-buttons button,
.form-buttons a,
.form-buttons span {
  margin-left: 5rem;
}
.form-buttons button:first-child,
.form-buttons a:first-child,
.form-buttons span:first-child {
  margin-left: 0;
}
.radio,
.checkbox {
  display: block;
  min-height: 20rem;
  padding-left: 20rem;
}
.radio label,
.checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20rem;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5rem;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20rem;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10rem;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
input[type="radio"][disabled] + span,
input[type="checkbox"][disabled] + span,
.radio[disabled] + span,
.radio-inline[disabled] + span,
.checkbox[disabled] + span,
.checkbox-inline[disabled] + span {
  cursor: not-allowed;
  color: #bebebe;
}
.radio-check-group {
  height: 126rem;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1rem solid #d3d3d3;
  border-left: none;
  resize: vertical;
  padding: 0 0 9rem 7rem;
}
.tab-content .radio-check-group {
  border-top: none;
}
.radio-check-group > .checkbox,
.radio-check-group > .radio {
  margin-top: 0;
  margin-bottom: 0;
}
.radio-check-group > .checkbox:first-child,
.radio-check-group > .radio:first-child {
  margin-top: -1rem;
}
.radio-check-group.horizontal {
  height: auto;
  resize: none;
}
.radio-check-group.horizontal > .checkbox,
.radio-check-group.horizontal > .radio {
  float: left;
  margin-right: 10rem;
  margin-top: -1rem;
}
.radio-check-group .checkbox label.checkbox-inline {
  padding: 0;
}
.simple-check-group {
  overflow-y: auto;
  overflow-x: hidden;
}
.simple-check-group > .checkbox {
  margin-top: 0;
  margin-bottom: 0;
}
.simple-check-group > .checkbox:first-child {
  margin-top: -1rem;
}
.input-sm {
  height: 30rem;
  padding: 5rem 10rem;
  font-size: 12rem;
  line-height: 1.5;
  border-radius: 3rem;
}
select.input-sm {
  height: 30rem;
  line-height: 30rem;
}
textarea.input-sm {
  height: auto;
}
.input-lg {
  height: 48rem;
  padding: 12rem 16rem;
  font-size: 16rem;
  line-height: 1.33;
  border-radius: 10rem;
}
select.input-lg {
  height: 48rem;
  line-height: 48rem;
}
textarea.input-lg {
  height: auto;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #ce6c0d;
}
.has-warning .form-control {
  border-color: #ce6c0d;
  color: #ce6c0d;
  -webkit-box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #a51010;
  background-color: #f9f0e3;
}
.has-warning .input-group-addon {
  color: #ce6c0d;
  border-color: #ce6c0d;
  background-color: #f9f0e3;
}
.has-warning .input-group-btn > .btn {
  border-color: #ce6c0d;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #aa1c1c;
}
.has-error .form-control {
  border-color: #aa1c1c;
  color: #aa1c1c;
  -webkit-box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #a51010;
  background-color: #f3ebeb;
}
.has-error .input-group-addon {
  color: #aa1c1c;
  border-color: #aa1c1c;
  background-color: #f3ebeb;
}
.has-error .input-group-btn > .btn {
  border-color: #aa1c1c;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #6aa445;
}
.has-success .form-control {
  border-color: #6aa445;
  color: #6aa445;
  -webkit-box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #a51010;
  background-color: #f0f6ec;
}
.has-success .input-group-addon {
  color: #6aa445;
  border-color: #6aa445;
  background-color: #f0f6ec;
}
.has-success .input-group-btn > .btn {
  border-color: #6aa445;
}
.has-error-message {
  display: none;
}
.has-error .has-error-message {
  display: initial;
}
.form-control-static,
.form-control-btn-sm {
  margin-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5rem;
  margin-bottom: 10rem;
  color: #666;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
  }
  .form-inline select.form-control {
    width: auto;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline,
.form-horizontal legend:not(:first-child) {
  padding-top: 9rem;
}
.form-horizontal .radio.tab-inline,
.form-horizontal .checkbox.tab-inline,
.form-horizontal .radio-inline.tab-inline,
.form-horizontal .checkbox-inline.tab-inline,
.form-horizontal legend:not(:first-child).tab-inline {
  padding-top: 13rem;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29rem;
}
.form-horizontal .form-group {
  margin-left: -8rem;
  margin-right: -8rem;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-control-static {
  padding-top: 9rem;
}
.form-horizontal .form-control-value {
  padding-top: 0;
}
.form-horizontal .form-control-btn-sm {
  padding-top: 4rem;
}
.form-horizontal .form-control-inline {
  display: inline;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
legend {
  display: block;
  width: 100%;
  padding-bottom: 15rem;
  margin-bottom: 20rem;
  font-size: 16.8rem;
  line-height: inherit;
  text-align: left;
  color: #00a9ce;
  border-bottom: 1rem;
  border-color: #00a9ce;
  border-style: solid;
}
.text-label {
  font-weight: bold;
  text-align: right;
}
.item-group {
  margin-bottom: 30rem;
}
.item-group:after {
  content: " ";
  display: block;
  clear: both;
}
/**
 * @name Buttons
 * @description
 * # Buttons
 *
 * Use the button classes on an `<a>`, `<button>`, `<span>` or `<input>` element.
 * The main class name is `.btn`.
 *
 * ## Variants
 *
 * ### Main variants
 * * `.btn-default`: default button
 * * `.btn-primary`: Formedix teal button
 * * `.btn-link`: button as a link (box model is the same as a normal button)
 * * `.btn-text`: button looking like some text (box model is the same as a normal button)
 * * `.btn-bare`: button looking like some text, with a hover effect (no horizontal padding)
 *
 * ### Size and position variants
 * * `.btn-inline`: button inline with text (to be used with `.btn-link`)
 * * `.btn-lg`: A large button
 * * `.btn-sm`: A small button
 * * `.btn-xs`: An extra small button
 * * `.btn-block`: A block button
 *
 * @example
<!-- Buttons -->
<div style="margin-bottom: 20rem;">
  <button class="btn btn-default">Default</button>
  <button class="btn btn-primary">Primary</button>
  <button class="btn btn-link">Link</button>
  <button class="btn btn-text">Text</button>
  <button class="btn btn-bare">Bare</button>
</div>
<!-- Inline -->
<div style="margin-bottom: 20rem;">
  This button <button class="btn btn-link btn-inline">Default</button> is inline with text
</div>
<!-- Size variants -->
<div style="margin-bottom: 20rem;">
  <button class="btn btn-primary btn-lg">Large</button>
  <button class="btn btn-primary">Default</button>
  <button class="btn btn-primary btn-sm">Small</button>
  <button class="btn btn-primary btn-xs">Extra small</button>
</div>
<!-- Other variants -->
<div style="margin-bottom: 20rem;">
  <button class="btn btn-default btn-compact">Compact</button>
  <button class="btn btn-default btn-wide">Wide</button>
</div>
<!-- Block -->
<div style="margin-bottom: 10rem;">
  <button class="btn btn-default btn-block">I am a block</button>
</div>
 */
a.btn {
  text-decoration: none;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1rem solid transparent;
  white-space: nowrap;
  padding: 8rem 24rem;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: background-color ease-in-out .15s;
  transition: background-color ease-in-out .15s;
  /* hover off*/
}
.btn:focus {
  outline: thin dotted;
}
.btn:hover,
.btn:focus {
  border-color: #00a9ce;
  text-decoration: none;
  -webkit-transition: background-color ease-in-out .15s;
  transition: background-color ease-in-out .15s;
  /* hover on*/
}
.btn:active,
.btn.active {
  outline: 0;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  color: #f8f8f8;
  border-color: #f8f8f8;
}
button {
  border: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-radius: 5rem;
  border-color: #E1E1E1;
  font-family: 'interstate';
}
.btn-default:hover,
.btn-default.hover,
.open .dropdown-toggle.btn-default {
  color: #00a9ce;
  background-color: #fff;
  border-color: #E1E1E1;
}
.btn-default:focus {
  border-color: #E1E1E1;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  color: #b8b8b8;
  border-color: #E1E1E1;
  background-color: #f8f8f8;
  text-shadow: none;
}
.btn-default .badge {
  color: #fff;
  background-color: #fff;
}
.btn-primary {
  color: #fff;
  background-color: #00a9ce;
  border-radius: 5rem;
  border-color: #0087AB;
  font-family: 'interstate';
}
.btn-primary:hover,
.btn-primary.hover,
.open .dropdown-toggle.btn-primary {
  color: #00a9ce;
  background-color: #fff;
  border-color: #E1E1E1;
}
.btn-primary:focus {
  border-color: #E1E1E1;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  color: #b8b8b8;
  border-color: #E1E1E1;
  background-color: #f8f8f8;
  text-shadow: none;
}
.btn-primary .badge {
  color: #00a9ce;
  background-color: #fff;
}
.btn-bare {
  border: 1rem solid transparent;
  background-color: transparent;
  color: #333;
  padding: 8rem 0;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 0;
}
.btn-bare.disabled,
.btn-bare[disabled],
fieldset[disabled] .btn-bare {
  color: #999;
  background-color: transparent;
}
.btn-bare:hover,
.btn-bare:focus,
.btn-bare:active,
.btn-bare.active {
  color: #00a9ce;
}
.btn-link,
.btn-text {
  color: #333;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-text,
.btn-link:active,
.btn-text:active,
.btn-link[disabled],
.btn-text[disabled],
fieldset[disabled] .btn-link,
fieldset[disabled] .btn-text {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-text,
.btn-link:hover,
.btn-text:hover,
.btn-link:focus,
.btn-text:focus,
.btn-link:active,
.btn-text:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-text:hover,
.btn-link:focus,
.btn-text:focus {
  text-decoration: none;
  background-color: transparent;
}
.btn-link.disabled,
.btn-text.disabled,
.btn-link[disabled],
.btn-text[disabled],
fieldset[disabled] .btn-link,
fieldset[disabled] .btn-text,
.btn-link.disabled:hover,
.btn-text.disabled:hover,
.btn-link[disabled]:hover,
.btn-text[disabled]:hover,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-text:hover,
.btn-link.disabled:focus,
.btn-text.disabled:focus,
.btn-link[disabled]:focus,
.btn-text[disabled]:focus,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-text:focus {
  border: none;
  background-color: transparent;
  text-decoration: none;
}
.btn-link.btn-cancel,
.btn-text.btn-cancel {
  color: #333;
}
.btn-link {
  color: #00a9ce;
  text-decoration: underline;
}
.btn-link:hover,
.btn-link:focus {
  color: #006a82;
}
.btn-link.disabled,
.btn-link[disabled],
fieldset[disabled] .btn-link,
.btn-link.disabled:hover,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link.disabled:focus,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #666;
}
.btn-inline {
  padding: 0 0;
  font-size: 14rem;
  line-height: inherit;
  border-radius: 0;
  background-color: transparent;
}
.btn-lg {
  padding: 12rem 16rem;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 5rem;
}
.btn-sm {
  padding: 5rem 10rem;
  font-size: 14rem;
  line-height: 1.5;
  border-radius: 3rem;
}
.btn-xs {
  padding: 1rem 5rem;
  font-size: 12rem;
  line-height: 1.5;
  border-radius: 3rem;
}
.btn-compact {
  padding: 8rem 12rem;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 3rem;
}
.btn-wide {
  padding: 8rem 48rem;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 3rem;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-block + .btn-block {
  margin-top: 5rem;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn .fdx-triangle-s {
  font-size: 11rem;
}
.main-layout a {
  cursor: pointer;
}
.main-layout a:hover,
.main-layout a:focus {
  text-decoration: none;
  outline: none;
  outline: 0;
}
.main-layout a.fdx-underline-link {
  text-decoration: none;
  line-height: 1.1;
  display: inline-block;
}
.main-layout a.fdx-underline-link:hover {
  color: #00a9ce !important;
}
.main-layout a.fdx-underline-link:after {
  display: block;
  content: "";
  height: 1rem;
  width: 0%;
  background-color: #00a9ce;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.main-layout a.fdx-underline-link:hover:after,
.main-layout a.fdx-underline-link:focus:after {
  width: 100%;
}
.main-layout a.fdx-color-change-link {
  color: #00a9ce;
}
.main-layout a.fdx-color-change-link:hover {
  border-color: #00677d;
}
.context-bar {
  background: #fff;
  color: #00a9ce;
  border: 1px solid #00a9ce;
  border-radius: 5rem;
  height: auto;
  padding: 8px 10px;
  margin: 10px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-style: italic;
  text-align: center;
  transition: all 0.3s 0.3s;
}
.context-bar .context-bar-icon {
  margin-right: 10px;
}
.context-bar .context-bar-message {
  flex: 1;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.fade.show {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.glyphicon,
.fdxicon-regular {
  position: relative;
  display: inline-block;
  font-size: 16rem;
  line-height: 0;
}
.glyphicon::before,
.fdxicon-regular::before {
  line-height: 1;
}
.glyphicon-new {
  font-family: 'Glyphicons Halflings' !important;
}
.fdxicon-light {
  font-family: 'fdxLight';
}
.fdxicon-regular,
.fdxicon-outline {
  font-family: 'fdxRegular';
}
.fdxicon-bold {
  font-family: 'fdxBold';
}
.glyphicon,
.fdxicon-plain,
.fdxicon-filled {
  font-family: 'FdxPlain' !important;
}
.fdxicon-inverted {
  font-family: 'FdxInverted' !important;
}
.fdxicon-fontawesome {
  font-family: 'FontAwesome';
}
.fdx-zoom:before {
  content: "\e600";
}
.fdx-valid-document:before {
  content: "\e605";
}
.fdx-triangle-s:before {
  content: "\e609";
}
.fdx-triangle-n:before {
  content: "\e60a";
}
.fdx-triangle-e:before {
  content: "\e60b";
}
.fdx-formedix:before {
  content: "\e632";
}
.fdx-formations:before {
  content: "\e633";
}
.fdx-folder:before {
  content: "\e634";
}
.fdx-arrow-light-n:before {
  content: "\e901";
}
.fdx-arrow-light-w:before {
  content: "\e904";
}
.fdx-arrow-light-e:before {
  content: "\e903";
}
.fdx-arrow-light-s:before {
  content: "\e902";
}
.fdx-info:before {
  content: "\e66a";
}
.fdx-light-bulb:before {
  content: "\e66b";
}
.fdx-linkedIn:before {
  content: "\e671";
}
.fdx-warning:before {
  content: "\e900";
}
.fdx-visualisation:before,
.fdx-visible:before {
  content: "\e901";
}
.fdx-visit-schedule:before {
  content: "\e902";
}
.fdx-visit:before {
  content: "\e903";
}
.fdx-associate-library:before {
  content: "\e984";
}
.fdx-vimeo:before {
  content: "\e904";
}
.fdx-user-view:before {
  content: "\e905";
}
.fdx-user-info:before {
  content: "\e906";
}
.fdx-user-add:before {
  content: "\e920";
}
.fdx-roles:before {
  content: "\e98e";
}
.fdx-user-group-add:before {
  content: "\e907";
}
.fdx-user-group:before {
  content: "\e908";
}
.fdx-user-change:before {
  content: "\e909";
}
.fdx-user:before {
  content: "\e90a";
}
.fdx-update:before {
  content: "\e90b";
}
.fdx-unlock:before {
  content: "\e90c";
}
.fdx-unit:before {
  content: "\e90d";
}
.fdx-twitter:before {
  content: "\e90e";
}
.fdx-transition:before {
  content: "\e90f";
}
.fdx-training:before {
  content: "\e910";
}
.fdx-tick:before {
  content: "\e911";
}
.fdx-term:before {
  content: "\e93c";
}
.fdx-terminology:before {
  content: "\e913";
}
.fdx-task-checklist:before {
  content: "\e914";
}
.fdx-support:before {
  content: "\e915";
}
.fdx-subscription:before {
  content: "\e916";
}
.fdx-study-create:before {
  content: "\e917";
}
.fdx-study:before {
  content: "\e918";
}
.fdx-STUDY:before {
  content: "\e918";
}
.fdx-standard-create:before {
  content: "\e919";
}
.fdx-standard:before {
  content: "\e91a";
}
.fdx-published_standard:before {
  content: "\e9b3";
}
.fdx-split:before {
  content: "\e91b";
}
.fdx-user-edit:before {
  content: "\e91c";
}
.fdx-shop:before {
  content: "\e91d";
}
.fdx-settings:before {
  content: "\e91e";
}
.fdx-section:before {
  content: "\e98f";
}
.fdx-search:before {
  content: "\e91f";
}
.fdx-rss:before {
  content: "\e921";
}
.fdx-rotate-file:before {
  content: "\e922";
}
.fdx-result-display:before {
  content: "\e923";
}
.fdx-repository:before {
  content: "\e924";
}
.fdx-remove:before {
  content: "\e925";
}
.fdx-relationship:before {
  content: "\e926";
}
.fdx-refresh-arrow-3:before {
  content: "\e927";
}
.fdx-refresh-arrow-2:before {
  content: "\e928";
}
.fdx-refresh-arrow:before {
  content: "\e929";
}
.fdx-question:before {
  content: "\e92a";
}
.fdx-publish:before {
  content: "\e92b";
}
.fdx-plugin:before {
  content: "\e92c";
}
.fdx-permissions:before {
  content: "\e92d";
}
.fdx-view-permissions:before {
  content: "\e98a";
}
.fdx-notification:before {
  content: "\e958";
}
.fdx-new-version:before {
  content: "\e932";
}
.fdx-method:before {
  content: "\e933";
}
.fdx-logs:before {
  content: "\e934";
}
.fdx-logout:before {
  content: "\e935";
}
.fdx-locked:before {
  content: "\e936";
}
.fdx-loading:before {
  content: "\e937";
}
.fdx-link:before {
  content: "\e989";
}
.fdx-associate:before {
  content: "\e939";
}
.fdx-linked-in:before {
  content: "\e93a";
}
.fdx-libraries:before {
  content: "\e93b";
}
.fdx-integration:before {
  content: "\e93d";
}
.fdx-in-progress:before {
  content: "\e93e";
}
.fdx-initial-state:before {
  content: "\e93f";
}
.fdx-help:before {
  content: "\e941";
}
.fdx-system:before {
  content: "\e98c";
}
.fdx-form:before {
  content: "\e990";
}
.fdx-flag:before {
  content: "\e944";
}
.fdx-filter:before {
  content: "\e945";
}
.fdx-file:before {
  content: "\e946";
}
.fdx-facebook:before {
  content: "\e947";
}
.fdx-email-open:before {
  content: "\e948";
}
.fdx-email-closed:before {
  content: "\e949";
}
.fdx-edit:before {
  content: "\e94a";
}
.fdx-download:before {
  content: "\e94b";
}
.fdx-disable:before {
  content: "\e94c";
}
.fdx-delete:before {
  content: "\e94d";
}
.fdx-dataset-upload:before {
  content: "\e94e";
}
.fdx-dataset-download:before {
  content: "\e94f";
}
.fdx-dataset:before {
  content: "\e950";
}
.fdx-copy:before {
  content: "\e952";
}
.fdx-convert:before {
  content: "\e953";
}
.fdx-conversion-details:before {
  content: "\e954";
}
.fdx-condition:before {
  content: "\e988";
}
.fdx-compare:before {
  content: "\e956";
}
.fdx-company-add:before {
  content: "\e957";
}
.fdx-company:before {
  content: "\e985";
}
.fdx-columns:before {
  content: "\e959";
}
.fdx-cloud-upload:before {
  content: "\e95a";
}
.fdx-clone:before {
  content: "\e98b";
}
.fdx-circle-tick-2:before {
  content: "\e95c";
}
.fdx-circle-tick:before {
  content: "\e95d";
}
.fdx-circle-remove:before {
  content: "\e95e";
}
.fdx-circle-minimize:before {
  content: "\e95f";
}
.fdx-circle-disable:before {
  content: "\e960";
}
.fdx-circle-alert:before {
  content: "\e961";
}
.fdx-circle-add:before {
  content: "\e962";
}
.fdx-change-request:before {
  content: "\e963";
}
.fdx-asset-import:before {
  content: "\e967";
}
.fdx-asset-group:before {
  content: "\e968";
}
.fdx-arrow-w:before {
  content: "\e969";
}
.fdx-arrow-s:before {
  content: "\e96a";
}
.fdx-arrow-n:before {
  content: "\e96b";
}
.fdx-arrow-e:before {
  content: "\e96c";
}
.fdx-arrow-3-e:before {
  content: "\e96d";
}
.fdx-arrow-2-w:before {
  content: "\e96e";
}
.fdx-arrow-2-s:before {
  content: "\e96f";
}
.fdx-arrow-2-n:before {
  content: "\e970";
}
.fdx-arrow-2-e:before {
  content: "\e971";
}
.fdx-admin:before {
  content: "\e973";
}
.fdx-add-ons:before {
  content: "\e974";
}
.fdx-arrow-4-e:before {
  content: "\e92e";
}
.fdx-arrow-4-n:before {
  content: "\e92f";
}
.fdx-arrow-4-s:before {
  content: "\e930";
}
.fdx-arrow-4-w:before {
  content: "\e938";
}
.fdx-company-edit:before {
  content: "\e955";
}
.fdx-thumbnails:before {
  content: "\e964";
}
.fdx-ellipsis-h:before {
  content: "\e951";
}
.fdx-ellipsis-v:before {
  content: "\e940";
}
.fdx-validate:before {
  content: "\e965";
}
.fdx-list:before {
  content: "\e966";
}
.fdx-star-tick:before {
  content: "\e972";
}
.fdx-star:before {
  content: "\e975";
}
.fdx-bookmark:before {
  content: "\e976";
}
.fdx-circle-info:before {
  content: "\e977";
}
.fdx-repeat:before {
  content: "\e97c";
}
.fdx-arrow-3-w:before {
  content: "\e978";
}
.fdx-arrow-3-s:before {
  content: "\e979";
}
.fdx-arrow-3-n:before {
  content: "\e97a";
}
.fdx-minus:before {
  content: "\e97e";
}
.fdx-back:before {
  content: "\e97d";
}
.fdx-circle-edit:before {
  content: "\e97b";
}
.fdx-lightbulb:before {
  content: "\e97f";
}
.fdx-menu:before {
  content: "\e980";
}
.fdx-convert-2:before {
  content: "\e981";
}
.fdx-home:before {
  content: "\e982";
}
.fdx-analysis-result:before {
  content: "\e983";
}
.fdx-variable:before {
  content: "\e987";
}
.fdx-value:before {
  content: "\e986";
}
.fdx-selection-criteria:before {
  content: "\e992";
}
.fdx-move-vertical:before {
  content: "\e993";
}
.fdx-ryze-community:before {
  content: "\e994";
}
.fdx-list-clock:before {
  content: "\e995";
}
.fdx-drag-handle:before {
  content: "\e996";
}
.fdx-reorder:before {
  content: "\e997";
}
.fdx-arrow-5-n:before {
  content: "\e942";
}
.fdx-arrow-5-s:before {
  content: "\e943";
}
.fdx-theme-brush:before {
  content: "\e95b";
}
.fdx-whats-new:before {
  content: "\e98d";
}
.fdx-import-asset:before {
  content: "\e991";
}
.fdx-relink-asset:before {
  content: "\e997";
}
.fdx-state-transition:before {
  content: "\e99b";
}
.fdx-state-new:before {
  content: "\e99a";
}
.fdx-data-bars:before {
  content: "\e999";
}
.fdx-data-remove:before {
  content: "\e99c";
}
.fdx-data-clean:before {
  content: "\e998";
}
.fdx-asset-icon:before {
  content: "\e99d";
}
.fdx-asset-upload:before {
  content: "\e99f";
}
.fdx-asset-export:before {
  content: "\e9a0";
}
.fdx-conversion-run:before {
  content: "\e99e";
}
.fdx-diamond-alert:before {
  content: "\e9a1";
}
.fdx-permissions-edit:before {
  content: "\e9a2";
}
.fdx-conversions-view:before {
  content: "\e9a3";
}
.fdx-reorder:before {
  content: "\e9a4";
}
.fdx-conflict-resolve:before {
  content: "\e9a5";
}
.fdx-invisible:before {
  content: "\e9a6";
}
.fdx-conflict-both:before {
  content: "\e9a7";
}
.fdx-upload:before {
  content: "\e912";
}
.fdx-comment:before {
  content: "\e931";
}
.fdx-webhook-notifications:before {
  content: "\e922";
}
.fdx-create-above:before {
  content: "\e9a9";
}
.fdx-create-below:before {
  content: "\e9aa";
}
.fdx-todos:before {
  content: "\e9ab";
}
.fdx-basket:before {
  content: "\e9ac";
}
.fdx-basket-add:before {
  content: "\e9ad";
}
.fdx-basket-remove:before {
  content: "\e9ae";
}
.fdx-clear-recents:before {
  content: "\e9af";
}
.fdx-star-remove:before {
  content: "\e9b0";
}
.fdx-conflict-resolve:before {
  content: "\e9a5";
}
.fdx-invisible:before {
  content: "\e9a6";
}
.fdx-conflict-both:before {
  content: "\e9a7";
}
.fdx-arrow-5-w:before {
  content: "\e9a8";
}
.fdx-arrow-5-e:before {
  content: "\e9b2";
}
.fdx-asset-add-group:before {
  content: "\e9b1";
}
.fdx-data-transfer:before {
  content: "\e9b4";
}
.fdx-duplicate:before {
  content: "\e9b5";
}
.fdx-status:before {
  content: "\e9b6";
}
.fdx-external-standard:before {
  content: "\e9c3";
}
.fdx-diagram-up:before {
  content: "\e9b5";
}
.fdx-tabular-view:before {
  content: "\e9b7";
}
.fdx-not-equal:before {
  content: "\e9ba";
}
.fdx-derived-from-arrow:before {
  content: "\e9bb";
}
.fdx-derived-from-arrow-e:before {
  content: "\e9c7";
}
.fdx-trip-pins:before {
  content: "\e9c6";
}
.fdx-headphones:before {
  content: "\e9c4";
}
.fdx-conversation:before {
  content: "\e9c5";
}
.fdx-multiselect:before {
  content: "\e9c8";
}
fdx-date-range [uib-datepicker] .glyphicon {
  font-family: 'fdxIcons' !important;
  font-style: normal;
}
fdx-date-range [uib-datepicker] .glyphicon-chevron-left:before {
  content: "\f143";
}
fdx-date-range [uib-datepicker] .glyphicon-chevron-right:before {
  content: "\f144";
}
th.st-sort-ascent .orderIcon span:before {
  content: "\e609";
}
th.st-sort-descent .orderIcon span:before {
  content: "\e60a";
}
th.sort-ascent .orderIcon span:before {
  content: "\e609";
}
th.sort-descent .orderIcon span:before {
  content: "\e60a";
}
.icon-circled {
  position: relative;
  display: block;
  width: 32rem;
  height: 32rem;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}
.icon-circled > span {
  position: absolute;
  display: block;
  font-size: 16rem;
  left: 50%;
  margin-left: -8rem;
  top: 50%;
  margin-top: -8rem;
}
.circle-default.icon-circled {
  background-color: #f6f6f6;
}
.circle-default.icon-circled > span {
  color: #d3d3d3;
}
.circle-inverted.icon-circled {
  background-color: #d4d5d7;
}
.circle-inverted.icon-circled > span {
  color: #ffffff;
}
.circle-teal.icon-circled {
  background-color: #E5F4F8;
}
.circle-teal.icon-circled > span {
  color: #72C2D9;
}
.circle-danger.icon-circled {
  background-color: #F2EAEA;
}
.circle-danger.icon-circled > span {
  color: #CB7D7D;
}
.circle-warning.icon-circled {
  background-color: #FBEDCC;
}
.circle-warning.icon-circled > span {
  color: #F1AF70;
}
.circle-success.icon-circled {
  background-color: #EFF5EB;
}
.circle-success.icon-circled > span {
  color: #86B567;
}
.circle-gray.icon-circled {
  background-color: #F6F6F6;
}
.circle-gray.icon-circled > span {
  color: #949494;
}
.circle-menu.icon-circled {
  background-color: #00a9ce;
}
.circle-menu.icon-circled > span {
  color: #fff;
}
.circle-teal-dark.icon-circled {
  background-color: #00677d;
}
.circle-teal-dark.icon-circled > span {
  color: #fff;
}
.tr-system-disabled:hover .fdx-user,
.tr-awaiting-activation:hover .fdx-user,
.tr-global-disabled:hover .fdx-user {
  color: #a54848;
}
.tr-activated:hover .fdx-user {
  color: #00a9ce;
}
.tr-locked:hover .fdx-user {
  color: #606060;
}
.tr-activated:hover .fdx-plug {
  color: #00a9ce;
}
.tr-disabled:hover .fdx-plug {
  color: #a54848;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2rem;
  vertical-align: middle;
  border-top: 4rem solid;
  border-right: 4rem solid transparent;
  border-left: 4rem solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown .dropdown-toggle {
  cursor: pointer;
}
.dropdown .dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3000;
  display: none;
  float: left;
  min-width: 100rem;
  padding: 0 1rem;
  margin: 0;
  list-style: none;
  font-size: 14rem;
  background-color: #fff;
  border: 1rem solid #ccc;
  border-radius: 3rem;
  -webkit-box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12rem rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  text-align: left;
  max-height: 300rem;
  overflow-y: auto;
}
.dropdown-menu.fixed {
  position: fixed;
}
.dropdown-menu.flat-top {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.dropdown-menu.flat-bottom {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
html.no-boxshadow .dropdown-menu {
  border: 1rem solid #ddd;
}
.dropdown-menu.pull-right:not(.fixed) {
  right: 0;
  left: auto!important;
}
.dropdown-menu .divider {
  height: 1rem;
  margin: 0 16rem 0;
  background-color: #e5e5e5;
  overflow: hidden;
}
.dropdown-menu li.filter > input {
  margin-top: 0;
}
.dropdown-menu button.dropdown-item {
  width: 100%;
  text-align: left;
  background: white;
  padding: 0;
}
.dropdown-menu li > a,
.dropdown-menu li > button,
.dropdown-menu li > .menu-item,
.dropdown-menu li.checkbox,
.dropdown-menu button.dropdown-item > a {
  display: block;
  width: 100%;
  padding: 8rem 16rem;
  clear: both;
  font-weight: normal;
  line-height: 20rem;
  min-height: 36rem;
  color: #454545;
  text-decoration: none;
  background-color: transparent;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dropdown-menu li .drag-handle {
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
  position: absolute;
  right: 10rem;
}
.dropdown-menu li:hover .drag-handle {
  opacity: 1;
}
.dropdown-menu .dragging .drag-handle {
  display: none;
}
.dropdown-menu li > a.disabled,
.dropdown-menu li > button.disabled,
.dropdown-menu button.dropdown-item.disabled,
.dropdown-menu li > a:disabled,
.dropdown-menu li > button:disabled,
.dropdown-menu button.dropdown-item:disabled {
  cursor: default;
  font-style: italic;
  color: #999;
}
.dropdown-menu li.checkbox {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12rem;
  padding-bottom: 0;
}
.dropdown-menu li.checkbox:last-child {
  padding-bottom: 12rem;
}
.dropdown-menu li.checkbox input {
  margin-left: 0;
  margin-right: 7rem;
}
.dropdown-menu.uib-datepicker-popup {
  max-height: none;
}
.dropdown-menu .none {
  color: #6666;
  font-style: italic;
  padding-bottom: 5rem;
  margin: 10rem 18rem 2rem;
}
.dropdown-menu li > a.highlighted,
.dropdown-menu li > button.highlighted,
.dropdown-menu button.dropdown-item.highlighted,
.dropdown-menu li > a:hover,
.dropdown-menu li > button:hover,
.dropdown-menu button.dropdown-item:hover,
.dropdown-menu li > a:focus,
.dropdown-menu li > button:focus,
.dropdown-menu button.dropdown-item:focus {
  text-decoration: none;
  color: #383838;
  background-color: #d7e8ef;
}
.dropdown-menu li > a.disabled:hover,
.dropdown-menu li > button.disabled:hover,
.dropdown-menu li > button:disabled:hover,
.dropdown-menu button.dropdown-item:disabled:hover,
.dropdown-menu li > a.disabled:focus,
.dropdown-menu li > button.disabled:focus,
.dropdown-menu li > button:disabled:focus,
.dropdown-menu button.dropdown-item:disabled:focus {
  text-decoration: none;
  color: #999;
  background-color: transparent;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > button,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > button:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > button:focus {
  color: #333;
  text-decoration: none;
  outline: 0;
  background-color: #e5e5e5;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > button:hover,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > button:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-header {
  display: block;
  padding: 12rem 16rem;
  color: #333;
  font-weight: bolder;
}
.dropdown-menu-icon-left,
.dropdown-menu-icon-right {
  position: absolute;
  top: 10rem;
}
.filter > .dropdown-menu-icon-left,
.filter > .dropdown-menu-icon-right {
  top: 13rem;
}
.dropdown-header > .dropdown-menu-icon-left,
.dropdown-header > .dropdown-menu-icon-right {
  top: 13rem;
}
.dropdown-menu-icon-left {
  left: 16rem;
}
.dropdown-menu-icon-right {
  right: 16rem;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2990;
}
.pull-right > .dropdown-menu:not(.fixed) {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4rem solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto !important;
  bottom: 100%;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu:not(.fixed) {
    right: 0;
    left: auto;
  }
}
.dropdown-menu li > a.folder-1 {
  padding-left: 20rem;
}
.dropdown-menu li > a.folder-2 {
  padding-left: 30rem;
}
.dropdown-menu li > a.folder-3 {
  padding-left: 40rem;
}
.dropdown-menu li > a.folder-4 {
  padding-left: 50rem;
}
.dropdown-menu li > a.folder-5 {
  padding-left: 60rem;
}
.dropdown-menu li > a.folder-6 {
  padding-left: 70rem;
}
.dropdown-menu li > a.folder-7 {
  padding-left: 80rem;
}
.dropdown-menu li > a.folder-8 {
  padding-left: 90rem;
}
.btn .dropdown-menu.dropdown-over {
  top: 28rem;
}
.btn .dropdown-menu.dropdown-over.pull-right {
  right: -14rem;
}
.btn-compact .dropdown-over .dropdown-menu-icon-right {
  top: 8rem;
  right: 12rem;
}
.btn-compact .dropdown-menu.dropdown-over > li.divider {
  margin-right: 12rem;
}
.btn-compact .dropdown-menu.dropdown-over > li > a {
  padding-right: 12rem;
}
.btn.dropdown-toggle .dropdown-over .dropdown-header {
  padding: 8rem 70rem 8rem 16rem;
}
.btn-group .btn:not(:last-child) .dropdown-menu.dropdown-over.pull-right {
  border-top-right-radius: 0;
}
/**
 * @name Button groups
 * @description
 * # Button groups
 *
 * Group a series of buttons together on a single line with the button group.
 * Angular ui bootstrap can add on optional JavaScript radio and checkbox style behavior [http://angular-ui.github.io/bootstrap/#/buttons](http://angular-ui.github.io/bootstrap/#/buttons).
 *
 * ## Functionalities
 *
 * * Wrap a series of buttons with `.btn` in `.btn-group`.
 * * Instead of applying button sizing classes to every button in a group, just add .btn-group-* to each .btn-group, including when nesting multiple groups
 * * Nesting: place a .btn-group within another .btn-group when you want dropdown menus mixed with a series of buttons.
 * * Vertical variation with `.btn-group-vertical`
 * * Justified button groups with variant class `.btn-group-justified`
 *
 * @example
<!-- Basic -->
<div style="margin-bottom: 20rem;">
  <div class="btn-group" role="group" aria-label="...">
    <button type="button" class="btn btn-default">Left</button>
    <button type="button" class="btn btn-default">Middle</button>
    <button type="button" class="btn btn-default">Right</button>
  </div>
</div>
<!-- Sizes -->
<div style="margin-bottom: 20rem;">
  <div class="btn-group btn-group-lg" role="group" aria-label="...">
    <button type="button" class="btn btn-default">Left</button>
    <button type="button" class="btn btn-default">Middle</button>
    <button type="button" class="btn btn-default">Right</button>
  </div>
  <div class="btn-group btn-group-sm" role="group" aria-label="...">
    <button type="button" class="btn btn-default">Left</button>
    <button type="button" class="btn btn-default">Middle</button>
    <button type="button" class="btn btn-default">Right</button>
  </div>
</div>
<!-- Nested -->
<div style="margin-bottom: 20rem;">
  <div class="btn-group" role="group" aria-label="...">
    <button type="button" class="btn btn-default">1</button>
    <button type="button" class="btn btn-default">2</button>

    <div class="btn-group" role="group">
      <button type="button" class="btn btn-default dropdown dropdown-toggle" data-uib-dropdown="" data-uib-dropdown-toggle="" aria-expanded="false">
        Dropdown
        <span class="caret"></span>
      </button>
      <ul class="dropdown-menu" dropdown-menu="" role="menu">
        <li><a href="#">Dropdown link</a></li>
        <li><a href="#">Dropdown link</a></li>
      </ul>
    </div>
  </div>
</div>
<!-- Justified -->
<div style="margin-bottom: 20rem;">
  <div class="btn-group btn-group-justified" role="group" aria-label="...">
    <a href="" class="btn btn-default">Left</a>
    <a href="" class="btn btn-default">Middle</a>
    <a href="" class="btn btn-default">Right</a>
  </div>
</div>
 */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1rem;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn-group {
  float: left;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5rem;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-compact.dropdown-toggle.lone-button {
  border-bottom-left-radius: 3rem;
  border-top-left-radius: 3rem;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group-xs > .btn {
  padding: 1rem 5rem;
  font-size: 12rem;
  line-height: 1.5;
  border-radius: 3rem;
}
.btn-group-sm > .btn {
  padding: 5rem 10rem;
  font-size: 14rem;
  line-height: 1.5;
  border-radius: 3rem;
}
.btn-group-lg > .btn {
  padding: 12rem 16rem;
  font-size: 14rem;
  line-height: 20rem;
  border-radius: 5rem;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3rem 5rem rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3rem 5rem rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5rem 5rem 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5rem 5rem;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1rem;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 5rem;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 48rem;
  padding: 12rem 16rem;
  font-size: 16rem;
  line-height: 1.33;
  border-radius: 10rem;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 48rem;
  line-height: 48rem;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30rem;
  padding: 5rem 10rem;
  font-size: 12rem;
  line-height: 1.5;
  border-radius: 3rem;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30rem;
  line-height: 30rem;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon > .btn,
.input-group-btn > .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.input-group-addon {
  padding: 8rem 12rem;
  font-size: 14rem;
  font-weight: normal;
  line-height: 1;
  color: #666;
  text-align: center;
  background-color: #e5e5e5;
  border: 1rem solid #d3d3d3;
  border-radius: 5rem;
}
.input-group-addon.input-sm {
  padding: 5rem 10rem;
  font-size: 12rem;
  border-radius: 3rem;
}
.input-group-addon.input-lg {
  padding: 12rem 16rem;
  font-size: 16rem;
  border-radius: 10rem;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  white-space: nowrap;
}
.input-group-btn:first-child > .btn {
  margin-right: -1rem;
}
.input-group-btn:last-child > .btn {
  margin-left: -1rem;
}
.input-group-btn > .btn {
  position: relative;
  padding-left: 12rem;
  padding-right: 12rem;
}
.input-group-btn > .btn + .btn {
  margin-left: -4rem;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
  z-index: 2;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a,
.nav > li > button {
  position: relative;
  display: block;
  padding: 8rem 20rem;
  text-decoration: none;
  font-weight: normal;
  color: #333;
  background-color: inherit;
}
.nav > li > a:hover,
.nav > li > button:hover,
.nav > li > a:focus,
.nav > li > button:focus {
  text-decoration: none;
  color: #00a9ce;
  background-color: #fff;
}
.nav > li > a.active,
.nav > li > button.active {
  color: #00a9ce;
}
.nav > li.disabled > a,
.nav > li.disabled > button {
  color: #999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > button:hover,
.nav > li.disabled > a:focus,
.nav > li.disabled > button:focus {
  color: #999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .active > a,
.nav .open > a:hover,
.nav .active > a:hover,
.nav .open > a:focus,
.nav .active > a:focus {
  background-color: #fff;
  border-color: #00a9ce;
  color: #00a9ce;
}
.nav .nav-divider {
  height: 1rem;
  margin: 9rem 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1rem solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1rem;
}
.nav-tabs > li > a,
.nav-tabs > li > button {
  line-height: 1.42857143;
  border: 1rem solid #ddd;
  border-radius: 5rem 5rem 0 0;
  margin-right: -1rem;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > button:hover {
  border-color: #e5e5e5 #e5e5e5 #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > button,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > button:hover,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > button:focus {
  color: #666;
  background-color: #fff;
  border: 1rem solid #ddd;
  border-bottom: 1rem solid #fff;
  z-index: 1;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5rem;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 5rem;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1rem solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1rem solid #ddd;
    border-radius: 5rem 5rem 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 5rem;
}
.nav-pills > li + li {
  margin-left: 2rem;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #00a9ce;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2rem;
  margin-left: 0;
}
.nav-stacked > li > a {
  font-weight: bold;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5rem;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 5rem;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1rem solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1rem solid #ddd;
    border-radius: 5rem 5rem 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1rem;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.integrated-nav-tabs {
  position: absolute;
  top: 64rem;
}
.integrated-nav-tabs ul {
  border: 0 !important;
}
.integrated-nav-tabs ul .tooltip {
  visibility: hidden;
}
.integrated-nav-tabs ul li a {
  padding: 15rem 25rem 14rem 25rem;
  border: 0 !important;
  border-right: 1rem solid #ddd !important;
  border-left: 1rem solid #ddd !important;
  border-bottom: 1rem solid #fff !important;
  border-top: 1rem solid #ddd !important;
  border-radius: 0;
}
.integrated-nav-tabs ul li a span {
  margin-right: 5rem;
}
.integrated-nav-tabs-content-header .controls {
  top: 0 !important;
  background-color: #fff;
}
.navbar {
  position: relative;
  min-height: 54rem;
  margin-bottom: 20rem;
  border: 1rem solid transparent;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 5rem;
  }
}
.navbar-header {
  width: 55rem;
  height: 54rem;
  position: relative;
  float: left;
}
.navbar-header:before,
.navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
.navbar-header:before,
.navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
.navbar-collapse {
  max-height: 340rem;
  overflow-x: visible;
  padding-right: 8rem;
  padding-left: 8rem;
  border-top: 1rem solid transparent;
  box-shadow: inset 0 1rem 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before,
.navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse:before,
.navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.container > .navbar-header,
.container > .navbar-collapse {
  margin-right: -8rem;
  margin-left: -8rem;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top,
.navbar-absolute-top {
  z-index: 1001;
  border-width: 0 0 1rem;
}
@media (min-width: 768px) {
  .navbar-static-top,
  .navbar-absolute-top {
    border-radius: 0;
  }
}
.navbar-absolute-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: 0;
}
.navbar-absolute-left {
  z-index: 1001;
  border-width: 0 1rem 0 0;
  position: absolute;
  margin: 0;
  width: 55rem;
  left: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .navbar-absolute-left {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1005;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1rem;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1rem 0 0;
}
.navbar-brand {
  float: left;
  padding: 11rem 8rem;
  font-size: 16rem;
  line-height: 20rem;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand {
    margin-left: -8rem;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 8rem;
  padding: 9rem 10rem;
  margin-top: 10rem;
  margin-bottom: 10rem;
  background-color: transparent;
  background-image: none;
  border: 1rem solid transparent;
  border-radius: 5rem;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22rem;
  height: 2rem;
  border-radius: 1rem;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 0 -8rem;
}
.navbar-nav > li {
  float: left;
}
.navbar-nav > li > a {
  padding-top: 11rem;
  padding-bottom: 11rem;
  line-height: 32rem;
  text-decoration: none;
  height: 54rem;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5rem 15rem 5rem 25rem;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20rem;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
  .navbar-nav.navbar-right:last-child {
    margin-right: -8rem;
  }
}
.navbar-left {
  float: left !important;
}
.navbar-right {
  float: right !important;
}
.navbar-form {
  margin-left: -8rem;
  margin-right: -8rem;
  padding: 10rem 8rem;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  -webkit-box-shadow: inset 0 1rem 0 rgba(255, 255, 255, 0.1), 0 1rem 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1rem 0 rgba(255, 255, 255, 0.1), 0 1rem 0 rgba(255, 255, 255, 0.1);
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
  }
  .navbar-form select.form-control {
    width: auto;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-form.navbar-right:last-child {
    margin-right: -8rem;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.navbar-btn {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.navbar-btn.btn-sm {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.navbar-btn.btn-xs {
  margin-top: 16rem;
  margin-bottom: 16rem;
}
.navbar-text {
  margin-top: 17rem;
  margin-bottom: 17rem;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #fff;
  border-color: #e5e5e5;
}
.navbar-default .navbar-brand {
  color: #333;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #1a1a1a;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #333;
}
.navbar-default .navbar-nav > li > a {
  color: #333;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #eeeeee;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #ccc;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e5e5e5;
}
.navbar-default .navbar-nav {
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: transparent;
  color: #555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #333;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
  }
}
.navbar-default .navbar-link {
  color: #333;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-inverse {
  background-color: #333;
  border-color: #292929;
}
.navbar-inverse .navbar-brand {
  color: #999;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #d9d9d9;
}
.navbar-inverse .navbar-nav > li > a {
  color: #999;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #1a1a1a;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #212121;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #1a1a1a;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #292929;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #292929;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #1a1a1a;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #999;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-formedix {
  margin-bottom: 0;
  border-radius: 0;
  border-width: 0 0 1rem 0;
}
ul.nav-list-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
ul.nav-list-menu > li > div {
  font-size: 12rem;
  font-weight: bold;
  margin-bottom: 5rem;
  white-space: nowrap;
}
ul.nav-list-menu > li ul {
  list-style: none;
  padding: 0;
}
ul.nav-list-menu > li > ul {
  margin: 0 0 10rem 12rem;
}
ul.nav-list-menu > li ul * ul {
  margin-left: 20rem;
}
ul.nav-list-menu > li ul > li > a {
  display: block;
  color: #333;
  width: 100%;
  white-space: nowrap;
  padding: 5rem 0;
  text-decoration: none;
}
ul.nav-list-menu > li ul > li > a:focus,
ul.nav-list-menu > li ul > li > a:hover {
  text-decoration: none;
}
ul.nav-list-menu > li ul > li > a > span {
  margin-right: 5rem;
}
ul.nav-list-menu > li ul > li > a.inlineNodeNavTree {
  display: inline;
}
ul.nav-list-menu > li ul > li.active {
  color: #00a9ce;
}
ul.nav-list-menu > li ul > li.active > a {
  color: #00a9ce;
  font-weight: bold;
  text-decoration: none;
}
.breadcrumb {
  padding: 0;
  list-style: none;
  cursor: default;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "\00a0>\00a0";
  padding: 0 5rem;
  color: #999;
}
.breadcrumb > li a {
  text-decoration: none;
  color: #333;
}
.breadcrumb > li a:hover {
  color: #666;
}
.breadcrumb > li.active > a,
.breadcrumb > li.active > button {
  cursor: default;
  pointer-events: none;
  color: #666;
}
.breadcrumb.navigator {
  margin-left: 5rem;
}
.breadcrumb.navigator > li + li:before {
  content: "\00a0\002F\00a0";
  padding: 0 1rem;
}
.breadcrumb.navigator > li button {
  padding: 6rem 0;
}
.breadcrumb.navigator > li.active > button {
  color: #333;
}
.breadcrumb.navigator > li.active > button:hover {
  text-decoration: none;
}
.breadcrumb.folders > li + li:before {
  content: "\00a0/\00a0";
  color: #888;
}
.breadcrumb.folders > li > a {
  color: #333;
}
.breadcrumb.folders > li > a:hover {
  color: #00a9ce;
}
.breadcrumb.folders > li.active > a {
  color: #888;
}
.breadcrumb.folders > li.active > a:hover {
  text-decoration: none;
}
.overlay-message {
  display: table;
  height: 100%;
  width: 100%;
}
.overlay-message-content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
/**
 * @name Alerts
 * @description
 * # Alerts
 *
 * Use the `.alert` class to wrap an icon and a text (using classes `.alert-icon` and `alert-text`).
 * You can use with `.alert` one of the four contextual classes for basic alert messages. These classes are:
 * * `alert-success`
 * * `alert-info`
 * * `alert-warning`
 * * `alert-danger`
 *
 * @example
<!-- Success -->
<div class="alert alert-success">
  <div class="fdxicon-regular fdx-tick alert-icon"></div>

  <div class="alert-text">Success!</div>
</div>
<!-- Info -->
<div class="alert alert-info">
  <div class="fdxicon-regular fdx-light-bulb alert-icon"></div>

  <div class="alert-text">Take note</div>
</div>
<!-- Warning -->
<div class="alert alert-warning">
  <div class="fdxicon-regular fdx-circle-info alert-icon"></div>

  <div class="alert-text">Uh oh...</div>
</div>
<!-- Danger -->
<div class="alert alert-danger">
  <div class="fdxicon-regular fdx-warning alert-icon"></div>

  <div class="alert-text">
    You broke something :(<br/>
    You should not do it again!<br/>
    Seriously!<br/>
  </div>
</div>
 */
.alert {
  display: block;
  padding: 15rem 0;
  margin-bottom: 5rem;
}
.alert .alert-icon {
  float: left;
  width: 32rem;
  vertical-align: top;
}
.alert .alert-icon.fdxicon-regular {
  font-size: 23rem;
}
.alert .alert-text {
  vertical-align: middle;
  padding-left: 10rem;
}
.alert .alert-danger-text {
  padding-top: 3rem;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: normal;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5rem;
}
.alert-success {
  color: #6aa445;
}
.alert-success .alert-link,
.alert-success .btn-link {
  color: #5e923d;
}
.alert-success .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.alert-info {
  color: #00a9ce;
}
.alert-info .alert-link,
.alert-info .btn-link {
  color: #0094b5;
}
.alert-info .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.alert-warning {
  color: #ce6c0d;
}
.alert-warning .alert-link,
.alert-warning .btn-link {
  color: #b65f0b;
}
.alert-warning .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.alert-danger {
  color: #aa1c1c;
}
.alert-danger .alert-link,
.alert-danger .btn-link {
  color: #941818;
}
.alert-danger .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
/**
 * @name Notifications
 * @description
 * # Notifications
 *
 * Use the `.notification` class to wrap a notification text. Four variant classes are available:
 * * `notification-success`
 * * `notification-info`
 * * `notification-warning`
 * * `notification-danger`
 *
 * @example

<div class="notification notification-success">
    You are so succeful
</div>

<div class="notification notification-info">
    FYI
</div>

<div class="notification notification-warning">
    This is a warning
</div>

<div class="notification notification-danger">
    An error occured
</div>
 */
.notification {
  padding: 15rem;
  margin-bottom: 20rem;
  border: 1rem solid transparent;
  border-radius: 5rem;
}
.notification-dismissable {
  padding-right: 35rem;
}
.notification-dismissable .close {
  position: relative;
  right: -21rem;
  color: inherit;
}
.notification-success {
  background-color: #f0f6ec;
  color: #6aa445;
  border-color: #6aa445;
}
.notification-success .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.notification-info {
  background-color: #e6f5f8;
  color: #00a9ce;
  border-color: #00a9ce;
}
.notification-info .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.notification-warning {
  background-color: #f9f0e3;
  color: #ce6c0d;
  border-color: #ce6c0d;
}
.notification-warning .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.notification-danger {
  background-color: #f3ebeb;
  color: #aa1c1c;
  border-color: #aa1c1c;
}
.notification-danger .fdxicon-regular {
  font-size: 32rem;
  margin-right: 5rem;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15rem;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5rem;
}
.media > .pull-left {
  margin-right: 10rem;
}
.media > .pull-right {
  margin-left: 10rem;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20rem;
  padding-left: 0;
}
a.list-group-item {
  text-decoration: none !important;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10rem 15rem;
  margin-bottom: -1rem;
  background-color: #fff;
  border: 1rem solid #ddd;
}
.list-group-item .asset-group-title:hover {
  cursor: pointer;
  text-decoration: underline;
}
.list-group-item:first-child {
  border-top-right-radius: 5rem;
  border-top-left-radius: 5rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5rem;
}
span.list-group-item {
  cursor: pointer;
  color: #555;
}
span.list-group-item .list-group-item-heading {
  color: #333;
}
span.list-group-item:hover,
span.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
span.list-group-item.active,
span.list-group-item.active:hover,
span.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #00a9ce;
  border-color: #00a9ce;
}
span.list-group-item.active .list-group-item-heading,
span.list-group-item.active:hover .list-group-item-heading,
span.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}
span.list-group-item.active .list-group-item-text,
span.list-group-item.active:hover .list-group-item-text,
span.list-group-item.active:focus .list-group-item-text {
  color: #9bedff;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5rem;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.close {
  float: right;
  font-size: 21rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1rem 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
  outline: none;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-popup {
  background-color: #ffffff;
  border-radius: 0;
}
.modal-popup .modal-header {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 0;
}
.modal-popup .modal-body {
  top: 55rem;
  left: 0;
  right: 0;
  position: absolute;
  height: auto;
  bottom: 69rem;
  overflow: auto;
}
.modal-popup .modal-footer {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #f6f6f6;
  border-top: 1rem solid #cfcfcf;
  border-radius: 0;
}
.tooltip {
  position: absolute;
  z-index: 1050;
  display: block;
  visibility: visible;
  font-size: 14rem;
  line-height: 20rem;
  max-width: 200rem;
}
.tooltip.in {
  opacity: 0.95;
  filter: alpha(opacity=95);
}
.tooltip.top,
.tooltip.bs-tooltip-top {
  margin-top: -3rem;
  padding: 5rem 0;
}
.tooltip.right,
.tooltip.bs-tooltip-end {
  margin-left: 3rem;
  padding: 0 5rem;
}
.tooltip.bottom,
.tooltip.bs-tooltip-bottom {
  margin-top: 3rem;
  padding: 5rem 0;
}
.tooltip.left,
.tooltip.bs-tooltip-start {
  margin-left: -3rem;
  padding: 0 5rem;
}
.tooltip.tooltip-block {
  width: 100%;
}
.tooltip .tooltip-inner {
  padding: 10rem;
  color: #fff;
  text-decoration: none;
  background-color: #00677d;
  border-radius: 5rem;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow,
.tooltip.bs-tooltip-top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5rem;
  border-width: 5rem 5rem 0;
  border-top-color: #00677d;
}
.tooltip.top-left .tooltip-arrow,
.tooltip.bs-tooltip-top-start .tooltip-arrow {
  bottom: 0;
  left: 5rem !important;
  border-width: 5rem 5rem 0;
  border-top-color: #00677d;
}
.tooltip.top-right .tooltip-arrow,
.tooltip.bs-tooltip-top-end .tooltip-arrow {
  bottom: 0;
  right: 5rem !important;
  border-width: 5rem 5rem 0;
  border-top-color: #00677d;
}
.tooltip.right .tooltip-arrow,
.tooltip.bs-tooltip-end .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5rem;
  border-width: 5rem 5rem 5rem 0;
  border-right-color: #00677d;
}
.tooltip.left .tooltip-arrow,
.tooltip.bs-tooltip-start .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5rem;
  border-width: 5rem 0 5rem 5rem;
  border-left-color: #00677d;
}
.tooltip.bottom .tooltip-arrow,
.tooltip.bs-tooltip-bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5rem;
  border-width: 0 5rem 5rem;
  border-bottom-color: #00677d;
}
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bs-tooltip-bottom-start .tooltip-arrow {
  top: 0;
  left: 5rem !important;
  border-width: 0 5rem 5rem;
  border-bottom-color: #00677d;
}
.tooltip.bottom-right .tooltip-arrow,
.tooltip.bs-tooltip-bottom-end .tooltip-arrow {
  top: 0;
  right: 5rem !important;
  border-width: 0 5rem 5rem;
  border-bottom-color: #00677d;
}
.tooltip.tooltip-fixed {
  position: fixed;
}
.tooltip-danger .tooltip-inner {
  color: #aa1c1c;
  border: 1rem solid #aa1c1c;
  background-color: #f3ebeb;
}
.tooltip-danger.top .tooltip-arrow {
  border-top-color: #aa1c1c;
}
.tooltip-danger.top-left .tooltip-arrow {
  border-top-color: #aa1c1c;
}
.tooltip-danger.top-right .tooltip-arrow {
  border-top-color: #aa1c1c;
}
.tooltip-danger.right .tooltip-arrow {
  border-right-color: #aa1c1c;
}
.tooltip-danger.left .tooltip-arrow {
  border-left-color: #aa1c1c;
}
.tooltip-danger.bottom .tooltip-arrow {
  border-bottom-color: #aa1c1c;
}
.tooltip-danger.bottom-left .tooltip-arrow {
  border-bottom-color: #aa1c1c;
}
.tooltip-danger.bottom-right .tooltip-arrow {
  border-bottom-color: #aa1c1c;
}
.tooltip-warning .tooltip-inner {
  color: #ce6c0d;
  border: 1rem solid #ce6c0d;
  background-color: #f9f0e3;
}
.tooltip-warning.top .tooltip-arrow {
  border-top-color: #ce6c0d;
}
.tooltip-warning.top-left .tooltip-arrow {
  border-top-color: #ce6c0d;
}
.tooltip-warning.top-right .tooltip-arrow {
  border-top-color: #ce6c0d;
}
.tooltip-warning.right .tooltip-arrow {
  border-right-color: #ce6c0d;
}
.tooltip-warning.left .tooltip-arrow {
  border-left-color: #ce6c0d;
}
.tooltip-warning.bottom .tooltip-arrow {
  border-bottom-color: #ce6c0d;
}
.tooltip-warning.bottom-left .tooltip-arrow {
  border-bottom-color: #ce6c0d;
}
.tooltip-warning.bottom-right .tooltip-arrow {
  border-bottom-color: #ce6c0d;
}
.tooltip-success .tooltip-inner {
  color: #6aa445;
  border: 1rem solid #6aa445;
  background-color: #f0f6ec;
}
.tooltip-success.top .tooltip-arrow {
  border-top-color: #6aa445;
}
.tooltip-success.top-left .tooltip-arrow {
  border-top-color: #6aa445;
}
.tooltip-success.top-right .tooltip-arrow {
  border-top-color: #6aa445;
}
.tooltip-success.right .tooltip-arrow {
  border-right-color: #6aa445;
}
.tooltip-success.left .tooltip-arrow {
  border-left-color: #6aa445;
}
.tooltip-success.bottom .tooltip-arrow {
  border-bottom-color: #6aa445;
}
.tooltip-success.bottom-left .tooltip-arrow {
  border-bottom-color: #6aa445;
}
.tooltip-success.bottom-right .tooltip-arrow {
  border-bottom-color: #6aa445;
}
.human-readable-clause-tooltip .tooltip-inner .none {
  color: #d3d3d3;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1020;
  display: none;
  padding: 1rem;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1rem solid #ccc;
  border: 1rem solid #d9d9d9;
  border-radius: 10rem;
  -webkit-box-shadow: 0 0 10rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10rem rgba(0, 0, 0, 0.15);
  white-space: normal;
}
.popover.top {
  margin-top: -7rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.popover.right {
  margin-left: 7rem;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left: none;
  padding-left: 0;
}
.popover.bottom {
  margin-top: 7rem;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top: none;
  padding-top: 0;
}
.popover.left {
  margin-left: -7rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: none;
  padding-right: 0;
}
.popover-title {
  margin: 0;
  padding: 8rem 14rem;
  font-size: 14rem;
  font-weight: normal;
  line-height: 18rem;
  background-color: #f7f7f7;
  border-bottom: 1rem solid #ebebeb;
  border-radius: 5rem 5rem 0 0;
}
.popover-content {
  padding: 9rem 14rem;
}
.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover .arrow {
  border-width: 7rem;
}
.popover .arrow:after {
  border-width: 7rem;
  content: "";
}
.popover.top .arrow {
  left: 50%;
  margin-left: -7rem;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -7rem;
}
.popover.top .arrow:after {
  content: " ";
  bottom: 1rem;
  margin-left: -7rem;
  border-bottom-width: 0;
  border-top-color: #00a9ce;
}
.popover.top .arrow + .popover-inner {
  border-bottom: 5rem solid #00a9ce;
}
.popover.right .arrow {
  top: 50%;
  left: -7rem;
  margin-top: -7rem;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
  content: " ";
  left: 1rem;
  bottom: -7rem;
  border-left-width: 0;
  border-right-color: #00a9ce;
}
.popover.right .arrow + .popover-inner {
  border-left: 5rem solid #00a9ce;
}
.popover.bottom .arrow {
  left: 50%;
  margin-left: -7rem;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -7rem;
}
.popover.bottom .arrow:after {
  content: " ";
  top: 1rem;
  margin-left: -7rem;
  border-top-width: 0;
  border-bottom-color: #00a9ce;
}
.popover.bottom .arrow + .popover-inner {
  border-top: 5rem solid #00a9ce;
}
.popover.left .arrow {
  top: 50%;
  right: -7rem;
  margin-top: -7rem;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left .arrow:after {
  content: " ";
  right: 1rem;
  border-right-width: 0;
  border-left-color: #00a9ce;
  bottom: -7rem;
}
.popover.left .arrow + .popover-inner {
  border-right: 5rem solid #00a9ce;
}
div[datepicker],
div[data-uib-datepicker] {
  padding: 12rem;
  background-color: #fafafa;
  margin: 0 -1rem;
}
div[datepicker] > table,
div[data-uib-datepicker] > table {
  table-layout: fixed;
  background-color: transparent;
}
div[datepicker] > table .btn,
div[data-uib-datepicker] > table .btn {
  padding: 4rem 6rem;
}
div[datepicker] > table td,
div[data-uib-datepicker] > table td,
div[datepicker] > table th,
div[data-uib-datepicker] > table th {
  padding: 2rem 3rem;
}
div[datepicker] > table > thead .btn,
div[data-uib-datepicker] > table > thead .btn {
  border: none;
  font-weight: bold;
  color: #00a9ce;
}
div[datepicker] > table > thead .btn.btn-default,
div[data-uib-datepicker] > table > thead .btn.btn-default {
  background-color: #fafafa;
  background-image: none;
}
div[datepicker] > table > thead .btn.btn-default:hover,
div[data-uib-datepicker] > table > thead .btn.btn-default:hover {
  background-color: #fafafa;
  background-image: none;
}
div[datepicker] > table > thead .btn.btn-default strong,
div[data-uib-datepicker] > table > thead .btn.btn-default strong {
  font-size: 14rem;
}
div[datepicker] > table > thead .btn.btn-default:hover,
div[data-uib-datepicker] > table > thead .btn.btn-default:hover {
  color: #007f9b;
}
div[datepicker] > table > tbody .btn,
div[data-uib-datepicker] > table > tbody .btn {
  min-width: 30rem;
}
div[datepicker] > table > tbody .btn.btn-default,
div[data-uib-datepicker] > table > tbody .btn.btn-default {
  background-color: #fff;
  background-image: none;
}
div[datepicker] > table > tbody .btn.btn-info,
div[data-uib-datepicker] > table > tbody .btn.btn-info {
  color: #fff;
  background-color: #00a9ce;
  background-image: none;
}
div[datepicker] > table > tbody .btn.btn-info .text-info,
div[data-uib-datepicker] > table > tbody .btn.btn-info .text-info {
  color: #fff;
}
div[datepicker] > table > tbody .btn:hover,
div[data-uib-datepicker] > table > tbody .btn:hover,
div[datepicker] > table > tbody .btn.active,
div[data-uib-datepicker] > table > tbody .btn.active {
  border-color: #00a9ce;
  background-image: none;
}
bs-datepicker-container .bs-datepicker-head {
  background-color: #00a9ce !important;
}
bs-datepicker-container .bs-datepicker-body table td.week span {
  color: #00a9ce !important;
}
bs-datepicker-container .bs-datepicker-body table td span.selected {
  background-color: #00a9ce !important;
}
.fdx-user-panel,
.navbar-nav .fdx-user-panel {
  width: 260rem;
  right: 16rem;
  top: 47rem;
  left: auto;
  background-color: #fff;
}
.fdx-user-panel.popover.bottom > .arrow,
.navbar-nav .fdx-user-panel.popover.bottom > .arrow {
  left: auto;
  right: 17rem;
}
.fdx-user-panel .popover-content,
.navbar-nav .fdx-user-panel .popover-content {
  padding: 0;
  font-size: 14rem;
  line-height: 16rem;
}
.fdx-user-panel .popover-content > div.details,
.navbar-nav .fdx-user-panel .popover-content > div.details {
  padding: 12rem 20rem;
  background-color: #E5F4F8;
}
.fdx-user-panel .popover-content > div.details > span,
.navbar-nav .fdx-user-panel .popover-content > div.details > span {
  display: block;
}
.fdx-user-panel .popover-content > div.details > span:first-child,
.navbar-nav .fdx-user-panel .popover-content > div.details > span:first-child {
  font-size: 14rem;
  font-weight: bold;
}
.fdx-user-panel .popover-content > div.links,
.navbar-nav .fdx-user-panel .popover-content > div.links {
  padding: 12rem 20rem 20rem 20rem;
}
.fdx-user-panel .popover-content > div.links .btn-link,
.navbar-nav .fdx-user-panel .popover-content > div.links .btn-link {
  padding: 0;
  text-decoration: none;
  display: block;
}
.fdx-user-panel .popover-content > div.links > :last-child,
.navbar-nav .fdx-user-panel .popover-content > div.links > :last-child {
  margin-top: 14rem;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 5000;
}
.spinner.grey {
  background-color: #fcfcfc;
}
.spinner.modal-spinner {
  border-radius: 5rem;
}
.spinner .loading-text {
  position: absolute;
  text-align: center;
  left: 15rem;
  right: 15rem;
  top: 50%;
  margin-top: -47px;
}
img.loading {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
}
.drop-zone {
  border: 3rem dashed #999;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.85);
}
.modal-drop-zone.drop-zone {
  display: none;
  position: absolute;
  top: 60rem;
  right: 5rem;
  bottom: 73rem;
  left: 5rem;
}
.dragged-over-modal .modal-drop-zone.drop-zone {
  display: block;
}
.modal-drop-zone.drop-zone h1 {
  pointer-events: none;
  color: #666;
  text-align: center;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -20rem;
}
.about-formedix {
  text-align: center;
}
.about-formedix .ryze-logo {
  display: block;
  overflow: hidden;
  height: 39rem;
  text-indent: -9999px;
  margin: 30px auto 20px auto;
}
.about-formedix .info {
  margin: 10rem 0 0 0;
  padding-bottom: 10rem;
}
.about-formedix .info > p:last-child {
  margin-bottom: 0;
}
.about-formedix .version {
  margin: 0!important;
}
.about-formedix .oss {
  font-size: 12px;
}
#companyLogo {
  display: inline-block;
  overflow: hidden;
  width: 119rem;
  height: 32rem;
  background: transparent url(/images/ryze-logo-menu.png);
  text-indent: -9999rem;
  margin-top: 10rem;
  margin-left: 15rem;
}
#byCompanyLogo {
  display: inline-block;
  overflow: hidden;
  width: 85rem;
  height: 29rem;
  background: transparent url(/images/by-formedix.png);
  text-indent: -9999rem;
  margin-top: 10rem;
  margin-right: 15rem;
}
.avatar {
  border-radius: 50%;
  width: 32rem;
  height: 32rem;
}
.scroll-shadow::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity ease-out 0.5s;
  transition: opacity ease-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  pointer-events: none;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33000000', endColorstr='#00000000', GradientType=0);
}
.scroll-shadow.scrolling::after {
  opacity: 1;
}
.controls {
  position: absolute;
  top: 0;
  height: 58rem;
  left: 0;
  right: 0;
  padding: 10rem 15rem;
}
.controls input[type=text].filter {
  width: 200rem;
  display: inline-block;
  vertical-align: middle;
  border-radius: 3rem;
}
.controls > .controls-right {
  position: absolute;
  right: 0;
  top: 10rem;
}
.controls > *:not(:first-child),
.controls > .controls-right > *:not(:first-child) {
  margin-left: 10rem;
}
.editable-list .item {
  position: relative;
  clear: both;
  height: 38rem;
}
.editable-list .item > .cell {
  position: relative;
  float: left;
  border-bottom: 1rem solid #d3d3d3;
  min-height: 38rem;
}
.editable-list .item > .cell:first-child {
  width: 35%;
}
.editable-list .item > .cell:last-child {
  width: 65%;
  border-left: 1rem solid #d3d3d3;
}
.editable-list .item > .cell label.list-label {
  display: block;
  padding: 8rem 12rem;
  margin: 0;
  font-weight: bold;
  text-align: right;
}
.editable-list .item > .cell > .form-control,
.editable-list .item > .cell > .input-group,
.editable-list .item > .cell > .checkbox {
  position: absolute;
  top: -1rem;
  right: 0;
  left: -1rem;
}
.editable-list .item > .cell > .form-control,
.editable-list .item > .cell > .input-group > .form-control {
  border-color: transparent;
  background-color: transparent;
  -webkit-transition: none;
  transition: none;
}
.editable-list .item > .cell > .form-control:focus,
.editable-list .item > .cell > .input-group > .form-control:focus,
.editable-list .item > .cell > .form-control:hover,
.editable-list .item > .cell > .input-group > .form-control:hover {
  border-color: #00a9ce;
}
.editable-list .item > .cell > .form-control:focus,
.editable-list .item > .cell > .input-group > .form-control:focus {
  background-color: #e5f4f8;
}
.editable-list .item > .cell > .input-group > .form-control-static {
  margin-top: 1rem;
  margin-left: 1rem;
}
.editable-list .item > .cell > .input-group > .input-group-addon {
  border-radius: 0;
  border-left: none;
  border-color: transparent;
}
.editable-list .item > .cell > .checkbox {
  padding-left: 12rem / 2 + 1rem;
}
.editable-list .item > .cell > .checkbox input[type=checkbox] {
  margin-left: 0;
  margin-right: 5rem;
}
.editable-list .item > .cell > .radio-check-group {
  border: none;
}
.editable-list .item > .cell .form-control-static {
  padding: 8rem 6rem;
}
.editable-list .item:first-child > .cell {
  border-top: 1rem solid #d3d3d3;
}
.editable-table > tbody > tr.table-empty > td {
  padding: 9rem 12rem / 2 + 1rem;
}
.editable-table .form-control {
  background-color: transparent;
  -webkit-transition: none;
  transition: none;
}
.editable-table .form-control:not(:hover) {
  border-color: transparent;
}
.editable-table .form-control:focus {
  background-color: #e5f4f8;
}
.editable-table .form-control-static {
  line-height: 20rem;
  min-height: 30rem;
  padding: 9rem 12rem / 2 + 1rem;
}
.editable-table .input-group-addon {
  border: none;
  border-radius: 0rem;
}
.editable-table th.single-icon {
  width: 32rem;
}
.editable-table th.double-icon {
  width: 53rem;
  white-space: nowrap;
}
.editable-table th.triple-icon {
  width: 77rem;
  white-space: nowrap;
}
.editable-table .btn-bare {
  padding-left: 6rem;
  padding-right: 6rem;
}
.editable-table td.single-icon,
.editable-table td.double-icon,
.editable-table td.triple-icon {
  padding: 0 6rem;
}
.editable-table td.single-icon > .btn-bare,
.editable-table td.double-icon > .btn-bare,
.editable-table td.triple-icon > .btn-bare {
  padding-left: 0;
  padding-right: 0;
}
.editable-table td.single-icon > .btn-bare:not(:first-child),
.editable-table td.double-icon > .btn-bare:not(:first-child),
.editable-table td.triple-icon > .btn-bare:not(:first-child) {
  margin-left: 3rem;
}
.modal-body .table.editable-table > thead > tr > th:first-child,
.modal-body .table.editable-table .th-clone:first-child {
  padding-left: 15rem;
}
.modal-body .table.editable-table > thead > tr > th:last-child,
.modal-body .table.editable-table .th-clone:last-child {
  padding-right: 15rem;
}
.modal-body .table.editable-table > tbody > tr > td:first-child {
  padding-left: 8rem;
}
.modal-body .table.editable-table > tbody > tr > td:last-child.single-icon,
.modal-body .table.editable-table > tbody > tr > td:last-child.double-icon,
.modal-body .table.editable-table > tbody > tr > td:last-child.triple-icon {
  padding: 0 15rem 0 6rem;
}
.modal-body .table.editable-table > tbody > tr > td:last-child.single-icon {
  width: 41rem;
}
.modal-body .table.editable-table > tbody > tr > td:last-child.double-icon {
  width: 62rem;
}
.modal-body .table.editable-table > tbody > tr > td:last-child.triple-icon {
  width: 86rem;
}
.modal-body .table.editable-table > thead > tr > th:last-child th.single-icon,
.modal-body .table.editable-table .th-clone:last-child th.single-icon,
.modal-body .table.editable-table > tbody > tr > td:last-child th.single-icon {
  width: 41rem;
}
.modal-body .table.editable-table > thead > tr > th:last-child th.double-icon,
.modal-body .table.editable-table .th-clone:last-child th.double-icon,
.modal-body .table.editable-table > tbody > tr > td:last-child th.double-icon {
  width: 62rem;
}
.modal-body .table.editable-table > thead > tr > th:last-child th.triple-icon,
.modal-body .table.editable-table .th-clone:last-child th.triple-icon,
.modal-body .table.editable-table > tbody > tr > td:last-child th.triple-icon {
  width: 86rem;
}
.fdx-editable-translation .input-group-addon {
  padding-right: 7rem;
}
.fdx-editable-translation .input-group-addon > span {
  vertical-align: middle;
}
.fdx-editable-translation .input-group-addon > .btn-inline {
  margin-left: 12rem;
}
.plus-more {
  cursor: pointer;
  color: #00677d;
}
/**
  UI.Layout CSS
*************************************/
/**
* Icons
**/
/* Allow disabling of icons */
/* The last item can take up any amount of space. */
/* Make sure hidden elements are in fact not rendered. */
.stretch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
div[adapt=true] {
  overflow-y: auto;
}
.ui-splitbar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #ffffff;
  right: auto;
  position: absolute;
  z-index: 1;
}
.ui-layout-row > .ui-splitbar {
  height: 8rem;
  width: 100%;
  cursor: row-resize;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  overflow-y: hidden;
}
.ui-layout-row > .ui-splitbar > a {
  cursor: pointer;
  text-align: center;
  font-size: 16rem;
  color: #aaa;
}
.ui-layout-row > .ui-splitbar > a:nth-child(2) {
  margin-left: 3.5rem;
}
.ui-layout-column > .ui-splitbar {
  width: 8rem;
  height: 100%;
  cursor: col-resize;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: linear-gradient(to right, #fff 0%, #eee 100%);
  overflow-x: hidden;
}
.ui-layout-column > .ui-splitbar > a {
  cursor: pointer;
  text-align: center;
  font-size: 16rem;
  color: #aaa;
}
.ui-layout-column > .ui-splitbar > a:nth-child(2) {
  margin-top: 3.5rem;
}
.ui-splitbar-icon {
  width: 0;
  height: 0;
  display: inline-block;
}
.ui-splitbar-icon-up {
  border-left: 0.45em solid transparent;
  border-right: 0.45em solid transparent;
  border-bottom: 0.45em solid;
}
.ui-splitbar-icon-down {
  border-left: 0.45em solid transparent;
  border-right: 0.45em solid transparent;
  border-top: 0.45em solid;
  margin-right: 0.45em;
}
.ui-splitbar-icon-right {
  border-top: 0.45em solid transparent;
  border-bottom: 0.45em solid transparent;
  border-left: 0.45em solid;
}
.ui-splitbar-icon-left {
  border-top: 0.45em solid transparent;
  border-bottom: 0.45em solid transparent;
  border-right: 0.45em solid;
  margin-top: 0.45em;
}
.no-toggle .ui-splitbar-icon {
  display: none;
}
.ui-layout-hidden {
  display: none;
}
@media only screen and (max-device-width: 480px) {
  .no-mobile-toggle .ui-splitbar-icon {
    display: none;
  }
}
@media print {
  .ui-splitbar {
    display: none;
  }
  .stretch {
    position: relative;
  }
  .stretch.ui-layout-container:last-child {
    position: static;
    overflow: visible;
  }
}
.company-home-content {
  top: 0 !important;
  border-top: none !important;
}
.company-home-content-column {
  float: left;
  width: 40em;
}
.company-home-content-column .fdx-edit {
  margin-left: 10rem;
  cursor: pointer;
}
.company-home-content-column .fdx-edit:hover {
  color: #00a9ce;
}
.company-home-content-column .existing-company-logo {
  position: absolute;
  cursor: pointer;
}
.company-home-content-column .new-company-logo {
  position: absolute;
  width: 127rem;
  height: 127rem;
  border: 1rem solid #d3d3d3;
  background-color: #f6f6f6;
  cursor: pointer;
}
.company-home-content-column .new-company-logo .fdx-add-user {
  margin: auto;
  font-size: 100rem;
  padding: 10rem 14rem;
  color: #d3d3d3;
}
.company-code-group {
  display: none;
}
/*
* styles/less/signin.less
*/
/*1032px;*/
#signInForm .sign-in {
  padding-top: 10rem;
}
.navbar-signIn {
  margin-bottom: 0;
  border-radius: 0;
}
.signIn {
  background-color: #00a9ce;
  height: 100%;
}
.signIn-content-wrapper {
  width: 100%;
  height: 100%;
  font-family: "interstate", "PT Sans", "interstate", Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  padding-top: 125rem;
  padding-bottom: 125rem;
}
@media (max-width: 882px) {
  .signIn-content-wrapper {
    padding-top: 50rem;
  }
}
.signIn-content-wrapper .marketing-wrapper {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10%;
}
@media (max-width: 1200px) {
  .signIn-content-wrapper .marketing-wrapper {
    margin-right: 20rem;
    margin-left: 20rem;
  }
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper {
  text-align: left;
  width: 520rem;
}
@media (max-width: 480px) {
  .signIn-content-wrapper .marketing-wrapper .message-wrapper {
    width: auto;
  }
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper #logo {
  height: 148rem;
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper h1 {
  font-size: 42rem;
  font-weight: normal;
  margin: 0 0 25rem 0;
  text-transform: none;
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper span {
  display: block;
  line-height: 32rem;
}
.signIn-content-wrapper .marketing-wrapper .message-wrapper span.upper {
  font-size: 26rem;
}
.signIn-content-wrapper .marketing-wrapper #discover-btn {
  border-radius: 15rem;
  color: #666;
  font-weight: bold;
  margin-top: 10rem;
}
.signIn-content-wrapper .signIn-wrapper {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}
@media (max-width: 882px) {
  .signIn-content-wrapper .signIn-wrapper {
    width: 100%;
    padding-top: 50rem;
  }
}
.signIn-content-wrapper .signIn-wrapper .signOut-reason {
  color: #fff;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 30rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper {
  border-radius: 5rem;
  padding: 20rem;
  width: 520rem;
  background-color: #fff;
  color: #333333;
}
@media (max-width: 882px) {
  .signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper {
    width: 100%;
    border-radius: 0;
  }
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper h1 {
  margin-top: 10rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper label {
  font-size: 16rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .reset-password-button,
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .register-button {
  font-size: 14rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .btn-link {
  padding: 10rem 5rem 5rem 5rem;
}
.signIn-content-wrapper .signIn-wrapper .signIn-form-wrapper .register-button {
  float: right;
}
#pageFooter {
  background-color: #00a9ce;
  color: #fff;
  text-align: left;
  font-size: 12rem;
  position: fixed;
  bottom: 0rem;
  width: 100%;
}
#pageFooter #footerWrapper {
  padding-top: 10rem;
  padding-bottom: 10rem;
  width: calc(10% + 520rem + 520rem);
  margin: auto;
}
@media (max-width: 1200px) {
  #pageFooter #footerWrapper {
    width: 100%;
    padding-bottom: 30rem;
  }
}
#pageFooter #footerWrapper #pageFooterLinks {
  float: left;
  list-style-type: none;
  padding: 0rem;
  margin: 0rem;
  font-size: 15rem;
  text-align: left;
}
#pageFooter #footerWrapper #pageFooterLinks li {
  margin-bottom: 0.5em;
}
#pageFooter #footerWrapper #pageFooterLinks a {
  color: #fff;
  text-decoration: none;
}
#pageFooter #footerWrapper #pageFooterLinks a:hover,
#pageFooter #footerWrapper #pageFooterLinks a:focus,
#pageFooter #footerWrapper #pageFooterLinks a:active,
#pageFooter #footerWrapper #pageFooterLinks a.active {
  color: #fff;
}
#pageFooter #footerWrapper #pageFooterSocialButtons {
  float: right;
}
#pageFooter #footerWrapper #pageFooterSocialButtons img {
  height: 35rem;
  width: 35rem;
}
#pageFooter #footerWrapper .fdxicon-regular {
  margin-left: 10rem;
  padding-bottom: 30rem;
  font-size: 32rem;
}
@media only screen and (min-width: 0) and (max-width: 768px) {
  /*
* styles/less/signin-media.less
*/
  #signIn {
    padding: 0;
  }
  #signIn #wrapper {
    width: auto;
    min-width: 0;
  }
  #signIn #signInContent {
    border-radius: 0;
    box-shadow: none;
  }
  #signIn #signInControl {
    width: auto;
    float: none;
  }
  #signIn #cta {
    border-radius: 0;
  }
  #signIn #marketingWrapper,
  #signIn #newMarketing,
  #signIn #oldMarketing,
  #signIn #returningUserBanner,
  #signIn #newUserBanner {
    position: static;
    width: 100%;
    border-radius: 0;
  }
  #signIn #pageFooter {
    padding: 10rem 10rem 0;
  }
  #signOutReason {
    position: static;
    padding: 20rem 15rem;
    color: #00a9ce;
    font-weight: bold;
    text-align: center;
  }
}
.main-layout {
  min-width: 1024rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  overflow-x: auto;
}
.main-layout .main-layout-nav-left {
  position: absolute;
  z-index: 1011;
  top: 0;
  bottom: 0;
  left: 0;
  width: 56rem;
  background-color: #00a9ce;
  box-shadow: 5rem 0 15rem 0 rgba(0, 0, 0, 0.1);
}
.main-layout .main-layout-nav-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 56rem;
  height: 54rem;
  padding: 0 8rem 0 0;
  z-index: 1005;
}
.main-layout .main-layout-nav-top .navbar-right > li:not(:first-child) {
  border-left: 1rem solid #e5e5e5;
}
.main-layout .main-layout-content {
  position: absolute;
  top: 0;
  left: 85rem;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #f5f6fa;
  border-left: 1px solid #d3d3d3;
}
.main-layout .main-layout-content .main-content-scrollable {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
}
.main-layout.menu-expanded .main-layout-content,
.main-layout.menu-expanded .main-layout-nav-top {
  left: 100rem;
}
#companyButton {
  padding-right: 25rem;
  padding-left: 25rem;
}
#companyButton.no-link {
  cursor: default;
  pointer-events: none;
}
.user-panel-toggle {
  right: 16rem;
}
.user-panel-toggle > span.avatar {
  display: inline-block;
  vertical-align: middle;
}
.user-panel-toggle > span.name {
  margin-right: 20rem;
}
.user-panel-toggle > span:not(:first-child) {
  margin-left: 10rem;
}
.user-panel-toggle .fdx-triangle-s {
  font-size: 10rem;
}
.user-panel-toggle .caret {
  margin: 0 8rem;
  border-width: 5rem 5rem 0 5rem;
}
.fdx-central-scroll.central-scroll-wrapper::-webkit-scrollbar {
  height: 12rem;
}
.fdx-central-scroll.central-scroll-puppet {
  overflow-x: hidden !important;
}
::-webkit-scrollbar {
  width: 8rem;
  /* for vertical scrollbars */
  height: 8rem;
  /* for horizontal scrollbars */
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4rem;
}
::selection {
  background: #33A1CB;
  /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #33A1CB;
  /* Gecko Browsers */
}
.main-layout-nav-left .formedix-on-icon {
  position: absolute;
  top: 50%;
  left: 12rem;
  margin-top: -16rem;
  width: 32rem;
  height: 32rem;
  background: url(/images/ryze-logo-menu.png) no-repeat right;
}
.main-layout-nav-left .nav-menu-container {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main-layout-nav-left .nav-menu-container .nav-menu-logo {
  position: absolute;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  right: 0;
  left: 0;
  height: 54rem;
  background-color: #fff;
}
.main-layout-nav-left .nav-menu-container .nav-menu-logo-button {
  position: absolute;
  left: 190rem;
  top: 17rem;
  background-color: #fff;
  color: #999999;
}
.main-layout-nav-left .nav-menu-container .nav-menu-main {
  position: absolute;
  overflow-y: auto;
  overflow-x: hidden;
  top: 60rem;
  right: 0;
  bottom: 104rem;
  left: 0;
  font-size: 16rem;
}
.main-layout-nav-left .nav-menu-container .nav-menu-bottom {
  position: absolute;
  right: 0;
  bottom: 8rem;
  left: 0;
}
.main-layout-nav-left .nav-menu-container .nav-menu-bottom .icon-circled,
.main-layout-nav-left .nav-menu-container .nav-menu-bottom-avatar .avatar {
  position: absolute;
  top: 6rem;
  left: 10rem;
  border: 2rem solid white;
  border-radius: 50%;
  width: 36rem;
  height: 36rem;
  background-color: white;
}
.main-layout-nav-left .nav-menu-container .nav-menu-bottom .icon-circled:hover,
.main-layout-nav-left .nav-menu-container .nav-menu-bottom-avatar .avatar:hover {
  border-color: #00677d;
}
.main-layout-nav-left .nav-menu-container .nav-menu-group button:focus {
  outline: 0;
}
.nav-left-toggle {
  position: absolute;
  z-index: 1011;
  top: 21rem;
  left: 55rem;
  border: 1rem solid #e5e5e5;
  border-bottom: none;
  background-color: #fff;
  border-top-right-radius: 3rem;
  border-top-left-radius: 3rem;
  color: #999;
  padding: 8rem;
}
.nav-left-toggle > span {
  display: block;
}
.main-layout.menu-expanded .nav-left-toggle {
  left: 229rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out,
.main-layout.menu-expanded .main-layout-nav-left {
  width: 230rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out li.nav-menu-item .text,
.main-layout.menu-expanded .main-layout-nav-left li.nav-menu-item .text {
  display: inline;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 1rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out .icon-badge:not(.transparent),
.main-layout.menu-expanded .main-layout-nav-left .icon-badge:not(.transparent) {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out .formedix-on-icon,
.main-layout.menu-expanded .main-layout-nav-left .formedix-on-icon {
  width: 125rem;
  height: 32rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left:not(.slide-out) {
  width: 56rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left:not(.slide-out) .icon-badge {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out {
  z-index: 1012;
  -webkit-transition: width ease-out 0.15s;
  transition: width ease-out 0.15s;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out .formedix-on-icon {
  -webkit-transition: width ease-out 0.15s;
  transition: width ease-out 0.15s;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out:not(.slide-in) .icon-badge:not(.transparent) {
  opacity: 1;
  -webkit-transition: opacity 0s 0.15s;
  transition: opacity 0s 0.15s;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out.slide-in {
  width: 56rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out.slide-in .formedix-on-icon {
  width: 32rem;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left.slide-out.slide-in .icon-badge {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left:not(.slide-out) li.nav-menu-item > a.notify .circle-menu.icon-circled {
  background-color: #00677d;
}
.main-layout:not(.menu-expanded) .main-layout-nav-left:not(.slide-out) li.nav-menu-item > a.notify .circle-menu.icon-circled > span {
  color: #fff;
}
.fdx-sub-menu-popup-container {
  min-width: 250rem;
  color: #00a9ce;
}
.fdx-sub-menu-popup-item {
  padding: 10rem;
}
.fdx-sub-menu-popup-item-content .details {
  margin-bottom: 10rem;
}
.fdx-sub-menu-popup-item-content .details span {
  display: block;
  font-size: 16rem;
  font-weight: bold;
}
.fdx-sub-menu-popup-item-content button {
  display: block;
  color: #00a9ce;
  background-color: #fff;
  margin: 8rem 0rem;
}
.fdx-sub-menu-popup-item-content button:hover {
  color: #00677d;
}
.fdx-sub-menu-popup-item-content button.btn-primary {
  color: white;
  background-color: #00a9ce;
}
.fdx-sub-menu-popup-item-content a {
  text-decoration: none;
}
div .app-header {
  display: flex;
  flex-wrap: nowrap;
  height: 125rem;
  background-color: #3ba9cf;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
div .app-header-title {
  flex: 0 1 auto;
  height: 125rem;
  background-color: #fff;
  background-image: url(/images/header-background.png);
  background-repeat: no-repeat;
  background-position: bottom 0 right -1px;
  padding-right: 202rem;
  background-size: contain;
}
div .app-header-title h1 {
  display: inline-block;
  margin: 0;
  padding: 51.5rem 62.5rem;
  max-width: 450rem;
  min-width: 330rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div .app-header-title img {
  max-height: 62.5rem;
  margin: 31.25rem 135rem;
}
div .app-header-controls {
  flex: 1;
  height: 125rem;
  text-align: right;
  padding-right: 50rem;
}
div .app-header-controls .controls-right {
  margin: 43.5rem 0;
}
div .app-header-shortcuts {
  display: flex;
  overflow: auto;
}
div .app-header-shortcuts-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-grow: 1;
  padding: 43.5rem 13rem;
}
div .app-header-shortcuts-link .fdxicon-regular {
  opacity: 0.5;
  color: #fff;
  font-size: 23rem;
  vertical-align: top;
  margin: 6rem 15rem 6rem 6rem;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
div .app-header-shortcuts-link .action-text {
  color: #fff;
  display: inline-block;
  font-size: 12rem;
  max-width: 67rem;
  overflow: hidden;
}
div .app-header-shortcuts-link .action-text.change-request,
div .app-header-shortcuts-link .action-text.admin {
  max-width: 90rem;
}
div .app-header-shortcuts-link:hover .fdxicon-regular,
div .app-header-shortcuts-link.selected .fdxicon-regular {
  opacity: 1;
}
div .app-header-shortcuts-link.selected {
  font-weight: bold;
}
div .app-header-shortcuts-help {
  position: absolute;
  right: 45rem;
  top: 18rem;
  color: #fff;
  opacity: 0.6;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
div .app-header-shortcuts-help:hover {
  color: #fff;
  opacity: 1;
}
div .app-header-tabs {
  display: flex;
}
div .app-header-tabs-tab {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 62.5rem 10rem 0;
}
div .app-header-tabs-tab .fdxicon-regular {
  opacity: 0.5;
  color: #fff;
  font-size: 15rem;
  vertical-align: top;
  margin: 6rem;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
div .app-header-tabs-tab .action-text {
  color: #fff;
  display: inline-block;
  font-size: 14rem;
  overflow: hidden;
  margin: 3rem 0;
}
div .app-header-tabs-tab:hover .fdxicon-regular,
div .app-header-tabs-tab.selected .fdxicon-regular,
div .app-header-tabs-tab.active .fdxicon-regular {
  opacity: 1;
}
div .app-header-tabs-tab.selected,
div .app-header-tabs-tab.active {
  font-weight: bold;
}
div .app-header fdx-help .fdx-help-container a {
  color: #fff;
  opacity: 0.6;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
div .app-header fdx-help .fdx-help-container a:hover {
  color: #fff;
  opacity: 1;
}
div .app-content {
  position: absolute;
  top: 125rem;
  left: 0;
  right: 0;
  bottom: 0;
  transition: top 0.3s;
  overflow: auto;
  background-color: #fcfcfc;
  border-top: 1rem solid #d3d3d3;
}
div .app-content.integrated-nav-tabs-content .controls {
  top: 0;
}
div .app-content .app-content-header {
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
  right: 0;
  height: 54rem;
  padding: 0 20rem;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
div .app-content .app-content-header .controls {
  top: 0;
  left: 20rem;
  right: 20rem;
  padding: 10rem 0;
}
div .app-content .app-content-content {
  position: absolute;
  top: 54rem;
  left: 0;
  right: 0;
  bottom: 0;
  transition: top 0.3s;
  overflow: auto;
  background-color: #fcfcfc;
  border-top: 1rem solid #d3d3d3;
}
div .small-header.app-header {
  height: 55rem;
}
div .small-header.app-header .app-header-title {
  height: 55rem;
  padding-right: 88.88rem;
  background-size: 90.88rem;
}
div .small-header.app-header .app-header-title h1 {
  padding: 16.5rem 62.5rem;
  width: 220rem;
}
div .small-header.app-header .app-header-title img {
  max-height: 27.5rem;
  margin: 13.75rem 65rem;
}
div .small-header.app-header .app-header-controls {
  height: 55rem;
}
div .small-header.app-header .app-header-controls .controls-right {
  margin: 8.5rem 0;
}
div .small-header.app-header .app-header-shortcuts-link {
  padding: 8.5rem 15rem;
}
div .small-header.app-header .app-header-tabs-tab {
  padding: 15.5rem 10rem 0;
}
div .small-header.app-content {
  top: 54rem;
}
div .medium-header.app-header {
  height: 96rem;
}
div .medium-header.app-header .app-header-title {
  height: 96rem;
  padding-right: 155.136rem;
  background-size: 160.136rem;
}
div .medium-header.app-header .app-header-title h1 {
  padding: 37rem 62.5rem;
  width: 384rem;
}
div .medium-header.app-header .app-header-title img {
  max-height: 48rem;
  margin: 24rem 106rem;
}
div .medium-header.app-header .app-header-controls {
  height: 96rem;
}
div .medium-header.app-header .app-header-controls .controls-right {
  margin: 29rem 0;
}
div .medium-header.app-header .app-header-shortcuts-link {
  padding: 29rem 15rem;
}
div .medium-header.app-header .app-header-tabs-tab {
  padding: 48rem 10rem 0;
}
div .medium-header.app-content {
  top: 95rem;
}
.formations-form {
  display: inline-block;
  margin-left: 15rem;
}
.formations-form > fieldset {
  padding: 0;
}
.formations-form > fieldset label {
  font-weight: bold;
}
.formations-form > fieldset .input-group {
  width: 150rem;
}
.formations-log-dropdown {
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-right: 14rem;
  width: 200rem;
}
.formations-log-dropdown label {
  font-weight: bold;
  padding-top: 26rem / 4;
}
#adminFormationsLog .table-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 58rem;
  left: 0;
  overflow: hidden;
}
#adminFormationsLog .pagination-container {
  position: absolute;
  right: 20rem;
  left: 20rem;
  bottom: 10rem;
  height: 38rem;
  padding: 0 20rem 10rem;
  overflow: hidden;
}
th.user-status,
.th-clone.user-status {
  width: 56rem;
  text-align: center;
}
th.user-status > .fdx-flag,
.th-clone.user-status > .fdx-flag {
  margin-left: 8rem;
}
th.user-avatar,
.th-clone.user-avatar,
th.plugin-avatar,
.th-clone.plugin-avatar {
  width: 56rem;
}
th.user-avatar:first-child,
.th-clone.user-avatar:first-child,
th.plugin-avatar:first-child,
.th-clone.plugin-avatar:first-child {
  width: 64rem;
}
td.edit-user-menu {
  padding-left: 0 !important;
}
.sso-user-text-control {
  display: inline-block;
  max-width: 60%;
}
.company-home-content {
  padding: 0 15rem;
}
.company-home-content dl {
  clear: both;
}
.company-home-content dl dt,
.company-home-content dl dd {
  padding: 6rem 0;
  float: left;
}
.company-home-content dl dt {
  text-align: left;
  width: 25%;
  max-width: 400rem;
  clear: left;
  margin-left: 5rem;
  padding: 6rem 0;
  float: left;
}
.company-home-content .dropdown {
  float: right;
  padding-right: 16rem;
  top: 27rem;
}
.company-home-content #ssoSettings {
  float: left;
  clear: both;
}
.avatar-preview {
  text-align: center;
  padding: 15rem;
}
.avatar-preview .preview {
  margin-top: 10rem;
  position: relative;
}
.avatar-preview button {
  margin-bottom: 10rem;
}
.avatar-preview > span:last-child {
  margin-bottom: 10rem;
}
.avatar-preview img {
  border: 1rem solid #d3d3d3;
}
.avatar-preview img.full-size {
  width: 128rem;
  height: 128rem;
}
.avatar-preview img.avatar-size {
  position: absolute;
  left: 50%;
  margin-left: 128rem / 2 + 10rem;
  border-radius: 50%;
  width: 32rem;
  height: 32rem;
}
#adminCompanyLogo .avatar-preview {
  padding: 0;
}
#adminCompanyLogo .avatar-preview img.avatar-size {
  top: 0;
}
#fdxManager .fdx-smart-table .fdx-smart-table-controls {
  padding: 10rem;
  box-sizing: content-box;
  background-color: white;
}
#fdxManager .fdx-smart-table .fdx-smart-table-controls #change-dates-info {
  line-height: 38rem;
}
#fdxManager .fdx-smart-table .fdx-smart-table-controls #downloadCompanyMetrics {
  margin-right: 5rem;
}
#fdxManager .fdx-smart-table .fdx-smart-table-controls #downloadCompanyMetrics .fdx-download {
  top: 3rem;
}
#fdxManager .fdx-smart-table .fdx-smart-table-controls .fdx-circle-add {
  top: 3rem;
}
#fdxManager .fdx-smart-table .fdx-smart-table-wrapper {
  margin-top: auto;
}
#fdxManager .fdx-smart-table td,
#fdxManager .fdx-smart-table th {
  border-left: none;
  border-right: none;
}
#fdxManager .fdx-smart-table th:first-of-type,
#fdxManager .fdx-smart-table th:last-of-type {
  width: 1%;
  white-space: nowrap;
}
#fdxManager .fdx-smart-table tr:nth-child(odd) td {
  background-color: #fff;
}
#fdxManager .fdx-smart-table tr td .action-buttons-cell {
  text-align: right;
  white-space: nowrap;
}
#fdxManager .fdx-smart-table tr td .action-buttons-cell .action-button {
  cursor: pointer;
  padding: 0 3rem 0 3rem;
}
#fdxManager .fdx-manager-breadcrumbs {
  border-bottom: 1rem solid #ddd;
}
#fdxManager .fdx-manager-breadcrumbs .companyNameBreadcrumb {
  cursor: auto;
}
#fdxManager .fdx-manager-breadcrumbs .companyNameBreadcrumb:hover {
  color: #444;
}
#fdxManagerSubscriptionUser .fdx-smart-table table {
  border: 1rem solid #ddd;
}
#fdxManagerSubscriptionUser .fdx-smart-table td,
#fdxManagerSubscriptionUser .fdx-smart-table th {
  border-left: none;
  border-right: none;
}
#fdxManagerSubscriptionUser .fdx-smart-table th:first-of-type {
  width: 1%;
  white-space: nowrap;
}
/*
* styles/less/reset-password.less
*/
.singlePage {
  background-color: #00a9ce;
  height: 100%;
}
.singlePage .container {
  margin: 10px auto 30px;
  max-width: 860px;
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
  color: #333333;
}
.singlePage #logo {
  height: 148px;
  display: block;
  margin: 30px auto 0px;
}
.singlePage .header h2 {
  position: relative;
  padding: 5px 20px;
}
.singlePage #singlePageContent {
  position: relative;
}
.singlePage .padd {
  padding: 0 20px 50px 20px;
  margin: 1em 0 0 0;
}
.singlePage form {
  margin: 0;
  padding: 0;
}
.singlePage .agreement {
  margin-top: -10px;
}
.singlePage form .form-buttons {
  padding-right: 3px;
}
.scrollable-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.padding-large {
  padding: 20rem;
}
.padding-base {
  padding: 15rem;
}
.padding-small {
  padding: 10rem;
}
.card {
  background-color: #fff;
}
.card .card-header {
  padding: 10rem 10rem;
}
.card .card-body {
  border: 1rem solid #ddd;
  border-radius: 5rem;
  padding: 10rem 10rem;
  position: relative;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
.not-selectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
ul.clear {
  margin: 0;
  padding: 0;
}
ul.clear > li {
  list-style-type: none;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.text-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.margin-bottom-5 {
  margin-bottom: 5rem;
}
.margin-bottom-10 {
  margin-bottom: 10rem;
}
.margin-bottom-15 {
  margin-bottom: 15rem;
}
.margin-right-5 {
  margin-right: 5rem;
}
.margin-left-5 {
  margin-left: 5rem;
}
.row.margin-bottom {
  margin-bottom: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.brackets:before {
  content: '(';
}
.brackets:after {
  content: ')';
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  table.visible-xs.visible-sm {
    display: table;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xs.visible-md {
    display: block !important;
  }
  table.visible-xs.visible-md {
    display: table;
  }
  tr.visible-xs.visible-md {
    display: table-row !important;
  }
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
  table.visible-xs.visible-lg {
    display: table;
  }
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  table.visible-sm.visible-xs {
    display: table;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-sm.visible-md {
    display: block !important;
  }
  table.visible-sm.visible-md {
    display: table;
  }
  tr.visible-sm.visible-md {
    display: table-row !important;
  }
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
  table.visible-sm.visible-lg {
    display: table;
  }
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  table.visible-md.visible-xs {
    display: table;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md.visible-sm {
    display: block !important;
  }
  table.visible-md.visible-sm {
    display: table;
  }
  tr.visible-md.visible-sm {
    display: table-row !important;
  }
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-md.visible-lg {
    display: block !important;
  }
  table.visible-md.visible-lg {
    display: table;
  }
  tr.visible-md.visible-lg {
    display: table-row !important;
  }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  table.visible-lg.visible-xs {
    display: table;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
  table.visible-lg.visible-sm {
    display: table;
  }
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg.visible-md {
    display: block !important;
  }
  table.visible-lg.visible-md {
    display: table;
  }
  tr.visible-lg.visible-md {
    display: table-row !important;
  }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
.hidden-xs {
  display: block !important;
}
table.hidden-xs {
  display: table;
}
tr.hidden-xs {
  display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-xs,
  tr.hidden-xs,
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}
.hidden-sm {
  display: block !important;
}
table.hidden-sm {
  display: table;
}
tr.hidden-sm {
  display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}
.hidden-md {
  display: block !important;
}
table.hidden-md {
  display: table;
}
tr.hidden-md {
  display: table-row !important;
}
th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md,
  tr.hidden-md,
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}
.hidden-lg {
  display: block !important;
}
table.hidden-lg {
  display: table;
}
tr.hidden-lg {
  display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg,
  tr.hidden-lg,
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}

