/* Not really sure why, but the inverse version has a bigger gap */
.grow-from-left-enter {
  transform: scale(0);
  transform-origin: 0 0;
  transition: transform 0.15s cubic-bezier(0.5, 1.8, 0.9, 0.8); }
  .grow-from-left-enter.grow-from-left-enter-active {
    transform: scale(1); }

.grow-from-left-leave {
  transform: scale(1);
  transform-origin: 0 0;
  transition: transform 0.15s ease-out; }
  .grow-from-left-leave.grow-from-left-leave-active {
    transform: scale(0); }

.grow-from-right-enter {
  transform: scale(0);
  transform-origin: 100% 0;
  transition: transform 0.15s cubic-bezier(0.5, 1.8, 0.9, 0.8); }
  .grow-from-right-enter.grow-from-right-enter-active {
    transform: scale(1); }

.grow-from-right-leave {
  transform: scale(1);
  transform-origin: 100% 0;
  transition: transform 0.15s ease-out; }
  .grow-from-right-leave.grow-from-right-leave-active {
    transform: scale(0); }

.grow-from-center-enter {
  transform: scale(0);
  transform-origin: 50% 0;
  transition: transform 0.15s cubic-bezier(0.5, 1.8, 0.9, 0.8); }
  .grow-from-center-enter.grow-from-center-enter-active {
    transform: scale(1); }

.grow-from-center-leave {
  transform: scale(1);
  transform-origin: 50% 0;
  transition: transform 0.15s ease-out; }
  .grow-from-center-leave.grow-from-center-leave-active {
    transform: scale(0); }

.grow-from-up-left-enter {
  transform: scale(0);
  transform-origin: 0 100%;
  transition: transform 0.15s cubic-bezier(0.5, 1.8, 0.9, 0.8); }
  .grow-from-up-left-enter.grow-from-up-left-enter-active {
    transform: scale(1); }

.grow-from-up-left-leave {
  transform: scale(1);
  transform-origin: 0 100%;
  transition: transform 0.15s ease-out; }
  .grow-from-up-left-leave.grow-from-up-left-leave-active {
    transform: scale(0); }

.grow-from-up-center-enter {
  transform: scale(0);
  transform-origin: 50% 100%;
  transition: transform 0.15s cubic-bezier(0.5, 1.8, 0.9, 0.8); }
  .grow-from-up-center-enter.grow-from-up-center-enter-active {
    transform: scale(1); }

.grow-from-up-center-leave {
  transform: scale(1);
  transform-origin: 50% 100%;
  transition: transform 0.15s ease-out; }
  .grow-from-up-center-leave.grow-from-up-center-leave-active {
    transform: scale(0); }

.grow-from-up-right-enter {
  transform: scale(0);
  transform-origin: 100% 100%;
  transition: transform 0.15s cubic-bezier(0.5, 1.8, 0.9, 0.8); }
  .grow-from-up-right-enter.grow-from-up-right-enter-active {
    transform: scale(1); }

.grow-from-up-right-leave {
  transform: scale(1);
  transform-origin: 100% 100%;
  transition: transform 0.15s ease-out; }
  .grow-from-up-right-leave.grow-from-up-right-leave-active {
    transform: scale(0); }

.dd-menu {
  display: inline-block;
  position: relative; }
  .dd-menu.dd-menu-center .dd-menu-items {
    left: 50%;
    transform: translateX(-50%); }
  .dd-menu.dd-menu-left .dd-menu-items {
    left: 0; }
    .dd-menu.dd-menu-left .dd-menu-items [class^='nested-']:not(.nested-reverse) > span {
      right: 100%;
      padding-right: 0.5em; }
    .dd-menu.dd-menu-left .dd-menu-items .nested-reverse > span {
      left: 100%;
      padding-left: 0.5em; }
  .dd-menu.dd-menu-left.dd-menu-inverse .dd-menu-items [class^='nested-']:not(.nested-reverse) > span {
    right: 100%;
    padding-right: 0.3em; }
  .dd-menu.dd-menu-left.dd-menu-inverse .dd-menu-items .nested-reverse > span {
    left: 100%;
    padding-left: 0.3em; }
  .dd-menu.dd-menu-right .dd-menu-items {
    right: 0; }
    .dd-menu.dd-menu-right .dd-menu-items [class^='nested-']:not(.nested-reverse) > span {
      left: 100%;
      padding-left: 0.5em; }
    .dd-menu.dd-menu-right .dd-menu-items .nested-reverse > span {
      right: 100%;
      padding-right: 0.5em; }
  .dd-menu.dd-menu-right.dd-menu-inverse .dd-menu-items [class^='nested-']:not(.nested-reverse) > span {
    left: 100%;
    padding-left: 0.3em; }
  .dd-menu.dd-menu-right.dd-menu-inverse .dd-menu-items .nested-reverse > span {
    right: 100%;
    padding-right: 0.3em; }
  .dd-menu.dd-menu-sm .dd-menu-items {
    width: 150px; }
  .dd-menu.dd-menu-md .dd-menu-items {
    width: 300px; }
  .dd-menu.dd-menu-lg .dd-menu-items {
    width: 450px; }
  .dd-menu.dd-menu-xl .dd-menu-items {
    width: 600px; }
  .dd-menu .dd-menu-items {
    position: absolute;
    z-index: 7;
    margin: 0.5em 0 0 0; }
    .dd-menu .dd-menu-items.dd-items-upwards {
      bottom: 100%;
      margin: 0 0 0.5em; }
    .dd-menu .dd-menu-items ul, .dd-menu .dd-menu-items ol {
      list-style: none;
      padding: 0;
      margin: 0;
      color: #000;
      background-color: #fefefe;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.29); }
      .dd-menu .dd-menu-items ul.dd-items-right li > *, .dd-menu .dd-menu-items ol.dd-items-right li > * {
        text-align: right; }
      .dd-menu .dd-menu-items ul.dd-items-left li > *, .dd-menu .dd-menu-items ol.dd-items-left li > * {
        text-align: left; }
      .dd-menu .dd-menu-items ul.dd-items-center li > *, .dd-menu .dd-menu-items ol.dd-items-center li > * {
        text-align: center; }
      .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
      .dd-menu .dd-menu-items ul li > *:focus, .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
      .dd-menu .dd-menu-items ol li > *:focus {
        color: #000;
        background-color: #bdc3c7;
        outline: none; }
      .dd-menu .dd-menu-items ul li > *:not(.dd-item-ignore), .dd-menu .dd-menu-items ol li > *:not(.dd-item-ignore) {
        display: block;
        width: auto;
        min-width: 100%;
        padding: 1em 1.5em;
        font-family: Roboto, sans-serif;
        white-space: pre;
        color: inherit;
        text-decoration: none;
        font-size: inherit; }
      .dd-menu .dd-menu-items ul li > button, .dd-menu .dd-menu-items ol li > button {
        border: none;
        background: transparent; }
  .dd-menu.dd-menu-inverse .dd-menu-items ul, .dd-menu.dd-menu-inverse .dd-menu-items ol {
    color: #fff;
    background-color: #2c3e50; }
    .dd-menu.dd-menu-inverse .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
    .dd-menu.dd-menu-inverse .dd-menu-items ul li > *:focus, .dd-menu.dd-menu-inverse .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
    .dd-menu.dd-menu-inverse .dd-menu-items ol li > *:focus {
      color: #fff;
      background-color: #34495e; }
  .dd-menu.dd-menu-inverse [role="separator"], .dd-menu.dd-menu-inverse .separator {
    background-color: #45595e; }
  .dd-menu [role="separator"], .dd-menu .separator {
    content: '';
    display: block;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0.5em 0 0.5em 0; }
  .dd-menu .dd-items-upwards li.nested-dd-menu > span {
    bottom: 0;
    top: initial; }
  .dd-menu li.nested-dd-menu {
    position: relative; }
    .dd-menu li.nested-dd-menu > span {
      position: absolute;
      top: 0; }

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.Select input::-ms-clear {
  display: none !important;
}
.Select input::-ms-reveal {
  display: none !important;
}
.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}
.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.Select.is-focused > .Select-control {
  background: #fff;
}
.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}
.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.Select-control > *:last-child {
  padding-right: 5px;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}
.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

.Notification__icon___GPDHD {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding-top: 10px;
  box-sizing: border-box;
  width: 30px;
  text-align: center; }

.Notification__content___2i_Va {
  border-radius: 0 2px 2px 0; }

.Notification__item___1d3Zz, .Notification__item--message___2JYsT, .Notification__item--btnBar___1t7Wd {
  padding: 10px;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-font-smoothing: antialiased; }
  .Notification__item--message___2JYsT {
    font-size: 0.9rem;
    max-height: 150px;
    overflow-y: auto;
    border-top: none; }
    .Notification__item--message___2JYsT p:last-child {
      margin-bottom: 0; }
  .Notification__item--btnBar___1t7Wd {
    margin-top: 10px;
    padding: 0; }

.Notification__actionBtn___3o--x {
  box-sizing: border-box;
  background: none;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  text-shadow: none;
  cursor: pointer;
  display: inline-block;
  width: 50%;
  height: 30px;
  line-height: 30px;
  text-align: center; }
  .Notification__actionBtn___3o--x:hover {
    background: none; }
  .Notification__actionBtn___3o--x:last-child {
    border-right: none; }
  .Notification__actionBtn___3o--x i {
    margin-right: 7px; }

.Notification__close-all___3YIP0, .Notification__has-close-all--noDismiss___3oZHJ .Notification__close-all___3YIP0 {
  position: absolute;
  top: 7px;
  right: 38px;
  background: none;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  text-shadow: none;
  padding: 1px 5px;
  border-radius: 3px;
  cursor: pointer; }
  .Notification__close-all___3YIP0:hover {
    background: none; }

.Notification__close___CZE_b {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  font-size: 0.7rem;
  line-height: 38px;
  text-align: center;
  text-shadow: none;
  color: black;
  opacity: .4;
  cursor: pointer; }
  .Notification__close___CZE_b:hover, .Notification__close___CZE_b:focus {
    opacity: 1; }
  .Notification__close___CZE_b:active {
    opacity: .2; }
  .Notification__close___CZE_b:before {
    content: "\274C";
    margin: 0; }

.Notification__no-close___3-p_Q .Notification__item--message___2JYsT {
  padding-right: 10px; }

.Notification__has-close-all--noDismiss___3oZHJ .Notification__close-all___3YIP0 {
  right: 8px; }

.Notification__has-close-all--noDismiss___3oZHJ .Notification__item--message___2JYsT {
  padding-right: 81px; }

.Notification__has-close-all___3-_VI .Notification__item--message___2JYsT {
  padding-right: 115px; }

.Notification__has-close___2d--3 .Notification__item--message___2JYsT {
  padding-right: 34px; }

.Notification__notification--info___1cxtE {
  position: relative;
  word-wrap: break-word;
  pointer-events: auto;
  width: 300px;
  border-radius: 5px;
  background: #80ccff;
  padding-left: 30px;
  overflow: hidden;
  z-index: 9999;
  margin-bottom: 2px;
  max-height: 150px; }
  .Notification__notification--info___1cxtE .Notification__icon___GPDHD {
    color: #e8f1fa;
    background: #0098ff; }
  .Notification__notification--info___1cxtE .Notification__content___2i_Va {
    color: #112e4d;
    background-color: #80ccff; }
  .Notification__notification--info___1cxtE .Notification__actionBtn___3o--x {
    color: rgba(17, 46, 77, 0.6); }
    .Notification__notification--info___1cxtE .Notification__actionBtn___3o--x:hover {
      color: #112e4d; }
  .Notification__notification--info___1cxtE .Notification__close-all___3YIP0 {
    border: 1px solid rgba(17, 46, 77, 0.3);
    color: rgba(17, 46, 77, 0.6); }
    .Notification__notification--info___1cxtE .Notification__close-all___3YIP0:hover {
      border-color: rgba(17, 46, 77, 0.8);
      color: #112e4d; }

.Notification__notification--success___2txWa {
  position: relative;
  word-wrap: break-word;
  pointer-events: auto;
  width: 300px;
  border-radius: 5px;
  background: #72efa8;
  padding-left: 30px;
  overflow: hidden;
  z-index: 9999;
  margin-bottom: 2px;
  max-height: 150px; }
  .Notification__notification--success___2txWa .Notification__icon___GPDHD {
    color: #c6f9dd;
    background: #17ca65; }
  .Notification__notification--success___2txWa .Notification__content___2i_Va {
    color: #05371b;
    background-color: #72efa8; }
  .Notification__notification--success___2txWa .Notification__actionBtn___3o--x {
    color: rgba(5, 55, 27, 0.6); }
    .Notification__notification--success___2txWa .Notification__actionBtn___3o--x:hover {
      color: #05371b; }
  .Notification__notification--success___2txWa .Notification__close-all___3YIP0 {
    border: 1px solid rgba(5, 55, 27, 0.3);
    color: rgba(5, 55, 27, 0.6); }
    .Notification__notification--success___2txWa .Notification__close-all___3YIP0:hover {
      border-color: rgba(5, 55, 27, 0.8);
      color: #05371b; }

.Notification__notification--warning___Wd6Y7 {
  position: relative;
  word-wrap: break-word;
  pointer-events: auto;
  width: 300px;
  border-radius: 5px;
  background: #ffa480;
  padding-left: 30px;
  overflow: hidden;
  z-index: 9999;
  margin-bottom: 2px;
  max-height: 150px; }
  .Notification__notification--warning___Wd6Y7 .Notification__icon___GPDHD {
    color: #fff9f6;
    background: #ff4800; }
  .Notification__notification--warning___Wd6Y7 .Notification__content___2i_Va {
    color: #6c2c05;
    background-color: #ffa480; }
  .Notification__notification--warning___Wd6Y7 .Notification__actionBtn___3o--x {
    color: rgba(108, 44, 5, 0.6); }
    .Notification__notification--warning___Wd6Y7 .Notification__actionBtn___3o--x:hover {
      color: #6c2c05; }
  .Notification__notification--warning___Wd6Y7 .Notification__close-all___3YIP0 {
    border: 1px solid rgba(108, 44, 5, 0.3);
    color: rgba(108, 44, 5, 0.6); }
    .Notification__notification--warning___Wd6Y7 .Notification__close-all___3YIP0:hover {
      border-color: rgba(108, 44, 5, 0.8);
      color: #6c2c05; }

.Notification__notification--error___2fV5G {
  position: relative;
  word-wrap: break-word;
  pointer-events: auto;
  width: 300px;
  border-radius: 5px;
  background: #ff4d4d;
  padding-left: 30px;
  overflow: hidden;
  z-index: 9999;
  margin-bottom: 2px;
  max-height: 150px; }
  .Notification__notification--error___2fV5G .Notification__icon___GPDHD {
    color: #ff8585;
    background: #c00; }
  .Notification__notification--error___2fV5G .Notification__content___2i_Va {
    color: black;
    background-color: #ff4d4d; }
  .Notification__notification--error___2fV5G .Notification__actionBtn___3o--x {
    color: rgba(0, 0, 0, 0.6); }
    .Notification__notification--error___2fV5G .Notification__actionBtn___3o--x:hover {
      color: black; }
  .Notification__notification--error___2fV5G .Notification__close-all___3YIP0 {
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.6); }
    .Notification__notification--error___2fV5G .Notification__close-all___3YIP0:hover {
      border-color: rgba(0, 0, 0, 0.8);
      color: black; }
@-webkit-keyframes Notify__notification-show___m91vc {
  0% {
    opacity: 0;
    -webkit-transform: perspective(300px) translate(0, -30px) rotateX(90deg);
            transform: perspective(300px) translate(0, -30px) rotateX(90deg); }
  100% {
    opacity: 1;
    -webkit-transform: perspective(300px) translate(0, 0) rotateX(0deg);
            transform: perspective(300px) translate(0, 0) rotateX(0deg); } }

@keyframes Notify__notification-show___m91vc {
  0% {
    opacity: 0;
    -webkit-transform: perspective(300px) translate(0, -30px) rotateX(90deg);
            transform: perspective(300px) translate(0, -30px) rotateX(90deg); }
  100% {
    opacity: 1;
    -webkit-transform: perspective(300px) translate(0, 0) rotateX(0deg);
            transform: perspective(300px) translate(0, 0) rotateX(0deg); } }

@-webkit-keyframes Notify__notification-hide___qXZMa {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); } }

@keyframes Notify__notification-hide___qXZMa {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); } }

@-webkit-keyframes Notify__notification-shrink___dlvYw {
  0% {
    opacity: 0;
    max-height: 150px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); }
  100% {
    opacity: 0;
    max-height: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); } }

@keyframes Notify__notification-shrink___dlvYw {
  0% {
    opacity: 0;
    max-height: 150px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); }
  100% {
    opacity: 0;
    max-height: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); } }

.Notify__wrapper___Btp8G {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  font-size: 1.2em;
  min-height: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: inherit;
          flex-direction: inherit; }

.Notify__containerTopRight___3Aype {
  z-index: 9998;
  position: fixed;
  overflow-y: auto;
  max-height: 100vh;
  top: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .Notify__containerTopRight___3Aype::-webkit-scrollbar {
    display: none; }

.Notify__containerBottomRight___2LKUe {
  z-index: 9998;
  position: fixed;
  overflow-y: auto;
  max-height: 100vh;
  right: 0;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  .Notify__containerBottomRight___2LKUe::-webkit-scrollbar {
    display: none; }

.Notify__containerBottomLeft___1zAHL {
  z-index: 9998;
  position: fixed;
  overflow-y: auto;
  max-height: 100vh;
  left: 0;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  .Notify__containerBottomLeft___1zAHL::-webkit-scrollbar {
    display: none; }

.Notify__containerTopLeft___1Mczb {
  z-index: 9998;
  position: fixed;
  overflow-y: auto;
  max-height: 100vh;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .Notify__containerTopLeft___1Mczb::-webkit-scrollbar {
    display: none; }

.Notify__enter___1lTas {
  -webkit-animation: Notify__notification-show___m91vc 0.16s cubic-bezier(0.175, 0.885, 0.32, 1.27499);
          animation: Notify__notification-show___m91vc 0.16s cubic-bezier(0.175, 0.885, 0.32, 1.27499); }

.Notify__leave___IHSth {
  -webkit-animation: Notify__notification-hide___qXZMa 0.24s cubic-bezier(0.33859, -0.42, 1, -0.22), Notify__notification-shrink___dlvYw 0.24s 0.24s cubic-bezier(0.5, 0, 0, 1);
          animation: Notify__notification-hide___qXZMa 0.24s cubic-bezier(0.33859, -0.42, 1, -0.22), Notify__notification-shrink___dlvYw 0.24s 0.24s cubic-bezier(0.5, 0, 0, 1); }


/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
-webkit-touch-callout: none;
-webkit-user-select: none;
-ms-touch-action: none;
	touch-action: none;
-ms-user-select: none;
-moz-user-select: none;
	user-select: none;
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-target {
	position: relative;
	direction: ltr;
}
.noUi-base {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1; /* Fix 401 */
}
.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
}
.noUi-handle {
	position: relative;
	z-index: 1;
}
.noUi-stacking .noUi-handle {
/* This class is applied to the lower origin when
   its values is > 50%. */
	z-index: 10;
}
.noUi-state-tap .noUi-origin {
-webkit-transition: left 0.3s, top 0.3s;
	transition: left 0.3s, top 0.3s;
}
.noUi-state-drag * {
	cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,
.noUi-handle {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
	height: 18px;
}
.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	left: -17px;
	top: -6px;
}
.noUi-vertical {
	width: 18px;
}
.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px;
}

/* Styling;
 */
.noUi-background {
	background: #FAFAFA;
	box-shadow: inset 0 1px 1px #f0f0f0;
}
.noUi-connect {
	background: #3FB8AF;
	box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
-webkit-transition: background 450ms;
	transition: background 450ms;
}
.noUi-origin {
	border-radius: 2px;
}
.noUi-target {
	border-radius: 4px;
	border: 1px solid #D3D3D3;
	box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-target.noUi-connect {
	box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;
}

/* Handles and cursors;
 */
.noUi-draggable {
	cursor: w-resize;
}
.noUi-vertical .noUi-draggable {
	cursor: n-resize;
}
.noUi-handle {
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #FFF;
	cursor: default;
	box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #EBEBEB,
				0 3px 6px -3px #BBB;
}
.noUi-active {
	box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #DDD,
				0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #E8E7E6;
	left: 14px;
	top: 6px;
}
.noUi-handle:after {
	left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}
.noUi-vertical .noUi-handle:after {
	top: 17px;
}

/* Disabled state;
 */
[disabled].noUi-connect,
[disabled] .noUi-connect {
	background: #B8B8B8;
}
[disabled].noUi-origin,
[disabled] .noUi-handle {
	cursor: not-allowed;
}

@font-face {
  font-family: "Glober";
  font-style: normal;
  font-weight: 400;
  src: url(/340687b37c5be2af1fd0.eot);
  src: url(/cd20f3ff7e02e766dd5a.eot?#iefix) format("embedded-opentype"), url(/d50420254d3ad9758674.woff) format("woff"), url(/c82cd9a06bbe58103bd2.ttf) format("truetype"), url(/a1a3d672d45fa1e95144.svg#glober_regularregular) format("svg"); }

@font-face {
  font-family: "Glober";
  font-style: italic;
  font-weight: 400;
  src: url(/fa8395657a21e37b9e04.eot);
  src: url(/6f0cdb34a5b56ac5ad12.eot?#iefix) format("embedded-opentype"), url(/d787572ad31ddaf8ed52.woff) format("woff"), url(/fefea102ec93236d13dd.ttf) format("truetype"), url(/ec5308fea8f681dbb5bf.svg#globerregular_italic) format("svg"); }

@font-face {
  font-family: "Glober-bold";
  font-style: normal;
  font-weight: 700;
  src: url(/cfe5474afee6357e710c.eot);
  src: url(/4d4b1d786db3fbf9e37d.eot?#iefix) format("embedded-opentype"), url(/c7f9f98d863d5163357f.woff) format("woff"), url(/162c36d3d873803526db.ttf) format("truetype"), url(/4c5671ce0ef9b9ca24d9.svg#globerbold) format("svg"); }

/*@font-face {
    font-family: 'Glober';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/glober_bold_italic-webfont.eot');
    src: url('../fonts/glober_bold_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/glober_bold_italic-webfont.woff') format('woff'),
         url('../fonts/glober_bold_italic-webfont.ttf') format('truetype'),
         url('../fonts/glober_bold_italic-webfont.svg#globerbold_italic') format('svg');
}*/
/*@import '../../node_modules/nouislider-algolia-fork/src/nouislider.pips.css';*/
/* @import "../../node_modules/nouislider-algolia-fork/src/nouislider.tooltips.css";
@import "../../node_modules/react-accessible-accordion/dist/react-accessible-accordion.css";
@import "../../node_modules/react-accessible-accordion/dist/react-accessible-accordion.css";
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Correct the line-height for all headings in Chrome mobile, Firefox,
 * iOS Safari, Microsoft Edge and IE.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

body {
  background: #fff;
  color: #666666;
  padding: 0;
  font-family: "Glober", Arial;
  font-weight: 400;
  font-size: 14px; }

body {
  --scrollbar-width: calc(100vw - 100%); }

*:focus {
  outline: -webkit-focus-ring-color auto 0px; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0; }

a {
  color: #666666; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.2em; }

#applciation {
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex: auto; }
  #applciation #taskbar {
    flex: 0 1 10%;
    min-width: 130px;
    background: #fff;
    max-width: 130px;
    width: 130px;
    z-index: 3; }

.app {
  flex: auto;
  display: flex;
  background: #f7f7f7;
  height: 100vh;
  align-items: stretch;
  overflow: hidden; }
  .app .pathPane,
  .app .resultPane {
    overflow-x: hidden;
    overflow-y: auto; }
  .app .pathPane {
    flex: 0 1 40%;
    background: #f0f0f0; }
  .app .resultPane {
    flex: 0 1 50%;
    display: flex;
    position: relative;
    flex-direction: column;
    background: #e8e8e8; }
  .app .resultPane.notShowResultInfo {
    flex: 0 1 60%; }
  .app .resultPane.expandResults {
    flex: 0 1 100%; }

.formOut::-webkit-scrollbar,
.pathPane::-webkit-scrollbar,
.ReactVirtualized__List::-webkit-scrollbar {
  width: 5px;
  background: #e8e8e8; }

.formOut::-webkit-scrollbar-button,
.pathPane::-webkit-scrollbar-button,
.ReactVirtualized__List::-webkit-scrollbar-button {
  /* 2 */ }

.formOut::-webkit-scrollbar-track,
.pathPane::-webkit-scrollbar-track,
.ReactVirtualized__List::-webkit-scrollbar-track {
  /* 3 */ }

.formOut::-webkit-scrollbar-track-piece,
.pathPane::-webkit-scrollbar-track-piece,
.ReactVirtualized__List::-webkit-scrollbar-track-piece {
  /* 4 */ }

.formOut::-webkit-scrollbar-thumb,
.pathPane::-webkit-scrollbar-thumb,
.ReactVirtualized__List::-webkit-scrollbar-thumb {
  background: #c2c2c2; }

.formOut::-webkit-scrollbar-corner,
.pathPane::-webkit-scrollbar-corner,
.ReactVirtualized__List::-webkit-scrollbar-corner {
  /* 6 */ }

.formOut::-webkit-resizer,
.pathPane::-webkit-resizer,
.ReactVirtualized__List::-webkit-resizer {
  /* 7 */ }

.ReactVirtualized__List {
  width: auto !important; }

a {
  text-decoration: none; }
  a:visited {
    color: #666666; }

.formContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; }
  .formContainer .customerLogo {
    display: inline-block;
    width: 100px;
    height: 100px;
    position: relative;
    top: -24px;
    z-index: 1000; }

.userSettingTabs .rc-tabs-top .rc-tabs-content-animated .rc-tabs-tabpane {
  min-height: 30vh;
  background: white; }

.login-box,
.userSettingTabs,
.userProfile,
.contactForm {
  display: flex;
  width: 500px;
  position: relative;
  background: #e8e8e8;
  margin: auto;
  border-radius: 8px;
  padding: 35px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; }
  .login-box .email-input,
  .userSettingTabs .email-input,
  .userProfile .email-input,
  .contactForm .email-input {
    position: relative; }
    .login-box .email-input .error-feedback,
    .userSettingTabs .email-input .error-feedback,
    .userProfile .email-input .error-feedback,
    .contactForm .email-input .error-feedback {
      position: absolute;
      right: 20px;
      top: 0.7rem;
      color: #d1462f; }
  .login-box input,
  .userSettingTabs input,
  .userProfile input,
  .contactForm input {
    padding: 10px;
    width: 100%;
    border: 0;
    background: white;
    margin-bottom: 20px;
    border-radius: 3px;
    box-sizing: border-box; }
  .login-box h2,
  .userSettingTabs h2,
  .userProfile h2,
  .contactForm h2 {
    color: #005187;
    margin-bottom: 10px; }
  .login-box .buttons,
  .userSettingTabs .buttons,
  .userProfile .buttons,
  .contactForm .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    .login-box .buttons button,
    .login-box .buttons .register,
    .userSettingTabs .buttons button,
    .userSettingTabs .buttons .register,
    .userProfile .buttons button,
    .userProfile .buttons .register,
    .contactForm .buttons button,
    .contactForm .buttons .register {
      background: #8beeb4;
      border: 0;
      padding: 10px 20px;
      margin: 0 10px;
      cursor: pointer;
      margin-bottom: 10px;
      width: 100%; }
  .login-box .register,
  .userSettingTabs .register,
  .userProfile .register,
  .contactForm .register {
    background: #8beeb4;
    border: 0;
    padding: 10px 20px;
    margin: 0 10px;
    width: 100%; }
  .login-box .recover,
  .userSettingTabs .recover,
  .userProfile .recover,
  .contactForm .recover {
    background: #c7cfd2 !important;
    color: white !important;
    border: 0;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%; }
  .login-box p,
  .userSettingTabs p,
  .userProfile p,
  .contactForm p {
    margin-bottom: 15px;
    text-align: left;
    width: 100%; }
  .login-box label,
  .userSettingTabs label,
  .userProfile label,
  .contactForm label {
    font-family: "Glober", Arial !important; }

.contactForm {
  width: 100%;
  padding: 30px 60px;
  align-items: flex-start; }
  .contactForm .buttons {
    align-items: flex-end;
    margin-top: 20px; }
    .contactForm .buttons button {
      margin-right: 0;
      width: 200px !important; }
  .contactForm p a {
    color: rgba(var(--secondary-color), 1); }

.cityZipWrapper {
  display: flex;
  position: relative; }

.userProfile {
  display: flex;
  flex-direction: column;
  width: 900px;
  background-color: white;
  padding: 0 0px; }
  .userProfile label {
    z-index: 0 !important; }
  .userProfile .header {
    text-align: center;
    background-color: white;
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding-top: 35px; }
    .userProfile .header h2 {
      color: #005187; }
    .userProfile .header .headDesc {
      background: white;
      padding: 15px 0 0 35px;
      font-size: 16px;
      text-align: left;
      color: black; }
  .userProfile .mayDaikin {
    margin-top: 25px; }
  .userProfile .profileWrapper {
    display: flex;
    flex-direction: row;
    width: 100%; }
  .userProfile .generalData,
  .userProfile .daikinData {
    width: 50%; }
  .userProfile .generalData {
    padding: 10px 20px 35px 35px; }
  .userProfile .daikinData {
    padding: 10px 35px 35px 20px; }
  .userProfile .customerLogoWrapper {
    margin: auto; }
  .userProfile .md-checkbox input[type="checkbox"] {
    outline: 0;
    margin-left: 5px;
    margin-right: 5px;
    width: 14px;
    height: 14px;
    opacity: 0; }
  .userProfile .required label:before,
  .userProfile .Select-placeholder:before,
  .userProfile .with-val .section-heading.required:before {
    content: "*";
    color: tomato;
    font-size: 20px;
    top: -5px;
    position: relative; }
  .userProfile .buttons {
    width: 40%;
    bottom: 25px;
    right: 35px;
    float: right; }

.Select-placeholder {
  position: absolute;
  line-height: 22px;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  z-index: 0;
  transform: scale(1) translate(0px, 0px);
  transform-origin: left top 0px;
  pointer-events: none;
  user-select: none;
  color: rgba(0, 0, 0, 0.3);
  overflow: visible;
  font-size: 16px; }

.is-focused .Select-placeholder,
.with-val .Select-placeholder {
  transform: scale(0.75) translate(-7px, -26px);
  transform-origin: left top 0px;
  color: #009dd9 !important; }

.is-focused:not(.is-open) > .Select-control {
  border-color: #e0e0e0 !important;
  box-shadow: none !important; }

.drop-hr {
  border: 0;
  border-bottom: 2px solid #009dd9;
  bottom: 20px;
  box-sizing: content-box;
  margin: 0px;
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; }

.is-focused + .drop-hr {
  transform: scaleX(1); }

.section-heading {
  position: absolute;
  top: 36px;
  z-index: 1000;
  user-select: none;
  overflow: visible;
  transform: scale(0.75) translate(0px, -28px);
  transform-origin: left top 0px;
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  display: none; }

.region .section-heading,
.with-val .section-heading {
  display: block; }

.legal a {
  cursor: pointer;
  color: #005187; }

.legalWrapper {
  padding: 40px; }
  .legalWrapper h3 {
    margin-bottom: 20px;
    font-size: 1.2em; }
  .legalWrapper .legal {
    padding-bottom: 20px; }

.Select-menu-outer {
  z-index: 9000;
  position: absolute;
  background: white; }

.userSettingTabs {
  padding: 0; }
  .userSettingTabs .buttons {
    margin-top: 20px; }
  .userSettingTabs .rc-tabs-content {
    height: auto; }
  .userSettingTabs .rc-tabs-nav {
    width: 100%; }
  .userSettingTabs .rc-tabs-top .rc-tabs-tab {
    width: 50%;
    margin: 0;
    text-align: center;
    font-size: 1.5em;
    background: #f1f0f0; }
  .userSettingTabs .rc-tabs-top {
    width: 100%;
    display: table; }
  .userSettingTabs .rc-tabs-top .rc-tabs-content-animated .rc-tabs-tabpane {
    background: white;
    padding: 0px 20px 20px;
    border-radius: 3px; }
  .userSettingTabs .rc-tabs-top .rc-tabs-content-animated {
    max-width: 500px; }
  .userSettingTabs .rc-tabs-top .rc-tabs-ink-bar {
    display: none !important; }
  .userSettingTabs .rc-tabs-top .rc-tabs-nav-wrap {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }

.loadingBar {
  z-index: 20;
  background-color: #8beeb4;
  height: 5px;
  position: absolute; }

.resultLoadingWrapper {
  background: rgba(232, 232, 232, 0.65);
  height: 100%;
  position: fixed;
  z-index: 0; }
  .resultLoadingWrapper.loading {
    z-index: 20; }

.password-text {
  font-size: 12px;
  align-self: flex-end;
  margin-top: -10px;
  margin-bottom: 20px; }

.ReactPasswordStrength {
  font-family: "Glober", Arial !important;
  color: #666666 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  width: 100%;
  border: 0 !important;
  margin-bottom: 20px; }
  .ReactPasswordStrength input {
    margin-bottom: 0;
    font-size: 14px; }

.redirect-button {
  background: transparent;
  border: 0;
  cursor: pointer; }

.panesAndStatus {
  display: flex;
  min-height: 100%;
  flex: 0 1 100%;
  flex-direction: column;
  flex-wrap: nowrap; }
  .panesAndStatus .panes {
    display: flex;
    min-height: 100%; }

.panes {
  display: flex;
  min-height: calc(100% - 50px); }

.StatusBar {
  display: flex;
  min-height: 50px;
  background: white;
  width: 100%;
  position: relative;
  bottom: 0;
  justify-content: center; }

.hide {
  display: none; }

.resetFilters {
  display: none; }

.resetFilters.show {
  display: block; }

.button {
  padding: 7px 20px;
  text-align: center;
  font-family: "Glober-bold";
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  margin: 5px auto; }
  .button:active, .button:focus {
    outline: none; }

.primaryButton {
  border: 0px solid #666666;
  color: white;
  background: #666666; }
  .primaryButton:hover {
    background: gray; }
  .primaryButton:visited {
    color: white; }

a.primaryButton {
  padding: 5px;
  text-align: center;
  margin: 7px 5px 15px;
  border-radius: 5px;
  cursor: pointer; }

a.metricsButton {
  padding: 5px;
  text-align: center;
  margin: 7px 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  background-color: #c7cfd2;
  border: 0; }
  a.metricsButton:hover {
    background: #abb7bb;
    color: white; }

.secundaryButton {
  border: 2px solid #666666;
  color: #666666;
  background: white; }
  .secundaryButton:hover {
    color: gray; }

.fullWidth {
  width: 100%; }

.download-installer {
  padding: 5px;
  text-align: center;
  background: white;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  color: black;
  border: 0;
  position: absolute;
  right: 10px;
  top: 10px; }

.googleButton {
  -webkit-appearance: inherit !important;
  margin: 0 auto 20px;
  border-radius: 2px;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  text-align: center; }
  .googleButton #customBtn {
    display: inline-block;
    background: white;
    color: #444;
    width: 100%;
    border-radius: 2px;
    border: thin solid rgba(0, 0, 0, 0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    white-space: nowrap; }
  .googleButton #customBtn:hover {
    cursor: pointer; }
  .googleButton span.label {
    font-family: serif;
    font-weight: normal; }
  .googleButton span.icon {
    background: url(/31da027e6a59c866bbb5.png) transparent 5px 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px; }
  .googleButton span.buttonText {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    /* Use the Roboto font that is loaded in the <head> */
    font-family: "Roboto", sans-serif;
    color: #888; }

.formOut {
  display: flex;
  height: 100vh;
  max-height: 90vh;
  overflow: auto;
  overflow-x: visible;
  overflow-y: auto; }
  @media (max-height: 800px) {
    .formOut {
      overflow-y: visible;
      overflow-x: hidden; } }

.myModal > div {
  border-radius: 3px;
  max-height: 90vh; }

.myModal .formOut {
  height: auto;
  max-height: 90vh; }

.customerLogoWrapper {
  display: block;
  width: 200px;
  height: 60px;
  position: relative;
  padding: 15px 15px;
  background: white;
  border-radius: 1px; }
  .customerLogoWrapper .customerLogo {
    background-size: contain;
    width: 100%;
    height: 100%;
    background-color: white; }

.deleteTexts p {
  text-align: left;
  margin-bottom: 0; }

.hideDialog {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10;
  border: 0;
  background: white;
  border-radius: 50px;
  height: 30px;
  padding: 0;
  box-shadow: -1px 3px 4px rgba(0, 0, 0, 0.38);
  cursor: pointer; }
  .hideDialog:active {
    outline: none; }
  .hideDialog span {
    width: 30px;
    font-size: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    margin-top: -3px; }

.u-margin-top {
  margin-top: 1.875rem; }

.block {
  padding: 1.25rem; }

.u-margin-bottom-s {
  margin-bottom: 0.5rem; }

.u-position-absolute {
  position: absolute; }

.u-position-relative {
  position: relative; }

.accordion__item--has-icon {
  position: relative; }

.accordion__heading {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  box-sizing: border-box;
  font-size: 1.2em;
  font-weight: bold;
  color: black; }
  .accordion__heading:focus {
    outline: none; }

.accordion__heading:hover div {
  color: #005187; }

.accordion__panel {
  padding: 0 20px; }

.accordion__heading > *:last-child,
.accordion__panel > *:last-child {
  margin-bottom: 0; }

.accordion__arrow {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px; }

.accordion__arrow::after,
.accordion__arrow::before {
  display: block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: currentColor;
  content: ""; }

.accordion__arrow::before {
  left: 4px;
  transform: rotate(45deg); }

[aria-expanded="true"] .accordion__arrow::before {
  transform: rotate(-45deg); }

.accordion__arrow::after {
  right: 4px;
  transform: rotate(-45deg); }

[aria-expanded="true"] .accordion__arrow::after {
  transform: rotate(45deg); }

.accordion__arrow::before,
.accordion__arrow::after {
  transition: transform 0.25s ease, -webkit-transform 0.25s ease; }

/* -------------------------------------------------- */
/* ---------------- Animation part ------------------ */
/* -------------------------------------------------- */
@keyframes move-down {
  0% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(5px); }
  30% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

@keyframes move-up {
  0% {
    transform: translateY(0); }
  10% {
    transform: translateY(0); }
  20% {
    transform: translateY(-5px); }
  30% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }

.accordion__heading--animated:hover .accordion__arrow {
  animation-name: move-down;
  animation-duration: 1.5s; }

.accordion__heading--animated[aria-expanded="true"]:hover .accordion__arrow {
  animation-name: move-up;
  animation-duration: 1.5s; }

.update-wrapper {
  max-width: 400px; }

.terms {
  align-self: flex-start; }
  .terms .md-checkbox input[type="checkbox"] {
    width: 20px; }
  .terms b {
    font-weight: 700;
    font-family: "Glober-bold"; }

.Select-clear {
  display: none !important; }

.auto-dropdown {
  width: 100%;
  padding: 13px 0 10px;
  position: relative;
  /*.Select-option.is-focused{
    z-index: 1000!important;
    background: white!important;
  }*/ }
  .auto-dropdown .Select-value {
    line-height: 43px !important; }
  .auto-dropdown .Select--multi .Select-value {
    line-height: 1.4 !important; }
  .auto-dropdown .Select-control {
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    overflow: visible;
    font-weight: 100; }
  .auto-dropdown .Select-placeholder {
    padding: 0;
    line-height: 40px;
    overflow: visible;
    color: rgba(0, 0, 0, 0.3); }
  .auto-dropdown .Select-value {
    padding: 0 !important; }
  .auto-dropdown .Select-input {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: -5px;
    height: 32px; }
    .auto-dropdown .Select-input:focus {
      background: transparent; }
    .auto-dropdown .Select-input input {
      background: transparent; }

.Select.is-focused > .Select-control {
  background: transparent !important; }

.multi {
  padding: 9px 0; }
  .multi .section-heading {
    top: 25px; }

.auto-dropdown.error .Select-control {
  border-bottom: 2px solid #f54437; }

.selectError {
  font-size: 12px;
  color: red;
  position: absolute;
  bottom: -5px;
  left: 0; }

.selectWrapper {
  position: relative; }

.login-box input,
.userSettingTabs input {
  background: #f1f0f0; }

button.delete {
  background-color: red !important; }

.manufacturerContact {
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-items: center;
  align-items: center; }
  .manufacturerContact .input-group {
    display: flex;
    flex-direction: column; }

.table {
  width: 100%;
  padding: 60px;
  margin: auto;
  box-sizing: border-box; }
  .table table {
    border: 1px solid #e8e8e8;
    border-collapse: collapse;
    max-width: 100%;
    width: 100%; }
    .table table th,
    .table table td {
      border: 1px solid #e8e8e8;
      border-collapse: collapse;
      /*word-break: break-word;*/
      padding: 10px 15px; }
      .table table th:first-of-type,
      .table table td:first-of-type {
        width: 33%; }
      .table table th a,
      .table table td a {
        word-break: break-all;
        text-decoration: underline;
        font-style: italic; }
    .table table tr:nth-of-type(odd) {
      background-color: #f9f9f9; }
    .table table th {
      background: #e2e7e8; }

.tooltip {
  background: #444;
  border: solid 1px #444;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  left: 0;
  max-width: 200px;
  padding: 4px 6px;
  text-align: center;
  top: 0;
  z-index: 100; }

.tooltip-arrow {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0; }
  .tooltip-arrow svg {
    fill: #444;
    position: relative;
    stroke: #444;
    stroke-width: 1px; }

.tooltip-top,
.tooltip-top-start,
.tooltip-top-end {
  margin-bottom: 5px; }
  .tooltip-top .tooltip-arrow,
  .tooltip-top-start .tooltip-arrow,
  .tooltip-top-end .tooltip-arrow {
    bottom: -6px;
    height: 6px;
    width: 12px; }
    .tooltip-top .tooltip-arrow svg,
    .tooltip-top-start .tooltip-arrow svg,
    .tooltip-top-end .tooltip-arrow svg {
      top: -5px; }

.tooltip-right,
.tooltip-right-start,
.tooltip-right-end {
  margin-left: 5px; }
  .tooltip-right .tooltip-arrow,
  .tooltip-right-start .tooltip-arrow,
  .tooltip-right-end .tooltip-arrow {
    left: -6px;
    height: 12px;
    width: 6px; }

.tooltip-left,
.tooltip-left-start,
.tooltip-left-end {
  margin-right: 5px; }
  .tooltip-left .tooltip-arrow,
  .tooltip-left-start .tooltip-arrow,
  .tooltip-left-end .tooltip-arrow {
    right: -6px;
    height: 12px;
    width: 6px; }
    .tooltip-left .tooltip-arrow svg,
    .tooltip-left-start .tooltip-arrow svg,
    .tooltip-left-end .tooltip-arrow svg {
      left: -5px; }

.tooltip-bottom,
.tooltip-bottom-start,
.tooltip-bottom-end {
  margin-top: 5px; }
  .tooltip-bottom .tooltip-arrow,
  .tooltip-bottom-start .tooltip-arrow,
  .tooltip-bottom-end .tooltip-arrow {
    height: 6px;
    top: -6px;
    width: 12px; }

.errors div {
  color: tomato; }

strong {
  color: tomato;
  padding: 10px; }

.breadcrumbPane::-webkit-scrollbar {
  width: 5px;
  background: #e8e8e8; }

.breadcrumbPane::-webkit-scrollbar-button {
  /* 2 */ }

.breadcrumbPane::-webkit-scrollbar-track {
  /* 3 */ }

.breadcrumbPane::-webkit-scrollbar-track-piece {
  /* 4 */ }

.breadcrumbPane::-webkit-scrollbar-thumb {
  background: #c2c2c2; }

.breadcrumbPane::-webkit-scrollbar-corner {
  /* 6 */ }

.breadcrumbPane::-webkit-resizer {
  /* 7 */ }

input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

/* .rc-tabs-top .rc-tabs-tab-prev,
.rc-tabs-top .rc-tabs-tab-next {
  display: none;
} */
.nodeControl .noUi-horizontal {
  height: 24px !important; }

.nodeControl .noUi-origin {
  background: #818181;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+40,818181+40,818181+60,ffffff+60,ffffff+100 */
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 40%, #818181 40%, #818181 60%, #ffffff 60%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 40%, #818181 40%, #818181 60%, #ffffff 60%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 40%, #818181 40%, #818181 60%, #ffffff 60%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }

.nodeControl .noUi-marker {
  background: #818181; }

.nodeControl .noUi-base {
  cursor: pointer;
  background: #e1e1e1;
  background: linear-gradient(to bottom, #ffffff00 0%, #ffffff00 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 60%, #e1e1e1 60%, #ffffff00 60%, #ffffff00 100%); }

.nodeControl .noUi-horizontal .noUi-handle {
  top: 0px !important;
  cursor: pointer; }

.nodeControl .noUi-pips-horizontal {
  padding: 0 !important;
  margin-top: -18px !important; }

.nodeControl .noUi-horizontal .noUi-handle-lower .noUi-tooltip,
.nodeControl .noUi-horizontal .noUi-handle-upper .noUi-tooltip {
  top: -35px !important;
  position: relative;
  padding: 5px;
  display: inline; }

#sliderInput {
  position: absolute;
  left: 0%;
  width: 50px;
  margin-left: -25px; }
  #sliderInput input {
    width: 100%; }
  #sliderInput:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 7px;
    bottom: -7px;
    z-index: 100;
    left: 50%;
    background: #818181; }

.cookieModal,
.installModal {
  width: auto !important;
  z-index: 7 !important;
  top: auto !important;
  border-radius: 3px;
  box-shadow: 0px 1px 5px 0px #ccc;
  padding: 10px 20px;
  background: white;
  min-width: 275px; }
  .cookieModal :focus,
  .installModal :focus {
    outline: -webkit-focus-ring-color auto 0px; }
  .cookieModal div,
  .installModal div {
    display: flex; }
  .cookieModal p,
  .installModal p {
    padding-right: 15px; }
  .cookieModal .md-checkbox,
  .installModal .md-checkbox {
    font-size: 12px;
    color: gray; }
    .cookieModal .md-checkbox label:before,
    .installModal .md-checkbox label:before {
      width: 12px;
      height: 12px;
      background: #fff;
      border: 2px solid rgba(0, 0, 0, 0.32); }
    .cookieModal .md-checkbox input[type="checkbox"]:checked + label:after,
    .installModal .md-checkbox input[type="checkbox"]:checked + label:after {
      width: 7px;
      height: 4px; }
  .cookieModal .hideDialog,
  .installModal .hideDialog {
    position: absolute;
    top: 0px;
    right: 0px;
    background: transparent;
    height: 20px;
    box-shadow: none;
    margin-left: 10px;
    cursor: pointer; }
    .cookieModal .hideDialog span,
    .installModal .hideDialog span {
      width: 10px;
      font-size: 25px;
      height: 15px;
      display: inline-block;
      line-height: 26px;
      margin-top: -5px;
      font-weight: 900; }

.installModal {
  width: 830px !important;
  bottom: 0px !important;
  transform: translate3d(-50%, -5%, 0px) !important;
  padding: 10px;
  z-index: 6 !important; }
  .installModal a {
    height: 60px; }
  .installModal h3 {
    padding-bottom: 7px;
    font-family: "Glober-bold"; }
  .installModal .installBtn {
    color: white;
    border-radius: 3px;
    border: 0;
    display: inline-block;
    min-width: 202px;
    height: 60px;
    cursor: pointer;
    position: relative;
    margin-right: 10px; }
    .installModal .installBtn .installLock {
      position: absolute;
      background: #d0021b;
      border-radius: 20px;
      width: 15px !important;
      height: 15px !important;
      transition: all 0.1s;
      right: -12px;
      bottom: -10px;
      padding: 5px; }
    .installModal .installBtn .icon {
      height: 50px;
      width: 50px;
      display: inline-block;
      float: left; }
      .installModal .installBtn .icon svg:not(:root) {
        fill: white; }
    .installModal .installBtn .innerWrapper {
      padding: 5px;
      display: inline-block;
      float: left;
      margin-left: -15px; }
      .installModal .installBtn .innerWrapper .manufacturer {
        text-align: left;
        display: block;
        font-size: 14px; }
      .installModal .installBtn .innerWrapper .revit {
        font-size: 14px; }
  .installModal .rightPart {
    float: left;
    display: inline-block;
    padding-left: 10px; }
    .installModal .rightPart label {
      padding-left: 10px; }

.cookieModal div {
  align-items: center; }

.regionText {
  margin-bottom: -30px !important; }

.mayNotify {
  display: flex; }
  .mayNotify input {
    width: auto; }
  .mayNotify label {
    padding-left: 8px; }

.sog {
  display: flex;
  margin-left: 50px !important; }
  .sog input {
    width: auto; }
  .sog input[type="checkbox"]:disabled + label {
    color: #333; }
  .sog label {
    padding-left: 8px; }

.radio-button-group-content-type .radio {
  margin-bottom: 10px; }

#cookie-bar {
  display: none !important; }

.installModalActive .cookieModal {
  bottom: 125px !important; }

.tooltip-custom {
  max-width: 200px !important; }

.pluginDownload .__react_component_tooltip {
  display: table;
  min-width: 120px; }

.result .__react_component_tooltip {
  display: none; }

.result:hover .__react_component_tooltip.show,
.result:hover .__react_component_tooltip {
  width: 110px;
  display: inline-block;
  top: -35px !important;
  left: auto !important;
  right: 150px !important;
  position: relative; }
  .result:hover .__react_component_tooltip.show.noIn,
  .result:hover .__react_component_tooltip.noIn {
    top: -60px !important; }

.loader3d {
  display: block;
  background-color: #005187;
  height: 5px;
  width: calc(100vw - 160px) !important;
  z-index: 1000;
  position: absolute;
  top: 0;
  transition: opacity 0.5s; }

iframe {
  border: 0px;
  z-index: 2;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 270px); }

.rc-tabs-tabpane .spinner {
  z-index: 1;
  position: fixed; }

.disabled label {
  color: #bbbbbb !important;
  cursor: not-allowed !important; }

.downlodaDisabled {
  opacity: 0.25;
  cursor: not-allowed !important; }

.primaryButton.big {
  transition: transform 0.8s cubic-bezier(0, 10, 0, 0);
  transform: scale(1.1, 1.1); }

.cookieModal {
  z-index: 3001 !important;
  box-shadow: none;
  padding: 5px 30px;
  transform: translate3d(-50%, 0%, 0px) !important;
  bottom: 10px !important; }
  .cookieModal div {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .cookieModal div span {
      display: inline-block;
      margin-top: 10px;
      margin-bottom: 5px; }
    .cookieModal div h3 {
      font-size: 1.4em;
      margin: 10px 0; }
  .cookieModal .button {
    margin: 5px 5px 5px 0px; }

.gdpr {
  font-size: 13px;
  text-align: justify; }
  .gdpr label {
    line-height: 18px !important; }
  .gdpr .radio {
    margin-bottom: 10px;
    display: block !important; }
  .gdpr p {
    text-align: justify; }
  .gdpr a {
    color: #009dd9; }

.terms a {
  color: #009dd9; }

.terms input[type="checkbox"] {
  width: 15px; }

.terms.warning label::before {
  border-color: tomato; }

.termsLink {
  display: flow-root;
  padding-left: 30px;
  position: relative;
  top: -35px;
  padding-bottom: 20px; }

.Configure svg,
.Edit svg {
  height: 17px !important;
  vertical-align: middle; }

.nl #taskbar .supportLink,
.be-nl #taskbar .supportLink {
  font-size: 13px; }

.savedEmail {
  margin-top: 10px; }
  .savedEmail label {
    color: #0000004d;
    font-size: 12px; }
  .savedEmail p {
    color: #414141;
    font-weight: bold;
    padding: 5px 0 !important;
    margin: 0;
    font-size: 15px; }

.bigInfoView .resultPane {
  flex: 0 1 0.001%;
  padding: 0; }

.bigInfoView .resultP.active {
  max-width: 100%;
  width: calc(100vw - 130px);
  border: 1px solid #e8e8e8;
  box-sizing: border-box; }

.copyButton {
  background: #d8d8d8;
  color: #9b9b9b;
  border: 0;
  border-radius: 5px;
  font-size: 10px;
  cursor: pointer; }
  .copyButton:active {
    background: #9b9b9b;
    color: #d8d8d8; }

.favorite svg g {
  fill: #fa505a;
  stroke: #fa505a; }

.hart {
  top: 10px;
  position: absolute;
  right: 20px;
  width: 20px;
  margin-right: 0px;
  cursor: pointer; }
  .hart:hover .actionLock {
    right: 3px;
    bottom: 25px;
    padding: 8px; }
    .hart:hover .actionLock path {
      fill: white; }
  .hart .actionLock {
    position: relative;
    right: -10px;
    bottom: 15px;
    pointer-events: none; }
    .hart .actionLock path {
      fill: white !important;
      stroke: white !important; }

.ActionBar .fav-wrapper {
  position: absolute;
  right: 60px;
  width: 30px;
  top: 12px;
  height: 25px; }
  .ActionBar .fav-wrapper:hover .actionLock {
    width: 15px !important;
    height: 15px !important;
    right: 0px;
    bottom: 0px;
    padding: 7px; }
  .ActionBar .fav-wrapper .actionLock {
    right: 0px;
    bottom: 0px;
    z-index: 1; }

.ActionBar .multy-fav-wrapper {
  position: relative;
  width: 20px;
  margin-top: 17px;
  height: 20px; }
  .ActionBar .multy-fav-wrapper:hover .actionLock {
    width: 15px !important;
    height: 15px !important;
    right: -5px;
    bottom: 0px;
    padding: 7px; }
  .ActionBar .multy-fav-wrapper .actionLock {
    right: -5px;
    bottom: 0px;
    z-index: 1;
    width: 8px !important;
    height: 8px !important; }

.ActionBar .hart-big {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
  background-image: url(/e7f693c5bdbe1e43a21b.svg); }

.hart-big.onlyFavs {
  background-image: url(/1d86a9007cc4ac8c5cec.svg); }

.searchBar .hart-big {
  width: 20px;
  height: 19px;
  background-repeat: no-repeat;
  background-size: 19px;
  cursor: pointer;
  background-image: url(/50c0ffc4fe7fd56f8d6b.svg); }
  .searchBar .hart-big.noSelectedFavs {
    background-image: url(/f020257137a339f3b048.svg); }
  .searchBar .hart-big.onlyFavs {
    background-image: url(/e7f693c5bdbe1e43a21b.svg); }

canvas {
  width: 100%; }

.canvasTab {
  display: flex;
  justify-content: center;
  align-items: center; }
  .canvasTab canvas {
    width: auto;
    border: 1px black solid;
    top: 15px !important;
    position: fixed; }

.regionTooltip {
  font-size: 14px;
  background: black;
  color: white;
  padding: 3px 8px;
  margin: 5px;
  font-weight: 900;
  border-radius: 20px;
  cursor: pointer; }

#defaultRegionTooltip2 {
  width: 200px; }

.tourModal,
.tourModal0 {
  width: 700px !important; }
  .tourModal > div,
  .tourModal0 > div {
    display: flex;
    border-radius: 8px; }
  .tourModal .md-checkbox input[type="checkbox"],
  .tourModal0 .md-checkbox input[type="checkbox"] {
    outline: 0;
    margin-right: 10px; }
  .tourModal .leftPart,
  .tourModal0 .leftPart {
    background-color: #0097e0;
    background-image: url(/d7484a15cca479d13792.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    width: 35%;
    color: #444;
    min-width: 200px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px; }
  .tourModal .rightPart,
  .tourModal0 .rightPart {
    padding: 15px; }
    .tourModal .rightPart h3,
    .tourModal0 .rightPart h3 {
      color: #444;
      margin-bottom: 20px; }
    .tourModal .rightPart #startTour,
    .tourModal0 .rightPart #startTour {
      margin: 20px 0; }
    .tourModal .rightPart button,
    .tourModal0 .rightPart button {
      margin: 10px;
      max-width: 220px; }

.tourModal.matbim .leftPart {
  background-color: #00528c; }

.tourModal0 .rightPart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 210px; }
  .tourModal0 .rightPart #ok {
    align-self: flex-end; }

#___reactour .reactour__helper {
  background-color: #003979;
  color: white !important;
  border-radius: 10px; }
  #___reactour .reactour__helper p {
    margin: 5px 0 10px; }
  #___reactour .reactour__helper span[data-tour-elem="badge"] {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    background: transparent;
    box-shadow: 0 0 0 transparent; }

#___reactour button:disabled {
  display: none; }

#___reactour .reactour__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 14px;
  background: white;
  height: 14px;
  border-radius: 20px;
  padding: 4px;
  color: #5e5e5e; }

#___reactour .left-arrow {
  display: none; }

#___reactour button[data-tour-elem="left-arrow"] {
  display: none; }

#___reactour button[data-tour-elem="right-arrow"],
#___reactour button[data-tour-elem="left-arrow"] {
  background-color: #3880d1;
  border: 0;
  padding: 10px;
  color: white;
  border-radius: 5px; }

#___reactour div[data-tour-elem="controls"] {
  display: flex;
  float: right;
  margin: 0; }

.tourButtons {
  display: flex;
  align-items: center;
  justify-content: center; }
  .tourButtons .primaryButton {
    max-width: 200px; }
  .tourButtons .button {
    margin: 10px; }

.tourWrapper {
  opacity: 0.5; }

.tour0 {
  transform: initial !important;
  top: initial !important;
  left: initial !important; }
  .tour0 p {
    color: #444 !important; }

.introText {
  line-height: 2em; }

.callExternalApp svg {
  width: 20px;
  height: 20px; }
  .callExternalApp svg circle {
    fill: #57585a; }
  .callExternalApp svg path {
    stroke: white !important; }

.realBreadcrumb {
  max-width: calc(100% - 60px);
  display: flex; }
  .realBreadcrumb span {
    cursor: pointer;
    font-size: 14px !important;
    vertical-align: middle;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    box-sizing: border-box; }
    .realBreadcrumb span .text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 200px;
      display: inline-block;
      box-sizing: border-box; }
  .realBreadcrumb .last {
    cursor: auto; }

.bcActionBtn {
  display: inline-block;
  margin: 20px; }

.actionButtonsWrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.nodeActions {
  margin-left: 60px;
  min-height: 20px; }

.ExternalInput .value,
.Configurable .value,
.setting .value {
  min-height: 0 !important; }

.ExternalInput .descriptionBefore,
.Configurable .descriptionBefore,
.setting .descriptionBefore {
  padding: 5px 0; }

.nodeAction {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 20px;
  border: 0;
  margin: 0px 10px 5px;
  background-color: white;
  background-size: contain;
  opacity: 0.5;
  background-repeat: no-repeat; }
  .nodeAction.edit, .nodeAction.choose_material, .nodeAction.callExternalApp {
    background-image: url(/c2fa68ec9d5297e5dc1d.png);
    width: 30px;
    margin: 0px 0px 5px 10px;
    opacity: 0.4; }
  .nodeAction.callExternalApp {
    background-image: url(/00024719e3969eb8f197.png);
    opacity: 0.8; }
  .nodeAction.add_layer {
    background-image: url(/03ee7dda3a8c14955b42.png); }
  .nodeAction.move_up {
    background-image: url(/b623b360c97a92625920.png);
    width: 18px; }
  .nodeAction.move_down {
    background-image: url(/c12d62a44643cdd4f2c9.png);
    width: 18px; }
  .nodeAction.remove_layer, .nodeAction.remove_material {
    background-image: url(/7ca727dcb0b4181eda25.png);
    opacity: 0.4;
    background-size: 14px;
    height: 17px; }
  .nodeAction.add_material {
    background-image: url(/9676b73bb2b679aa36e2.png); }
  .nodeAction.toggleGenericSpecific {
    background-image: url(/a410a2584db734ac443b.png); }
  .nodeAction.getinfo {
    background-image: url(/1aac4551fe57dac53a3a.svg); }
  .nodeAction.openInternalApp {
    border: 0;
    padding: 0 10px; }
    .nodeAction.openInternalApp svg {
      height: 18px;
      width: 18px; }
  .nodeAction:hover {
    cursor: pointer;
    opacity: 1; }
    .nodeAction:hover svg {
      opacity: 1; }

.imageLoader {
  background: white;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute; }

.imageError {
  color: #d0031b;
  display: flex;
  margin: 50px;
  width: auto;
  font-size: 20px;
  justify-content: center; }

.home {
  cursor: pointer; }
  .home svg {
    padding-left: 0 !important; }

.v360-main {
  width: 100%;
  height: 100%;
  max-width: 1024px;
  margin: 20px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch; }

/* HEADER */
.v360-header {
  /* width: calc(100% - 20px); */
  background-color: #000;
  padding: 10px;
  color: #ffffff;
  font-size: 1.5em;
  text-align: center;
  font-weight: bold;
  /* text-shadow: 1px 1px #000000; */
  flex: 0 1 auto; }

/* VIEWER */
#productInsert {
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 184px);
  max-height: 768px;
  position: relative;
  overflow: hidden; }

.v360-fullscreen #productInsert {
  height: 100vh;
  max-height: none; }

#viewport-wrapper {
  width: 100%;
  height: calc(100% - 10px);
  margin: 5px auto;
  position: absolute;
  left: 0;
  transition: width 0.3s ease; }

.v360-viewport {
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* position: absolute; */
  left: 0;
  /* transition: width 0.3s ease; */
  display: flex;
  justify-content: center;
  align-items: center; }

#viewport-wrapper.wide {
  width: 100%; }

.v360-viewport iframe {
  width: 100%;
  height: 100%;
  position: relative;
  /* left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    transform-origin: center center; */ }

.v360-viewport img {
  position: relative; }

/* FULLSCREEN & MENU TOGGLE BUTTONS */
.v360-fullscreen-toggle {
  width: 30px;
  height: 30px;
  margin: 15px;
  position: absolute;
  /* color: #999;
    fill: #999; */
  float: right;
  cursor: pointer;
  top: 0;
  right: 0;
  z-index: 150; }

.v360-fullscreen-toggle:hover {
  fill: #000; }

/* 
.v360-fullscreen-toggle div:last-child {
    display: none;
} */
.v360-fullscreen {
  z-index: 9999;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0; }

.v360-fullscreen .v360-header,
.v360-fullscreen #v360-menu-btns {
  border-radius: 0; }

.v360-fullscreen productInsert {
  height: calc(100vh - 95px);
  max-height: none; }

.ui-accordion-header {
  background-color: #b0bec5;
  outline: none;
  line-height: 1.5em;
  transition: all 0.3s ease; }

.ui-accordion-header:hover,
.ui-accordion-header.ui-state-active {
  background-color: #607d8b;
  color: #fff; }

/* MENU BUTTONS */
#v360-menu-btns {
  width: 100%;
  padding: 5px 0;
  text-align: center;
  /* position: absolute; */
  bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 150; }

.light {
  background-color: #fff !important; }

.dark {
  background-color: #000 !important; }

.v360-menu-btns {
  /* background-color: #999; */
  width: auto;
  min-height: 20px;
  margin: 5px 5px;
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  font-size: 1.3em;
  text-align: center;
  line-height: 1em;
  cursor: pointer;
  user-select: none;
  position: relative;
  display: inline-block;
  opacity: 1; }

/* 
.v360-btn-active{
    background-color: #000;
} */
.light .v360-menu-btns {
  color: #000; }

.dark .v360-menu-btns {
  color: #fff; }

/* .light .v360-btn-active{
    color: #fff;
} */
.light .v360-menu-btns:hover {
  color: #fff;
  background-color: #000; }

.dark .v360-menu-btns:hover {
  color: #000;
  background-color: #fff; }

.v360-main {
  filter: alpha(opacity=50);
  /* opacity: 0.5; */
  cursor: default;
  /* pointer-events: none; */ }

#v360-image-container {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative; }

.v360-image-container {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative; }

.v360-product-box-shadow {
  position: absolute;
  /* z-index: 99; */
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  box-shadow: #222222 0px 0px 100px inset; }

.v360-fullscreen-toggle-btn i {
  /* background-color: #fff; */
  font-size: 20px; }

.v360-spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: #212529;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite; }

.v360-percentage-description {
  margin-left: 2rem; }

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block; }

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s; }

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent; }

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1; }

.tooltip {
  opacity: 1 !important; }

/* .hotspot-button{
      position: absolute;
  } */
.v360-viewer-container {
  max-width: 500px;
  margin: auto;
  max-height: calc(100vh - 250px); }

.v360-image-container {
  width: auto !important;
  max-height: calc(100vh - 350px); }

.v360-fullscreen-toggle {
  display: none; }

.errorBoundary {
  display: flex; }
  .errorBoundary form {
    padding: 20px 70px 80px; }
  .errorBoundary .reloadButton {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    text-align: center;
    color: white; }
  .errorBoundary p {
    margin: 0px 0 40px;
    text-align: center; }
  .errorBoundary .hideDialog span {
    margin-top: 0px;
    text-align: center;
    line-height: 30px;
    font-weight: 400; }

.CustomTextField {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 72px;
  display: inline-block;
  position: relative;
  background-color: transparent;
  font-family: Roboto, sans-serif;
  transition: height 200ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  cursor: auto; }
  .CustomTextField label {
    font-size: 13px;
    line-height: 22px;
    top: 38px;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    z-index: 0;
    transform: scale(0.75) translate(0px, -28px);
    transform-origin: left top;
    pointer-events: none;
    user-select: none;
    color: rgba(0, 0, 0, 0.3); }
  .CustomTextField input {
    appearance: textfield;
    padding: 0px;
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    color: #414141;
    cursor: inherit;
    font: inherit;
    opacity: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    margin-top: 14px; }
  .CustomTextField hr {
    border-top: none #e0e0e0;
    border-left: none #e0e0e0;
    border-right: none #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    bottom: 8px;
    box-sizing: content-box;
    margin: 0px;
    position: absolute;
    width: 100%; }
  .CustomTextField input:focus + .drop-hr {
    transform: scaleX(1); }
  .CustomTextField .section-heading {
    position: absolute;
    top: 36px;
    z-index: 1000;
    user-select: none;
    overflow: visible;
    transform: scale(0.75) translate(0px, -28px);
    transform-origin: left top 0px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    display: none; }
  .CustomTextField .hr2 {
    border-top: none #fecb00;
    border-left: none #fecb00;
    border-right: none #fecb00;
    border-bottom: 2px solid #fecb00;
    bottom: 8px;
    box-sizing: content-box;
    margin: 0px;
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms; }
  .CustomTextField .customTooltip .regionTooltip {
    font-size: 10px;
    padding: 3px 5px; }
  .CustomTextField .__react_component_tooltip {
    line-height: 1.4;
    width: 200px;
    z-index: 9999; }

.userProfile .customTooltip .regionTooltip {
  font-size: 10px;
  padding: 3px 5px; }

.userProfile .__react_component_tooltip {
  line-height: 1.4;
  width: 200px;
  z-index: 9999; }

.userProfile .auto-dropdown .__react_component_tooltip {
  line-height: 1.6;
  font-size: 16px;
  z-index: 9999; }

.daikinDisabled hr {
  border-bottom: 1px solid #e4e4e4 !important; }

.Select.is-disabled .Select-value-label {
  color: #b2b2b2 !important; }

.CookieDeclaration {
  display: none; }

.legalWrapper.open .CookieDeclaration,
.legalWrapper2.open .CookieDeclaration {
  display: block; }

.SaveSystem svg {
  height: 21px !important;
  padding: 2px; }

.deleteObject {
  width: 21px !important;
  padding: 2px; }

.confirmDialog .primaryButton {
  margin-left: 10px;
  border: 1px solid #666666; }

.femaDownload,
.femaUpload {
  margin: 10px 0px  10px 15px; }
  .femaDownload .action,
  .femaUpload .action {
    margin: 0px;
    background: transparent;
    border: 2px solid #4a4a4a;
    cursor: pointer;
    word-break: keep-all;
    position: relative;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    min-height: 35px; }
    .femaDownload .action #Layer_1,
    .femaUpload .action #Layer_1 {
      position: relative;
      top: 1px; }
    .femaDownload .action .actionLock,
    .femaUpload .action .actionLock {
      left: 30px !important;
      right: initial !important; }
    .femaDownload .action:active, .femaDownload .action:hover,
    .femaUpload .action:active,
    .femaUpload .action:hover {
      background: black;
      border: 2px solid black;
      color: white;
      outline-width: 0; }
      .femaDownload .action:active svg path, .femaDownload .action:hover svg path,
      .femaUpload .action:active svg path,
      .femaUpload .action:hover svg path {
        fill: white; }
      .femaDownload .action:active .actionLock, .femaDownload .action:hover .actionLock,
      .femaUpload .action:active .actionLock,
      .femaUpload .action:hover .actionLock {
        width: 15px !important;
        height: 15px !important;
        left: 10px !important;
        right: initial !important;
        bottom: 0px;
        padding: 7px; }

.femaUpload .Download {
  display: flex;
  justify-content: center;
  align-items: center; }
  .femaUpload .Download svg {
    margin-left: 0; }

.gridView.notShowResultInfo.expandResults .result {
  width: 17% !important;
  max-width: calc((100vw - 140px) * 0.2); }

.detailsWrapper #Layer_1 {
  width: 35px;
  height: 33px;
  margin-top: -7px;
  margin-left: -7px; }

div[class*="Notification__notification--warning"],
div[class*="Notification__notification--warning"] > div {
  background-color: orange !important;
  color: #333 !important; }

.flag-select {
  position: relative;
  display: inline-block;
  vertical-align: inherit;
  padding-bottom: 5px;
  color: #4d4d4d;
  text-align: left;
  margin-right: 6px; }
  .flag-select img {
    width: 1.3em;
    height: 1.3em;
    position: relative;
    top: 0.3em; }
  .flag-select .selected--flag--option {
    cursor: pointer; }
    .flag-select .selected--flag--option:before {
      content: " ";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: 999; }
    .flag-select .selected--flag--option:focus {
      outline: none; }
    .flag-select .selected--flag--option .country-label {
      padding-left: 9px; }
  .flag-select .country-flag {
    cursor: pointer;
    width: 80px !important;
    height: 20px !important;
    display: flex;
    flex-direction: row;
    align-items: center; }
    .flag-select .country-flag .country-label {
      font-size: 1em;
      position: relative;
      padding: 0 3px; }
  .flag-select .flag-options {
    position: absolute;
    z-index: 999999;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.29);
    background: #ffffff;
    max-height: 125px;
    overflow: auto; }
    .flag-select .flag-options.to--left {
      right: 10px; }
  .flag-select .flag-option {
    cursor: pointer;
    padding: 0px 8px 3px 8px;
    margin: 4px 0;
    white-space: nowrap; }
    .flag-select .flag-option.has-label {
      padding: 0px 20px 3px 8px; }
    .flag-select .flag-option:hover {
      background: #eaeaea; }
    .flag-select .flag-option:focus {
      outline: none;
      background: #eaeaea; }
    .flag-select .flag-option .country-label {
      padding: 0 9px; }
  .flag-select .filterBox {
    width: 100%; }
    .flag-select .filterBox input {
      width: 90%;
      margin: 0 4%; }
      .flag-select .filterBox input:focus {
        outline: none; }
  .flag-select .arrow-down {
    color: #4d4d4d;
    padding: 2px; }
  .flag-select .hidden {
    display: none; }
  .flag-select .no--focus {
    pointer-events: none; }

.arrowDown {
  background: url(/9acaaf58d62c3bd6d494.svg);
  background-repeat: no-repeat;
  height: 10px;
  width: 20px;
  background-size: 100%;
  display: inline-block;
  margin-left: -5px; }

#taskbar {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  display: flex;
  justify-content: space-between; }
  #taskbar .toolbarBottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%; }
  #taskbar .supportLink,
  #taskbar .legalLink,
  #taskbar .contactLink,
  #taskbar .pluginDownload {
    border-top: 1px solid #f0f0f0;
    transform: translateZ(0);
    padding: 0px 1px 0px 1px;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 130px;
    display: grid;
    column-gap: 1px;
    grid-template-columns: 28% auto; }
    #taskbar .supportLink .supportIcon,
    #taskbar .legalLink .supportIcon,
    #taskbar .contactLink .supportIcon,
    #taskbar .pluginDownload .supportIcon {
      height: 40px;
      min-width: 32px !important;
      background-image: url(/76050691b5c2338722b6.svg);
      background-repeat: no-repeat;
      background-position: center;
      cursor: pointer;
      box-sizing: border-box;
      display: inline-block; }
    #taskbar .supportLink .iconDownload,
    #taskbar .legalLink .iconDownload,
    #taskbar .contactLink .iconDownload,
    #taskbar .pluginDownload .iconDownload {
      height: 40px;
      min-width: 32px !important;
      cursor: pointer;
      box-sizing: border-box;
      display: inline-block;
      background-image: url(/d72aead3001f6ced8a65.svg);
      background-position: center;
      background-repeat: no-repeat; }
    #taskbar .supportLink .contactIcon,
    #taskbar .legalLink .contactIcon,
    #taskbar .contactLink .contactIcon,
    #taskbar .pluginDownload .contactIcon {
      height: 40px;
      min-width: 32px !important;
      cursor: pointer;
      box-sizing: border-box;
      display: inline-block;
      background-image: url(/629f4a84fdee8cde9c84.svg);
      background-position: center;
      background-repeat: no-repeat; }
    #taskbar .supportLink .legalIcon,
    #taskbar .legalLink .legalIcon,
    #taskbar .contactLink .legalIcon,
    #taskbar .pluginDownload .legalIcon {
      height: 40px;
      min-width: 32px !important;
      cursor: pointer;
      box-sizing: border-box;
      display: inline-block;
      background-image: url(/14c8a277f2379f488e3a.svg);
      background-position: center;
      background-repeat: no-repeat; }
  #taskbar .legalLink,
  #taskbar .contactLink {
    height: 41px; }
  #taskbar .options {
    height: 50px;
    left: 0;
    right: 0;
    border-top: 1px solid #f0f0f0;
    display: flex;
    transform: translateZ(0);
    width: 130px;
    justify-content: flex-start; }
  #taskbar .dd-menu {
    cursor: pointer; }
  #taskbar .languageregionSelectors {
    border-top: 1px solid #f0f0f0;
    padding: 15px 1px 8px 1px;
    display: grid;
    column-gap: 10px;
    grid-template-columns: 28% auto; }
    #taskbar .languageregionSelectors a {
      color: #003c78; }
    #taskbar .languageregionSelectors .dd-menu.dd-menu-center .dd-menu-items {
      left: 50px;
      bottom: 10px;
      transform: none;
      outline: 0; }
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ul li > *:not(.dd-item-ignore),
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ol li > *:not(.dd-item-ignore) {
      padding: 10px;
      box-sizing: border-box; }
    #taskbar .languageregionSelectors .flag-select .dd-menu .dd-menu-items ul li > *:not(.dd-item-ignore),
    #taskbar .languageregionSelectors .flag-select .dd-menu .dd-menu-items ol li > *:not(.dd-item-ignore) {
      display: flex;
      flex-direction: row;
      align-items: center;
      min-height: 24px;
      min-width: 170px;
      box-sizing: border-box; }
    #taskbar .languageregionSelectors .flag-select .dd-menu.dd-menu-center .dd-menu-items {
      left: 20px;
      transform: none;
      outline: 0; }
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items .dd-items-center {
      border-radius: 4px; }
      #taskbar .languageregionSelectors .dd-menu .dd-menu-items .dd-items-center li {
        border-bottom: 1px solid #d8d8d8;
        padding-right: 10px; }
      #taskbar .languageregionSelectors .dd-menu .dd-menu-items .dd-items-center li:last-child {
        border-bottom: 0px; }
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ul li > *:focus,
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ul li:hover .itemText,
    #taskbar .languageregionSelectors .dd-menu .dd-menu-items ol li > *:focus {
      background-color: transparent;
      cursor: pointer; }
  #taskbar .logReg {
    padding: 15px 10px; }
    #taskbar .logReg a {
      color: #003c78;
      text-decoration: underline;
      line-height: 1.5; }
  #taskbar .poweredBy {
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    transform: translateZ(0);
    display: grid;
    column-gap: 5px;
    grid-template-columns: 35% auto;
    border-top: 1px solid #f0f0f0; }
    #taskbar .poweredBy .rightPart {
      display: flex;
      flex-direction: column;
      font-size: 10px; }
    #taskbar .poweredBy h3 {
      color: #003c78;
      font-size: 16px; }
    #taskbar .poweredBy .icon {
      width: 35px;
      height: 42px;
      background: url(/e64500ba3c57a471ba12.svg) no-repeat;
      background-size: 100%;
      margin-right: 7px; }
    #taskbar .poweredBy.todw .icon {
      background-image: url(/0e7bb1bed1a6ac59030f.png) !important; }
  #taskbar .apps .aplications {
    padding: 5px;
    text-align: center;
    background: #c7cfd2;
    margin: 7px 5px 3px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    list-style: none; }
  #taskbar .apps .aplications.active {
    background: #005187; }
  #taskbar .apps .aplications.link {
    display: list-item;
    text-decoration: none; }

.languages span {
  padding: 5px;
  background: #c7cfd2;
  color: white;
  border-radius: 2px;
  margin: 10px 5px;
  cursor: pointer;
  display: inline-block; }

.connectionStatusWrapper {
  display: flex;
  align-items: center; }
  .connectionStatusWrapper .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) {
    background: white; }
  .connectionStatusWrapper .connectionStatus {
    display: inline-block;
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin-top: 4px;
    border-radius: 15px; }
    .connectionStatusWrapper .connectionStatus.connected {
      width: 40px;
      height: 20px;
      background: url(/14b17c183234bbc0c490.svg) no-repeat;
      cursor: pointer;
      margin-right: 10px; }
    .connectionStatusWrapper .connectionStatus.disconnected {
      width: 40px;
      height: 20px;
      background: url(/0d5c96fafd61b01b220a.svg) no-repeat;
      cursor: pointer;
      margin-right: 10px;
      margin-top: 7px; }

.connectionStatusWrapper p {
  min-width: 100px !important;
  min-height: 40px;
  box-sizing: border-box;
  padding: 0.8em 0.5em !important;
  text-align: left !important;
  margin: 0.5em !important; }

.notConnected2 {
  min-width: 780px;
  padding: 10px;
  font-family: Roboto, sans-serif;
  padding: 0.5em !important;
  text-align: left !important;
  display: block !important; }
  .notConnected2 a {
    color: #8beeb4; }

.connectionStatusWrapper .notConnected,
.connectionStatusWrapper .connected {
  display: flex;
  align-items: center;
  margin-bottom: 5px; }
  .connectionStatusWrapper .notConnected p,
  .connectionStatusWrapper .connected p {
    min-width: 100px !important;
    min-height: 20px;
    box-sizing: border-box;
    padding: 0.2em 0.5em !important;
    text-align: left !important;
    margin: 0.5em !important; }
  .connectionStatusWrapper .notConnected span,
  .connectionStatusWrapper .connected span {
    margin-left: 10px;
    min-width: 0 !important;
    height: 20px !important;
    box-sizing: border-box;
    margin-top: 15px;
    padding-right: 0.5em !important; }

span.connected:first-of-type {
  background: url(/14b17c183234bbc0c490.svg) no-repeat !important; }

.notConnected span {
  background: url(/0d5c96fafd61b01b220a.svg) no-repeat; }

.settings {
  margin: 10px 0px 10px 20px;
  display: inline-block;
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  background-size: 30px 30px; }

.toggle-settings {
  width: 25px;
  height: 25px;
  font-size: 12px;
  margin: 12px 9px;
  cursor: pointer;
  background: #dcdcdc;
  color: #818181;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-family: "Glober-bold"; }

.actions-wrapper {
  width: 55px;
  height: 50px; }

.dd-menu.dd-menu-center .dd-menu-items {
  left: 0%;
  transform: translateX(0%); }

.dd-menu .dd-menu-items.dd-items-upwards {
  bottom: 100%;
  margin: 8px 7px -5px; }

.loginLinks .dd-menu .dd-menu-items .dd-items-center {
  background: #003c78;
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white; }
  .loginLinks .dd-menu .dd-menu-items .dd-items-center::after {
    width: 40px;
    height: 30px;
    position: absolute;
    background: #003c78;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    content: "\00d7";
    font-size: 33px;
    text-align: center;
    line-height: 18px; }

.loginLinks .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
.loginLinks .dd-menu .dd-menu-items ul li > *:focus,
.loginLinks .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
.loginLinks .dd-menu .dd-menu-items ol li > *:focus {
  background-color: transparent;
  color: #0196e0; }
  .loginLinks .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) svg,
  .loginLinks .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) g,
  .loginLinks .dd-menu .dd-menu-items ul li > *:focus svg,
  .loginLinks .dd-menu .dd-menu-items ul li > *:focus g,
  .loginLinks .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) svg,
  .loginLinks .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) g,
  .loginLinks .dd-menu .dd-menu-items ol li > *:focus svg,
  .loginLinks .dd-menu .dd-menu-items ol li > *:focus g {
    stroke: #0196e0 !important; }

.logout,
.profile,
.settings {
  display: flex !important;
  min-width: 150px !important;
  min-height: 40px;
  background-repeat: no-repeat;
  background-size: 45px 50px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left !important;
  margin: 0em !important;
  background-position: 5px;
  font-family: Glober !important;
  padding: 10px !important; }
  .logout svg,
  .profile svg,
  .settings svg {
    width: 23px;
    height: 23px;
    margin-right: 10px; }

.logout {
  background-position: 2px 2px;
  align-items: center; }
  .logout svg {
    width: 37px;
    height: 37px;
    margin: 0px 0 0 -8px; }

.settings {
  text-indent: 0; }

.logo-wrapper {
  margin: 5px 10px;
  box-sizing: border-box;
  height: 106px;
  /* width: 100%; */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer; }
  .logo-wrapper .logo {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-position: 50% 50%; }

.active-connection {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 140px;
  width: 200px;
  height: 120px;
  z-index: 100;
  color: #666666;
  background: #c7cfd2;
  padding: 10px; }
  .active-connection.active {
    display: block; }
  .active-connection h3 {
    margin-bottom: 20px; }
  .active-connection .close {
    border-radius: 100px;
    background-color: white;
    color: black;
    display: inline-block;
    padding: 2px 6px;
    position: absolute;
    right: 10px;
    cursor: pointer; }
  .active-connection ul {
    list-style: none; }

.note {
  color: red !important;
  font-size: 12px;
  padding-left: 56px;
  margin-top: -10px;
  padding-bottom: 10px; }
  .note:hover {
    color: red !important; }

.moreInfo {
  font-size: 11px;
  padding: 0px 0 10px 67px;
  margin-top: -10px;
  text-decoration: underline;
  cursor: pointer; }

.supportLock {
  position: absolute;
  background: #d0021b;
  border-radius: 20px;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.1s;
  left: 30px;
  top: 32px;
  padding: 3px; }

.myFlag {
  width: 20px;
  height: 15px;
  background-size: cover;
  display: inline-block; }

.myFlag {
  background-repeat: no-repeat; }

.myFlag.en {
  background-image: url(/eff28ea1f222e9377a3c.svg); }

.myFlag.be-nl {
  background-image: url(/1c020ab195162e86eb2b.svg); }

.myFlag.be-fr {
  background-image: url(/1c020ab195162e86eb2b.svg); }

.myFlag.be-en {
  background-image: url(/1c020ab195162e86eb2b.svg); }

.myFlag.be-de {
  background-image: url(/1c020ab195162e86eb2b.svg); }

.myFlag.lu-de {
  background-image: url(/460ac81bbb8cec16a7b6.svg); }

.myFlag.lu-fr {
  background-image: url(/460ac81bbb8cec16a7b6.svg); }

.myFlag.fr {
  background-image: url(/1ff689d349e0bf026ffe.svg); }

.myFlag.nl {
  background-image: url(/24917e4b59d397a055d2.svg); }

.myFlag.international-en {
  background: url(/842054f56571285e2044.svg); }

.myFlag.ad {
  background-image: url(/7b298228748bb145cce9.svg); }

.myFlag.ae {
  background-image: url(/f5474672c73d07d008a8.svg); }

.myFlag.af {
  background-image: url(/5ee290e8102ea3dbc521.svg); }

.myFlag.ag {
  background-image: url(/b60297bf8c9220791f01.svg); }

.myFlag.ai {
  background-image: url(/7ce0b716dbfc765527c1.svg); }

.myFlag.al {
  background-image: url(/3a1c8a200a87c31d526a.svg); }

.myFlag.am {
  background-image: url(/1724b2087d57250fc24f.svg); }

.myFlag.ao {
  background-image: url(/70f132e008777ef5aabb.svg); }

.myFlag.aq {
  background-image: url(/b3118c4fd44f1e7c7489.svg); }

.myFlag.ar {
  background-image: url(/519794103547cb26660f.svg); }

.myFlag.as {
  background-image: url(/381dd9b1eb9f51919c6b.svg); }

.myFlag.at {
  background-image: url(/88d69229e030bc176845.svg); }

.myFlag.au {
  background-image: url(/6ffc11f6196f96921a5e.svg); }

.myFlag.aw {
  background-image: url(/ff7adacb77da8043e944.svg); }

.myFlag.az {
  background-image: url(/36341ab8703b25e62c51.svg); }

.myFlag.ba {
  background-image: url(/4145c172c40612369cad.svg); }

.myFlag.bb {
  background-image: url(/08dd94c11e7374e303b4.svg); }

.myFlag.bd {
  background-image: url(/ad2a090e872897237590.svg); }

.myFlag.bf {
  background-image: url(/109f270767d60290a954.svg); }

.myFlag.bg {
  background-image: url(/2b744f8cba1526c8ee58.svg); }

.myFlag.bg {
  background-image: url(/2b744f8cba1526c8ee58.svg); }

.myFlag.bh {
  background-image: url(/dc69b038ddf30648b512.svg); }

.myFlag.bi {
  background-image: url(/23ccc19751e11d4422c6.svg); }

.myFlag.bh {
  background-image: url(/dc69b038ddf30648b512.svg); }

.myFlag.bg {
  background-image: url(/2b744f8cba1526c8ee58.svg); }

.myFlag.bi {
  background-image: url(/23ccc19751e11d4422c6.svg); }

.myFlag.bj {
  background-image: url(/e63a9ea9051fc625f250.svg); }

.myFlag.bl {
  background-image: url(/9872994206509047bd9b.svg); }

.myFlag.bm {
  background-image: url(/fe6094f00d1a99900796.svg); }

.myFlag.bn {
  background-image: url(/a58e3414124e13ca3f03.svg); }

.myFlag.bo {
  background-image: url(/3870272d6a6465fa9ffa.svg); }

.myFlag.bq {
  background-image: url(/739b17c17d4376ce36cb.svg); }

.myFlag.br {
  background-image: url(/c0dd82c82e5b9be20abd.svg); }

.myFlag.bs {
  background-image: url(/3ac9796e55855023fefd.svg); }

.myFlag.bt {
  background-image: url(/d0dccf28e8591fee9dd4.svg); }

.myFlag.bv {
  background-image: url(/ba321bb8c27b053b9dde.svg); }

.myFlag.bw {
  background-image: url(/4f346860b11ed71e029e.svg); }

.myFlag.by {
  background-image: url(/15af7f734192ec1edfa6.svg); }

.myFlag.ca {
  background-image: url(/022c82cd0cfd172e12fa.svg); }

.myFlag.ca {
  background-image: url(/022c82cd0cfd172e12fa.svg); }

.myFlag.cc {
  background-image: url(/14e40f524c4d47059d53.svg); }

.myFlag.cd {
  background-image: url(/64f6d1be08a3cea54407.svg); }

.myFlag.cf {
  background-image: url(/de356bdd3c3a99852311.svg); }

.myFlag.cg {
  background-image: url(/d0c123d707cbfbcab2de.svg); }

.myFlag.ch {
  background-image: url(/bb069571ec0b5b36da56.svg); }

.myFlag.ci {
  background-image: url(/aff50dc5e6bad3bc9863.svg); }

.myFlag.ck {
  background-image: url(/443701ceb048b5b9d799.svg); }

.myFlag.cl {
  background-image: url(/6693d5c987a33f354a89.svg); }

.myFlag.cm {
  background-image: url(/ab8955eb9cf55f4131d1.svg); }

.myFlag.cn {
  background-image: url(/9a8567de0c93a15cc7ad.svg); }

.myFlag.co {
  background-image: url(/164dbf7cfb20866eafce.svg); }

.myFlag.cr {
  background-image: url(/5ce9a1a4d9ecaaf99b71.svg); }

.myFlag.cu {
  background-image: url(/e9929b06464bede49571.svg); }

.myFlag.cv {
  background-image: url(/0463a5f8712a032bcc31.svg); }

.myFlag.cw {
  background-image: url(/1ca8a09e002a36f82d03.svg); }

.myFlag.cy {
  background-image: url(/beaafd2f8a0ced9cbf02.svg); }

.myFlag.cz {
  background-image: url(/0609c23b333b0fbe556d.svg); }

.myFlag.de {
  background-image: url(/e49a32e9ea7785d920e4.svg); }

.myFlag.dk {
  background-image: url(/3476b44aa2adaaa7c32b.svg); }

.myFlag.dm {
  background-image: url(/c8982f40a0dc3c238287.svg); }

.myFlag.do {
  background-image: url(/e4b4a3985aff5fe7b463.svg); }

.myFlag.dz {
  background-image: url(/67c925dbaa74b3841fb5.svg); }

.myFlag.ec {
  background-image: url(/87b15093c2aa01246268.svg); }

.myFlag.ee {
  background-image: url(/5ee43c2eea2f38509508.svg); }

.myFlag.eg {
  background-image: url(/541c2c16a25a25636e69.svg); }

.myFlag.eh {
  background-image: url(/b919753622a054432f52.svg); }

.myFlag.er {
  background-image: url(/c20471034715c856e2af.svg); }

.myFlag.es {
  background-image: url(/1b922552371d3513bd8a.svg); }

.myFlag.et {
  background-image: url(/4685a6fa8c99791c1410.svg); }

.myFlag.fi {
  background-image: url(/e8d0713431d6cff481fe.svg); }

.myFlag.fj {
  background-image: url(/b6b284a6107cccdf6977.svg); }

.myFlag.fk {
  background-image: url(/fd90cfefbac310d68abc.svg); }

.myFlag.fm {
  background-image: url(/1ec73d4910cd74664b31.svg); }

.myFlag.fo {
  background-image: url(/9ed765d0679701864819.svg); }

.myFlag.fr {
  background-image: url(/1ff689d349e0bf026ffe.svg); }

.myFlag.ga {
  background-image: url(/93b9a7b7299a2d388ea0.svg); }

.myFlag.gb {
  background-image: url(/683555226f9f1d62f1c4.svg); }

.myFlag.gg {
  background-image: url(/be2c61f6bb36564a1448.svg); }

.myFlag.gd {
  background-image: url(/82b63095334bd155e1bc.svg); }

.myFlag.ge {
  background-image: url(/4f9a2138ebc6d100ff1e.svg); }

.myFlag.gf {
  background-image: url(/2f1f80e1b82a6c5f0048.svg); }

.myFlag.gg {
  background-image: url(/be2c61f6bb36564a1448.svg); }

.myFlag.gh {
  background-image: url(/97fd7644737dc3a91746.svg); }

.myFlag.gi {
  background-image: url(/420e66a9ef997b84fe05.svg); }

.myFlag.gl {
  background-image: url(/7e11b1f9abcbf979aea6.svg); }

.myFlag.gm {
  background-image: url(/bd51b6f75483c82c63cc.svg); }

.myFlag.gn {
  background-image: url(/d0cfb080577cd3124033.svg); }

.myFlag.gp {
  background-image: url(/7d117749ad704b050c17.svg); }

.myFlag.gq {
  background-image: url(/483885bb6a58db579e81.svg); }

.myFlag.gr {
  background-image: url(/eb391694439a0a40fe26.svg); }

.myFlag.gs {
  background-image: url(/038012fae3c1dcdad032.svg); }

.myFlag.gt {
  background-image: url(/a06b9c6a306ff6c1ce38.svg); }

.myFlag.gu {
  background-image: url(/4389b9352b11396397a9.svg); }

.myFlag.gw {
  background-image: url(/da5d3290e08496419f39.svg); }

.myFlag.gy {
  background-image: url(/e7f2937a6978a3476b31.svg); }

.myFlag.hk {
  background-image: url(/1720dd16a5533f25d3d8.svg); }

.myFlag.hm {
  background-image: url(/c960bc2030dbef33c37e.svg); }

.myFlag.hn {
  background-image: url(/a13d9f29227b99ffeae0.svg); }

.myFlag.hr {
  background-image: url(/3d75658c5a712a126acb.svg); }

.myFlag.ht {
  background-image: url(/264f4e6fd56f5da52ce3.svg); }

.myFlag.hu {
  background-image: url(/4f113a52ce418b5a4944.svg); }

.myFlag.id {
  background-image: url(/84cf596fbc5a3a8ebd0d.svg); }

.myFlag.ie {
  background-image: url(/9f61c53f12805377f736.svg); }

.myFlag.il {
  background-image: url(/64636ffaf120c335f7d8.svg); }

.myFlag.im {
  background-image: url(/2d41664b5ef1bdb76ea0.svg); }

.myFlag.in {
  background-image: url(/b26883f5997eabd2b652.svg); }

.myFlag.io {
  background-image: url(/1274f0efafeb8818c524.svg); }

.myFlag.iq {
  background-image: url(/56fb134f2f9f6db9df40.svg); }

.myFlag.ir {
  background-image: url(/79fa900d77c806ae04f2.svg); }

.myFlag.is {
  background-image: url(/10f78aed8930f874a110.svg); }

.myFlag.it {
  background-image: url(/3b30705a1b547daf62c1.svg); }

.myFlag.je {
  background-image: url(/f5bb985dad7601d1053c.svg); }

.myFlag.jm {
  background-image: url(/e99e65c1a7516d28d3ad.svg); }

.myFlag.jo {
  background-image: url(/8ea5b22132d7ed0f5a0c.svg); }

.myFlag.jp {
  background-image: url(/60d814e7dbf65d9ab51c.svg); }

.myFlag.ke {
  background-image: url(/531258511647c4af44d8.svg); }

.myFlag.kg {
  background-image: url(/95145def9930f8bad25e.svg); }

.myFlag.kh {
  background-image: url(/389624e1bb0d04258e93.svg); }

.myFlag.ki {
  background-image: url(/18b679dcd448b6d9f3ec.svg); }

.myFlag.km {
  background-image: url(/2e3daead17261d9524fa.svg); }

.myFlag.kn {
  background-image: url(/0b82be29a2200ce7bf04.svg); }

.myFlag.kp {
  background-image: url(/7aad3d733836dbbcc600.svg); }

.myFlag.kr {
  background-image: url(/de8b971980ecb62dc135.svg); }

.myFlag.kw {
  background-image: url(/342d08d0f26a11b37ebb.svg); }

.myFlag.ky {
  background-image: url(/2ab1f676f416a4aa6f4d.svg); }

.myFlag.kz {
  background-image: url(/9d52c9d8e49b6d79075e.svg); }

.myFlag.la {
  background-image: url(/5b0171d27cf44e513012.svg); }

.myFlag.lc {
  background-image: url(/90d89d73ec3e4bf2d57e.svg); }

.myFlag.li {
  background-image: url(/b19c307838df57258831.svg); }

.myFlag.lk {
  background-image: url(/f4e4fd9f71e15c7a8834.svg); }

.myFlag.lr {
  background-image: url(/36f9b1617c238a99721c.svg); }

.myFlag.ls {
  background-image: url(/30f944767bd82a086afc.svg); }

.myFlag.lt {
  background-image: url(/3056c3159507b7ea1468.svg); }

.myFlag.lu {
  background-image: url(/460ac81bbb8cec16a7b6.svg); }

.myFlag.lv {
  background-image: url(/1ff2672e0c8b77b4d6dc.svg); }

.myFlag.ly {
  background-image: url(/71a8ba5863f260de3042.svg); }

.myFlag.ma {
  background-image: url(/2587463a104527ce56df.svg); }

.myFlag.mc {
  background-image: url(/3ccdefeef0d12618aef3.svg); }

.myFlag.md {
  background-image: url(/cc821174fb9108efb475.svg); }

.myFlag.me {
  background-image: url(/c5312ff51979fbfb2435.svg); }

.myFlag.mf {
  background-image: url(/1ff689d349e0bf026ffe.svg); }

.myFlag.mg {
  background-image: url(/c39f32e8bc1ad871a0f3.svg); }

.myFlag.mh {
  background-image: url(/5de03de2b64bbdf00a6e.svg); }

.myFlag.mk {
  background-image: url(/e9c5ac482eac1250458c.svg); }

.myFlag.ml {
  background-image: url(/6eb10ac9f1b3015d2443.svg); }

.myFlag.mm {
  background-image: url(/17f4c6388adc1db3bd4a.svg); }

.myFlag.mn {
  background-image: url(/0337897e8d15e134d4eb.svg); }

.myFlag.mo {
  background-image: url(/febb28b1db029f398511.svg); }

.myFlag.mp {
  background-image: url(/02c2e9abc8cfdb991742.svg); }

.myFlag.mq {
  background-image: url(/ec9179d6173e07700e71.svg); }

.myFlag.mr {
  background-image: url(/4e8ee115e6340275c893.svg); }

.myFlag.ms {
  background-image: url(/b7b6ead6fdd1594d2195.svg); }

.myFlag.mt {
  background-image: url(/c3c2edf9e40e1abe8139.svg); }

.myFlag.mu {
  background-image: url(/f561086e3505cfc7b8fa.svg); }

.myFlag.mv {
  background-image: url(/9e59696ea9cf4ac00d22.svg); }

.myFlag.mw {
  background-image: url(/5253ffd055fc805dc508.svg); }

.myFlag.mx {
  background-image: url(/44dbb745a2f8de471da6.svg); }

.myFlag.my {
  background-image: url(/ad4b07a67dd047738104.svg); }

.myFlag.mz {
  background-image: url(/6ce82e38e3e2def8900a.svg); }

.myFlag.na {
  background-image: url(/00176f68e2f87c3c0431.svg); }

.myFlag.nc {
  background-image: url(/a9877f70cb5e8401ed0d.svg); }

.myFlag.ne {
  background-image: url(/6c1c77d94f05a6a57628.svg); }

.myFlag.nf {
  background-image: url(/f6147eef17220e500edf.svg); }

.myFlag.ng {
  background-image: url(/cb0fbcc7f265833d07e2.svg); }

.myFlag.ni {
  background-image: url(/5b5a63ad8766f99973be.svg); }

.myFlag.nl {
  background-image: url(/24917e4b59d397a055d2.svg); }

.myFlag.no {
  background-image: url(/6fe82bfeb57fbab9b70f.svg); }

.myFlag.np {
  background-image: url(/c4010310435d751778e2.svg); }

.myFlag.nr {
  background-image: url(/6d60b5941e5843a3bd73.svg); }

.myFlag.nu {
  background-image: url(/1cd601d3532c47fbf266.svg); }

.myFlag.nz {
  background-image: url(/d0007e37f5de194be95b.svg); }

.myFlag.pa {
  background-image: url(/35018505c8e50818a133.svg); }

.myFlag.pe {
  background-image: url(/c228cfcb16d48b7f213b.svg); }

.myFlag.pf {
  background-image: url(/cf277feff082c4afc779.svg); }

.myFlag.pg {
  background-image: url(/cfb6c74cebd6f2bcf2ad.svg); }

.myFlag.ph {
  background-image: url(/d0278cb5ba5aac628419.svg); }

.myFlag.pk {
  background-image: url(/ec174056d6fac1f59e4d.svg); }

.myFlag.pl {
  background-image: url(/deb860494abc21defaba.svg); }

.myFlag.pm {
  background-image: url(/79e23866d6c23877570c.svg); }

.myFlag.pn {
  background-image: url(/148fc0b290199edabf57.svg); }

.myFlag.pr {
  background-image: url(/269c30765947e9bc3d05.svg); }

.myFlag.ps {
  background-image: url(/e991aef0d1bf881e370e.svg); }

.myFlag.pt {
  background-image: url(/85b03fa348f502e020c4.svg); }

.myFlag.pw {
  background-image: url(/c55fde4a777352b5749e.svg); }

.myFlag.py {
  background-image: url(/23cb59b35ba711f83f05.svg); }

.myFlag.qa {
  background-image: url(/ad4028f327995bbb357b.svg); }

.myFlag.re {
  background-image: url(/cab2ae861e8f31dc8785.svg); }

.myFlag.ro {
  background-image: url(/f44b2f8f71f8cb7bb303.svg); }

.myFlag.rs {
  background-image: url(/2bb91b5f172a1d167987.svg); }

.myFlag.ru {
  background-image: url(/2191ae42e76adf9f616a.svg); }

.myFlag.rw {
  background-image: url(/73f8b928320cb51d3c68.svg); }

.myFlag.sa {
  background-image: url(/291076812358ccf542a8.svg); }

.myFlag.sb {
  background-image: url(/c8cb2db69b80d5284784.svg); }

.myFlag.sc {
  background-image: url(/6b845cc7fa66f2b922c7.svg); }

.myFlag.sd {
  background-image: url(/e368a0ab9c9fff12564a.svg); }

.myFlag.se {
  background-image: url(/2308d50d783ea252cba5.svg); }

.myFlag.sg {
  background-image: url(/5d1eae0acf0fed5d4df8.svg); }

.myFlag.sh {
  background-image: url(/f992f69f9c257c101c92.svg); }

.myFlag.si {
  background-image: url(/1a5eed99f13ca50f22ec.svg); }

.myFlag.sk {
  background-image: url(/c7b57c2837ef0944ad3c.svg); }

.myFlag.sj {
  background-image: url(/5dc11e0a7478cae0a6a3.svg); }

.myFlag.sl {
  background-image: url(/075691ab1016c5684cdc.svg); }

.myFlag.sm {
  background-image: url(/6dc034c7384d83c0e6d7.svg); }

.myFlag.sn {
  background-image: url(/5342f89e5d520a40379a.svg); }

.myFlag.so {
  background-image: url(/fc3e25ca98f7a87045b1.svg); }

.myFlag.sr {
  background-image: url(/1f1001788a29123d1012.svg); }

.myFlag.ss {
  background-image: url(/8b86ef9ed45cd95ac731.svg); }

.myFlag.st {
  background-image: url(/b75c293ec8d214725daf.svg); }

.myFlag.se {
  background-image: url(/2308d50d783ea252cba5.svg); }

.myFlag.sv {
  background-image: url(/a2f6f89a2d6b2a1e06ac.svg); }

.myFlag.sx {
  background-image: url(/05a4e32f13722fe04a43.svg); }

.myFlag.sy {
  background-image: url(/5d90dba5c19d7691c547.svg); }

.myFlag.sz {
  background-image: url(/f06f6b33c2f47f129a14.svg); }

.myFlag.tc {
  background-image: url(/76ace2c9b65ff9a36690.svg); }

.myFlag.td {
  background-image: url(/8a5585d2b8eaf526b8ee.svg); }

.myFlag.tf {
  background-image: url(/8a5784b99d977c67dbbd.svg); }

.myFlag.tg {
  background-image: url(/21ad81ecef8a6077b179.svg); }

.myFlag.th {
  background-image: url(/2814ec93c80bfb31d663.svg); }

.myFlag.tj {
  background-image: url(/2c0ea6e9dd9c0f3d0107.svg); }

.myFlag.tk {
  background-image: url(/8830ee3a42cfa59867d1.svg); }

.myFlag.tl {
  background-image: url(/fd3908170810eb00444d.svg); }

.myFlag.tm {
  background-image: url(/565e9a0bae3bc64b74d2.svg); }

.myFlag.tn {
  background-image: url(/0dbc8cb1cddf2b18de3f.svg); }

.myFlag.to {
  background-image: url(/7e4aa6ad8cd8034d8c89.svg); }

.myFlag.tr {
  background-image: url(/a3f845855b1cc527af59.svg); }

.myFlag.tt {
  background-image: url(/7bca87442d8344e428e4.svg); }

.myFlag.tc {
  background-image: url(/76ace2c9b65ff9a36690.svg); }

.myFlag.tv {
  background-image: url(/3fbe0fffbfe0f67f7c99.svg); }

.myFlag.tw {
  background-image: url(/3def6ca4e18114debd3d.svg); }

.myFlag.tz {
  background-image: url(/a4c3703a776f9dd06b1a.svg); }

.myFlag.ua {
  background-image: url(/ee104b575175f03b433b.svg); }

.myFlag.ug {
  background-image: url(/5a21c63f01cfe6b2484a.svg); }

.myFlag.um {
  background-image: url(/e291056b1cb3bbf44f4d.svg); }

.myFlag.us {
  background-image: url(/563677914414f60df3fa.svg); }

.myFlag.uy {
  background-image: url(/4a55093df562a3a55a83.svg); }

.myFlag.uz {
  background-image: url(/742459ee6e1d1e61cc61.svg); }

.myFlag.va {
  background-image: url(/a7979722795b7acca51c.svg); }

.myFlag.vc {
  background-image: url(/f2a1c513a910886c2dc0.svg); }

.myFlag.ve {
  background-image: url(/45409c2b198e83031684.svg); }

.myFlag.vg {
  background-image: url(/f94210727e69f77f068c.svg); }

.myFlag.vi {
  background-image: url(/f94210727e69f77f068c.svg); }

.myFlag.vn {
  background-image: url(/0c4489faf80f5050b38d.svg); }

.myFlag.vu {
  background-image: url(/bd3e2a8e064e0f0f9635.svg); }

.myFlag.wf {
  background-image: url(/852712e17495075f8c8e.svg); }

.myFlag.ws {
  background-image: url(/3a393ddfc5531f5d5acb.svg); }

.myFlag.ye {
  background-image: url(/92fd0374f7ca49ae4c33.svg); }

.myFlag.yt {
  background-image: url(/8955a764bda56036bd2d.svg); }

.myFlag.za {
  background-image: url(/6ac43b1fd8b94540b1c3.svg); }

.myFlag.zm {
  background-image: url(/7cf9b93656cdfef12c69.svg); }

.myFlag.zw {
  background-image: url(/9984066550e417fa0dd6.svg); }

.suiteSelector {
  text-align: center;
  width: 100%; }

.upper-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column; }

.suiteSelector {
  margin-left: 3px; }

.nodes.loaded {
  display: block; }

.nodes.not-loaded {
  display: none; }

.breadcrumbPane {
  overflow-x: hidden;
  overflow-y: auto;
  flex: 0 1 50%;
  position: relative;
  background: linear-gradient(to bottom, #393939 0%, rgba(57, 57, 57, 0.25) 100%);
  box-sizing: border-box; }
  @media (min-width: 900px) {
    .breadcrumbPane {
      padding: 0 10px; } }
  @media (min-width: 1200px) {
    .breadcrumbPane {
      padding: 0 20px; } }
  .breadcrumbPane .breadcrumbHeader {
    background: transparent;
    color: #fff;
    position: relative;
    min-height: 100px;
    box-sizing: border-box; }
    .breadcrumbPane .breadcrumbHeader h2 {
      margin-right: 10px; }
    .breadcrumbPane .breadcrumbHeader h3 {
      font-size: 1em; }
    .breadcrumbPane .breadcrumbHeader .headTop {
      display: flex;
      flex-direction: column;
      align-items: baseline;
      padding: 25px 10px 10px 85px; }
      .breadcrumbPane .breadcrumbHeader .headTop span {
        font-size: 14px;
        line-height: 14px; }
      .breadcrumbPane .breadcrumbHeader .headTop h4 {
        font-weight: 100; }
        .breadcrumbPane .breadcrumbHeader .headTop h4 a {
          font-size: 14px;
          line-height: 14px;
          color: white; }
    .breadcrumbPane .breadcrumbHeader .path {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.8em;
      margin: 0; }
    .breadcrumbPane .breadcrumbHeader .breadcrumbs {
      margin: 10px 0 5px; }
  .breadcrumbPane .title:hover {
    color: #005187;
    transition: all 300ms ease-in; }
  .breadcrumbPane .path {
    margin-top: -30px; }
  .breadcrumbPane .node {
    box-sizing: border-box;
    display: block;
    background: #fff;
    /*    margin: 15px 10px;  */
    margin: 0px 10px 20px;
    min-height: 40px;
    border-radius: 10px;
    position: relative;
    cursor: pointer; }
    .breadcrumbPane .node.hide {
      display: none; }
    .breadcrumbPane .node .head {
      cursor: pointer;
      padding: 10px 10px 20px 75px;
      min-height: 36px; }
    .breadcrumbPane .node .body {
      padding: 0px 30px 0px 75px; }
    .breadcrumbPane .node.loading .loadWrap {
      width: 100%;
      background: rgba(255, 255, 255, 0.8);
      height: 100%;
      z-index: 1000;
      position: absolute;
      top: 0;
      left: 0;
      cursor: no-drop; }
    .breadcrumbPane .node h3 {
      cursor: pointer;
      font-family: "Glober-bold"; }
    .breadcrumbPane .node:hover .icon {
      transition: all 300ms ease-in; }
    .breadcrumbPane .node .icon {
      width: 48px;
      height: 48px;
      position: absolute;
      top: 10px;
      left: 10px;
      background: url(/dc1acecaac08a596273d.svg) no-repeat;
      background-color: #c2c2c2;
      background-size: 50%;
      background-position: 50%;
      border-radius: 5px; }
    .breadcrumbPane .node .imageIcon {
      width: 48px;
      position: absolute;
      top: 23px;
      left: 10px;
      border-radius: 5px; }
    .breadcrumbPane .node .folder {
      background-image: url(/9546277f15752217752c.svg); }
    .breadcrumbPane .node .state-wrapper {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 27px;
      height: 25px;
      margin-left: -10px;
      display: none; }
      .breadcrumbPane .node .state-wrapper.disabled {
        cursor: no-drop; }
      .breadcrumbPane .node .state-wrapper .active {
        width: 27px;
        height: 24px;
        background-image: url(/88bd4c0b034cb76a7264.svg);
        background-repeat: no-repeat;
        background-size: 50%;
        background-position: 50%; }
      .breadcrumbPane .node .state-wrapper .locked {
        width: 27px;
        height: 24px;
        background: url(/5a82bdb32827634ef4c0.png) no-repeat 0px -197px; }
      .breadcrumbPane .node .state-wrapper .inactive {
        width: 27px;
        height: 24px;
        background: url(/5a82bdb32827634ef4c0.png) no-repeat 0px -150px; }
    .breadcrumbPane .node .actions {
      width: 27px;
      height: 27px;
      margin-left: -10px;
      background: url(/5a82bdb32827634ef4c0.png) no-repeat 0px -119px; }
    .breadcrumbPane .node .actions-wrapper {
      width: 30px;
      height: 28px; }
    .breadcrumbPane .node .nodeControl {
      display: none; }
      .breadcrumbPane .node .nodeControl .description {
        margin: 10px 0; }
      .breadcrumbPane .node .nodeControl .toggle {
        padding: 5px;
        color: tomato;
        cursor: pointer; }
    .breadcrumbPane .node .listcontrol label {
      vertical-align: top;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box; }
    .breadcrumbPane .node .listcontrol .with-dependenies {
      width: auto;
      display: inline-block; }
    .breadcrumbPane .node .listcontrol input[type="checkbox"] {
      margin-right: 5px;
      background: #fff;
      border: 2px solid #e0e0e0;
      border-radius: 5px;
      width: 14px;
      height: 14px; }
    .breadcrumbPane .node .listcontrol input {
      cursor: auto; }
    .breadcrumbPane .node .activeOut .icon {
      background-color: #005187; }
    .breadcrumbPane .node.active {
      cursor: default;
      max-height: 20000px;
      transition: all 0.5s ease-in-out;
      overflow: hidden;
      color: #005187; }
      .breadcrumbPane .node.active:before {
        background: #8beeb4; }
      .breadcrumbPane .node.active .icon {
        background-color: #005187; }
      .breadcrumbPane .node.active .nodeControl {
        display: block; }
      .breadcrumbPane .node.active .nodeControl {
        display: block;
        margin-top: 10px; }
        .breadcrumbPane .node.active .nodeControl:last-of-type {
          margin-bottom: 20px; }
    .breadcrumbPane .node.locked {
      color: #c2c2c2; }
      .breadcrumbPane .node.locked:before {
        background: #e0e0e0; }
      .breadcrumbPane .node.locked .icon {
        background: #e0e0e0; }
    .breadcrumbPane .node.hidden {
      display: none; }
    .breadcrumbPane .node ul {
      list-style: none; }
    .breadcrumbPane .node .value {
      min-height: 20px; }
      .breadcrumbPane .node .value span {
        padding: 0 5px 0 0;
        color: #666666; }

.example-enter {
  transform: scale(0.5); }

.example-enter.example-enter-active {
  transform: scale(1);
  transition: all 500ms ease-in; }

.example-leave {
  transform: scale(1); }

.example-leave.example-leave-active {
  transform: scale(0.5);
  transition: all 500ms ease-in; }

.backButton {
  display: none;
  position: absolute;
  left: 20px;
  background: url(/59eae33fa48e5aeaf6e1.svg) no-repeat;
  width: 50px;
  height: 50px;
  top: 25px;
  background-position: 50%;
  cursor: pointer; }
  .backButton.active {
    display: block; }

.filterButton {
  display: none;
  position: absolute;
  left: 20px;
  top: 25px;
  background: url(/6729df808b8fc10e5c43.svg) no-repeat;
  width: 50px;
  height: 50px;
  background-position: 50%; }
  .filterButton.active {
    display: block; }

.inConfig .filterButton {
  width: 40px;
  background: url(/af974e13e0f022dcb56f.svg) no-repeat; }

.localRealBreadcrumbs {
  list-style: none;
  display: flex;
  color: white;
  font-size: 30px;
  font-family: "Glober-bold"; }
  .localRealBreadcrumbs li {
    float: left; }
    .localRealBreadcrumbs li span {
      padding: 0 5px; }
    .localRealBreadcrumbs li a {
      color: white; }
      .localRealBreadcrumbs li a:visited {
        color: white; }

.noUi-horizontal {
  height: 6px !important;
  margin: 30px 0 !important;
  border-radius: 0px !important; }

.noUi-background {
  background: #005187 !important;
  box-shadow: inset 0 1px 1px #f0f0f0 !important;
  z-index: 100 !important;
  border-radius: 0px !important; }

.noUi-target {
  border-radius: 0px !important;
  border: 0 !important;
  box-shadow: none !important; }

.minRange {
  padding-top: 10px; }
  .minRange .noUi-target {
    width: 90%; }
  .minRange .noUi-origin {
    right: -10%; }

.maxRange {
  padding-top: 10px;
  margin-left: 10%; }
  .maxRange .noUi-target {
    width: 90%; }
  .maxRange .noUi-origin:first-of-type {
    left: -10% !important; }
  .maxRange .noUi-base .noUi-origin:last-of-type {
    background: linear-gradient(to bottom, #ffffff00 0%, #ffffff00 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 60%, #e1e1e1 60%, #ffffff00 60%, #ffffff00 100%); }
  .maxRange .noUi-base .noUi-origin {
    background: linear-gradient(to bottom, #ffffff00 0%, #ffffff00 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 60%, #e1e1e1 60%, #ffffff00 60%, #ffffff00 100%); }
  .maxRange .noUi-base {
    background: #818181;
    background: linear-gradient(to bottom, #ffffff00 0%, #ffffff08 40%, #818181 40%, #818181 40%, #818181 40%, #818181 60%, #818181 60%, #ffffff00 60%, #ffffff00 100%); }
  .maxRange .noUi-target:before {
    width: 40px;
    height: 24px;
    position: absolute;
    background: #818181;
    background: linear-gradient(to bottom, #ffffff00 0%, #ffffff08 40%, #818181 40%, #818181 40%, #818181 40%, #818181 60%, #818181 60%, #ffffff00 60%, #ffffff00 100%);
    content: "";
    left: -40px; }

.Range,
.InputSlider,
.InputSliderRange,
.InputSliderDiscreteValues {
  padding-top: 10px; }
  .Range .noUi-base .noUi-origin:last-of-type,
  .InputSlider .noUi-base .noUi-origin:last-of-type,
  .InputSliderRange .noUi-base .noUi-origin:last-of-type,
  .InputSliderDiscreteValues .noUi-base .noUi-origin:last-of-type {
    background: linear-gradient(to bottom, #ffffff00 0%, #ffffff08 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 40%, #e1e1e1 60%, #e1e1e1 60%, #ffffff00 60%, #ffffff00 100%); }

.SliderDiscreteValues .noUi-base .noUi-origin {
  background: transparent !important; }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px !important;
  width: 1px !important;
  height: 13px !important; }

.noUi-marker {
  pointer-events: none; }

.noUi-pips-horizontal {
  padding: 0 !important;
  margin-top: -10px !important; }

.noUi-horizontal .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  left: -10px !important;
  top: -7px !important;
  border-radius: 30px !important;
  background: #8beeb4 !important;
  border: 0 !important;
  box-shadow: none; }

.noUi-horizontal .noUi-handle-lower .noUi-tooltip,
.noUi-horizontal .noUi-handle-upper .noUi-tooltip {
  top: -40px !important;
  left: -15px !important;
  background: #005187 !important;
  border: 0 !important;
  color: white;
  height: 30px !important; }

.Range .noUi-horizontal .noUi-handle-lower,
.Range .noUi-horizontal .noUi-handle-upper,
.InputSlider .noUi-horizontal .noUi-handle-lower,
.InputSlider .noUi-horizontal .noUi-handle-upper {
  width: 10px !important;
  border-radius: 0px !important; }

.Range .noUi-horizontal .noUi-handle-upper,
.InputSlider .noUi-horizontal .noUi-handle-upper {
  left: -1px !important;
  border-bottom-right-radius: 30px !important;
  border-top-right-radius: 30px !important;
  border-left: 0px solid white !important; }
  .Range .noUi-horizontal .noUi-handle-upper .noUi-tooltip,
  .InputSlider .noUi-horizontal .noUi-handle-upper .noUi-tooltip {
    left: -15px !important; }

.Range .noUi-horizontal .noUi-handle-lower,
.InputSlider .noUi-horizontal .noUi-handle-lower {
  right: -10px !important;
  border-bottom-left-radius: 30px !important;
  border-top-left-radius: 30px !important;
  border-right: 0.5px solid white !important; }
  .Range .noUi-horizontal .noUi-handle-lower .noUi-tooltip,
  .InputSlider .noUi-horizontal .noUi-handle-lower .noUi-tooltip {
    left: -5px !important; }

.InputSlider,
.InputSliderDiscreteValues {
  position: relative; }
  .InputSlider .noUi-horizontal .noUi-handle-upper,
  .InputSliderDiscreteValues .noUi-horizontal .noUi-handle-upper {
    background: #818181 !important;
    width: 4px !important;
    height: 20px !important;
    border-radius: 0 !important; }
  .InputSlider .noUi-horizontal .noUi-handle-lower,
  .InputSliderDiscreteValues .noUi-horizontal .noUi-handle-lower {
    border-right: 0px solid transparent !important; }
  .InputSlider input[type="number"]::-webkit-inner-spin-button,
  .InputSlider input[type="number"]::-webkit-outer-spin-button,
  .InputSliderDiscreteValues input[type="number"]::-webkit-inner-spin-button,
  .InputSliderDiscreteValues input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .InputSlider .secondValue,
  .InputSliderDiscreteValues .secondValue {
    position: absolute;
    background: #005187 !important;
    color: white;
    border-radius: 3px;
    padding: 5px;
    text-align: center;
    margin-left: -20px; }

.InputSliderRange {
  position: relative; }
  .InputSliderRange input[type="number"]::-webkit-inner-spin-button,
  .InputSliderRange input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .InputSliderRange .noUi-horizontal .noUi-handle-upper,
  .InputSliderRange .noUi-horizontal .noUi-handle-lower {
    background: #c2c2c2 !important; }

.baar {
  position: absolute;
  left: 0%;
  bottom: 10px;
  width: 20%;
  height: 4px;
  background: #818181;
  display: block;
  z-index: 100;
  cursor: pointer; }
  .baar:after {
    content: "";
    width: 3px;
    height: 14px;
    right: 0;
    position: absolute;
    top: -5px;
    display: block;
    background: #818181; }

.inputError {
  border: 1px solid salmon; }

.noUi-marker {
  position: absolute !important;
  background: #005187;
  z-index: 100; }

.noUi-value {
  position: absolute !important;
  text-align: center !important;
  margin-top: 15px !important;
  display: none;
  transform: translate(-50%, 10%); }
  .noUi-value:last-of-type, .noUi-value:first-of-type {
    display: block; }

.noUi-value:first-child {
  display: block; }

.noUi-pips-horizontal div:nth-child(2) {
  display: block; }

.noUi-handle:before,
.noUi-handle:after {
  content: "" !important;
  display: none !important;
  position: absolute !important;
  height: 14px !important;
  width: 1px !important;
  background: #e8e7e6 !important;
  left: 14px !important;
  top: 6px !important;
  -webkit-appearance: none !important; }

.noUi-connect {
  box-shadow: none !important; }

.loginLinks {
  /*   width: 100%; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loginLinks a {
    padding-left: 10px; }

.hide-tooltip .noUi-tooltip {
  display: none; }

.inactiveOut {
  color: #9b9b9b; }

/* .node {
 
  .body{
    display: none;
  }
  &.active{
    .body{
    display: block;
    }
  }
} */
.descriptionAfter {
  padding-bottom: 10px; }

.breadcrumbs {
  display: flex;
  padding: 0px 0 0 10px;
  align-items: center;
  color: #fff; }
  .breadcrumbs a {
    color: #fff; }
  .breadcrumbs span {
    font-size: 20px;
    padding: 0 5px; }
  .breadcrumbs svg {
    top: 1px;
    position: relative;
    padding: 0 5px; }
    .breadcrumbs svg path {
      fill: #fff; }
  .breadcrumbs .lastItem {
    font-weight: bold;
    display: flex;
    align-items: center; }
    .breadcrumbs .lastItem .text {
      font-size: 14px;
      padding: 0;
      /* max-width: 100% !important; */
      font-weight: bold;
      font-family: "Glober-bold";
      cursor: pointer; }

#headingBar .breadcrumbs {
  color: #333;
  position: absolute;
  top: 105px;
  left: 10px;
  z-index: 100; }
  #headingBar .breadcrumbs svg {
    top: 1px;
    position: relative;
    padding: 0 5px; }
    #headingBar .breadcrumbs svg path {
      fill: #333; }

.bimBeta {
  font-size: 20px !important;
  padding: 13px 10px 0; }

.resetFilter {
  float: right; }

.tourButton {
  position: absolute;
  right: 0;
  min-width: 75px;
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 10px; }
  .tourButton svg {
    width: 20px; }

.techbimPromo {
  background-color: white;
  width: 690px !important;
  border-radius: 3px;
  top: initial !important;
  bottom: -150px;
  box-shadow: -1px 3px 4px rgba(0, 0, 0, 0.38); }

.techbimPromo > div {
  background-color: transparent !important; }

.resultPane {
  z-index: 2;
  position: relative;
  flex: 0 1 45%;
  box-sizing: border-box;
  /*   @media (min-width: 900px) {
    padding: 0 0px;
  } */ }
  @media (min-width: 1200px) {
    .resultPane {
      padding: 0px; } }
  .resultPane .options {
    background: #d9d9d9;
    height: 40px; }
  .resultPane .result-wrapper {
    overflow-x: hidden;
    overflow-y: auto; }
  .resultPane .title {
    display: none; }
  .resultPane .infoFor {
    background: #c7f0ff !important; }
  .resultPane .changed {
    background: #8beeb4 !important;
    color: #005187 !important; }
  .resultPane .result {
    background: #fff;
    padding: 0px 15px 0px 120px;
    position: relative;
    min-height: 60px;
    border: 1px solid transparent;
    border-bottom: 3px solid #e8e8e8;
    width: 100% !important;
    max-width: calc((100vw - 140px) * 0.6);
    box-sizing: border-box; }
    .resultPane .result.loaded {
      display: block; }
    .resultPane .result.disabled {
      cursor: not-allowed !important;
      background-color: #c8c8c8 !important;
      color: #333 !important; }
      .resultPane .result.disabled:hover {
        color: #333 !important;
        background-color: #c8c8c8 !important; }
        .resultPane .result.disabled:hover .inner, .resultPane .result.disabled:hover .actions {
          opacity: 0 !important;
          cursor: not-allowed !important; }
      .resultPane .result.disabled .overlay {
        opacity: 0 !important; }
        .resultPane .result.disabled .overlay:hover {
          opacity: 0 !important;
          cursor: not-allowed !important;
          background-color: transparent !important; }
    .resultPane .result.not-loaded {
      display: none; }
    .resultPane .result .icon {
      width: 65px;
      height: 65px;
      position: absolute;
      top: 15px;
      left: 25px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .resultPane .result .infoW {
      min-height: 100px;
      display: inline-block;
      padding: 15px 0 30px;
      box-sizing: border-box; }
      .resultPane .result .infoW h3 {
        margin-bottom: 5px;
        font-family: "Glober-bold"; }
    .resultPane .result .keyvalue {
      font-weight: 700;
      float: right; }
    .resultPane .result .actions {
      display: none; }
      .resultPane .result .actions .action {
        width: 40px;
        height: 30px;
        margin: 0px 0px 0px 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        word-break: keep-all;
        position: relative;
        /*&:hover{
					background: $highlight-secondary;
					color: $light;
                    transition: all 200ms ease-in;
				}*/ }
        .resultPane .result .actions .action:active, .resultPane .result .actions .action:hover {
          outline-width: 0; }
          .resultPane .result .actions .action:active .actionLock, .resultPane .result .actions .action:hover .actionLock {
            width: 15px !important;
            height: 15px !important;
            right: 7px !important;
            bottom: 0px;
            padding: 7px; }
        .resultPane .result .actions .action.Download .actionIcon,
        .resultPane .result .actions .action.downloadTitle .actionIcon, .resultPane .result .actions .action.downloadTitle .actionIcon,
        .resultPane .result .actions .action.DownloadAssets .actionIcon,
        .resultPane .result .actions .action.LoadPlace .actionIcon,
        .resultPane .result .actions .action.Load .actionIcon,
        .resultPane .result .actions .action.loadTitle .actionIcon,
        .resultPane .result .actions .action.loadPlaceTitle .actionIcon,
        .resultPane .result .actions .action.Loadgeneric .actionIcon,
        .resultPane .result .actions .action.Loadneutral .actionIcon,
        .resultPane .result .actions .action.Info .actionIcon {
          height: 30px;
          width: 30px !important;
          cursor: pointer;
          box-sizing: border-box;
          display: inline-block;
          background-image: url(/d72aead3001f6ced8a65.svg); }
          .resultPane .result .actions .action.Download .actionIcon:active, .resultPane .result .actions .action.Download .actionIcon:hover,
          .resultPane .result .actions .action.downloadTitle .actionIcon:active,
          .resultPane .result .actions .action.downloadTitle .actionIcon:hover, .resultPane .result .actions .action.downloadTitle .actionIcon:active, .resultPane .result .actions .action.downloadTitle .actionIcon:hover,
          .resultPane .result .actions .action.DownloadAssets .actionIcon:active,
          .resultPane .result .actions .action.DownloadAssets .actionIcon:hover,
          .resultPane .result .actions .action.LoadPlace .actionIcon:active,
          .resultPane .result .actions .action.LoadPlace .actionIcon:hover,
          .resultPane .result .actions .action.Load .actionIcon:active,
          .resultPane .result .actions .action.Load .actionIcon:hover,
          .resultPane .result .actions .action.loadTitle .actionIcon:active,
          .resultPane .result .actions .action.loadTitle .actionIcon:hover,
          .resultPane .result .actions .action.loadPlaceTitle .actionIcon:active,
          .resultPane .result .actions .action.loadPlaceTitle .actionIcon:hover,
          .resultPane .result .actions .action.Loadgeneric .actionIcon:active,
          .resultPane .result .actions .action.Loadgeneric .actionIcon:hover,
          .resultPane .result .actions .action.Loadneutral .actionIcon:active,
          .resultPane .result .actions .action.Loadneutral .actionIcon:hover,
          .resultPane .result .actions .action.Info .actionIcon:active,
          .resultPane .result .actions .action.Info .actionIcon:hover {
            outline-width: 0; }
        .resultPane .result .actions .action.LoadPlace .actionIcon,
        .resultPane .result .actions .action.Loadgeneric .actionIcon,
        .resultPane .result .actions .action.Loadneutral .actionIcon {
          background-image: url(/29b45adf43ef839500ab.svg); }
        .resultPane .result .actions .action.loadPlaceTitle .actionIcon,
        .resultPane .result .actions .action.loadTitle .actionIcon,
        .resultPane .result .actions .action.Load .actionIcon {
          background-image: url(/95d954672ac3e0d1675a.svg); }
        .resultPane .result .actions .action.Info .actionIcon {
          background-image: url(/b7ff577d44c06d876160.svg);
          background-repeat: no-repeat;
          background-position: center; }
      .resultPane .result .actions .disabled {
        background: transparent !important; }
        .resultPane .result .actions .disabled:hover {
          background: red;
          color: white;
          transition: all 200ms ease-in; }
    .resultPane .result .downloadObjectInfo svg {
      height: 20px;
      width: 20px; }
    .resultPane .result .thumbnailUrlBubble {
      border-radius: 8px;
      max-width: 50%;
      max-height: 50%; }
    .resultPane .result .imgwraper {
      display: contents; }
    .resultPane .result img {
      border-radius: 8px;
      max-width: 100%;
      max-height: 100%; }
    .resultPane .result .overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      opacity: 0;
      background-size: 33%;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 8px; }
      @media (min-width: 1200px) {
        .resultPane .result .overlay:hover {
          opacity: 1;
          cursor: pointer; } }
      .resultPane .result .overlay .inner {
        margin: 0px;
        width: 65px;
        height: 65px;
        border-radius: 8px;
        border: 3px solid #005187;
        box-sizing: border-box;
        padding: 20px; }
    .resultPane .result:hover, .resultPane .result.hover {
      color: #005187;
      cursor: default;
      background: #fbfbfb; }
      .resultPane .result:hover .overlay, .resultPane .result.hover .overlay {
        opacity: 1; }
        .resultPane .result:hover .overlay svg, .resultPane .result.hover .overlay svg {
          opacity: 0.2; }
        @media (min-width: 1200px) {
          .resultPane .result:hover .overlay:hover, .resultPane .result.hover .overlay:hover {
            opacity: 1 !important;
            cursor: pointer; }
            .resultPane .result:hover .overlay:hover svg, .resultPane .result.hover .overlay:hover svg {
              opacity: 1 !important; } }
      .resultPane .result:hover .applySelection2, .resultPane .result.hover .applySelection2 {
        display: inline-block; }
      .resultPane .result:hover .actions, .resultPane .result.hover .actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex: auto;
        flex-wrap: wrap;
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        z-index: 110;
        padding-left: 105px;
        box-sizing: border-box; }
      .resultPane .result:hover .loading, .resultPane .result.hover .loading {
        background: red !important; }
  .resultPane .results {
    overflow-y: hidden;
    overflow-x: hidden; }
  .resultPane .selected {
    background: #efefef !important; }
    .resultPane .selected .overlay {
      opacity: 1; }

.noRoot .dependencies {
  cursor: pointer;
  z-index: 120;
  position: absolute;
  top: 40px;
  right: 20px; }
  .noRoot .dependencies .reset {
    font-size: 14px;
    padding: 5px 10px;
    background: #005187; }
    .noRoot .dependencies .reset span {
      color: white;
      border: 0;
      margin-left: 10px; }
    .noRoot .dependencies .reset:hover {
      background: #666666 !important; }

.noRoot .noselectable {
  color: #c7cfd2; }

.ActionBar {
  width: 100%;
  min-height: 75px;
  display: flex; }
  .ActionBar.active {
    display: flex; }
  .ActionBar .leftPart {
    display: flex; }
  .ActionBar .numberOfSelectedWraper {
    display: inline-flex;
    flex-direction: row;
    font-size: 14px;
    padding: 1px;
    box-sizing: border-box;
    margin: 15px 10px 5px 15px;
    text-align: center;
    font-family: "Glober-bold";
    position: relative; }
    .ActionBar .numberOfSelectedWraper .numberOfSelected {
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
      padding: 4px 0 0 10px;
      width: 24px;
      height: 24px;
      color: #828282;
      background: white;
      box-sizing: border-box;
      cursor: pointer; }
    .ActionBar .numberOfSelectedWraper .clearButton {
      width: 24px;
      height: 24px;
      color: #828282;
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
      background-color: white;
      padding: 0px;
      display: inline-block;
      line-height: 24px;
      font-size: 24px;
      box-sizing: border-box;
      text-align: center;
      cursor: pointer; }
  .ActionBar .ActionButton {
    height: 40px;
    margin: 0 5px;
    border-radius: 2px;
    background: white;
    border: 0;
    cursor: pointer; }
    .ActionBar .ActionButton .actionLock {
      width: 8px !important;
      height: 8px !important;
      right: 0px;
      bottom: 3px;
      padding: 3px; }

.ActionBar.resultInfoOpen {
  min-height: 93px; }

#title {
  letter-spacing: 1px; }

.chipsWrapper {
  display: block;
  border: 1px solid #c7cfd2;
  margin: 0px 0px;
  background: white;
  border-radius: 10px;
  padding-right: 10px; }

.chips {
  min-height: 32px;
  line-height: 1;
  font-size: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative; }

.chips-input {
  display: inline-block;
  width: 100%;
  min-height: 32px;
  margin-top: 0px;
  margin-bottom: 0;
  margin-left: 0;
  border: 0;
  padding: 8px 20px;
  outline: none;
  font-size: 0.9rem;
  box-sizing: border-box;
  margin-right: 0px;
  transition: width 0.3s;
  transition-timing-function: ease-in-out;
  border-radius: 10px;
  background: white;
  color: #9b9b9b; }

.clearInput {
  /* position: absolute;
  right: 0px; */
  color: #828282;
  height: 20px;
  width: 30px !important;
  background-image: url(/9174acbbf6739792e80f.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  cursor: pointer;
  box-sizing: border-box;
  display: none;
  margin-right: 5px; }
  .clearInput.open {
    display: block; }

.chip {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 25px;
  position: relative; }
  .chip .chip-value {
    display: inline-block;
    padding: 5px;
    padding-left: 15px;
    padding-right: 7.5px;
    background: #c7cfd2;
    color: #fff;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    white-space: nowrap; }
  .chip .chip-delete-button {
    background: #c7cfd2;
    color: #fff;
    border: 0;
    border-radius: 0 8px 8px 0;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -25px;
    line-height: 0.5;
    font-weight: bold;
    font-size: 24px; }

.inner-wrapper {
  min-height: 32px;
  line-height: 1;
  font-size: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  padding-left: 30px; }

.act-wrapper {
  display: flex;
  align-items: center; }

.searchIcon {
  background-image: url(/5d1d867fadea013d4716.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  left: 10px;
  top: 7px;
  cursor: pointer; }
  .searchIcon.open {
    display: block; }

.filterIcon {
  background-image: url(/e4c8b5cbd06ec7c09f7d.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 50px;
  height: 50px; }

button:disabled {
  background: #c7cfd2 !important;
  color: white;
  cursor: not-allowed !important; }

.filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end; }

.layoutSelector {
  height: 40px;
  width: 70px;
  position: absolute;
  right: 13px;
  top: 20px;
  display: flex; }
  .layoutSelector svg {
    width: 20px;
    height: 20px;
    cursor: pointer; }
  .layoutSelector .active rect,
  .layoutSelector .active line {
    stroke: #0097e0; }
  .layoutSelector .grid.active rect,
  .layoutSelector .grid.active line {
    fill: #0097e0;
    stroke: transparent; }
  .layoutSelector .grid.active #border1 {
    stroke: #0097e0;
    fill: transparent !important; }

.actions svg:focus,
.actions button:focus,
.ActionBar svg:focus,
.ActionBar button:focus {
  outline: 0; }

.actions .dd-menu.dd-menu-center .dd-menu-items,
.ActionBar .dd-menu.dd-menu-center .dd-menu-items {
  left: 20px;
  top: 20px;
  transform: none;
  outline: 0;
  z-index: 700; }

.actions .dd-menu .dd-menu-items .dd-items-center,
.ActionBar .dd-menu .dd-menu-items .dd-items-center {
  border-radius: 4px; }
  .actions .dd-menu .dd-menu-items .dd-items-center li,
  .ActionBar .dd-menu .dd-menu-items .dd-items-center li {
    border-bottom: 1px solid #d8d8d8;
    padding-right: 10px; }
  .actions .dd-menu .dd-menu-items .dd-items-center li:last-child,
  .ActionBar .dd-menu .dd-menu-items .dd-items-center li:last-child {
    border-bottom: 0px; }

.actions .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
.actions .dd-menu .dd-menu-items ul li > *:focus,
.actions .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
.actions .dd-menu .dd-menu-items ul li:hover .itemText,
.actions .dd-menu .dd-menu-items ol li > *:focus,
.ActionBar .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
.ActionBar .dd-menu .dd-menu-items ul li > *:focus,
.ActionBar .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
.ActionBar .dd-menu .dd-menu-items ul li:hover .itemText,
.ActionBar .dd-menu .dd-menu-items ol li > *:focus {
  background-color: transparent;
  color: #0196e0 !important;
  cursor: pointer; }
  .actions .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) svg,
  .actions .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) g,
  .actions .dd-menu .dd-menu-items ul li > *:focus svg,
  .actions .dd-menu .dd-menu-items ul li > *:focus g,
  .actions .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) svg,
  .actions .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) g,
  .actions .dd-menu .dd-menu-items ul li:hover .itemText svg,
  .actions .dd-menu .dd-menu-items ul li:hover .itemText g,
  .actions .dd-menu .dd-menu-items ol li > *:focus svg,
  .actions .dd-menu .dd-menu-items ol li > *:focus g,
  .ActionBar .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) svg,
  .ActionBar .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) g,
  .ActionBar .dd-menu .dd-menu-items ul li > *:focus svg,
  .ActionBar .dd-menu .dd-menu-items ul li > *:focus g,
  .ActionBar .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) svg,
  .ActionBar .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) g,
  .ActionBar .dd-menu .dd-menu-items ul li:hover .itemText svg,
  .ActionBar .dd-menu .dd-menu-items ul li:hover .itemText g,
  .ActionBar .dd-menu .dd-menu-items ol li > *:focus svg,
  .ActionBar .dd-menu .dd-menu-items ol li > *:focus g {
    stroke: #0196e0 !important; }

.actions .itemText,
.ActionBar .itemText {
  display: flex !important;
  padding: 10px 15px !important;
  color: #414141 !important; }
  .actions .itemText img,
  .ActionBar .itemText img {
    padding-right: 10px; }

.filterSelector {
  height: 40px;
  width: 40px;
  position: absolute;
  right: 15px;
  top: 5px;
  cursor: pointer; }
  .filterSelector svg {
    fill: #818181; }

.toggle-layout {
  width: 50px;
  height: 50px;
  background: url(/86ced294f7514d384f60.svg) no-repeat;
  background-size: 40px 40px;
  background-position: center;
  cursor: pointer; }

.list,
.grid,
.tiles {
  height: 20px;
  width: 20px !important;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-size: 70%;
  background-position: center;
  cursor: pointer;
  box-sizing: border-box; }

.searchBar {
  height: 50px;
  overflow: hidden;
  transition: all 0.4s;
  position: absolute;
  padding: 0 10px 0 15px;
  top: 55px;
  width: calc(100% - 30px);
  z-index: 100; }
  .searchBar.active {
    height: 50px;
    position: absolute;
    z-index: 100;
    width: calc(100% - 30px); }
  .searchBar .fav-wrapper {
    /*   position: absolute;
    top: 10px;
    right: 25px; */
    margin-left: 10px; }
  .searchBar .resultCounter {
    /*  position: absolute;
    top: 10px;
    right: 60px; */
    width: max-content;
    color: #9b9b9b; }

.gridView .results {
  /*   display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  justify-content: space-evenly;
 */
  margin: 30px 0 0 2%; }

.gridView .result {
  background: #fff;
  min-height: 60px;
  width: 33%;
  box-sizing: border-box;
  margin: 20px 1px;
  justify-items: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 8px;
  width: 30% !important;
  padding: 10px;
  max-width: calc((100vw - 140px) * 0.2); }
  .gridView .result:hover .actions {
    top: 130px;
    height: 42px;
    bottom: initial;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    width: calc(100% - 20px);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-left: 0px;
    justify-content: center; }
    .gridView .result:hover .actions .action {
      margin: 0; }
      .gridView .result:hover .actions .action svg path,
      .gridView .result:hover .actions .action svg rect {
        fill: #ffffff;
        stroke: #ffffff; }
  .gridView .result:hover .actions.infoButtonHidden {
    left: 10px; }
  .gridView .result .hart {
    top: 20px; }
  .gridView .result .icon {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    min-height: 162px;
    background: white; }
  .gridView .result .overlay {
    height: 180px; }
  .gridView .result .overlay .inner {
    margin: 0px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid;
    box-sizing: border-box;
    padding: 8px;
    top: 10px;
    left: 10px;
    position: absolute; }
    .gridView .result .overlay .inner svg {
      width: 10px;
      height: 10px;
      top: 4px;
      left: 3px;
      position: absolute; }
  .gridView .result .infoW {
    width: 100%;
    padding: 5px 0 10px; }
    .gridView .result .infoW h3 {
      word-break: break-word;
      max-height: 33px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      font-size: 14px;
      margin-top: 5px;
      -webkit-box-orient: vertical; }
    .gridView .result .infoW p {
      height: 33px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      font-size: 13px;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }

.ActionBar .ActionButton {
  height: 40px;
  margin: 0px 5px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  width: 40px;
  box-sizing: border-box;
  padding: 0px;
  overflow: visible;
  background: transparent;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; }
  .ActionBar .ActionButton.Download .actionIcon,
  .ActionBar .ActionButton.downloadTitle .actionIcon,
  .ActionBar .ActionButton.DownloadAssets .actionIcon,
  .ActionBar .ActionButton.LoadPlace .actionIcon,
  .ActionBar .ActionButton.Loadgeneric .actionIcon,
  .ActionBar .ActionButton.Loadneutral .actionIcon,
  .ActionBar .ActionButton.loadPlaceTitle .actionIcon,
  .ActionBar .ActionButton.loadTitle .actionIcon,
  .ActionBar .ActionButton.Load .actionIcon {
    height: 25px;
    width: 25px !important;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0 0px;
    display: inline-block;
    position: absolute;
    top: 15px; }
  .ActionBar .ActionButton.LoadPlace .actionIcon,
  .ActionBar .ActionButton.loadPlaceTitle .actionIcon {
    background-image: url(/29b45adf43ef839500ab.svg); }
  .ActionBar .ActionButton.Loadgeneric .actionIcon,
  .ActionBar .ActionButton.Loadneutral .actionIcon,
  .ActionBar .ActionButton.loadTitle .actionIcon,
  .ActionBar .ActionButton.Load .actionIcon {
    background-image: url(/95d954672ac3e0d1675a.svg); }
  .ActionBar .ActionButton svg {
    fill: #818181; }
  .ActionBar .ActionButton:hover .actionLock {
    width: 15px !important;
    height: 15px !important;
    right: 8px;
    bottom: 0px;
    padding: 7px; }

.ActionBar .applySelection {
  width: auto;
  padding: 0 10px;
  color: #333;
  height: 32px;
  border: 2px solid #333;
  background: transparent;
  margin: 8px;
  line-height: 28px;
  border-radius: 8px; }
  .ActionBar .applySelection:hover {
    color: white;
    background: red;
    border: 2px solid red; }

.applySelection2:nth-last-of-type() {
  font-size: 13px;
  padding: 0px 8px;
  line-height: 13px;
  display: none;
  margin: 0 10px;
  font-family: "Glober";
  height: 27px;
  background: transparent;
  color: white;
  border: 2px solid #ce1127; }

.Download svg,
.downloadTitle svg,
.DownloadFEMAlijst svg,
.DownloadAssets svg {
  width: 35px;
  height: 33px;
  margin-top: -9px;
  margin-left: -19px; }

.Download .actionLock,
.downloadTitle .actionLock,
.DownloadFEMAlijst .actionLock,
.DownloadAssets .actionLock {
  right: 5px !important;
  bottom: 0px; }

.Download:hover .actionLock,
.downloadTitle:hover .actionLock,
.DownloadFEMAlijst:hover .actionLock,
.DownloadAssets:hover .actionLock {
  right: 0px !important; }

.ActionBar .Download svg {
  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-left: -7px; }

.Info {
  margin-top: 1px !important; }

.resultPane .result:hover .actionLock path,
.resultPane .result:hover .actionLock rect {
  fill: white;
  stroke: white; }

.actionLock {
  position: absolute;
  background: #d0021b;
  border-radius: 20px;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.1s;
  right: -5px;
  bottom: -2px;
  padding: 3px; }

.startFilter {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 24px;
  font-family: "Glober-bold";
  padding-top: 120px;
  width: 50%; }
  .startFilter .inner {
    display: flex; }
    .startFilter .inner svg {
      height: 30px;
      margin-top: 3px;
      margin-right: 10px; }

.noFav {
  width: 80%;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  position: absolute;
  top: 45%;
  margin: 0 10%;
  font-family: "Glober-bold"; }

.multiselected .applySelection2,
.oneSelected .result:hover .applySelection2 {
  display: none !important; }

.multiselected .result:hover .applySelection2,
.oneSelected .result:hover .applySelection2 {
  display: none !important; }

.oneSelected .selected:hover .applySelection2 {
  display: block !important; }

.rootMultiselected .actions,
.oneRootSelected .result:hover .actions {
  display: none !important; }

.rootMultiselected .result:hover .actions,
.oneRootSelected .result:hover .actions {
  display: none !important; }

.oneRootSelected .selected:hover .actions {
  display: flex !important; }

.resultImage {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: calc(100vh - 50px);
  overflow: auto; }

.ReactVirtualized__Grid__innerScrollContainer {
  overflow: initial !important;
  margin-top: 41px; }

.noResult {
  font-size: 18px;
  text-align: left; }
  .noResult .noResultLink {
    cursor: pointer;
    text-decoration: underline; }

.resultImageWrapper {
  background: white; }

.calculatedValues {
  display: flex;
  margin-top: 0px;
  margin-bottom: 10px;
  width: 100%;
  justify-content: flex-start; }
  .calculatedValues .value {
    /*   font-weight: bold;
    font-family: "Glober-bold"; */
    text-align: center;
    padding-left: 5px;
    border-left: 2px solid black;
    width: 33.3%; }
  .calculatedValues .value:first-of-type {
    border-left: 0; }

.actions.withCalculatedValues {
  bottom: 25px !important; }

#headingBar .calculatedValues {
  margin-top: 50px;
  margin-left: 120px;
  width: calc(100% - 135px); }

#headingBar .calculatedValuesText1,
#headingBar .calculatedValuesText2 {
  width: calc(100% - 30px);
  margin: 0 15px;
  display: none; }

.notShowResultInfo #headingBar .calculatedValuesText1,
.notShowResultInfo #headingBar .calculatedValuesText2 {
  width: calc(100% - 30px);
  margin: 0 15px;
  display: block; }

.calculatedValuesWrapper {
  margin-bottom: -50px;
  margin-top: 30px;
  width: calc(100% - 135px);
  height: 40px;
  margin-left: 120px;
  margin-right: 15px; }

.link {
  text-decoration: underline;
  cursor: pointer; }

.status {
  position: absolute;
  top: 10px;
  left: -6px;
  z-index: 100; }

.openUrl,
.openUrlSameTab {
  position: relative; }
  .openUrl svg,
  .openUrlSameTab svg {
    width: 20px;
    height: 20px; }
    .openUrl svg path,
    .openUrlSameTab svg path {
      fill: none !important;
      stroke: white !important; }

.resultPane .result.noAction:hover {
  color: #333 !important;
  background-color: #d6d6d6 !important; }
  .resultPane .result.noAction:hover .overlay {
    opacity: 0; }
    .resultPane .result.noAction:hover .overlay:hover {
      opacity: 0 !important;
      cursor: auto !important; }
    .resultPane .result.noAction:hover .overlay .inner {
      border-color: transparent; }
      .resultPane .result.noAction:hover .overlay .inner svg {
        opacity: 0; }

.resultExpandButton {
  display: block;
  z-index: 1;
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  background-color: transparent;
  height: 23px;
  width: 23px; }

#root {
  width: 100%;
  height: 100vh; }

.tilesView-wrapper {
  margin: 0 15px 0 10px;
  /* .cellH{
display: flex;
align-items: center;
flex-direction: column;

.cell{
  margin: 0;
}
} */ }
  .tilesView-wrapper .units {
    width: 85px;
    text-align: center;
    height: 60px;
    padding: 20px 0;
    box-sizing: border-box; }
  .tilesView-wrapper .controlButton {
    font-size: 40px;
    border: 0;
    border-radius: 8px;
    align-items: center;
    line-height: 0.8;
    width: 50px;
    box-sizing: border-box;
    height: 30px;
    color: #e0e0e0;
    background-color: white;
    cursor: pointer; }
  .tilesView-wrapper .controlButton:hover {
    background-color: black;
    color: white; }
  .tilesView-wrapper .controlButton.down,
  .tilesView-wrapper .controlButton.top {
    height: 9px;
    margin: 5px; }
  .tilesView-wrapper .controlButton.left,
  .tilesView-wrapper .controlButton.right {
    width: 9px;
    line-height: 0.2;
    padding: 0;
    margin: 5px; }
  .tilesView-wrapper .controlButton.disabled {
    background: #d4d4d4;
    cursor: not-allowed;
    color: white; }
  .tilesView-wrapper .cell,
  .tilesView-wrapper .startCell,
  .tilesView-wrapper .cell0,
  .tilesView-wrapper .cell1 {
    min-width: 50px;
    /*   display: block; */
    min-height: 30px;
    background-color: white;
    margin: 4px;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 8px;
    max-width: 100px;
    /*   overflow: hidden; */
    text-overflow: ellipsis; }
  .tilesView-wrapper .tileTable:not(.empty) tbody .cell {
    cursor: pointer; }
  .tilesView-wrapper .cell {
    position: relative;
    border: 2px solid transparent; }
    .tilesView-wrapper .cell span {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-family: "Glober-bold";
      color: #fff;
      background: black;
      width: 15px;
      height: 15px;
      border-radius: 50%; }
    .tilesView-wrapper .cell:hover {
      border: 2px solid black; }
  .tilesView-wrapper .cellH .cell.selected,
  .tilesView-wrapper .startCell.selected {
    border: 0px solid black !important;
    background-color: #bdbdbd !important;
    color: #333 !important; }
  .tilesView-wrapper .cellH.selected {
    background-color: transparent !important; }
  .tilesView-wrapper .startCell,
  .tilesView-wrapper .cellH .cell {
    background-color: #d4d4d4; }
  .tilesView-wrapper .cell1 {
    background-color: #d5d5d5;
    color: #bdbdbd; }
  .tilesView-wrapper tbody .selected {
    border: 2px solid black; }
  .tilesView-wrapper .cell0 {
    color: transparent;
    background-color: transparent; }
  .tilesView-wrapper .cell.inactive {
    background-color: #d5d5d5;
    color: #bdbdbd; }

.withRFTDrop .breadcrumbs {
  top: 60px !important; }

.resultTilesFilter {
  position: relative;
  padding: 0 10px 0 15px; }
  .resultTilesFilter svg {
    position: absolute;
    left: 27px;
    top: 21px;
    z-index: 10; }
  .resultTilesFilter .Select {
    background: white;
    border-radius: 8px;
    padding: 8px 10px 6px 35px; }
    .resultTilesFilter .Select .Select-control {
      border-bottom: 0 !important; }
    .resultTilesFilter .Select .Select-arrow {
      background-image: url(/9acaaf58d62c3bd6d494.svg);
      height: 10px;
      width: 20px;
      display: block;
      background-size: cover;
      border: 0; }
  .resultTilesFilter .is-open .Select-arrow {
    transform: rotate(180deg); }

.tilesView-wrapper {
  /*  margin-top: 41px; */ }
  .tilesView-wrapper .tile {
    text-align: center; }
    .tilesView-wrapper .tile .tileContent {
      background: white;
      border-radius: 5px;
      margin: 5px;
      padding: 5px; }
  .tilesView-wrapper .BottomLeftGrid_ScrollWrapper .tileContent {
    background: #bdbdbd; }
  .tilesView-wrapper .TopRightGrid_ScrollWrapper .tileContent {
    background: #bdbdbd; }
  .tilesView-wrapper .ReactVirtualized__Grid__innerScrollContainer {
    /*   margin-top: 0; */ }

.expandResults .tileTable {
  max-width: calc(100vw - 130px); }

.tileTable {
  min-width: 40vw;
  height: calc(100vh - 125px);
  overflow: auto;
  position: relative;
  max-width: 50vw; }
  .tileTable table {
    position: relative;
    border-collapse: collapse;
    border-spacing: 3px; }
  .tileTable .table {
    width: auto;
    margin: 0; }
  .tileTable thead th {
    position: -webkit-sticky;
    /* for Safari */
    position: sticky;
    top: 0;
    background: #e8e8e8;
    z-index: 1; }
  .tileTable thead th:first-child {
    left: 0;
    z-index: 2; }
  .tileTable tbody th {
    position: -webkit-sticky;
    /* for Safari */
    position: sticky;
    left: 0;
    z-index: 1;
    background: #e8e8e8; }

.startPart {
  display: flex;
  justify-content: center; }

.result:hover {
  cursor: pointer !important; }

.result.notActive {
  background-color: #d5d5d5 !important; }

#Layer_33,
#Layer_22 {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -18px;
  left: -20px; }

#paperClip {
  width: 20px;
  height: 25px;
  position: absolute;
  top: 2px;
  left: 8px; }

.resultDetails #paperClip {
  position: initial;
  top: initial;
  left: initial; }

.calcButton {
  height: 30px;
  margin: 20px;
  line-height: 1; }

.withRealBC #headingBar {
  background-color: #e8e8e8;
  height: 130px;
  z-index: 1000; }
  .withRealBC #headingBar .searchBar {
    top: 50px; }
  .withRealBC #headingBar .breadcrumbs {
    width: calc(100% - 60px);
    overflow: hidden;
    top: 95px; }

.withRealBC #headingBar.areVales {
  height: 180px; }

.withRealBC .ReactVirtualized__Grid__innerScrollContainer {
  margin-top: 0; }

.withRealBC.gridView .results {
  margin-top: -20px; }

.cls-rotate {
  transform-origin: 410.772px 257.088px; }

.loadLink {
  height: 18px !important; }

.keyValues {
  display: flex;
  font-style: italic; }
  .keyValues .item {
    font-size: 11px;
    display: flex;
    align-items: center; }
    .keyValues .item .key {
      margin-right: 10px; }

.gridView-wrapper .keyValues {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  font-style: italic; }
  .gridView-wrapper .keyValues .item {
    display: flex;
    font-size: 11px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column; }

.controller li {
  padding-bottom: 8px; }

.controller .hide {
  display: none; }

.controller input[type="checkbox"]:not(old),
.controller input[type="radio"]:not(old) {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  opacity: 0; }

.controller input[type="checkbox"]:not(old) + label,
.controller input[type="radio"]:not(old) + label {
  display: inline-block;
  margin-left: -28px;
  padding-left: 35px;
  line-height: 16px; }

.controller input[type="checkbox"]:not(old):checked + label,
.controller input[type="radio"]:not(old):checked + label {
  background-position: 0 0; }

.controller input[type="radio"]:not(old) + label {
  background: url(/5a82bdb32827634ef4c0.png) no-repeat 0px -71px; }

.controller input[type="radio"]:not(old):checked + label {
  background-position: 0px -46px; }

.indicators {
  position: absolute;
  right: 10px;
  bottom: 10px; }
  .indicators li {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 5px;
    float: left;
    border-radius: 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-color: #666666; }
  .indicators .active {
    background-color: #8beeb4; }

input[type="checkbox"]:disabled + label,
input[type="radio"]:disabled + label {
  color: #dadada; }

.reset {
  background: #c7cfd2;
  padding: 2px 5px;
  font-size: 11px;
  border-radius: 5px;
  color: white;
  margin-left: 10px;
  height: 16px; }
  .reset span {
    font-style: normal;
    font-size: 30px;
    line-height: 14px;
    vertical-align: text-top;
    padding: 0 0 0 3px; }
  .reset:hover {
    background: #666666 !important; }

.controller .reset span {
  font-size: 20px; }

.mf-radio-block,
.mf-radio-inline {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left; }

.mf-radio-inline .mf-radio {
  display: inline-block;
  margin-right: 1rem; }

.mf-radio-legend {
  margin: 0 0 0.125rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: #333; }

.mf-radio-hint {
  margin: 0.125rem 0;
  font-weight: 400;
  font-size: 0.8rem;
  color: #b3b3b3;
  -webkit-transition: color 0.28s ease;
  transition: color 0.28s ease; }

.mf-radio {
  margin-bottom: 0.225rem; }
  .mf-radio *,
  .mf-radio *::before,
  .mf-radio *::after {
    box-sizing: border-box; }

.mf-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 1.5rem;
  text-align: left;
  color: #333;
  display: block; }

.mf-radio label:hover .mf-radio-button {
  color: #337ab7; }

.mf-radio label span {
  display: block;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.mf-radio label span span {
  display: inline-block; }

.mf-radio input {
  width: auto;
  opacity: 0.0001;
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0; }

.mf-radio input:checked ~ .mf-radio-button::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5); }

.mf-radio input:checked ~ .mf-radio-button::before {
  color: #337ab7; }

.with-dependenies .mf-radio-button::after {
  background-color: #cbcbcb !important;
  border-color: #cbcbcb !important;
  cursor: not-allowed; }

.InputSliderRange [disabled].noUi-origin, [disabled] .noUi-handle {
  cursor: pointer; }

.with-dependenies:hover .mf-radio-button {
  color: #cbcbcb !important;
  cursor: not-allowed; }

.mf-radio-button {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #757575; }

.mf-radio-button::before,
.mf-radio-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  margin: 0rem;
  width: 18px;
  height: 18px;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor; }

.mf-radio-button::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7; }

.md-checkbox {
  position: relative;
  margin: 10px 0 0; }
  .md-checkbox label {
    cursor: pointer; }
    .md-checkbox label:before, .md-checkbox label:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0; }
    .md-checkbox label:before {
      width: 15px;
      height: 15px;
      background: #fff;
      border: 2px solid rgba(0, 0, 0, 0.54);
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.3s; }
  .md-checkbox input[type="checkbox"] {
    outline: 0;
    margin-right: 5px; }
    .md-checkbox input[type="checkbox"]:checked + label:before {
      background: #5b6770;
      border-color: #5b6770; }
    .md-checkbox input[type="checkbox"]:checked + label:after {
      transform: rotate(-45deg);
      top: 4px;
      left: 3px;
      width: 10px;
      height: 6px;
      border: 2px solid #fff;
      border-top-style: none;
      border-right-style: none; }

.descriptionBefore {
  padding: 10px 0; }

.depWrapper {
  position: relative;
  top: -25px;
  right: -20px;
  min-height: 16px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
  flex-wrap: wrap;
  pointer-events: none; }
  .depWrapper span {
    pointer-events: all;
    float: right;
    display: block;
    height: 16px;
    margin: 0px 0px 2px 10px; }
    .depWrapper span span {
      font-style: normal;
      font-size: 20px;
      line-height: 13px;
      padding: 0 0 0 3px; }

.input input {
  margin-left: 10px;
  width: 70px;
  padding: 2px 5px; }

.configurButtons {
  display: flex;
  align-items: center;
  justify-content: center; }
  .configurButtons .button {
    margin: 5px; }

.notValid {
  border: 1px solid tomato; }

.errorMessage {
  color: tomato;
  margin-left: 10px;
  font-size: 11px; }

.textualButton {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  /*   position: absolute;
  bottom: 20px;
  right: 20px; */
  max-width: 180px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 13px;
  padding: 5px; }

.regime {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 10px; }

.lazy {
  /*   margin-top: 70px; */
  min-height: 160px; }
  .lazy li {
    padding: 0; }
    .lazy li label {
      vertical-align: center !important; }

.active .grouped {
  max-width: 500px;
  position: relative;
  background: #e8e8e8;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between; }
  .active .grouped .nodeControl:last-of-type {
    margin-bottom: 0px !important; }

.invalidIcon {
  color: white;
  background: red;
  padding: 2px 5px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: monospace; }

.node.invalid {
  border: 4px solid red; }
  .node.invalid .descriptionBefore {
    color: red; }

.invalidConfiguration {
  color: red;
  display: inline-block;
  width: 100%;
  min-height: 200px;
  text-align: center;
  font-size: 32px;
  padding-top: 100px;
  background-color: white; }

.reset-combinaison {
  cursor: default; }
  .reset-combinaison:hover {
    background-color: #c7cfd2 !important; }

.TextAreaJSONFilter {
  list-style: none; }
  .TextAreaJSONFilter ul {
    background-color: #e0f1ff !important; }
  .TextAreaJSONFilter textarea {
    width: 100%;
    min-height: 100px; }

.textInput textarea {
  min-width: 175px;
  margin-left: 0;
  width: 100%; }

.w-tc-editor-preview, textarea {
  word-break: break-word !important;
  overflow-wrap: break-word !important; }

#TextAreaJSONFilter-outer-box, #TextAreaJSONFilterTab-outer-box {
  min-width: 175px;
  margin-left: 0;
  width: 100% !important;
  max-width: 33vw;
  min-height: 250px;
  height: auto !important; }
  #TextAreaJSONFilter-outer-box #TextAreaJSONFilter-container,
  #TextAreaJSONFilter-outer-box #TextAreaJSONFilterTab-container, #TextAreaJSONFilterTab-outer-box #TextAreaJSONFilter-container,
  #TextAreaJSONFilterTab-outer-box #TextAreaJSONFilterTab-container {
    border: 1px solid #333;
    width: 100% !important;
    min-height: 250px;
    height: auto !important; }

#TextAreaJSONFilterTab-outer-box {
  max-width: 100%; }

.selectableToggle {
  position: absolute;
  top: 95px;
  right: 10px;
  z-index: 1000; }

.dateRange {
  display: flex;
  align-items: center; }
  .dateRange .label {
    margin-right: 5px; }
  .dateRange input {
    margin-right: 15px; }

.rc-tabs {
  box-sizing: border-box;
  position: relative; }

.rc-tabs-bar,
.rc-tabs-nav-container {
  font-size: 14px;
  line-height: 28px;
  box-sizing: border-box;
  position: relative;
  white-space: nowrap;
  outline: none;
  zoom: 1;
  max-width: calc(50vw - 50px); }

.bigInfoView .rc-tabs-nav-container, .bigInfoView .rc-tabs-bar {
  max-width: calc(100vw - 185px) !important; }

.hideDetails .rc-tabs-nav-container {
  max-width: calc(50vw - 80px); }

.rc-tabs-tab-prev-icon:before,
.rc-tabs-tab-next-icon:before {
  display: block; }

.rc-tabs-tab-btn-disabled {
  cursor: default !important;
  color: #ccc; }

.rc-tabs-tab-arrow-show {
  cursor: pointer; }

.rc-tabs-nav-wrap {
  overflow: hidden; }

.rc-tabs-nav {
  box-sizing: border-box;
  padding-left: 0;
  position: relative;
  margin: 0;
  float: left;
  list-style: none;
  display: inline-block;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0; }

.rc-tabs-nav-animated {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1);
  transition: transform 0.5s cubic-bezier(0.35, 0, 0.25, 1), -webkit-transform 0.5s cubic-bezier(0.35, 0, 0.25, 1); }

.rc-tabs-nav:before,
.rc-tabs-nav:after {
  display: table;
  content: " "; }

.rc-tabs-nav:after {
  clear: both; }

.rc-tabs-tab {
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transition: color 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  transition: color 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  padding: 5px 15px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #939393; }

.rc-tabs-tab-active,
.rc-tabs-tab-active:hover {
  color: #4a4a4a;
  cursor: default;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  background: white !important;
  font-family: "Glober-bold"; }

.rc-tabs-tab-disabled {
  cursor: default;
  color: #ccc; }

.rc-tabs-tab-disabled:hover {
  color: #ccc; }

.rc-tabs-content {
  zoom: 1;
  width: 100%;
  height: 100vh;
  background: white; }

.rc-tabs-content .rc-tabs-tabpane {
  overflow: auto;
  background: white; }

.rc-tabs-content-animated {
  -webkit-transition: margin-left 0.3s cubic-bezier(0.35, 0, 0.25, 1), margin-top 0.3s cubic-bezier(0.35, 0, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  transition: margin-left 0.3s cubic-bezier(0.35, 0, 0.25, 1), margin-top 0.3s cubic-bezier(0.35, 0, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.35, 0, 0.25, 1), margin-left 0.3s cubic-bezier(0.35, 0, 0.25, 1), margin-top 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.35, 0, 0.25, 1), margin-left 0.3s cubic-bezier(0.35, 0, 0.25, 1), margin-top 0.3s cubic-bezier(0.35, 0, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.35, 0, 0.25, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform; }

.rc-tabs-content-animated .rc-tabs-tabpane {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  box-sizing: border-box; }

.no-flexbox .rc-tabs-content {
  -webkit-transform: none !important;
  transform: none !important;
  overflow: auto; }

.no-csstransitions .rc-tabs-tabpane-inactive,
.no-flexbox .rc-tabs-tabpane-inactive,
.rc-tabs-content-no-animated .rc-tabs-tabpane-inactive {
  display: none; }

.rc-tabs-top {
  overflow-x: hidden;
  height: 100%;
  overflow: hidden; }

.resultP .rc-tabs-top .rc-tabs-bar {
  background: transparent;
  margin-left: 20px; }

.rc-tabs-top .rc-tabs-nav-container-scrolling {
  padding-left: 32px;
  padding-right: 32px;
  margin-left: -20px; }

.rc-tabs-top .rc-tabs-nav-wrap {
  width: 100%;
  background: #e8e8e8; }

.rc-tabs-top .rc-tabs-content-animated {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.rc-tabs-top .rc-tabs-content-animated .rc-tabs-tabpane {
  width: 100%; }

.rc-tabs-top .rc-tabs-tab-next {
  right: 2px; }

.rc-tabs-top .rc-tabs-tab-next-icon:before {
  content: ">";
  font-size: 48px; }

.rc-tabs-top .rc-tabs-tab-prev {
  left: 0; }

.rc-tabs-top .rc-tabs-tab-prev-icon:before {
  content: "<";
  font-size: 48px; }

.rc-tabs-top .rc-tabs-tab-prev,
.rc-tabs-top .rc-tabs-tab-next {
  margin-right: -2px;
  width: 32px;
  height: 100%;
  top: 0;
  text-align: center;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center; }

.rc-tabs-top .rc-tabs-ink-bar {
  height: 2px;
  bottom: 0;
  left: 0; }

.rc-tabs-top .rc-tabs-tab {
  float: left;
  height: auto;
  margin-right: 5px;
  background: #f4f4f4; }

.rc-tabs-top .rc-tabs-tabpane-inactive {
  height: 0;
  overflow: visible; }

.hideDetails .rc-tabs-tabpane {
  height: calc(100vh - 70px); }

.rc-tabs-tabpane {
  padding: 20px;
  padding-bottom: 0px;
  height: calc(100vh - 250px); }
  .rc-tabs-tabpane h2 {
    margin-bottom: 20px; }
  .rc-tabs-tabpane h3 {
    margin-bottom: 10px; }
  .rc-tabs-tabpane img {
    width: auto;
    max-width: 100%;
    margin: 0px auto;
    box-sizing: border-box;
    justify-self: center;
    align-self: center;
    display: flex;
    height: auto;
    max-height: 100%;
    padding: 10px; }
  .rc-tabs-tabpane .second {
    width: auto;
    max-width: 50%;
    margin: 0px auto;
    box-sizing: border-box;
    justify-self: center;
    align-self: center;
    display: inline;
    height: auto;
    max-height: 100%;
    padding: 10px; }
  .rc-tabs-tabpane p {
    padding: 10px 0; }
  .rc-tabs-tabpane ul {
    list-style: none; }
    .rc-tabs-tabpane ul li img {
      width: 50%; }
    .rc-tabs-tabpane ul .drawing_description {
      margin-top: 20px;
      float: right; }
    .rc-tabs-tabpane ul .description_images img {
      width: 100%; }
    .rc-tabs-tabpane ul .documentation img {
      margin: 10px 0 !important; }

.rc-tabs-content-animated .rc-tabs-tabpane {
  position: relative; }

.lockedContact {
  color: #979797; }
  .lockedContact svg {
    margin-right: 5px; }
    .lockedContact svg g {
      fill: #979797; }

.imageTab {
  padding: 0;
  max-width: 100%; }

.resultP .rc-tabs-nav-scroll {
  width: 99999px; }

.breadP {
  display: none;
  flex: 0.00001;
  transition: all 0.5s; }

.breadP.active {
  display: block;
  background: white;
  padding: 20px;
  flex: 1; }

.breadcrumbPane.hide {
  flex: 0.00001 !important; }

.resultPane.configurator .searchBar {
  display: none; }

.resultPane.configurator .ActionBar {
  min-height: 55px; }

.resultPane.hide {
  flex: 0.00001 !important; }

.resultP {
  flex: 0.00001;
  display: none; }

.resultP.active {
  display: block;
  background: #e8e8e8;
  padding: 0;
  flex: 1;
  z-index: 1;
  width: 50vw; }

.openTest {
  width: 225px;
  min-height: 38px;
  box-sizing: content-box; }

.infoCloseButton {
  position: absolute;
  right: 5px;
  top: 10px;
  display: block;
  z-index: 1;
  border: 0;
  height: 30px;
  width: 40px !important;
  background-image: url(/9174acbbf6739792e80f.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  cursor: pointer;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 200; }

.detailsWrapper {
  position: relative;
  z-index: 100; }

.infoExpandButton {
  position: absolute;
  right: 7px;
  bottom: -36px;
  display: block;
  z-index: 1;
  border: 0;
  cursor: pointer;
  box-sizing: border-box;
  background-color: transparent; }

.hideDetails .infoExpandButton {
  right: 35px;
  top: 14px; }

.bigInfoView .hideDetails .infoExpandButton {
  right: 9px;
  top: 14px; }

.showResultInfo {
  flex: 0 1 40% !important; }

.hideDetails .resultDetails {
  transform: scaleY(0);
  transition: all 50ms ease;
  padding: 0px;
  min-height: 0;
  height: 9px; }

.resultDetails {
  min-height: 100px;
  padding: 50px 20px 20px 0;
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transform-origin: top;
  transform: scaleY(1);
  transform-style: flat; }
  .resultDetails h3 {
    font-family: "Glober", Arial !important;
    font-size: 22px;
    padding-bottom: 0px; }
  .resultDetails .permaLink {
    font-size: 10px;
    font-family: "Glober", Arial !important;
    margin: 0px 0px 10px;
    display: contents; }
  .resultDetails .image {
    width: 75px;
    min-width: 75px;
    height: 75px;
    display: flex;
    border-radius: 5px;
    background: white;
    margin-right: 20px; }
    .resultDetails .image img {
      margin: auto;
      max-width: 100%;
      max-height: 100%;
      border-radius: 5px; }
  .resultDetails .top {
    display: flex;
    width: 100%;
    margin-left: 20px; }
  .resultDetails .actions {
    margin: 10px 0 10px 115px;
    display: flex;
    flex-direction: row; }
    .resultDetails .actions .action {
      margin: 0px 10px 0px 0px;
      background: transparent;
      border: 2px solid #4a4a4a;
      cursor: pointer;
      word-break: keep-all;
      position: relative;
      border-radius: 8px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-items: center;
      min-height: 30px;
      /*&:hover{
        background: $highlight-secondary;
        color: $light;
                  transition: all 200ms ease-in;
      }*/ }
      .resultDetails .actions .action svg {
        height: 25px;
        margin-right: 5px;
        pointer-events: none; }
      .resultDetails .actions .action svg path,
      .resultDetails .actions .action svg rect {
        fill: #4a4a4a;
        stroke: #4a4a4a; }
      .resultDetails .actions .action .actionLock {
        position: absolute;
        background: #d0021b;
        border-radius: 20px;
        width: 10px !important;
        height: 10px !important;
        transition: all 0.1s;
        left: 25px;
        bottom: -2px;
        padding: 3px; }
        .resultDetails .actions .action .actionLock path,
        .resultDetails .actions .action .actionLock rect {
          fill: white;
          stroke: white; }
      .resultDetails .actions .action:active, .resultDetails .actions .action:hover {
        outline-width: 0;
        background: #005187;
        border: 2px solid #005187;
        color: white; }
        .resultDetails .actions .action:active .actionLock, .resultDetails .actions .action:hover .actionLock {
          width: 15px !important;
          height: 15px !important;
          left: 7px;
          bottom: 0px;
          padding: 7px; }
        .resultDetails .actions .action:active svg path,
        .resultDetails .actions .action:active svg rect, .resultDetails .actions .action:hover svg path,
        .resultDetails .actions .action:hover svg rect {
          fill: #fff;
          stroke: #fff; }
      .resultDetails .actions .action.Download .actionIcon,
      .resultDetails .actions .action.downloadTitle .actionIcon,
      .resultDetails .actions .action.DownloadAssets .actionIcon,
      .resultDetails .actions .action.LoadPlace .actionIcon,
      .resultDetails .actions .action.loadPlaceTitle .actionIcon,
      .resultDetails .actions .action.LoadPlace .DownloadAssetsKey,
      .resultDetails .actions .action.Loadgeneric .actionIcon,
      .resultDetails .actions .action.Loadneutral .actionIcon .resultDetails .actions .action.Load .actionIcon,
      .resultDetails .actions .action.Info .actionIcon {
        height: 30px;
        width: 30px !important;
        cursor: pointer;
        box-sizing: border-box;
        display: inline-block;
        background-image: url(/d72aead3001f6ced8a65.svg); }
        .resultDetails .actions .action.Download .actionIcon:active, .resultDetails .actions .action.Download .actionIcon:hover,
        .resultDetails .actions .action.downloadTitle .actionIcon:active,
        .resultDetails .actions .action.downloadTitle .actionIcon:hover,
        .resultDetails .actions .action.DownloadAssets .actionIcon:active,
        .resultDetails .actions .action.DownloadAssets .actionIcon:hover,
        .resultDetails .actions .action.LoadPlace .actionIcon:active,
        .resultDetails .actions .action.LoadPlace .actionIcon:hover,
        .resultDetails .actions .action.loadPlaceTitle .actionIcon:active,
        .resultDetails .actions .action.loadPlaceTitle .actionIcon:hover,
        .resultDetails .actions .action.LoadPlace .DownloadAssetsKey:active,
        .resultDetails .actions .action.LoadPlace .DownloadAssetsKey:hover,
        .resultDetails .actions .action.Loadgeneric .actionIcon:active,
        .resultDetails .actions .action.Loadgeneric .actionIcon:hover,
        .resultDetails .actions .action.Loadneutral .actionIcon .resultDetails .actions .action.Load .actionIcon:active,
        .resultDetails .actions .action.Loadneutral .actionIcon .resultDetails .actions .action.Load .actionIcon:hover,
        .resultDetails .actions .action.Info .actionIcon:active,
        .resultDetails .actions .action.Info .actionIcon:hover {
          outline-width: 0; }
      .resultDetails .actions .action.LoadPlace .actionIcon,
      .resultDetails .actions .action.loadPlaceTitle .actionIcon {
        background-image: url(/29b45adf43ef839500ab.svg); }
      .resultDetails .actions .action.Loadgeneric .actionIcon,
      .resultDetails .actions .action.Loadneutral .actionIcon,
      .resultDetails .actions .action.loadTitle .actionIcon,
      .resultDetails .actions .action.Load .actionIcon {
        background-image: url(/95d954672ac3e0d1675a.svg); }
      .resultDetails .actions .action.Info .actionIcon {
        background-image: url(/b7ff577d44c06d876160.svg);
        background-repeat: no-repeat;
        background-position: center; }
    .resultDetails .actions .Download svg,
    .resultDetails .actions .downloadTitle svg,
    .resultDetails .actions .DownloadAssets svg {
      width: 35px;
      height: 33px;
      margin-top: -9px;
      margin-left: -19px; }
    .resultDetails .actions .Download .actionLock,
    .resultDetails .actions .downloadTitle .actionLock,
    .resultDetails .actions .DownloadAssets .actionLock {
      left: 35px; }
    .resultDetails .actions .Download:hover .actionLock,
    .resultDetails .actions .downloadTitle:hover .actionLock,
    .resultDetails .actions .DownloadAssets:hover .actionLock {
      left: 13px; }

.buildup-image-table-composition .buildup th {
  text-align: left; }

.image-table-composition {
  display: flex;
  width: 100%;
  flex-direction: row; }
  .image-table-composition .image {
    max-width: 33.33%; }
  .image-table-composition .table {
    max-width: 66.66%;
    padding: 60px 10px; }
  .image-table-composition .table table th:first-of-type,
  .image-table-composition .table table td:first-of-type {
    width: 50%; }
  @media (max-width: 1360px) {
    .image-table-composition {
      flex-direction: column; }
      .image-table-composition .image,
      .image-table-composition .table {
        max-width: 100%; } }

.spinner {
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  background: url(/f891ea48fff224c488a1.svg) no-repeat;
  background-size: 30px 30px; }

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loaded .spinner {
  animation-play-state: paused; }

.loader {
  width: 25px;
  position: relative;
  display: flex;
  padding: 10px;
  z-index: 100;
  background-size: 30px 30px;
  align-self: center; }

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loaded .spinner {
  animation-play-state: paused; }

.spinnerWrapper {
  position: absolute;
  top: 50%;
  right: 50%; }

.ReactPasswordStrength {
  border: 1px solid #c6c6c6;
  box-sizing: border-box;
  line-height: 1;
  position: relative; }

.ReactPasswordStrength-input {
  border: none;
  box-sizing: border-box;
  font-size: 18px;
  padding: 14px 0 12px 14px;
  width: calc(85% - 28px); }

.ReactPasswordStrength-input:not(:focus).is-password-invalid {
  color: #D1462F; }

.ReactPasswordStrength-input:focus {
  outline: none; }

.ReactPasswordStrength-strength-desc {
  color: transparent;
  font-style: italic;
  padding: 14px 12px;
  position: absolute;
  top: 1px;
  right: 0;
  text-align: right;
  transition: color 250ms ease-in-out;
  width: 25%; }

.ReactPasswordStrength.is-strength-0 .ReactPasswordStrength-strength-desc {
  color: #D1462F; }

.ReactPasswordStrength.is-strength-1 .ReactPasswordStrength-strength-desc {
  color: #D1462F; }

.ReactPasswordStrength.is-strength-2 .ReactPasswordStrength-strength-desc {
  color: #57B8FF; }

.ReactPasswordStrength.is-strength-3 .ReactPasswordStrength-strength-desc {
  color: #57B8FF; }

.ReactPasswordStrength.is-strength-4 .ReactPasswordStrength-strength-desc {
  color: #57B8FF; }

.ReactPasswordStrength.is-strength-5 .ReactPasswordStrength-strength-desc {
  color: #57B8FF; }

.ReactPasswordStrength.is-strength-6 .ReactPasswordStrength-strength-desc {
  color: #57B8FF; }

.ReactPasswordStrength.is-strength-7 .ReactPasswordStrength-strength-desc {
  color: #2FBF71; }

.ReactPasswordStrength.is-strength-8 .ReactPasswordStrength-strength-desc {
  color: #2FBF71; }

.ReactPasswordStrength.is-strength-9 .ReactPasswordStrength-strength-desc {
  color: #2FBF71; }

.ReactPasswordStrength.is-strength-10 .ReactPasswordStrength-strength-desc {
  color: #2FBF71; }

.ReactPasswordStrength-strength-bar {
  box-sizing: border-box;
  height: 2px;
  position: relative;
  top: 1px;
  right: 1px;
  transition: width 300ms ease-out;
  width: 0; }

.ReactPasswordStrength.is-strength-0 .ReactPasswordStrength-strength-bar {
  background: #D1462F;
  width: 20%; }

.ReactPasswordStrength.is-strength-1 .ReactPasswordStrength-strength-bar {
  background: #D1462F;
  width: 40%; }

.ReactPasswordStrength.is-strength-2 .ReactPasswordStrength-strength-bar {
  background: #57B8FF;
  width: 60%; }

.ReactPasswordStrength.is-strength-3 .ReactPasswordStrength-strength-bar {
  background: #57B8FF;
  width: 80%; }

.ReactPasswordStrength.is-strength-4 .ReactPasswordStrength-strength-bar {
  background: #57B8FF;
  width: calc(100% + 2px); }

.ReactPasswordStrength.is-strength-5 .ReactPasswordStrength-strength-bar {
  background: #57B8FF;
  width: calc(100% + 2px); }

.ReactPasswordStrength.is-strength-6 .ReactPasswordStrength-strength-bar {
  background: #57B8FF;
  width: calc(100% + 2px); }

.ReactPasswordStrength.is-strength-7 .ReactPasswordStrength-strength-bar {
  background: #2FBF71;
  width: calc(100% + 2px); }

.ReactPasswordStrength.is-strength-8 .ReactPasswordStrength-strength-bar {
  background: #2FBF71;
  width: calc(100% + 2px); }

.ReactPasswordStrength.is-strength-9 .ReactPasswordStrength-strength-bar {
  background: #2FBF71;
  width: calc(100% + 2px); }

.ReactPasswordStrength.is-strength-10 .ReactPasswordStrength-strength-bar {
  background: #2FBF71;
  width: calc(100% + 2px); }

#headingRow {
  display: flex;
  flex-direction: column;
  min-height: 50px;
  height: 50px; }
  #headingRow a:hover {
    text-decoration: none; }
  #headingRow .returnButton:hover {
    border-bottom: 1px solid red; }
  #headingRow .returnButton {
    border-bottom: 1px solid transparent; }
  #headingRow .searchForm {
    max-width: 350px; }

.generateObjectButton {
  background: white !important;
  padding: 10px !important;
  width: 120px !important;
  color: #333 !important; }

span.objectTitle {
  font-size: 20px !important;
  padding: 5px 0px 0px;
  font-weight: normal;
  font-family: "Glober"; }

.logo {
  background-image: var(--logo);
  background-repeat: no-repeat; }

.customerLogo {
  background-image: var(--logo);
  background-repeat: no-repeat;
  background-position: center; }

.logo-wrapper {
  margin: 22.5px 10px;
  height: 65px; }

.fema .logo-wrapper, .femahd .logo-wrapper {
  height: 100px;
  margin: 5px 0; }

.login-box {
  background: white; }
  .login-box input {
    background: #f1f0f0; }
  .login-box h2,
  .login-box .redirect-button {
    color: rgba(var(--primary-color), 1); }
  .login-box .register,
  .login-box .buttons button,
  .login-box .buttons .register {
    background-color: rgba(var(--primary-color), 1);
    color: white; }

.login-box .register,
.login-box .buttons button,
.login-box .buttons .register,
.userSettingTabs .register,
.userSettingTabs .buttons button,
.userSettingTabs .buttons .register,
.userProfile .register,
.userProfile .buttons button,
.userProfile .buttons .register {
  background-color: rgba(var(--secondary-color), 1);
  color: white; }

.login-box .header h2,
.userSettingTabs .header h2,
.userProfile .header h2 {
  color: rgba(var(--secondary-color), 1); }

.drop-hr {
  border-bottom: 2px solid rgba(var(--secondary-color), 1); }

.is-focused .Select-placeholder,
.with-val .Select-placeholder {
  color: rgba(var(--secondary-color), 1) !important; }

#taskbar .apps .aplications.active {
  background: rgba(var(--secondary-color), 1); }

#taskbar .legal a {
  color: rgba(var(--secondary-color), 1); }

.breadcrumbPane {
  background: linear-gradient(to bottom, rgba(var(--primary-color), 1), rgba(var(--primary-color), 0)); }
  .breadcrumbPane .breadcrumbHeader {
    color: #fff; }
  .breadcrumbPane .node:hover .icon {
    background-color: rgba(var(--primary-color), 1); }
  .breadcrumbPane .node:hover .title {
    color: rgba(var(--primary-color), 1); }
  .breadcrumbPane .indicators .active {
    background-color: rgba(var(--primary-color), 1); }
  .breadcrumbPane .node.active {
    color: rgba(var(--primary-color), 1); }
    .breadcrumbPane .node.active .icon {
      background-color: rgba(var(--primary-color), 1); }
  .breadcrumbPane .node.activeOut h3 {
    color: rgba(var(--secondary-color), 1); }
  .breadcrumbPane .node.activeOut .icon {
    background-color: rgba(var(--secondary-color), 1); }
  .breadcrumbPane .node.active:before {
    background: rgba(var(--secondary-color), 1); }
  .breadcrumbPane #checkedIcon {
    stroke: rgba(var(--secondary-color), 1); }

.resultPane .selected {
  color: rgba(var(--primary-color), 1) !important;
  background-color: rgba(var(--primary-color), 0.1) !important; }

.resultPane .infoFor {
  background: rgba(var(--primary-color), 1) !important;
  color: white !important; }

.resultPane .result:hover {
  color: rgba(var(--primary-color), 1);
  background-color: rgba(var(--primary-color), 0.1) !important; }
  .resultPane .result:hover svg path,
  .resultPane .result:hover svg rect {
    fill: rgba(var(--primary-color), 1);
    stroke: rgba(var(--primary-color), 1); }

.resultPane .result.infoFor:hover {
  color: white;
  background: rgba(var(--primary-color), 1) !important; }
  .resultPane .result.infoFor:hover svg path,
  .resultPane .result.infoFor:hover svg rect {
    fill: white;
    stroke: white; }

@media (min-width: 1200px) {
  .resultPane .result:hover .overlay:hover {
    opacity: 1;
    cursor: pointer;
    background-color: rgba(0, 81, 135, 0.1) !important; } }

.resultPane .result .overlay {
  background-color: rgba(var(--primary-color), 0.1); }
  .resultPane .result .overlay .inner {
    border-color: rgba(var(--primary-color), 1); }

.resultPane #OK {
  stroke: rgba(var(--secondary-color), 1); }

.loadingBar {
  background-color: rgba(var(--secondary-color), 1); }

.contactForm,
.login-box,
.userSettingTabs {
  background: white; }
  .contactForm .register,
  .contactForm .buttons button,
  .contactForm .buttons .register,
  .login-box .register,
  .login-box .buttons button,
  .login-box .buttons .register,
  .userSettingTabs .register,
  .userSettingTabs .buttons button,
  .userSettingTabs .buttons .register {
    background-color: rgba(var(--secondary-color), 1);
    color: white; }
  .contactForm input,
  .login-box input,
  .userSettingTabs input {
    background: #f1f0f0; }
  .contactForm h2,
  .contactForm .redirect-button,
  .login-box h2,
  .login-box .redirect-button,
  .userSettingTabs h2,
  .userSettingTabs .redirect-button {
    color: rgba(var(--secondary-color), 1); }

.accordion__heading:hover div {
  color: rgba(var(--secondary-color), 1); }

.rc-tabs-tabpane h3 {
  color: rgba(var(--primary-color), 1); }

.mf-radio label:hover .mf-radio-button {
  color: rgba(var(--secondary-color), 1); }

.mf-radio input:checked ~ .mf-radio-button::before {
  color: rgba(var(--secondary-color), 1); }

.mf-radio-button::after {
  background-color: rgba(var(--secondary-color), 1);
  border-color: rgba(var(--secondary-color), 1); }

.mf-radio-legend {
  color: #333; }

.ActionBar .numberOfSelected {
  color: rgba(var(--secondary-color), 1); }

.cookieModal a,
.installModal a {
  color: rgba(var(--secondary-color), 1); }

.cookieModal .installBtn,
.installModal .installBtn {
  background-color: rgba(var(--primary-color), 1); }

.installModalActive .cookieModal {
  bottom: 100px !important; }

.noUi-horizontal .noUi-handle-lower .noUi-tooltip,
.noUi-horizontal .noUi-handle-upper .noUi-tooltip,
.noUi-horizontal .noUi-handle {
  background: rgba(var(--secondary-color), 1) !important; }

.primaryButton {
  background: rgba(var(--secondary-color), 1); }
  .primaryButton:hover {
    background: rgba(var(--secondary-color), 0.8); }

.secundaryButton {
  border-color: rgba(var(--secondary-color), 1);
  color: rgba(var(--secondary-color), 1); }
  .secundaryButton:hover {
    color: rgba(var(--secondary-color), 0.8); }

#OK {
  stroke: rgba(var(--secondary-color), 1); }

.gdpr a,
.terms a {
  color: rgba(var(--secondary-color), 1); }

.loginLinks .dd-menu .dd-menu-items .dd-items-center {
  background: rgba(var(--primary-color), 1); }
  .loginLinks .dd-menu .dd-menu-items .dd-items-center::after {
    background: rgba(var(--primary-color), 1); }

.loginLinks .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator),
.loginLinks .dd-menu .dd-menu-items ul li > *:focus,
.loginLinks .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator),
.loginLinks .dd-menu .dd-menu-items ol li > *:focus {
  color: rgba(var(--secondary-color), 1); }
  .loginLinks .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) svg,
  .loginLinks .dd-menu .dd-menu-items ul li:hover:not([role="separator"]):not(.separator) g,
  .loginLinks .dd-menu .dd-menu-items ul li > *:focus svg,
  .loginLinks .dd-menu .dd-menu-items ul li > *:focus g,
  .loginLinks .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) svg,
  .loginLinks .dd-menu .dd-menu-items ol li:hover:not([role="separator"]):not(.separator) g,
  .loginLinks .dd-menu .dd-menu-items ol li > *:focus svg,
  .loginLinks .dd-menu .dd-menu-items ol li > *:focus g {
    stroke: rgba(var(--secondary-color), 1) !important; }

.breadcrumbPane .node .nodeControl .toggle {
  color: rgba(var(--secondary-color), 1); }

.resultDetails .actions .action:active,
.resultDetails .actions .action:hover {
  background: rgba(var(--secondary-color), 1);
  border: 2px solid rgba(var(--secondary-color), 1); }

.layoutSelector .active rect, .layoutSelector .active line {
  stroke: rgba(var(--secondary-color), 1); }

.layoutSelector .grid.active rect, .layoutSelector .grid.active line {
  fill: rgba(var(--secondary-color), 1); }

.layoutSelector .grid.active #border1 {
  stroke: rgba(var(--secondary-color), 1); }

.daikin .breadcrumbPane,
.grada .breadcrumbPane {
  background: linear-gradient(to bottom, rgba(var(--secondary-color), 1), rgba(var(--secondary-color), 0)); }

.adimat .gridView .result {
  width: 17% !important;
  max-width: calc((100vw - 140px) * 0.2); }

.adimat .layoutSelector {
  right: 33px; }

.adimat .ActionButton.Link {
  display: none; }

.bimproduction .inConfig .filterButton {
  background: url(/b753bbfae3856f384184.png) no-repeat; }

.bimproduction .customerLogoWrapper {
  width: 100px;
  height: 100px; }

.bimproduction .logo-wrapper {
  height: 100px; }

.bimproduction .breadcrumbPane .node .imageIcon {
  width: 48px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  object-fit: contain;
  height: 48px; }

.isover .customerLogo {
  background-position: center; }

.isover .customerLogoWrapper {
  width: 170px;
  height: 100px; }

.isover .logo-wrapper {
  height: 100px; }

.isover .login-box {
  background: white; }
  .isover .login-box input {
    background: #f1f0f0; }
  .isover .login-box h2,
  .isover .login-box .redirect-button {
    color: rgba(var(--primary-color), 1); }
  .isover .login-box .register,
  .isover .login-box .buttons button,
  .isover .login-box .buttons .register {
    background-color: rgba(var(--primary-color), 1);
    color: white; }

.isover .login-box .register,
.isover .login-box .buttons button,
.isover .login-box .buttons .register,
.isover .userSettingTabs .register,
.isover .userSettingTabs .buttons button,
.isover .userSettingTabs .buttons .register,
.isover .userProfile .register,
.isover .userProfile .buttons button,
.isover .userProfile .buttons .register {
  background-color: rgba(var(--secondary-color), 1);
  color: white; }

.isover .login-box .header h2,
.isover .userSettingTabs .header h2,
.isover .userProfile .header h2 {
  color: rgba(var(--secondary-color), 1); }

.isover .drop-hr {
  border-bottom: 2px solid rgba(var(--secondary-color), 1); }

.isover .is-focused .Select-placeholder,
.isover .with-val .Select-placeholder {
  color: rgba(var(--secondary-color), 1) !important; }

.isover #taskbar .apps .aplications.active {
  background: rgba(var(--secondary-color), 1); }

.isover #taskbar .legal a {
  color: rgba(var(--secondary-color), 1); }

.isover .localRealBreadcrumbs,
.isover .realBreadcrumb {
  color: black; }

.isover .breadcrumbs svg path {
  fill: black; }

.isover .filterButton {
  background: url(/2d3f62a01a9c646c7a66.svg) no-repeat; }

.isover .breadcrumbPane .breadcrumbHeader {
  color: black !important; }

.isover .breadcrumbPane .node:hover .icon {
  background-color: rgba(var(--primary-color), 1); }

.isover .breadcrumbPane .node:hover .title {
  color: #80c31c !important; }

.isover .breadcrumbPane .indicators .active {
  background-color: rgba(var(--primary-color), 1); }

.isover .breadcrumbPane .node.active {
  color: black; }
  .isover .breadcrumbPane .node.active .icon {
    background-color: #80c31c !important; }

.isover .breadcrumbPane .node.activeOut h3 {
  color: rgba(var(--secondary-color), 1); }

.isover .breadcrumbPane .node.activeOut .icon {
  background-color: #80c31c !important; }

.isover .breadcrumbPane .node.active:before {
  background: rgba(var(--secondary-color), 1); }

.isover .breadcrumbPane #checkedIcon {
  stroke: rgba(var(--secondary-color), 1); }

.isover .resultPane .selected {
  color: rgba(var(--secondary-color), 1) !important;
  background: rgba(var(--secondary-color), 1) -light !important; }

.isover .resultPane .infoFor {
  background: rgba(var(--secondary-color), 1) !important;
  color: white !important; }

.isover .resultPane .result:hover {
  color: rgba(var(--secondary-color), 1);
  background: rgba(var(--secondary-color), 1) -light !important; }
  .isover .resultPane .result:hover svg path,
  .isover .resultPane .result:hover svg rect {
    fill: rgba(var(--secondary-color), 1);
    stroke: rgba(var(--secondary-color), 1); }

.isover .resultPane .result.infoFor:hover {
  color: white;
  background: rgba(var(--secondary-color), 1) !important; }
  .isover .resultPane .result.infoFor:hover svg path,
  .isover .resultPane .result.infoFor:hover svg rect {
    fill: white;
    stroke: white; }

@media (min-width: 1200px) {
  .isover .resultPane .result:hover .overlay:hover {
    opacity: 0.5;
    cursor: pointer;
    background-color: rgba(var(--secondary-color), 0.35); } }

.isover .resultPane .result .overlay {
  background-color: rgba(var(--secondary-color), 0.35); }
  .isover .resultPane .result .overlay .inner {
    border-color: rgba(var(--secondary-color), 1); }

.isover .resultPane #OK {
  stroke: rgba(var(--secondary-color), 1); }

.isover .loadingBar {
  background-color: rgba(var(--secondary-color), 1); }

.isover .contactForm,
.isover .login-box,
.isover .userSettingTabs {
  background: white; }
  .isover .contactForm .register,
  .isover .contactForm .buttons button,
  .isover .contactForm .buttons .register,
  .isover .login-box .register,
  .isover .login-box .buttons button,
  .isover .login-box .buttons .register,
  .isover .userSettingTabs .register,
  .isover .userSettingTabs .buttons button,
  .isover .userSettingTabs .buttons .register {
    background-color: rgba(var(--secondary-color), 1);
    color: white; }
  .isover .contactForm h2,
  .isover .contactForm .redirect-button,
  .isover .login-box h2,
  .isover .login-box .redirect-button,
  .isover .userSettingTabs h2,
  .isover .userSettingTabs .redirect-button {
    color: rgba(var(--secondary-color), 1); }

.isover .accordion__heading:hover div {
  color: rgba(var(--secondary-color), 1); }

.isover .mf-radio label:hover .mf-radio-button {
  color: rgba(var(--secondary-color), 1); }

.isover .mf-radio input:checked ~ .mf-radio-button::before {
  color: rgba(var(--secondary-color), 1); }

.isover .mf-radio-button::after {
  background-color: rgba(var(--secondary-color), 1);
  border-color: rgba(var(--secondary-color), 1); }

.isover .mf-radio-legend {
  color: #333; }

.isover .ActionBar .numberOfSelected {
  color: rgba(var(--secondary-color), 1); }

.isover .cookieModal a,
.isover .installModal a {
  color: rgba(var(--secondary-color), 1); }

.isover .cookieModal .installBtn,
.isover .installModal .installBtn {
  background-color: rgba(var(--primary-color), 1); }

.isover .primaryButton {
  background: rgba(var(--secondary-color), 1); }
  .isover .primaryButton:hover {
    background: #80c31c !important; }

.isover .secundaryButton {
  border-color: rgba(var(--secondary-color), 1);
  color: rgba(var(--secondary-color), 1); }
  .isover .secundaryButton:hover {
    color: rgba(var(--secondary-color), 0.75);
    border-color: rgba(var(--secondary-color), 0.75); }

.isover .gdpr a,
.isover .terms a {
  color: rgba(var(--secondary-color), 1); }

.isover .loginLinks .dd-menu .dd-menu-items .dd-items-center {
  background: #80c31c !important; }
  .isover .loginLinks .dd-menu .dd-menu-items .dd-items-center::after {
    background: #80c31c !important; }

.isover .breadcrumbPane .node .nodeControl .toggle {
  color: rgba(var(--secondary-color), 1); }

.isover .resultDetails .actions .action:active,
.isover .resultDetails .actions .action:hover {
  background: rgba(var(--secondary-color), 1);
  border: 2px solid rgba(var(--secondary-color), 1); }

.mosard #taskbar .apps .aplications.active {
  background: #f3f966;
  color: black; }

.rft .RFTApply, .rft .RFTInfo {
  margin: 20px; }
  .rft .RFTApply svg, .rft .RFTInfo svg {
    width: 25px;
    height: 25px;
    cursor: pointer; }

.rft [data-name="calculationMethod"] .icon {
  background-image: url(/ca92b61c9bfcdd88cbf6.svg) !important;
  background-size: 60% !important; }

.rft .layoutSelector {
  right: 20px;
  width: auto; }
  .rft .layoutSelector .tiles.active path {
    stroke: rgba(var(--secondary-color), 1); }

.techbim .customerLogoWrapper {
  width: 240px;
  height: 100px; }

.techbim .logo-wrapper {
  height: 100px; }

.techbim #taskbar .apps .aplications.active {
  background: rgba(var(--primary-color), 1); }

.techbim .breadcrumbPane {
  background: rgba(var(--primary-color), 1); }

.techbim #taskbar .poweredBy .icon {
  background-image: url(/0e7bb1bed1a6ac59030f.png) !important; }

.techbim .pluginSelector .dd-menu-items {
  left: 80px !important; }

.techbim .pluginDownloadTechbim {
  border-top: 1px solid #f0f0f0;
  transform: translateZ(0);
  padding: 0px 1px 0px 1px;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 130px; }
  .techbim .pluginDownloadTechbim .pluginDropdown {
    display: flex;
    justify-content: center;
    align-items: center; }
  .techbim .pluginDownloadTechbim .pluginInner li span {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px !important;
    box-sizing: border-box; }
  .techbim .pluginDownloadTechbim .arrowDown {
    margin-left: 0; }
  .techbim .pluginDownloadTechbim .supportIcon {
    height: 40px;
    min-width: 32px !important;
    background-image: url(/76050691b5c2338722b6.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block; }
  .techbim .pluginDownloadTechbim .iconDownload {
    height: 40px;
    min-width: 32px !important;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    background-image: url(/d72aead3001f6ced8a65.svg);
    background-position: center;
    background-repeat: no-repeat; }
  .techbim .pluginDownloadTechbim .contactIcon {
    height: 40px;
    min-width: 32px !important;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    background-image: url(/629f4a84fdee8cde9c84.svg);
    background-position: center;
    background-repeat: no-repeat; }
  .techbim .pluginDownloadTechbim .legalIcon {
    height: 40px;
    min-width: 32px !important;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    background-image: url(/14c8a277f2379f488e3a.svg);
    background-position: center;
    background-repeat: no-repeat; }

.techbim .resultDetails .action.Load,
.techbim .resultDetails .action.loadTitle,
.techbim .resultDetails .action.LoadPlace,
.techbim .resultDetails .action.loadPlaceTitle,
.techbim .resultDetails .action.DownloadAssetsKey {
  padding: 5px 8px 6px 40px; }

.techbim .DownloadAssetsKey svg {
  width: 25px; }

.techbim .connectionStatus .arrowDown {
  margin-left: 25px;
  background-image: url(/9acaaf58d62c3bd6d494.svg) !important; }

.techbim .connectionStatusWrapper .moreInfo {
  padding: 0px 0 10px 0px !important;
  margin-top: 0 !important;
  font-size: 11px !important;
  margin-top: -10px !important;
  text-align: start !important;
  margin-left: 8px !important;
  text-decoration: underline !important; }

.techbim .connectionStatusWrapper .revitInfo {
  padding: 10px 14px 0 !important;
  margin: 0 !important; }

.techbim .connectionStatusWrapper a {
  color: #333; }

.techbim .connectionStatusWrapper ul span {
  display: flex !important;
  align-items: center;
  padding: 10px !important;
  text-align: start !important; }

.techbim .connectionStatusWrapper .mInfo {
  margin-left: 5px; }

.techbim .resultPane .result img {
  background-color: white; }

.techbim .resultDetails .image {
  height: 75px; }

.wienerberger .myModal.contact {
  min-width: 500px !important;
  width: 80% !important; }

.wienerberger .wienerbergerCookies {
  cursor: pointer;
  color: #005187; }

.wienerberger .table a {
  color: #8beeb4;
  text-decoration: underline;
  font-weight: bolder; }

.witas .customerLogoWrapper {
  width: 150px;
  height: 100px; }

.witas .logo-wrapper {
  height: 100px; }

.witas #taskbar .apps .aplications.active {
  background: #ff8101; }

.witas .breadcrumbPane {
  background: url(/a7966fe8d266c44aa812.svg), linear-gradient(to bottom, #35a1eb 50%, #76b9ec 100%), url(/604529b28ef4c631dc16.png);
  background-repeat: no-repeat;
  background-size: contain; }
  .witas .breadcrumbPane .breadcrumbHeader {
    background: transparent;
    color: #fff; }
  .witas .breadcrumbPane .node {
    box-shadow: none; }
  .witas .breadcrumbPane .node.active {
    color: #333; }
    .witas .breadcrumbPane .node.active .node.activeOut .icon {
      background: url(/dc1acecaac08a596273d.svg), linear-gradient(to bottom, #2896e8 0%, #007ccd 100%);
      background-repeat: no-repeat;
      background-position: 50%; }
  .witas .breadcrumbPane .installModalActive .cookieModal {
    bottom: 100px !important; }
  .witas .breadcrumbPane .logout {
    padding: 0 10px !important; }
  .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items .dd-items-center {
    background-image: linear-gradient(to bottom, #2896e8 0%, #007ccd 100%); }
    .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items .dd-items-center li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items .dd-items-center li:last-of-type {
        border-bottom: 0; }
    .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items .dd-items-center::after {
      background: #007ccd; }
  .witas .breadcrumbPane .loginLinks .dd-menu
.dd-menu-items
ul
li:hover:not([role="separator"]):not(.separator),
  .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items ul li > *:focus,
  .witas .breadcrumbPane .loginLinks .dd-menu
.dd-menu-items
ol
li:hover:not([role="separator"]):not(.separator),
  .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items ol li > *:focus {
    color: #77b6ef; }
    .witas .breadcrumbPane .loginLinks .dd-menu
.dd-menu-items
ul
li:hover:not([role="separator"]):not(.separator) svg,
    .witas .breadcrumbPane .loginLinks .dd-menu
.dd-menu-items
ul
li:hover:not([role="separator"]):not(.separator) g,
    .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items ul li > *:focus svg,
    .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items ul li > *:focus g,
    .witas .breadcrumbPane .loginLinks .dd-menu
.dd-menu-items
ol
li:hover:not([role="separator"]):not(.separator) svg,
    .witas .breadcrumbPane .loginLinks .dd-menu
.dd-menu-items
ol
li:hover:not([role="separator"]):not(.separator) g,
    .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items ol li > *:focus svg,
    .witas .breadcrumbPane .loginLinks .dd-menu .dd-menu-items ol li > *:focus g {
      stroke: #77b6ef !important; }
  .witas .breadcrumbPane .resetFilters.show {
    border-color: white;
    color: #6cb6ee; }
  .witas .breadcrumbPane .panes {
    min-height: 100%; }
  .witas .breadcrumbPane .breadcrumbPane .node .nodeControl .toggle {
    color: #ff8101; }

@font-face {
  font-family: 'MuseoSans_300';
  src: url(/eeb5e4dc2796a5d349c7.woff2) format("woff2"), url(/84ca70fcaaad005cc4d4.woff) format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSans_700';
  src: url(/85e3fdf382859086156e.woff2) format("woff2"), url(/d11ef0a5400f3250482c.woff) format("woff");
  font-weight: normal;
  font-style: normal; }

.imihydronic * {
  font-family: "MuseoSans_300", "Glober", Arial; }

.imihydronic .realBreadcrumb > *,
.imihydronic .breadcrumbs .lastItem .text,
.imihydronic .breadcrumbPane .node h3,
.imihydronic .localRealBreadcrumbs,
.imihydronic .resultPane .result .infoW h3,
.imihydronic .logout, .imihydronic .profile, .imihydronic .settings,
.imihydronic .button {
  font-family: "MuseoSans_700", "Glober", Arial !important; }

.imihydronic .logo-wrapper {
  margin: 10px 10px;
  height: 100px; }

.imihydronic #taskbar .apps .aplications {
  background-color: rgba(var(--primary-color), 1); }

.imihydronic #taskbar .apps .aplications.active {
  background: rgba(var(--secondary-color), 1); }

.imihydronic .breadcrumbPane .title {
  color: rgba(var(--primary-color), 1); }

.imihydronic .breadcrumbPane .node:hover .title {
  color: rgba(var(--secondary-color), 1); }

.imihydronic .breadcrumbPane .node .icon {
  background-color: rgba(var(--primary-color), 1); }

.imihydronic .breadcrumbPane .node:hover .icon {
  background-color: rgba(var(--secondary-color), 1); }

.imihydronic .breadcrumbPane .node.activeOut .icon {
  background-color: rgba(var(--secondary-color), 1); }

.imihydronic .resultPane .infoFor, .imihydronic .resultPane .infoFor:hover {
  background: rgba(var(--primary-color), 1) !important;
  color: white !important; }

.imihydronic .resultPane .result:hover {
  color: white !important;
  background-color: rgba(var(--primary-color), 0.7) !important; }

.imihydronic .resultPane .result:hover svg path, .imihydronic .resultPane .result:hover svg rect {
  fill: white;
  stroke: white; }

.imihydronic .imiPromo {
  background-color: white;
  width: 700px !important;
  border-radius: 3px;
  top: initial !important;
  bottom: -150px; }
  .imihydronic .imiPromo img {
    max-width: 700px; }

.imihydronic #taskbar .logReg {
  padding: 15px 5px 15px 10px; }

.imihydronic .installModal .installBtn {
  min-width: 210px; }

.techlink .resultPane .result .infoW {
  min-height: 70px; }

.techlink #taskbar .apps .aplications,
.techlink .button {
  color: #00236e; }

.techlink .breadcrumbPane .activeOut .icon {
  background-image: url(/2fe5da8025d56319307a.svg); }

.techlink .actions.withCalculatedValues {
  bottom: 10px !important; }

.techlink .listView .Download svg, .techlink .listView .downloadTitle svg, .techlink .listView .DownloadFEMAlijst svg, .techlink .listView .DownloadAssets svg {
  width: 35px;
  height: 33px;
  margin-top: -9px;
  margin-left: -24px; }

#taskbar .poweredBy.techlinkSuites .icon {
  background-image: url(/b3d63033e9de1468ee4b.png) !important; }

